Beispiel #1
0
/**
 * Print out a built template
 */
function printt($datatree, $containers, $entry = 'main', $hsr = _ETS_SOURCE_READ, $hcr = _ETS_CACHE_READ, $hcw = _ETS_CACHE_WRITE)
{
    $ets = new _ets($containers, $hsr, $hcr, $hcw);
    echo $ets->build_all($datatree, $entry);
}
Beispiel #2
0
/**
 * Print out a built template
 */
function printt($datatree, $containers, $entry = 'main')
{
    $ets = new _ets($containers);
    echo $ets->build_all($datatree, $entry);
}