You are here

function authcache_block_authcache_p13n_admin_groups in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_p13n_admin_groups().

File

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

Code

function authcache_block_authcache_p13n_admin_groups() {
  return array(
    t('Blocks') => t('To add a block to the list of personalized blocks, visit the <a href="!blocks_url">block administration page</a> and click "configure" next to the block in question.', array(
      '!blocks_url' => url('admin/structure/block'),
    )),
  );
}