function ckeditor_hook_info in CKEditor - WYSIWYG HTML editor 7
Implements hook_hook_info().
File
- ./
ckeditor.module, line 57 - CKEditor - The text editor for the Internet - http://ckeditor.com Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
Code
function ckeditor_hook_info() {
$hooks = array(
'ckeditor_plugin',
'ckeditor_plugin_alter',
'ckeditor_security_filter',
'ckeditor_security_filter_alter',
'ckeditor_settings_alter',
);
return array_fill_keys($hooks, array(
'group' => 'ckeditor',
));
}