Example #1
0
 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();
 }