function heartbeat_rules_menu in Heartbeat 7
Implementation of hook_menu().
File
- modules/
heartbeat_rules/ heartbeat_rules.module, line 11 - Rules integration. Event/trigger as well as the heartbeat actions.
Code
function heartbeat_rules_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_rules_action_message_id_js',
'access arguments' => array(
'admin heartbeat templates',
),
);
return $items;
}