1 ckeditor5.module | ckeditor5_plugins() |
Retrieves the full list of installed CKEditor plugins.
Return value
array: An array of CKEditor plugin information, as returned by hook_ckeditor5_plugins().
See also
hook_ckeditor5_plugins_alter()
File
- core/
modules/ ckeditor5/ ckeditor5.module, line 256 - Provides integration with the CKEditor WYSIWYG editor.
Code
function ckeditor5_plugins() {
$plugins = &backdrop_static(__FUNCTION__, array());
if (!$plugins) {
$plugins = module_invoke_all('ckeditor5_plugins');
backdrop_alter('ckeditor5_plugins', $plugins);
}
return $plugins;
}