You are here

function authcache_form_menu in Authenticated User Page Caching (Authcache) 7.2

Implements hook_menu().

File

modules/authcache_form/authcache_form.module, line 10
Form token retrieval for Authcache.

Code

function authcache_form_menu() {
  $items['admin/config/system/authcache/forms'] = array(
    'title' => 'Forms',
    'description' => "Configure form settings.",
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'authcache_form_admin',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'authcache_form.admin.inc',
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}