You are here

function authcache_esi_debug_permission in Authenticated User Page Caching (Authcache) 7.2

Implements hook_permission().

File

modules/authcache_esi/authcache_esi_debug.module, line 37
Debug module for Authcache ESI markup generator.

Code

function authcache_esi_debug_permission() {
  return array(
    'authcache esi debug' => array(
      'title' => t('Access status page'),
      'description' => t('Manually test ESI support of the server environment.'),
    ),
  );
}