You are here

function esi_theme in ESI: Edge Side Includes 7.3

Same name and namespace in other branches
  1. 6.2 esi.module \esi_theme()

Implements hook_theme().

File

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

Code

function esi_theme() {
  return array(
    'esi_tag' => array(
      'render element' => 'element',
    ),
  );
}