You are here

function authcache_block_permission in Authenticated User Page Caching (Authcache) 7.2

Implements hook_permission().

File

modules/authcache_block/authcache_block.module, line 59
Authcache support for block module.

Code

function authcache_block_permission() {
  return array(
    'configure authcache blocks' => array(
      'title' => t('Configure authcache blocks'),
      'description' => t('Specify which blocks should be loaded using Ajax/ESI.'),
    ),
  );
}