Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping.php

    r22531 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Shopping extends LC_Page_Ex { 
     34class LC_Page_Shopping extends LC_Page_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_title = 'ログイン'; 
     
    6466     * @return void 
    6567     */ 
    66     function process() { 
     68    function process() 
     69    { 
    6770        parent::process(); 
    6871        $this->action(); 
     
    7578     * @return void 
    7679     */ 
    77     function action() { 
     80    function action() 
     81    { 
    7882 
    7983        $objSiteSess = new SC_SiteSession_Ex(); 
     
    272276     * @return void 
    273277     */ 
    274     function destroy() { 
     278    function destroy() 
     279    { 
    275280        parent::destroy(); 
    276281    } 
     
    282287     * @return void 
    283288     */ 
    284     function lfInitParam(&$objFormParam) { 
     289    function lfInitParam(&$objFormParam) 
     290    { 
    285291 
    286292        $objFormParam->addParam('お名前(姓)', 'order_name01', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'SPTAB_CHECK', 'MAX_LENGTH_CHECK')); 
     
    327333     * @return void 
    328334     */ 
    329     function lfInitLoginFormParam(&$objFormParam) { 
     335    function lfInitLoginFormParam(&$objFormParam) 
     336    { 
    330337        $objFormParam->addParam('記憶する', 'login_memory', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    331338        $objFormParam->addParam('メールアドレス', 'login_email', STEXT_LEN, 'a', array('EXIST_CHECK', 'MAX_LENGTH_CHECK')); 
     
    347354     * @return string 遷移先のパス 
    348355     */ 
    349     function getNextLocation($product_type_id, $uniqid, &$objCustomer, &$objPurchase, &$objSiteSess) { 
     356    function getNextLocation($product_type_id, $uniqid, &$objCustomer, &$objPurchase, &$objSiteSess) 
     357    { 
    350358        switch ($product_type_id) { 
    351359            case PRODUCT_TYPE_DOWNLOAD: 
     
    371379     * @param boolean $isMultiple 複数配送の場合 true 
    372380     */ 
    373     function lfRegistData($uniqid, &$objPurchase, &$objCustomer, &$objFormParam, $isMultiple = false) { 
     381    function lfRegistData($uniqid, &$objPurchase, &$objCustomer, &$objFormParam, $isMultiple = false) 
     382    { 
    374383        $arrParams = $objFormParam->getHashArray(); 
    375384 
     
    414423     * @return array エラー情報の配 
    415424     */ 
    416     function lfCheckError(&$objFormParam) { 
     425    function lfCheckError(&$objFormParam) 
     426    { 
    417427        // 入力値の変換 
    418428        $objFormParam->convParam(); 
     
    463473     * @return void 
    464474     */ 
    465     function setFormParams(&$objFormParam, &$objPurchase, $uniqid) { 
     475    function setFormParams(&$objFormParam, &$objPurchase, $uniqid) 
     476    { 
    466477        $arrOrderTemp = $objPurchase->getOrderTemp($uniqid); 
    467478        if (SC_Utils_Ex::isBlank($arrOrderTemp)) { 
     
    501512     * @see LC_PageError 
    502513     */ 
    503     function lfGetErrorMessage($error) { 
     514    function lfGetErrorMessage($error) 
     515    { 
    504516        switch ($error) { 
    505517            case TEMP_LOGIN_ERROR: 
Note: See TracChangeset for help on using the changeset viewer.