function editor_hook_info in Editor 7
Implements hook_hook_info().
File
- ./
editor.module, line 118  - Allows rich text fields to be edited using WYSIWYG client-side editors.
 
Code
function editor_hook_info() {
  $hooks = array(
    'editor_info',
    'editor_info_alter',
  );
  return array_fill_keys($hooks, array(
    'group' => 'editor',
  ));
}