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_Multiple.php

    r22546 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Shopping_Multiple extends LC_Page_Ex { 
     34class LC_Page_Shopping_Multiple 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 = 'お届け先の複数指定'; 
     
    5355     * @return void 
    5456     */ 
    55     function process() { 
     57    function process() 
     58    { 
    5659        parent::process(); 
    5760        $this->action(); 
     
    6467     * @return void 
    6568     */ 
    66     function action() { 
     69    function action() 
     70    { 
    6771        $objSiteSess = new SC_SiteSession_Ex(); 
    6872        $objCartSess = new SC_CartSession_Ex(); 
     
    121125     * @return void 
    122126     */ 
    123     function destroy() { 
     127    function destroy() 
     128    { 
    124129        parent::destroy(); 
    125130    } 
     
    131136     * @return void 
    132137     */ 
    133     function lfInitParam(&$objFormParam) { 
     138    function lfInitParam(&$objFormParam) 
     139    { 
    134140        $objFormParam->addParam('商品規格ID', 'product_class_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    135141        $objFormParam->addParam('商品名', 'name'); 
     
    154160     * @return void 
    155161     */ 
    156     function setParamToSplitItems(&$objFormParam, &$objCartSess) { 
     162    function setParamToSplitItems(&$objFormParam, &$objCartSess) 
     163    { 
    157164        $cartLists =& $objCartSess->getCartList($objCartSess->getKey()); 
    158165        $arrItems = array(); 
     
    185192     * @return array 配送住所のプルダウン用連想配列 
    186193     */ 
    187     function getDelivAddrs(&$objCustomer, &$objPurchase, &$objAddress, $uniqid) { 
     194    function getDelivAddrs(&$objCustomer, &$objPurchase, &$objAddress, $uniqid) 
     195    { 
    188196        $masterData = new SC_DB_MasterData_Ex(); 
    189197        $arrPref = $masterData->getMasterData('mtb_pref'); 
     
    236244     * @return array エラー情報の配列 
    237245     */ 
    238     function lfCheckError(&$objFormParam) { 
     246    function lfCheckError(&$objFormParam) 
     247    { 
    239248        $objCartSess = new SC_CartSession_Ex(); 
    240249 
     
    298307     * @return void 
    299308     */ 
    300     function saveMultipleShippings($uniqid, &$objFormParam, &$objCustomer, &$objPurchase, &$objCartSess, &$objAddress) { 
     309    function saveMultipleShippings($uniqid, &$objFormParam, &$objCustomer, &$objPurchase, &$objCartSess, &$objAddress) 
     310    { 
    301311        $arrParams = $objFormParam->getSwapArray(); 
    302312 
Note: See TracChangeset for help on using the changeset viewer.