function shoutbox_rules_rules_action_info in Shoutbox 6.2
Implementation of hook_rules_action_info().
File
- shoutbox_rules/
shoutbox_rules.module, line 100
Code
function shoutbox_rules_rules_action_info() {
return array(
'shoutbox_rules_add_action' => array(
'label' => t('Add a shout'),
'help' => t('Enter the shout text.'),
'module' => 'Shoutbox',
'eval input' => array(
'poster',
'shout',
),
),
);
}