You are here

function prlp_menu in Password Reset Landing Page (PRLP) 7

Same name and namespace in other branches
  1. 6 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/config/people/accounts/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',
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}