You are here

function esi_boot in ESI: Edge Side Includes 6.2

Same name and namespace in other branches
  1. 7.3 esi.module \esi_boot()

File

./esi.module, line 892
Adds support for ESI (Edge-Side-Include) integration, allowing blocks to be\ delivered by ESI, with support for per-block cache times.

Code

function esi_boot() {
  if ($cache = esi_get_page_cache()) {
    echo $cache;
    exit;
  }
}