You are here

ckeditor_config.module in CKEditor custom config 8

Same filename and directory in other branches
  1. 8.3 ckeditor_config.module
  2. 8.2 ckeditor_config.module

Load a custom config class for CKeditor.

File

ckeditor_config.module
View source
<?php

/**
 * @file
 * Load a custom config class for CKeditor.
 */

/**
 * Implements hook_ckeditor_plugin_info_alter().
 *
 * @inheritdoc
 */
function ckeditor_config_ckeditor_plugin_info_alter(array &$plugins) {
  $plugins['internal']['class'] = 'Drupal\\ckeditor_config\\Plugin\\CKEditorPlugin\\CustomConfig';
}