function action_action_info

Implements hook_action_info().

Related topics

File

drupal/core/modules/action/action.module, line 477
This is the Actions module for executing stored actions.

Code

function action_action_info() {
  return array(
    'action_message_action' => array(
      'type' => 'system',
      'label' => t('Display a message to the user'),
      'configurable' => TRUE,
      'triggers' => array(
        'any',
      ),
    ),
    'action_send_email_action' => array(
      'type' => 'system',
      'label' => t('Send e-mail'),
      'configurable' => TRUE,
      'triggers' => array(
        'any',
      ),
    ),
    'action_goto_action' => array(
      'type' => 'system',
      'label' => t('Redirect to URL'),
      'configurable' => TRUE,
      'triggers' => array(
        'any',
      ),
    ),
  );
}