function hrules_menu in Heartbeat 6.4
Implementation of hook_menu().
File
- modules/
heartbeat_rules/ hrules.module, line 38 - Heartbeat rules implementation module
Code
function hrules_menu() {
$items = array();
$items['heartbeat/heartbeat_activity_rules_default/js'] = array(
'title' => 'Callback to supply extra action variables as arguments',
'type' => MENU_CALLBACK,
'page callback' => 'heartbeat_activity_rules_action_message_id_js',
'access arguments' => array(
'configure heartbeat messages',
),
);
return $items;
}