コード例 #1
0
ファイル: ps.php プロジェクト: stefda/decimill-web-frontend
function t($name, $info, $type = 'view')
{
    assign_var('type', $type);
    assign_var('info', $info);
    return get_view_html('/template/' . $name);
}
コード例 #2
0
function tpl_include($name, $info = NULL)
{
    if ($info !== NULL) {
        assign_var('info', $info);
    }
    echo CL_Loader::get_instance()->view('template/' . $name, FALSE);
}