Changeset 19811 for branches/version-2_5-dev/data/class/pages/guide
- Timestamp:
- 2011/01/02 17:15:06 (16 years ago)
- Location:
- branches/version-2_5-dev/data/class/pages/guide
- Files:
-
- 1 deleted
- 6 edited
-
LC_Page_Guide.php (modified) (1 diff)
-
LC_Page_Guide_About.php (modified) (1 diff)
-
LC_Page_Guide_Charge.php (modified) (1 diff)
-
LC_Page_Guide_Kiyaku.php (modified) (2 diffs)
-
LC_Page_Guide_Order.php (deleted)
-
LC_Page_Guide_Privacy.php (modified) (1 diff)
-
LC_Page_Guide_Usage.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/pages/guide/LC_Page_Guide.php
r19805 r19811 52 52 */ 53 53 function process() { 54 parent::process(); 55 $this->action(); 56 $this->sendResponse(); 54 57 } 55 58 56 59 /** 57 * モバイルページを初期化する.60 * Page のアクション. 58 61 * 59 62 * @return void 60 63 */ 61 function mobileInit() { 62 $this->tpl_mainpage = 'guide/index.tpl'; // メインテンプレート 63 $this->tpl_title = 'ご利用ガイド'; 64 } 65 66 /** 67 * Page のプロセス(モバイル). 68 * 69 * @return void 70 */ 71 function mobileProcess() { 72 $objView = new SC_MobileView(); 73 $objView->assignobj($this); 74 $objView->display(SITE_FRAME); 75 } 76 64 function action() {} 65 77 66 /** 78 67 * デストラクタ. -
branches/version-2_5-dev/data/class/pages/guide/LC_Page_Guide_About.php
r19805 r19811 52 52 */ 53 53 function process() { 54 parent::process(); 55 $this->action(); 56 $this->sendResponse(); 54 57 } 55 58 56 59 /** 57 * モバイルページを初期化する.60 * Page のアクション. 58 61 * 59 62 * @return void 60 63 */ 61 function mobileInit() {62 $ this->tpl_mainpage = 'guide/about.tpl'; // メインテンプレート63 $this-> tpl_title = '運営会社紹介';64 function action() { 65 $objDb = new SC_Helper_DB_Ex(); 66 $this->arrSiteInfo = $objDb->sfGetBasisData(); 64 67 } 65 66 /** 67 * Page のプロセス(モバイル). 68 * 69 * @return void 70 */ 71 function mobileProcess() { 72 $objView = new SC_MobileView(); 73 $objView->assignobj($this); 74 $objView->display(SITE_FRAME); 75 } 76 68 77 69 /** 78 70 * デストラクタ. -
branches/version-2_5-dev/data/class/pages/guide/LC_Page_Guide_Charge.php
r19805 r19811 52 52 */ 53 53 function process() { 54 parent::process(); 55 $this->action(); 56 $this->sendResponse(); 54 57 } 55 58 56 59 /** 57 * モバイルページを初期化する.60 * Page のアクション. 58 61 * 59 62 * @return void 60 63 */ 61 function mobileInit() { 62 $this->tpl_mainpage = 'guide/charge.tpl'; // メインテンプレート 63 $this->tpl_title = '通信料について'; 64 } 65 66 /** 67 * Page のプロセス(モバイル). 68 * 69 * @return void 70 */ 71 function mobileProcess() { 72 $objView = new SC_MobileView(); 73 $objView->assignobj($this); 74 $objView->display(SITE_FRAME); 75 } 64 function action() {} 76 65 77 66 /** -
branches/version-2_5-dev/data/class/pages/guide/LC_Page_Guide_Kiyaku.php
r19805 r19811 52 52 */ 53 53 function process() { 54 parent::process(); 55 $this->action(); 56 $this->sendResponse(); 54 57 } 55 58 56 59 /** 57 * モバイルページを初期化する.60 * Page のアクション. 58 61 * 59 62 * @return void 60 63 */ 61 function mobileInit() { 62 $this->tpl_mainpage = 'guide/kiyaku.tpl'; // メインテンプレート 63 $this->tpl_title = 'ご利用規約'; 64 } 65 66 /** 67 * Page のプロセス(モバイル). 68 * 69 * @return void 70 */ 71 function mobileProcess() { 72 // 利用規約を取得する。 73 $this->lfGetKiyaku(intval(@$_GET['page']), $this); 74 75 $objView = new SC_MobileView(); 76 $objView->assignobj($this); 77 $objView->display(SITE_FRAME); 64 function action() { 65 $this->lfGetKiyaku(intval($_GET['page']), $this); 78 66 } 79 67 … … 112 100 } 113 101 114 $objPage->tpl_kiyaku_title = @$arrRet[$index]['kiyaku_title'];115 $objPage->tpl_kiyaku_text = @$arrRet[$index]['kiyaku_text'];102 $objPage->tpl_kiyaku_title = $arrRet[$index]['kiyaku_title']; 103 $objPage->tpl_kiyaku_text = $arrRet[$index]['kiyaku_text']; 116 104 $objPage->tpl_kiyaku_index = $index; 117 105 $objPage->tpl_kiyaku_last_index = $last; -
branches/version-2_5-dev/data/class/pages/guide/LC_Page_Guide_Privacy.php
r19805 r19811 52 52 */ 53 53 function process() { 54 parent::process(); 55 $this->action(); 56 $this->sendResponse(); 54 57 } 55 58 56 59 /** 57 * モバイルページを初期化する.60 * Page のアクション. 58 61 * 59 62 * @return void 60 63 */ 61 function mobileInit() { 62 $this->tpl_mainpage = 'guide/privacy.tpl'; // メインテンプレート 63 $this->tpl_title = 'プライバシーポリシー'; 64 } 65 66 /** 67 * Page のプロセス(モバイル). 68 * 69 * @return void 70 */ 71 function mobileProcess() { 72 $objView = new SC_MobileView(); 73 $objView->assignobj($this); 74 $objView->display(SITE_FRAME); 75 } 64 function action() {} 76 65 77 66 /** -
branches/version-2_5-dev/data/class/pages/guide/LC_Page_Guide_Usage.php
r19805 r19811 52 52 */ 53 53 function process() { 54 parent::process(); 55 $this->action(); 56 $this->sendResponse(); 54 57 } 55 58 56 59 /** 57 * モバイルページを初期化する.60 * Page のアクション. 58 61 * 59 62 * @return void 60 63 */ 61 function mobileInit() { 62 $this->tpl_mainpage = 'guide/usage.tpl'; // メインテンプレート 63 $this->tpl_title = 'ご利用方法'; 64 } 65 66 /** 67 * Page のプロセス(モバイル). 68 * 69 * @return void 70 */ 71 function mobileProcess() { 72 73 switch (@$_GET['page']) { 74 case '1': 75 case '2': 76 case '3': 77 case '4': 78 $this->tpl_mainpage = 'guide/usage' . $_GET['page'] . '.tpl'; 79 break; 80 } 81 82 $objView = new SC_MobileView(); 83 $objView->assignobj($this); 84 $objView->display(SITE_FRAME); 85 } 64 function action() {} 86 65 87 66 /**
Note: See TracChangeset
for help on using the changeset viewer.
