function crypt_blowfish_menu in Web Service Clients 6
Same name and namespace in other branches
- 6.2 connections/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_menu()
- 7.3 connections/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_menu()
- 7 backends/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_menu()
- 7.2 connections/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_menu()
Implementation of hook_menu()
File
- backends/
clients_drupal/ crypt_blowfish/ crypt_blowfish.module, line 41 - PEAR Crypt_Blowfish integration @author Django Beatty - adub
Code
function crypt_blowfish_menu() {
$items = array();
$items['admin/settings/crypt_blowfish'] = array(
'title' => 'Blowfish',
'description' => 'Blowfish Configuration',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'crypt_blowfish_admin',
'add',
),
'access arguments' => array(
'crypt_blowfish admin',
),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}