function hook_ckeditor_plugin_info_alter

Modify the list of available CKEditor plugins.

This hook may be used to modify plugin properties after they have been specified by other modules.

Parameters

$plugins: An array of all the existing plugin definitions, passed by reference.

See also

CKEditorPluginManager

Related topics

File

drupal/core/modules/ckeditor/ckeditor.api.php, line 26
Documentation for CKEditor module APIs.

Code

function hook_ckeditor_plugin_info_alter(array &$plugins) {
  $plugins['someplugin']['label'] = t('Better name');
}