Ignore:
Timestamp:
2011/03/07 15:23:39 (15 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

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

    r20534 r20538  
    5151 
    5252        // 生年月日選択肢の取得 
    53         $objDate            = new SC_Date_Ex(BIRTH_YEAR, date("Y",strtotime("now"))); 
     53        $objDate            = new SC_Date_Ex(BIRTH_YEAR, date('Y',strtotime('now'))); 
    5454        $this->arrYear      = $objDate->getYear('', START_BIRTH_YEAR, ''); 
    5555        $this->arrMonth     = $objDate->getMonth(true); 
     
    8686 
    8787        // mobile用(戻るボタンでの遷移かどうかを判定) 
    88         if (!empty($this->arrForm["return"])) { 
    89             $_POST["mode"] = "return"; 
     88        if (!empty($this->arrForm['return'])) { 
     89            $_POST['mode'] = 'return'; 
    9090        } 
    9191 
     
    118118                    // ログイン状態にする 
    119119                    $objCustomer = new SC_Customer_Ex(); 
    120                     $objCustomer->setLogin($this->arrForm["email"]); 
     120                    $objCustomer->setLogin($this->arrForm['email']); 
    121121                } 
    122122 
    123123                // 完了ページに移動させる。 
    124                 SC_Response_Ex::sendRedirect('complete.php', array("ci" => SC_Helper_Customer_Ex::sfGetCustomerId($uniqid))); 
     124                SC_Response_Ex::sendRedirect('complete.php', array('ci' => SC_Helper_Customer_Ex::sfGetCustomerId($uniqid))); 
    125125            } 
    126126            break; 
     
    172172 
    173173        // 仮会員 1 本会員 2 
    174         $arrResults["status"]   = (CUSTOMER_CONFIRM_MAIL == true) ? "1" : "2"; 
     174        $arrResults['status']   = (CUSTOMER_CONFIRM_MAIL == true) ? "1" : "2"; 
    175175 
    176176        /* 
     
    182182        // 入会時ポイント 
    183183        $CONF = SC_Helper_DB_Ex::sfGetBasisData(); 
    184         $arrResults["point"] = $CONF["welcome_point"]; 
     184        $arrResults['point'] = $CONF["welcome_point"]; 
    185185 
    186186        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
     
    204204 
    205205        $objMailText    = new SC_SiteView_Ex(); 
    206         $objMailText->assign("CONF", $CONF); 
     206        $objMailText->assign('CONF', $CONF); 
    207207        $objMailText->assign("name01", $arrForm['name01']); 
    208208        $objMailText->assign("name02", $arrForm['name02']); 
    209         $objMailText->assign("uniqid", $uniqid); 
     209        $objMailText->assign('uniqid', $uniqid); 
    210210        $objMailText->assignobj($this); 
    211211 
     
    234234        ); 
    235235        // 宛先の設定 
    236         $objMail->setTo($arrForm["email"], 
     236        $objMail->setTo($arrForm['email'], 
    237237                        $arrForm["name01"] . $arrForm["name02"] ." 様"); 
    238238 
Note: See TracChangeset for help on using the changeset viewer.