Changeset 21951 for branches/version-2_12-dev/data/class/pages
- Timestamp:
- 2012/07/02 21:04:24 (14 years ago)
- Location:
- branches/version-2_12-dev/data/class/pages
- Files:
-
- 8 edited
-
mypage/LC_Page_Mypage.php (modified) (1 diff)
-
shopping/LC_Page_Shopping.php (modified) (1 diff)
-
shopping/LC_Page_Shopping_Confirm.php (modified) (1 diff)
-
shopping/LC_Page_Shopping_Deliv.php (modified) (1 diff)
-
shopping/LC_Page_Shopping_Multiple.php (modified) (1 diff)
-
shopping/LC_Page_Shopping_Payment.php (modified) (1 diff)
-
upgrade/LC_Page_Upgrade_Base.php (modified) (1 diff)
-
upgrade/helper/LC_Upgrade_Helper_Json.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage.php
r21942 r21951 55 55 $this->tpl_subtitle = '購入履歴一覧'; 56 56 } 57 $masterData = new SC_DB_MasterData ();57 $masterData = new SC_DB_MasterData_Ex(); 58 58 $this->arrCustomerOrderStatus = $masterData->getMasterData('mtb_customer_order_status'); 59 59 -
branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping.php
r21867 r21951 45 45 parent::init(); 46 46 $this->tpl_title = 'ログイン'; 47 $masterData = new SC_DB_MasterData ();47 $masterData = new SC_DB_MasterData_Ex(); 48 48 $this->arrPref = $masterData->getMasterData('mtb_pref'); 49 49 $this->arrSex = $masterData->getMasterData('mtb_sex'); -
branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php
r21867 r21951 45 45 parent::init(); 46 46 $this->tpl_title = 'ご入力内容のご確認'; 47 $masterData = new SC_DB_MasterData ();47 $masterData = new SC_DB_MasterData_Ex(); 48 48 $this->arrPref = $masterData->getMasterData('mtb_pref'); 49 49 $this->arrSex = $masterData->getMasterData('mtb_sex'); -
branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Deliv.php
r21867 r21951 44 44 function init() { 45 45 parent::init(); 46 $masterData = new SC_DB_MasterData ();46 $masterData = new SC_DB_MasterData_Ex(); 47 47 $this->arrPref = $masterData->getMasterData('mtb_pref'); 48 48 $this->tpl_title = 'お届け先の指定'; -
branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php
r21935 r21951 188 188 */ 189 189 function getDelivAddrs(&$objCustomer, &$objPurchase, $uniqid) { 190 $masterData = new SC_DB_MasterData ();190 $masterData = new SC_DB_MasterData_Ex(); 191 191 $arrPref = $masterData->getMasterData('mtb_pref'); 192 192 -
branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php
r21935 r21951 54 54 $this->tpl_onload = 'fnCheckInputPoint();'; 55 55 $this->tpl_title = 'お支払方法・お届け時間等の指定'; 56 $masterData = new SC_DB_MasterData ();56 $masterData = new SC_DB_MasterData_Ex(); 57 57 $this->arrPref = $masterData->getMasterData('mtb_pref'); 58 58 } -
branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php
r21750 r21951 15 15 function isValidIP() { 16 16 $objLog = new LC_Upgrade_Helper_Log; 17 $masterData = new SC_DB_MasterData ();17 $masterData = new SC_DB_MasterData_Ex(); 18 18 $arrOstoreIPs = $masterData->getMasterData('mtb_ownersstore_ips'); 19 19 -
branches/version-2_12-dev/data/class/pages/upgrade/helper/LC_Upgrade_Helper_Json.php
r21767 r21951 44 44 */ 45 45 function setError($errCode) { 46 $masterData = new SC_DB_MasterData ();46 $masterData = new SC_DB_MasterData_Ex(); 47 47 $arrOStoreErrMsg = $masterData->getMasterData('mtb_ownersstore_err'); 48 48
Note: See TracChangeset
for help on using the changeset viewer.
