You are here

function encryptfapi_menu in Encrypt Form API 7.2

Implements hook_menu().

File

tests/encryptfapi_test.module, line 11
Declares a form to test Form API encryption.

Code

function encryptfapi_menu() {
  $items = array();
  $items['encryptfapi_test'] = array(
    'title' => 'Encrypt FAPI Test',
    'description' => 'A test page for the Encrypt FAPI module.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'encryptfapi_test_form',
    ),
    'access callback' => TRUE,
  );
  return $items;
}