You are here

AuthcacheP13nRequestHandlerInterface.inc in Authenticated User Page Caching (Authcache) 7.2

Defines request handler interface.

File

modules/authcache_p13n/includes/AuthcacheP13nRequestHandlerInterface.inc
View source
<?php

/**
 * @file
 * Defines request handler interface.
 */

/**
 * Request handler interface.
 */
interface AuthcacheP13nRequestHandlerInterface {

  /**
   * Render and print the response according to the given parameters.
   */
  public function handle($params);

}

Interfaces

Namesort descending Description
AuthcacheP13nRequestHandlerInterface Request handler interface.