Ignore:
Timestamp:
2010/12/28 06:21:56 (14 years ago)
Author:
Seasoft
Message:

#829(mtb_pref を他の mtb_* と同等のテーブル定義に)

Location:
branches/version-2_5-dev/data/class/pages/mypage
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php

    r19713 r19773  
    5959        $masterData = new SC_DB_MasterData_Ex(); 
    6060        $this->arrReminder = $masterData->getMasterData("mtb_reminder"); 
    61         $this->arrPref = $masterData->getMasterData("mtb_pref", 
    62                                  array("pref_id", "pref_name", "rank")); 
     61        $this->arrPref = $masterData->getMasterData('mtb_pref'); 
    6362        $this->arrJob = $masterData->getMasterData("mtb_job"); 
    6463        $this->arrMAILMAGATYPE = $masterData->getMasterData("mtb_mail_magazine_type"); 
     
    226225        $masterData = new SC_DB_MasterData_Ex(); 
    227226        $this->arrReminder = $masterData->getMasterData("mtb_reminder"); 
    228         $this->arrPref = $masterData->getMasterData("mtb_pref", 
    229                                  array("pref_id", "pref_name", "rank")); 
     227        $this->arrPref = $masterData->getMasterData('mtb_pref'); 
    230228        $this->arrJob = $masterData->getMasterData("mtb_job"); 
    231229        $this->arrMAILMAGATYPE = $masterData->getMasterData("mtb_mail_magazine_type"); 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_Delivery.php

    r19713 r19773  
    5151        $this->tpl_mypageno = 'delivery'; 
    5252        $masterData = new SC_DB_MasterData_Ex(); 
    53         $this->arrPref= $masterData->getMasterData("mtb_pref", 
    54                             array("pref_id", "pref_name", "rank")); 
     53        $this->arrPref= $masterData->getMasterData('mtb_pref'); 
    5554        $this->tpl_column_num = 1; 
    5655        $this->httpCacheControl('nocache'); 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php

    r19670 r19773  
    4747        $this->tpl_title = "お届け先の追加・変更"; 
    4848        $masterData = new SC_DB_MasterData_Ex(); 
    49         $this->arrPref= $masterData->getMasterData("mtb_pref", 
    50                             array("pref_id", "pref_name", "rank")); 
     49        $this->arrPref= $masterData->getMasterData('mtb_pref'); 
    5150        $this->httpCacheControl('nocache'); 
    5251    } 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_History.php

    r19758 r19773  
    5454        $masterData = new SC_DB_MasterData_Ex(); 
    5555        $this->arrMAILTEMPLATE = $masterData->getMasterData("mtb_mail_template"); 
    56         $this->arrPref = $masterData->getMasterData("mtb_pref", array("pref_id", "pref_name", "rank")); 
     56        $this->arrPref = $masterData->getMasterData('mtb_pref'); 
    5757   } 
    5858 
Note: See TracChangeset for help on using the changeset viewer.