You are here

function views_bulk_operations_argument_selector_action_info in Views Bulk Operations (VBO) 7.3

Same name and namespace in other branches
  1. 6.3 argument_selector.action.inc \views_bulk_operations_argument_selector_action_info()
  2. 6 actions/argument_selector.action.inc \views_bulk_operations_argument_selector_action_info()

Implementation of hook_action_info().

File

actions/argument_selector.action.inc, line 13
Passes selected ids as arguments to a page. The ids might be entity ids or revision ids, depending on the type of the VBO field.

Code

function views_bulk_operations_argument_selector_action_info() {
  return array(
    'views_bulk_operations_argument_selector_action' => array(
      'label' => t('Pass ids as arguments to a page'),
      'type' => 'entity',
      'aggregate' => TRUE,
      'configurable' => FALSE,
      'hooks' => array(),
      'triggers' => array(
        'any',
      ),
    ),
  );
}