You are here

function support_action_info in Support Ticketing System 7

Implements hook_action_info().

File

./support.module, line 115
support.module

Code

function support_action_info() {
  return array(
    'support_client_fetch_all_action' => array(
      'label' => t('Support Ticketing System: Fetch all client mail'),
      'type' => 'system',
      'configurable' => FALSE,
      'triggers' => array(
        'any',
      ),
    ),
    'support_client_fetch_one_action' => array(
      'label' => t('Support Ticketing System: Fetch one client'),
      'type' => 'system',
      'configurable' => TRUE,
      'triggers' => array(
        'any',
      ),
    ),
  );
}