You are here

function esi_esi_tag in ESI: Edge Side Includes 7.3

Render an ESI tag.

1 call to esi_esi_tag()
esi_esi_comment_tag in ./esi.module
Render a comment-wrapped ESI tag.
1 string reference to 'esi_esi_tag'
esi_esi_mode in ./esi.module
Implements hook_esi_mode().

File

./esi.module, line 500
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_esi_tag($url) {
  return '<esi:include src="' . $url . '" />';
}