You are here

function ckeditor_plugins in CKEditor for WYSIWYG Module 8

Same name and namespace in other branches
  1. 7 ckeditor.module \ckeditor_plugins()

Retrieves the full list of installed CKEditor plugins.

2 calls to ckeditor_plugins()
CKEditor::getJSSettings in lib/Drupal/ckeditor/Plugin/editor/editor/CKEditor.php
Implements \Drupal\editor\Plugin\EditorInterface::getJSSettings().
CKEditor::settingsForm in lib/Drupal/ckeditor/Plugin/editor/editor/CKEditor.php
Implements \Drupal\editor\Plugin\EditorInterface::settingsForm().

File

./ckeditor.module, line 90
Provides integration with the CKEditor WYSIWYG editor.

Code

function ckeditor_plugins() {
  $plugins = module_invoke_all('ckeditor_plugins');
  drupal_alter('ckeditor_plugins', $plugins);
  return $plugins;
}