protected function output()
 {
     parent::output();
     // TODO: Change the autogenerated stub
     $this->page = $this->render(TEMPLATE . 'registration', array('title' => $this->title, 'country' => $this->country, 'city' => $this->city));
     return $this->page;
 }
 protected function output()
 {
     parent::output();
     // TODO: Change the autogenerated stub
     $this->page = $this->render(TEMPLATE . 'myprofile', array('profile' => $this->profile, 'want' => $this->want));
     // TODO: Change the autogenerated stub
     return $this->page;
 }
 protected function output()
 {
     $previous = FALSE;
     if ($this->type && $this->id) {
         $previous = "/" . $this->type . "/" . $this->id;
     }
     $this->content = $this->render(VIEW . 'catalog_page', array('catalog' => $this->catalog, 'navigation' => $this->navigation, 'previous' => $previous, 'krohi' => $this->krohi));
     $this->page = parent::output();
     return $this->page;
 }
Пример #4
0
 protected function output()
 {
     $this->content = $this->render(TEMPLATE . 'content/about_content');
     $this->page = parent::output();
     //        $this->page = $this->render(TEMPLATE.'about',array(
     //            'title'=>$this->title,
     //            'header'=>$this->header,
     //            'footer'=>$this->footer,
     //            'popup'=>$this->popup,
     //            'i_user'=>$this->i_user,
     //        ));
 }
Пример #5
0
 protected function output()
 {
     $this->content = $this->render(TEMPLATE . 'content/reg_content');
     $this->page = parent::output();
     // TODO: Change the autogenerated stub
     //        $this->page = $this->render(TEMPLATE.'registration',array(
     //            'title'=>$this->title,
     //            'header'=>$this->header,
     //            'footer'=>$this->footer,
     //            'popup'=>$this->popup,
     //            'i_user'=>$this->i_user
     //        ));
 }
Пример #6
0
 function error($e)
 {
     $text = "ERROR<br><br>";
     if ($e == "fileNotFound") {
         $text .= "テンプレートファイルが見つかりません。(PC)<br><br>";
     }
     $this->tempData = array("{%text}" => $text);
     $html_temp = "{%text}";
     $html = Base::tempReplace($html_temp, $this->tempData);
     Base::output($html);
     //HTMLを出力
     exit;
 }
Пример #7
0
 protected function output()
 {
     $this->need_banner = true;
     $this->content = $this->render(TEMPLATE . 'content/main_content');
     $this->page = parent::output();
     //        $this->page = $this->render(TEMPLATE.'index',array(
     //            'title'=>$this->title,
     //            'header'=>$this->header,
     //            'footer'=>$this->footer,
     //            'popup'=>$this->popup,
     //            'i_user'=>$this->i_user,
     //        ));
 }
Пример #8
0
 protected function output()
 {
     $this->content = $this->render(TEMPLATE . 'content/catalogpremium_content', array('article' => $this->article, 'article_right' => $this->artcicle_right));
     $this->page = parent::output();
     // TODO: Change the autogenerated stub
     //        $this->page = $this->render(TEMPLATE.'catalogpremium',array(
     //            'title'=>$this->title,
     //            'header'=>$this->header,
     //            'footer'=>$this->footer,
     //            'popup'=>$this->popup,
     //            'i_user'=>$this->i_user,
     //            'article'=>$this->article,
     //            'article_right'=>$this->artcicle_right,
     //        ));
 }
 public function output()
 {
     $this->content = $this->render(VIEW . 'archive_page', array('archive' => $this->archive, 'navigation' => $this->navigation));
     $this->page = parent::output();
     return $this->page;
 }
Пример #10
0
 protected function output()
 {
     $this->content = $this->render(VIEW . 'content', array('text' => $this->text));
     $this->page = parent::output();
     return $this->page;
 }
Пример #11
0
 protected function output()
 {
     $this->content = $this->render(VIEW . 'sitemap_page', array('pages' => $this->pages, 'catalog' => $this->catalog));
     $this->page = parent::output();
     return $this->page;
 }
 protected function output()
 {
     $this->content = $this->render(VIEW . 'contacts_page', array('contacts' => $this->contacts));
     $this->page = parent::output();
     return $this->page;
 }
Пример #13
0
 protected function output()
 {
     $this->content = $this->render(VIEW . 'product_page', array('product' => $this->product, 'krohi' => $this->krohi));
     $this->page = parent::output();
     return $this->page;
 }
Пример #14
0
 protected function output()
 {
     $this->content = $this->render(VIEW . 'search_page', array('search' => $this->search, 'navigation' => $this->navigation, 'str' => $this->str));
     $this->page = parent::output();
     return $this->page;
 }
Пример #15
0
 public function dump()
 {
     self::$output = self::$output . $this->html;
     $this->_clearHtml();
 }