You are here

class AuthcacheToolbarShortcutsFragment in Authenticated User Page Caching (Authcache) 7.2

Render shortcuts.

Hierarchy

Expanded class hierarchy of AuthcacheToolbarShortcutsFragment

See also

shortcut.module

1 string reference to 'AuthcacheToolbarShortcutsFragment'
authcache_menu_authcache_p13n_fragment in modules/authcache_menu/authcache_menu.module
Implements hook_authcache_p13n_fragment().

File

modules/authcache_menu/includes/AuthcacheToolbarShortcutsFragment.inc, line 12
Defines authcache fragment for rendering shortcuts.

View source
class AuthcacheToolbarShortcutsFragment implements AuthcacheP13nFragmentInterface {

  /**
   * Render and return local actions.
   */
  public function render($key, $subject, $context) {
    $element = shortcut_toolbar_pre_render(array());
    return render($element);
  }

}

Members