You are here

function encrypt_menu in Encrypt 6

Same name and namespace in other branches
  1. 7.3 encrypt.module \encrypt_menu()
  2. 7 encrypt.module \encrypt_menu()
  3. 7.2 encrypt.module \encrypt_menu()

Implementation of hook_menu().

File

./encrypt.module, line 90
Main Encrypt Drupal File

Code

function encrypt_menu() {
  $items = array();
  $items['admin/settings/encrypt'] = array(
    'title' => 'Encrypt',
    'description' => 'Main settings for encrypt.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'encrypt_admin_settings',
    ),
    'access arguments' => array(
      'administer encrypt',
    ),
    'file' => 'includes/encrypt.admin.inc',
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}