function hook_authcache_enum_anonymous_keys in Authenticated User Page Caching (Authcache) 7.2
Return information about keys for anonymous users.
Return value
array A list of all possible keys for anonymous users.
2 functions implement hook_authcache_enum_anonymous_keys()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- authcache_enum_authcache_enum_anonymous_keys in modules/
authcache_enum/ authcache_enum.module - Implements hook_authcache_enum_anonymous_keys().
- authcache_enum_test_authcache_enum_anonymous_keys in modules/
authcache_enum/ tests/ authcache_enum_test.module - Implements hook_authcache_enum_anonymous_keys()
1 invocation of hook_authcache_enum_anonymous_keys()
- authcache_enum_anonymous_keys in modules/
authcache_enum/ authcache_enum.module - Return a list of cache-keys used by anonymous users.
File
- modules/
authcache_enum/ authcache_enum.api.php, line 13 - API hooks exposed by the Authcache Enum module.
Code
function hook_authcache_enum_anonymous_keys() {
global $base_root;
return variable_get('authcache_key_generator_keys', $base_root);
}