Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        $this->tpl_mainpage = 'customer/edit.tpl'; 
     
    6866 
    6967        // 支払い方法種別 
    70         $this->arrPayment = SC_Helper_Payment_Ex::getIDValueList(); 
     68        $objDb = new SC_Helper_DB_Ex(); 
     69        $this->arrPayment = $objDb->sfGetIDValueList('dtb_payment', 'payment_id', 'payment_method'); 
    7170    } 
    7271 
     
    7675     * @return void 
    7776     */ 
    78     function process() 
    79     { 
     77    function process() { 
    8078        $this->action(); 
    8179        $this->sendResponse(); 
     
    8785     * @return void 
    8886     */ 
    89     function action() 
    90     { 
     87    function action() { 
    9188 
    9289        // パラメーター管理クラス 
     
    201198     * @return void 
    202199     */ 
    203     function destroy() 
    204     { 
     200    function destroy() { 
    205201        parent::destroy(); 
    206202    } 
     
    212208     * @return void 
    213209     */ 
    214     function lfInitParam(&$objFormParam) 
    215     { 
     210    function lfInitParam(&$objFormParam) { 
    216211        // 会員項目のパラメーター取得 
    217212        SC_Helper_Customer_Ex::sfCustomerEntryParam($objFormParam, true); 
     
    228223     * @return void 
    229224     */ 
    230     function lfInitSearchParam(&$objFormParam) 
    231     { 
     225    function lfInitSearchParam(&$objFormParam) { 
    232226        SC_Helper_Customer_Ex::sfSetSearchParam($objFormParam); 
    233227        // 初回受け入れ時用 
     
    241235     * @return array エラー配列 
    242236     */ 
    243     function lfCheckErrorSearchParam(&$objFormParam) 
    244     { 
     237    function lfCheckErrorSearchParam(&$objFormParam) { 
    245238        return SC_Helper_Customer_Ex::sfCheckErrorSearchParam($objFormParam); 
    246239    } 
     
    252245     * @return array エラー配列 
    253246     */ 
    254     function lfCheckError(&$objFormParam) 
    255     { 
     247    function lfCheckError(&$objFormParam) { 
    256248        $arrErr = SC_Helper_Customer_Ex::sfCustomerMypageErrorCheck($objFormParam, true); 
    257249 
     
    292284     * @return array エラー配列 
    293285     */ 
    294     function lfRegistData(&$objFormParam) 
    295     { 
     286    function lfRegistData(&$objFormParam) { 
    296287        $objQuery   =& SC_Query_Ex::getSingletonInstance(); 
    297288        // 登録用データ取得 
     
    322313     * @return array( integer 全体件数, mixed 会員データ一覧配列, mixed SC_PageNaviオブジェクト) 
    323314     */ 
    324     function lfPurchaseHistory($customer_id, $pageno = 0) 
    325     { 
     315    function lfPurchaseHistory($customer_id, $pageno = 0) { 
    326316        if (SC_Utils_Ex::isBlank($customer_id)) { 
    327317            return array('0', array(), NULL); 
Note: See TracChangeset for help on using the changeset viewer.