You are here

function rules_action_drupal_message_types in Rules 7.2

Options list callback defining drupal_message types.

Related topics

1 string reference to 'rules_action_drupal_message_types'
rules_system_action_info in modules/system.rules.inc
Implements hook_rules_action_info() on behalf of the system module.

File

modules/system.rules.inc, line 322
Rules integration for the system module.

Code

function rules_action_drupal_message_types() {
  return array(
    'status' => t('Status'),
    'warning' => t('Warning'),
    'error' => t('Error'),
  );
}