Changeset 15395


Ignore:
Timestamp:
2007/08/28 21:22:32 (17 years ago)
Author:
nanasess
Message:

PHP5 対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/entry/LC_Page_Entry.php

    r15175 r15395  
    3131        $this->tpl_mainpage = 'entry/index.tpl'; 
    3232        $this->tpl_title .= '会員登録(入力ページ)'; 
     33        $this->year = ""; 
    3334    } 
    3435 
     
    3940     */ 
    4041    function process() { 
    41         $CONF = SC_Utils_Ex::sf_getBasisData();                 // 店舗基本情報 
     42 
    4243        $objConn = new SC_DbConn(); 
    4344        $objView = new SC_SiteView(); 
    4445        $objCustomer = new SC_Customer(); 
    4546        $objCampaignSess = new SC_CampaignSession(); 
     47        $objDb = new SC_Helper_DB_Ex(); 
     48        $CONF = $objDb->sf_getBasisData(); 
    4649        $objDate = new SC_Date(START_BIRTH_YEAR, date("Y",strtotime("now"))); 
    4750        $masterData = new SC_DB_MasterData_Ex(); 
     
    6568        // レイアウトデザインを取得 
    6669        $layout = new SC_Helper_PageLayout_Ex(); 
    67         $this = $layout->sfGetPageLayout($this, false, DEF_LAYOUT); 
     70        $objPage = $layout->sfGetPageLayout($this, false, DEF_LAYOUT); 
    6871 
    6972        //---- 登録用カラム配列 
     
    195198 
    196199                    // 完了ページに移動させる。 
    197                     $this->sendRedirect($this->getLocation("./complete.php", array(), true)); 
     200                    $this->sendRedirect($this->getLocation("./complete.php")); 
    198201                    exit; 
    199202                } 
     
    208211 
    209212        //---- ページ表示 
    210         $objView->assignobj($this); 
     213        $objView->assignobj($objPage); 
    211214        // フレームを選択(キャンペーンページから遷移なら変更) 
    212215        $objCampaignSess->pageView($objView); 
Note: See TracChangeset for help on using the changeset viewer.