You are here

ckeditor_test.module in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/ckeditor/tests/modules/ckeditor_test.module

Helper module for the CKEditor tests.

File

core/modules/ckeditor/tests/modules/ckeditor_test.module
View source
<?php

/**
 * @file
 * Helper module for the CKEditor tests.
 */
use Drupal\editor\Entity\Editor;

/**
 * Implements hook_ckeditor_css_alter().
 */
function ckeditor_test_ckeditor_css_alter(array &$css, Editor $editor) {
  $css[] = drupal_get_path('module', 'ckeditor_test') . '/ckeditor_test.css';
}

Functions