function mappy_menu in Mappy 7
Implements hook_menu().
File
- ./
mappy.module, line 11 - Module file for mappy.
Code
function mappy_menu() {
// Settings page.
$items['admin/config/content/mappy/settings'] = array(
'title' => 'Mappy settings',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'mappy_settings',
),
'access arguments' => array(
'administer site configuration',
),
'file' => 'mappy.admin.inc',
'file path' => drupal_get_path('module', 'mappy'),
);
return $items;
}