You are here

function authcache_ajax_authcache_key_properties in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_key_properties().

File

modules/authcache_ajax/authcache_ajax.module, line 22
Inject personalized fragments into cached pages using Ajax calls.

Code

function authcache_ajax_authcache_key_properties() {
  $client_info = authcache_p13n_client_info();
  return array(
    'ajax' => !empty($client_info['authcache_ajax']['enabled']),
  );
}