function node_recur_menu in Node recur 7.2
Same name and namespace in other branches
- 7 node_recur.module \node_recur_menu()
Implements hook_menu().
File
- ./
node_recur.module, line 6
Code
function node_recur_menu() {
$items = array();
$items['node/%node/recur'] = array(
'title' => 'Repeat',
'title callback' => 'node_recur_menu_title_callback',
'title arguments' => array(
1,
),
'description' => 'Set recurring rules on this node',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'node_recur_node_recur_form',
1,
),
'access callback' => 'node_recur_node_recur_form_access',
'access arguments' => array(
1,
),
'file' => 'node_recur.pages.inc',
'type' => MENU_LOCAL_ACTION,
'weight' => 1,
);
return $items;
}