You are here

function message_notify_action_info in Message UI 7

Implements hook_action_info().

File

message_notify_ui/message_notify_ui.module, line 144
Main module file.

Code

function message_notify_action_info() {
  return array(
    'message_notify_send_email_vbo' => array(
      'type' => 'message',
      'label' => t('Send as e-mail to the owner of the message'),
      'behavior' => array(
        'changes_property',
      ),
      'configurable' => FALSE,
      'vbo_configurable' => FALSE,
      'triggers' => array(
        'any',
      ),
    ),
  );
}