You are here

function authcache_field_authcache_p13n_admin_groups in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_p13n_admin_groups().

File

modules/authcache_field/authcache_field.module, line 49
Authcache support for fields.

Code

function authcache_field_authcache_p13n_admin_groups() {
  if (module_exists('field_ui')) {
    return array(
      t('Fields') => t('To add a field to the list of personalized fields, visit the <em>manage fields</em> tab of any fieldable entity bundle (e.g. Content type, User, Commerce product) and click on the "edit" link next to the field in question.'),
    );
  }
}