當前位置: 首頁>>代碼示例>>PHP>>正文


PHP BaseController::beforeRender方法代碼示例

本文整理匯總了PHP中BaseController::beforeRender方法的典型用法代碼示例。如果您正苦於以下問題:PHP BaseController::beforeRender方法的具體用法?PHP BaseController::beforeRender怎麽用?PHP BaseController::beforeRender使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在BaseController的用法示例。


在下文中一共展示了BaseController::beforeRender方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: beforeRender

 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();
 }
開發者ID:beautypost,項目名稱:beautypostorg,代碼行數:16,代碼來源:AdminmonitorController.php

示例2: beforeRender

 public function beforeRender()
 {
     $this->set('pagetitle', 'レビュー管理');
     $this->set('pagecomment', '商品の登録・編集を行います');
     parent::beforeRender();
 }
開發者ID:beautypost,項目名稱:beautypostorg,代碼行數:6,代碼來源:AdminreviewController.php

示例3: beforeRender

 public function beforeRender()
 {
     parent::beforeRender();
     $this->set('pagetitle', 'マスタ管理');
     $this->set('pagecomment', 'マスタ情報の・編集を行います');
 }
開發者ID:beautypost,項目名稱:beautypostorg,代碼行數:6,代碼來源:AdminmasterController.php

示例4: beforeRender

 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)));
 }
開發者ID:bryan-gilbert,項目名稱:WordPress-Domain-Changer,代碼行數:7,代碼來源:controller.php


注:本文中的BaseController::beforeRender方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。