You are here

function linkit_ckeditor_plugin_info_alter in Linkit 8.5

Implements hook_ckeditor_plugin_info_alter().

File

./linkit.module, line 42
Linkit hook implementations.

Code

function linkit_ckeditor_plugin_info_alter(array &$plugins) {
  if (isset($plugins['drupallink'])) {
    $plugins['drupallink']['class'] = "Drupal\\linkit\\Plugin\\CKEditorPlugin\\LinkitDrupalLink";
  }
}