You are here

function authcache_esi_authcache_enum_key_property_info in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_enum_key_property_info().

File

modules/authcache_esi/authcache_esi.module, line 10
Authcache ESI markup generator.

Code

function authcache_esi_authcache_enum_key_property_info() {
  return array(
    'esi' => array(
      'name' => t('Request issued by ESI enabled reverse proxy'),
      'choices' => array(
        TRUE,
        FALSE,
      ),
    ),
  );
}