You are here

public function AuthcacheP13nFragmentLoaderInterface::load in Authenticated User Page Caching (Authcache) 7.2

Load the objects designated by the given list of keys.

Parameters

array $keys: A list of strings representing the keys of the fragment(s) to load.

array $context: Additional run-time per-request context (key-value pairs).

Return value

array An associative array of key-value pairs where keys correspond to the input keys and the values to the objects loaded from the database.

Throws

AuthcacheP13nRequestNotFound

9 methods override AuthcacheP13nFragmentLoaderInterface::load()
AuthcacheBlockFragment::load in modules/authcache_block/includes/AuthcacheBlockFragment.inc
Load the objects designated by the given list of keys.
AuthcacheFieldFragment::load in modules/authcache_field/includes/AuthcacheFieldFragment.inc
Load entities specified in the field specifier.
AuthcacheFlagFlagFragment::load in modules/authcache_flag/includes/AuthcacheFlagFlagFragment.inc
Load the objects designated by the given list of keys.
AuthcacheMenuItemTitleFragment::load in modules/authcache_menu/includes/AuthcacheMenuItemTitleFragment.inc
Load requested menu items.
AuthcacheP13nTestEchoFragmentLoader::load in modules/authcache_p13n/tests/authcache_p13n.stub.inc
Load the objects designated by the given list of keys.

... See full list

File

modules/authcache_p13n/includes/AuthcacheP13nFragmentLoaderInterface.inc, line 26
Defines authcache personalized fragment object loader.

Class

AuthcacheP13nFragmentLoaderInterface
Interface for personalization fragment object loaders.

Code

public function load($keys, $context);