function authcache_backend_initial_key in Authenticated User Page Caching (Authcache) 7.2
Return the authcache key and session captured during backend initialization.
Related topics
3 calls to authcache_backend_initial_key()
- authcache_backend_init in ./
authcache.cache.inc - Initialize the cache backend module.
- authcache_backend_test_exit in tests/
authcache_backend_test.module - Implements hook_ext().
- authcache_exit in ./
authcache.module - Implements hook_exit().
File
- ./
authcache.cache.inc, line 218 - Defines authcache aware copy of drupal_serve_page_from_cache().
Code
function authcache_backend_initial_key($set_key = NULL) {
$initial_key =& drupal_static(__FUNCTION__);
if (isset($set_key)) {
$initial_key = $set_key;
}
return $initial_key;
}