You are here

function paranoia_menu in Paranoia 7

Implements hook_menu().

File

./paranoia.module, line 11
Paranoia module file. Provides various extra security features.

Code

function paranoia_menu() {
  $items['admin/config/system/paranoia'] = array(
    'title' => 'Paranoia',
    'description' => 'Configure settings for protecting old accounts that have
    not been accessed recently.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'paranoia_admin_form',
    ),
    'access arguments' => array(
      'administer paranoia',
    ),
    'file' => 'paranoia.admin.inc',
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}