You are here

function authcache_views_authcache_p13n_admin_groups in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_p13n_admin_groups().

File

modules/authcache_views/authcache_views.module, line 60
Authcache support for views module.

Code

function authcache_views_authcache_p13n_admin_groups() {
  if (module_exists('views_ui')) {
    return array(
      t('Views') => t('To add a view to the list of personalized views, visit the <a href="!views_url">views administration page</a> and click "configure" next to the view in question.', array(
        '!views_url' => url('admin/structure/views'),
      )),
    );
  }
}