Changeset 19371
- Timestamp:
- 2010/11/07 02:14:19 (12 years ago)
- Location:
- branches/camp/camp-2_5-E/data
- Files:
-
- 2 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/data/class/SC_Display.php
r19193 r19371 45 45 * @param $page LC_Page 46 46 */ 47 function hoge(LC_Page $page ){47 function hoge(LC_Page $page, $is_admin = false){ 48 48 if(!$this->deviceSeted || !is_null($this->view)){ 49 $device = $this->detectDevice();49 $device = ($is_admin) ? 8 : $this->detectDevice(); 50 50 $this->setDevice($device); 51 51 } -
branches/camp/camp-2_5-E/data/class/pages/LC_Page.php
r19341 r19371 115 115 116 116 /** 117 * Page の アクション.117 * Page のレスポンス送信. 118 118 * 119 119 * @return void -
branches/camp/camp-2_5-E/data/class/pages/admin/LC_Page_Admin.php
r18701 r19371 44 44 function init() { 45 45 parent::init(); 46 $this->tpl_mainpage = 'login.tpl';47 46 } 48 47 … … 53 52 */ 54 53 function process() { 55 $objView = new SC_AdminView(); 56 $objView->assignobj($this); 57 $objView->display(LOGIN_FRAME); 54 $this->action(); 55 $this->sendResponse(); 58 56 } 57 58 /** 59 * Page のレスポンス送信. 60 * 61 * @return void 62 */ 63 function sendResponse() { 64 $this->objDisplay->hoge($this, true); 65 $this->objDisplay->response->response(); 66 } 67 59 68 60 69 /**
Note: See TracChangeset
for help on using the changeset viewer.