예제 #1
0
파일: AdminPage.php 프로젝트: zetas/nZEDb
 public function render()
 {
     $this->smarty->assign('page', $this);
     $admin_menu = $this->smarty->fetch('adminmenu.tpl');
     $this->smarty->assign('admin_menu', $admin_menu);
     $this->page_template = 'baseadminpage.tpl';
     parent::render();
 }
예제 #2
0
파일: Page.php 프로젝트: Jay204/nZEDb
 public function render()
 {
     $this->smarty->assign('page', $this);
     $this->page_template = "basepage.tpl";
     parent::render();
 }