Exemplo n.º 1
0
 function Render()
 {
     $this->RunController();
     $tpl = new XTemplate($this->mainTemplate);
     $tpl->assign_file("HEADER_TEMPLATE", $this->headerTemplate);
     $tpl->assign_file("FOOTER_TEMPLATE", $this->footerTemplate);
     $tpl->assign_array("MAIN.HEADER", $this->HeaderCode());
     $tpl->assign_array("MAIN.FOOTER", $this->FooterCode());
     if (count($this->data) > 0) {
         $tpl->assign_array("MAIN", $this->data);
     } else {
         $tpl->assign("MAIN_HEADER", $this->pageHeader);
         $tpl->parse("MAIN");
     }
     header("Content-Type: text/html; charset=utf-8");
     $tpl->out("MAIN");
     $this->Close();
 }