function esi_theme in ESI: Edge Side Includes 6.2
Same name and namespace in other branches
- 7.3 esi.module \esi_theme()
Implementation of hook_theme().
File
- ./
esi.module, line 54 - 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_theme() {
return array(
'esi_tag' => array(
'arguments' => array(
'type' => NULL,
'data' => NULL,
),
'file' => 'esi.theme.inc',
),
);
}