コード例 #1
0
ファイル: headerView.php プロジェクト: piiskop/pstk
<?php

require_once 'HTML/Template/IT.php';
$tpl = new \HTML_Template_IT(dirname(__FILE__) . '/../HTML');
$tpl->loadTemplatefile('header.html');
$tpl->touchBlock('header');
$tpl->parse('header');
echo $tpl->GET('header');
コード例 #2
0
ファイル: FooterView.php プロジェクト: piiskop/pstk
<?php

require_once 'HTML/Template/IT.php';
$tpl = new \HTML_Template_IT(dirname(__FILE__) . '/../../HTML');
$tpl->loadTemplatefile('footer.html');
$tpl->touchBlock('footer');
$tpl->parse('footer');
echo $tpl->GET('footer');