Version 1
[yaffs-website] / web / core / modules / ckeditor / tests / modules / ckeditor_test.module
1 <?php
2
3 /**
4  * @file
5  * Helper module for the CKEditor tests.
6  */
7
8 use Drupal\editor\Entity\Editor;
9
10 /**
11  * Implements hook_ckeditor_css_alter().
12  */
13 function ckeditor_test_ckeditor_css_alter(array &$css, Editor $editor) {
14   $css[] = drupal_get_path('module', 'ckeditor_test') . '/ckeditor_test.css';
15 }