本文整理匯總了PHP中HTML_TEMPLATE_IT::setTemplate方法的典型用法代碼示例。如果您正苦於以下問題:PHP HTML_TEMPLATE_IT::setTemplate方法的具體用法?PHP HTML_TEMPLATE_IT::setTemplate怎麽用?PHP HTML_TEMPLATE_IT::setTemplate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類HTML_TEMPLATE_IT
的用法示例。
在下文中一共展示了HTML_TEMPLATE_IT::setTemplate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getHtml
public function getHtml()
{
$content = new \HTML_TEMPLATE_IT();
$content->setTemplate($this->htmlTemplate);
$content->setVariable("HEADER", $this->header);
$content->setVariable("TITLE", $this->title);
$content->setVariable("STYLE_VARIATIONS", $this->style_variations);
$content->setVariable("USER_STYLES", $this->user_styles);
$content->setVariable("USER_JAVASCRIPT", $this->user_javascript);
$content->setVariable("PLUGIN_HEADER", $this->plugin_header);
$content->setVariable("USER_HEADER", $this->user_header);
$content->setVariable("TOOLBAR", $this->toolbar);
$content->setVariable("LOGO", $this->logo);
$content->setVariable("SITE_TITLE", $this->site_title);
$content->setVariable("SITE_SLOGAN", $this->site_slogan);
$content->setVariable("SIDEBAR_TITLE", $this->sidebar_title);
$content->setVariable("SIDEBAR", $this->sidebar);
$content->setVariable("PLUGIN_SIDEBAR", $this->plugin_sidebar);
$content->setVariable("BREADCRUMB", $this->breadcrumb);
$content->setVariable("CONTENT", $this->content);
$content->setVariable("FOOTER", $this->footer);
$content->setVariable("PREV_CHAPTER", $this->prev_chapter);
$content->setVariable("CHAPTER_MENU", $this->chapter_menu);
$content->setVariable("NEXT_CHAPTER", $this->next_chapter);
return $content->get();
}