function authcache_varnish_menu in Authenticated User Page Caching (Authcache) 7.2
Implements hook_menu().
File
- modules/
authcache_varnish/ authcache_varnish.module, line 121 - Authcache cache backend module for varnish.
Code
function authcache_varnish_menu() {
$items['authcache-varnish-get-key'] = array(
'page callback' => 'authcache_varnish_get_key',
'access callback' => 'authcache_varnish_request_validate',
'type' => MENU_CALLBACK,
);
return $items;
}