You are here

function ckeditor_plugins in CKEditor for WYSIWYG Module 7

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

Retrieves the full list of installed CKEditor plugins.

4 calls to ckeditor_plugins()
ckeditor_add_settings in ./ckeditor.module
Editor JS settings callback; Add Aloha settings to the page for a format.
ckeditor_settings_form in includes/ckeditor.admin.inc
Editor settings callback; Provide options for CKEditor module.
ckeditor_wysiwyg_plugins in includes/ckeditor_extended.inc
Return internal plugins for this editor; semi-implementation of hook_wysiwyg_plugin().
ckeditor_wysiwyg_plugin_settings in includes/ckeditor_extended.inc
Build a JS settings array of native external plugins that need to be loaded separately.
1 string reference to 'ckeditor_plugins'
ckeditor_module_implements_alter in includes/ckeditor.wysiwyg.inc
Implements hook_module_implements_alter().

File

./ckeditor.module, line 103

Code

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