function account_profile_menu in Account Profile 6
Implementation of hook_menu().
File
- ./
account_profile.module, line 14 - Account Profile module
Code
function account_profile_menu() {
$items['admin/settings/account_profile'] = array(
'title' => 'Account Profile',
'description' => t('Settings for Account Profile'),
'page callback' => 'drupal_get_form',
'page arguments' => array(
'account_profile_get_admin_form',
),
'access arguments' => array(
'administer account_profile',
),
'file' => 'account_profile.admin.inc',
'type' => MENU_NORMAL_ITEM,
);
return $items;
}