You are here

interface AuthcacheP13nSettingInterface in Authenticated User Page Caching (Authcache) 7.2

Interface for personalization setting getters.

Hierarchy

Expanded class hierarchy of AuthcacheP13nSettingInterface

All classes that implement AuthcacheP13nSettingInterface

File

modules/authcache_p13n/includes/AuthcacheP13nSettingInterface.inc, line 10
Defines authcache personalized setting getter.

View source
interface AuthcacheP13nSettingInterface {

  /**
   * Return a setting.
   *
   * @param any $params
   *   Params set by the client.
   *
   * @param array $context
   *   Additional run-time per-request context (key-value pairs).
   *
   * @return string
   *   Return an associative array.
   */
  public function get($params, $context);

}

Members