コード例 #1
0
 public function beforeRender()
 {
     $this->set('pagetitle', 'モニター管理');
     $this->set('pagecomment', 'モニター情報の登録・編集を行います');
     $this->set('tinymce', 1);
     $this->set('Gender', $this->Genre->getGender());
     $this->set('Pref', $this->Genre->getPref());
     $this->set('Job', $this->Genre->getJob());
     $this->set('Skin', $this->Genre->getSkin());
     //        $this->set('Age',$this->Genre->getAgeRange());
     //        var_dump($this->Genre->getYearRange());
     $this->set('Year', $this->Genre->getYearRange());
     $this->set('Month', $this->Genre->getMonthRange());
     $this->set('Day', $this->Genre->getDayRange());
     parent::beforeRender();
 }
コード例 #2
0
 public function beforeRender()
 {
     $this->set('pagetitle', 'レビュー管理');
     $this->set('pagecomment', '商品の登録・編集を行います');
     parent::beforeRender();
 }
コード例 #3
0
 public function beforeRender()
 {
     $this->set('pagetitle', 'マスタ項目');
     $this->set('pagecomment', '登録・編集を行います');
     parent::beforeRender();
 }
コード例 #4
0
 public function beforeRender()
 {
     parent::beforeRender();
     $this->set('pagetitle', 'マスタ管理');
     $this->set('pagecomment', 'マスタ情報の・編集を行います');
 }
コード例 #5
0
 public function beforeRender()
 {
     $this->set('pagetitle', 'お役立ち美容通信管理');
     $this->set('pagecomment', 'お役立ち美容通信の登録・編集を行います');
     parent::beforeRender();
 }
コード例 #6
0
 public function beforeRender()
 {
     $this->set('pagetitle', 'BeautyPostコラム');
     $this->set('pagecomment', 'BeautyPostコラムの登録・編集を行います');
     parent::beforeRender();
 }
コード例 #7
0
 public function beforeRender()
 {
     parent::beforeRender();
     $this->data["logout_path"] = $this->getActionUrl("logout");
     $selectedTableNames = $this->getSelectedTableNames();
     $this->data["nav"] = array("database" => array("path" => $this->getActionUrl("database"), "disabled" => false, "valid" => $this->db()->isConnectable()), "tables" => array("path" => $this->getActionUrl("tables"), "disabled" => !$this->db()->isConnectable(), "count" => count($this->getSelectedTableNames())), "change" => array("path" => $this->getActionUrl("changeSetup"), "disabled" => empty($selectedTableNames)));
 }