You are here

function authcache_menu_test_authcache_menu_tab_root_blacklist_alter in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_menu_tab_root_blacklist_alter().

File

modules/authcache_menu/tests/authcache_menu_test.module, line 88
Stub module for Authcache Menu test.

Code

function authcache_menu_test_authcache_menu_tab_root_blacklist_alter(&$tab_roots, $type_mask) {
  if ($alter = HookStub::record(__FUNCTION__, func_get_args())) {
    $tab_roots = $alter + $tab_roots;
  }
}