You are here

function panelizer_hook_info in Panelizer 7.3

Implements hook_hook_info().

File

./panelizer.module, line 25
The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.

Code

function panelizer_hook_info() {
  $hooks = array(
    'panelizer_defaults_override_alter',
    'panelizer_entity_plugin_process_alter',
    'panelizer_operations_alter',
  );
  return array_fill_keys($hooks, array(
    'group' => 'panelizer',
  ));
}