function prlp_menu in Password Reset Landing Page (PRLP) 6
Same name and namespace in other branches
- 7 prlp.module \prlp_menu()
Implements hook_menu().
File
- ./
prlp.module, line 11 - Password Reset Landing Page module.
Code
function prlp_menu() {
$items = array();
$items['admin/user/prlp'] = array(
'title' => 'PRLP settings',
'description' => 'Configure - Password Reset Landing Page - what happens when users use their one-time login links for resetting password.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'prlp_admin_settings',
),
'access arguments' => array(
'administer users',
),
'file' => 'prlp.admin.inc',
);
return $items;
}