예제 #1
0
파일: Page.php 프로젝트: Trideon/gigolo
 /**
  * A template file to be displayed
  * @param string $templateName
  */
 protected function Display($templateName)
 {
     if (!$this->InMaintenanceMode()) {
         $this->smarty->display($templateName);
     } else {
         $this->smarty->display('maintenance.tpl');
     }
 }
예제 #2
0
파일: Page.php 프로젝트: hugutux/booked
 /**
  * A template file to be displayed
  * @param string $templateName
  */
 protected function Display($templateName)
 {
     $this->smarty->display($templateName);
 }