You are here

function bat_event_action_info in Booking and Availability Management Tools for Drupal 7

Implements hook_action_info().

File

modules/bat_event/bat_event.module, line 2566
Manage Events - Events store the EventValue of a Unit over a period of time.

Code

function bat_event_action_info() {
  return array(
    'bat_event_unit_set_state' => array(
      'type' => 'bat_unit',
      'label' => t('Assign fixed-state event to units'),
      'behavior' => array(
        'bat_event_unit_set_state',
      ),
      'configurable' => TRUE,
      'vbo_configurable' => FALSE,
      'triggers' => array(
        'any',
      ),
    ),
  );
}