function sheetnode_ethercalc_menu in Sheetnode 6
Same name and namespace in other branches
- 7.2 modules/sheetnode_ethercalc/sheetnode_ethercalc.module \sheetnode_ethercalc_menu()
- 7 modules/sheetnode_ethercalc/sheetnode_ethercalc.module \sheetnode_ethercalc_menu()
Implementation of hook_menu().
File
- modules/
sheetnode_ethercalc/ sheetnode_ethercalc.module, line 41
Code
function sheetnode_ethercalc_menu() {
$items = array();
$items['admin/settings/sheetnode/ethercalc'] = array(
'title' => 'EtherCalc',
'access arguments' => array(
'administer site configuration',
),
'page callback' => 'drupal_get_form',
'page arguments' => array(
'_sheetnode_ethercalc_settings',
),
'description' => 'Administer settings for Sheetnode EtherCalc.',
'type' => MENU_LOCAL_TASK,
);
return $items;
}