function authcache_menu_authcache_p13n_admin_groups in Authenticated User Page Caching (Authcache) 7.2
Implements hook_authcache_p13n_admin_groups().
File
- modules/
authcache_menu/ authcache_menu.module, line 54 - Authcache support for menu, tabs and local actions.
Code
function authcache_menu_authcache_p13n_admin_groups() {
return array(
t('Menu') => t('To add a menu item to the list of personalized menu items, visit the <a href="!menus_url">menu administration page</a>, navigate to the menu item in question and click the "edit" link.', array(
'!menus_url' => url('admin/structure/menu'),
)),
);
}