function authcache_key_properties in Authenticated User Page Caching (Authcache) 7.2
Return key-properties.
Return characterizing key-value pairs of a browsers capabilities and the HTTP request.
Related topics
2 calls to authcache_key_properties()
- authcache_debug_authcache_debug_info in modules/
authcache_debug/ authcache_debug.module - Implements hook_authcache_debug_info().
- authcache_key in ./
authcache.module - Generate and return the authcache key for the given account.
File
- ./
authcache.module, line 609 - Authenticated User Page Caching (and anonymous users, too!)
Code
function authcache_key_properties() {
$properties =& drupal_static(__FUNCTION__);
if (!isset($properties)) {
$properties = module_invoke_all('authcache_key_properties');
drupal_alter('authcache_key_properties', $properties);
}
return $properties;
}