You are here

class AuthcacheMenuLocalActionsFragment in Authenticated User Page Caching (Authcache) 7.2

Render local actions.

Hierarchy

Expanded class hierarchy of AuthcacheMenuLocalActionsFragment

See also

menu.inc

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

File

modules/authcache_menu/includes/AuthcacheMenuLocalActionsFragment.inc, line 12
Defines authcache fragment for rendering local actions.

View source
class AuthcacheMenuLocalActionsFragment implements AuthcacheP13nFragmentInterface {

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

}

Members