function rules_action_drupal_message_types

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

Code

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