You are here

function panelizer_action_info in Panelizer 7.3

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

Implements hook_action_info().

File

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

Code

function panelizer_action_info() {
  return array(
    'panelizer_set_status_action' => array(
      'type' => 'entity',
      'label' => t('Set panelizer status'),
      'vbo_configurable' => TRUE,
      'configurable' => FALSE,
      'behavior' => array(
        'changes_property',
      ),
      'configurable' => TRUE,
    ),
  );
}