1 ckeditor.module | ckeditor_plugins() |
Retrieves the full list of installed CKEditor 4 plugins.
File
- core/
modules/ ckeditor/ ckeditor.module, line 138 - Provides integration with the CKEditor 4 WYSIWYG editor.
Code
function ckeditor_plugins() {
$plugins = module_invoke_all('ckeditor_plugins');
backdrop_alter('ckeditor_plugins', $plugins);
return $plugins;
}