function authcache_ajax_authcache_enum_key_property_info in Authenticated User Page Caching (Authcache) 7.2
Implements hook_authcache_enum_key_property_info().
File
- modules/
authcache_ajax/ authcache_ajax.module, line 10 - Inject personalized fragments into cached pages using Ajax calls.
Code
function authcache_ajax_authcache_enum_key_property_info() {
return array(
'ajax' => array(
'name' => t('Browser is capable of issuing Ajax requests'),
'choices' => array(
TRUE,
FALSE,
),
),
);
}