You are here

public function AuthcacheP13nTestEchoSetting::get in Authenticated User Page Caching (Authcache) 7.2

Return a setting.

Parameters

any $params: Params set by the client.

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

Return value

string Return an associative array.

Overrides AuthcacheP13nSettingInterface::get

File

modules/authcache_p13n/tests/authcache_p13n.stub.inc, line 497
Stub classes for testing.

Class

AuthcacheP13nTestEchoSetting
Stub class for setting renderer

Code

public function get($params, $context) {
  return array(
    'params' => $params,
  );
}