You are here

interface AuthcacheP13nContextProviderInterface in Authenticated User Page Caching (Authcache) 7.2

Interface for context providers.

Hierarchy

Expanded class hierarchy of AuthcacheP13nContextProviderInterface

All classes that implement AuthcacheP13nContextProviderInterface

File

modules/authcache_p13n/includes/AuthcacheP13nContextProviderInterface.inc, line 11
Defines context provider.

View source
interface AuthcacheP13nContextProviderInterface {

  /**
   * Build and return context for the current request.
   *
   * @param array $input
   *   The GET parameters in key-value form
   *
   * @return any
   *   Context value
   */
  public function get($input);

}

Members

Namesort descending Modifiers Type Description Overrides
AuthcacheP13nContextProviderInterface::get public function Build and return context for the current request. 5