You are here

interface AuthcacheP13nCoreServiceInterface in Authenticated User Page Caching (Authcache) 7.2

Interface for core service.

Hierarchy

Expanded class hierarchy of AuthcacheP13nCoreServiceInterface

All classes that implement AuthcacheP13nCoreServiceInterface

File

modules/authcache_p13n/includes/AuthcacheP13nCoreServiceInterface.inc, line 10
Defines interface for drupal core services.

View source
interface AuthcacheP13nCoreServiceInterface {

  /**
   * Sets an HTTP response header for the current page.
   *
   * @see drupal_add_http_header()
   */
  public function drupalAddHttpHeader($name, $value, $append = FALSE);

  /**
   * Ensures Drupal is bootstrapped to the specified phase.
   *
   * @see drupal_bootstrap()
   */
  public function drupalBootstrap($phase = NULL, $new_phase = TRUE);

}

Members

Namesort descending Modifiers Type Description Overrides
AuthcacheP13nCoreServiceInterface::drupalAddHttpHeader public function Sets an HTTP response header for the current page. 2
AuthcacheP13nCoreServiceInterface::drupalBootstrap public function Ensures Drupal is bootstrapped to the specified phase. 2