You are here

interface AuthcacheP13nSettingValidatorInterface in Authenticated User Page Caching (Authcache) 7.2

Interface for personalization setting validators.

Hierarchy

Expanded class hierarchy of AuthcacheP13nSettingValidatorInterface

All classes that implement AuthcacheP13nSettingValidatorInterface

File

modules/authcache_p13n/includes/AuthcacheP13nSettingValidatorInterface.inc, line 10
Defines authcache personalized setting validator.

View source
interface AuthcacheP13nSettingValidatorInterface {

  /**
   * Validate the given parameters.
   *
   * Throw AuthcacheP13nRequestInvalidInput to abort a request.
   *
   * Note: At the time this method is called, the bootstrap phase is not
   * guaranteed to be greater than DRUPAL_BOOTSTRAP_SESSION. Therefore avoid
   * calling functions which will trigger hook invocations like e.g.
   * entity_load.
   *
   * @param var $params
   *   Params set by the client.
   *
   * @return array
   *   Params to be used in subsequent processing.
   */
  public function validate($params);

}

Members