You are here

function panelizer_ctools_plugin_type in Panelizer 7.3

Same name and namespace in other branches
  1. 7.2 panelizer.module \panelizer_ctools_plugin_type()

Implements hook_ctools_plugin_type().

File

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

Code

function panelizer_ctools_plugin_type() {
  $items['entity'] = array(
    'cache' => FALSE,
    'process' => array(
      'function' => 'panelizer_entity_plugin_process',
    ),
    'classes' => array(
      'handler',
    ),
  );
  return $items;
}