本文整理汇总了PHP中Tpl::draw方法的典型用法代码示例。如果您正苦于以下问题:PHP Tpl::draw方法的具体用法?PHP Tpl::draw怎么用?PHP Tpl::draw使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tpl
的用法示例。
在下文中一共展示了Tpl::draw方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getContent
/**
* Outputs the content by finding the correct template
* and view file, if needed.
*/
public function getContent()
{
$tplDir = $this->isView ? $this->view->tpl : Config::$template;
$config = array('base_url' => null, 'tpl_dir' => array(APP . 'template/' . $tplDir . '/'), 'cache_dir' => APP . 'tmp/', 'debug' => true, 'php_enabled' => true, 'tpl_ext' => 'php');
Tpl::configure($config);
$tpl = new Tpl();
$tpl->assign('isView', $this->isView);
$tpl->assign('title', Config::$data->title);
if ($this->isView) {
$vars = $this->view->getVars();
if (!empty($vars)) {
foreach ($vars as $key => $value) {
$tpl->assign($key, $value);
}
}
$sep = DIRECTORY_SEPARATOR;
$view = '..' . $sep . '..' . $sep . APP . 'view/' . $this->view->path;
} else {
$view = $this->view;
if ($this->isJson === true) {
echo $view;
exit;
}
}
try {
File::get(APP . 'template/' . $tplDir . '/template.php');
if (class_exists('Template\\Model\\Template')) {
$tpl_class = new Template\Model\Template();
$tpl->assign('template', $tpl_class);
}
} catch (Exception $e) {
}
$tpl->assign('view', $view);
$tpl->draw('index');
}