コード例 #1
0
ファイル: ets.php プロジェクト: benjohnsto/abcbooks-booktags
/**
 * 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);
}
コード例 #2
0
ファイル: ets.php プロジェクト: nickfun/newlifeblogger
/**
 * Print out a built template
 */
function printt($datatree, $containers, $entry = 'main')
{
    $ets = new _ets($containers);
    echo $ets->build_all($datatree, $entry);
}