You are here

class AuthcacheMenuLocalTabsFragment in Authenticated User Page Caching (Authcache) 7.2

Render menu tabs

Hierarchy

Expanded class hierarchy of AuthcacheMenuLocalTabsFragment

See also

menu.inc

2 string references to 'AuthcacheMenuLocalTabsFragment'
AuthcacheP13nTestMarkup::testInfoFunctions in modules/authcache_p13n/tests/authcache_p13n.markup.test
Cover authcache_p13n_X_info().
authcache_menu_authcache_p13n_fragment in modules/authcache_menu/authcache_menu.module
Implements hook_authcache_p13n_fragment().

File

modules/authcache_menu/includes/AuthcacheMenuLocalTabsFragment.inc, line 12
Defines an authcache fragment for rendering menu tabs.

View source
class AuthcacheMenuLocalTabsFragment implements AuthcacheP13nFragmentInterface {

  /**
   * Render and return menu tabs.
   */
  public function render($key, $subject, $context) {
    $tabs = menu_local_tabs();
    return render($tabs);
  }

}

Members