function authcache_ajax_authcache_p13n_client in Authenticated User Page Caching (Authcache) 7.2
Implements hook_authcache_p13n_client().
File
- modules/
authcache_ajax/ authcache_ajax.module, line 32 - Inject personalized fragments into cached pages using Ajax calls.
Code
function authcache_ajax_authcache_p13n_client() {
return array(
'authcache_ajax' => array(
'title' => t('Ajax'),
'enabled' => !empty($_COOKIE['has_js']),
),
);
}