function messaging_devel_action_info in Messaging 7
Implementation of hook_action_info().
File
- messaging_devel/
messaging_devel.module, line 144 - Simple messaging using html page. Messaging method plug-in
Code
function messaging_devel_action_info() {
return array(
'messaging_devel_watchdog_msg' => array(
'type' => 'messaging',
'description' => t('Log message to watchdog'),
'configurable' => FALSE,
'hooks' => array(
'messaging' => array(
'incoming',
'outgoing',
),
),
),
'messaging_devel_devlog_msg' => array(
'description' => t('Log message through devel module'),
'type' => 'messaging',
'configurable' => FALSE,
'hooks' => array(
'messaging' => array(
'incoming',
'outgoing',
),
),
),
'messaging_devel_block_msg' => array(
'description' => t('Display message in block'),
'type' => 'messaging',
'configurable' => FALSE,
'hooks' => array(
'messaging' => array(
'incoming',
'outgoing',
),
),
),
);
}