function authcache_esi_authcache_key_properties in Authenticated User Page Caching (Authcache) 7.2
Implements hook_authcache_key_properties().
File
- modules/
authcache_esi/ authcache_esi.module, line 22 - Authcache ESI markup generator.
Code
function authcache_esi_authcache_key_properties() {
$client_info = authcache_p13n_client_info();
return array(
'esi' => !empty($client_info['authcache_esi']['enabled']),
);
}