function esi_theme_callback_logic in ESI: Edge Side Includes 6.2
4 string references to 'esi_theme_callback_logic'
File
- ./
esi.theme.inc, line 57 - Theme handlers for the ESI module.
Code
function esi_theme_callback_logic() {
$args = func_get_args();
if (isset($args[1]->content) && esi_theme_is_esied($args[1]->content)) {
return $args[1]->content;
}
return call_user_func_array('theme', $args);
}