You are here

function esi_ssi_tag in ESI: Edge Side Includes 7.3

Render an SSI tag.

1 string reference to 'esi_ssi_tag'
esi_esi_mode in ./esi.module
Implements hook_esi_mode().

File

./esi.module, line 514
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_ssi_tag($url) {
  return '<!--# include virtual="' . $url . '" -->';
}