Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/cart/LC_Page_Cart.php

    r23055 r23124  
    3434{ 
    3535    /** 商品規格情報の配列 */ 
    36     var $arrData; 
     36    public $arrData; 
    3737 
    3838    /** 動作モード */ 
    39     var $mode; 
     39    public $mode; 
    4040 
    4141    /** メッセージ */ 
     
    4747     * @return void 
    4848     */ 
    49     function init() 
     49    public function init() 
    5050    { 
    5151        parent::init(); 
     
    6060     * @return void 
    6161     */ 
    62     function process() 
     62    public function process() 
    6363    { 
    6464        parent::process(); 
     
    7272     * @return void 
    7373     */ 
    74     function action() 
     74    public function action() 
    7575    { 
    7676        //決済処理中ステータスのロールバック 
     
    7979        $objPurchase->checkDbMyPendignOrder(); 
    8080        $objPurchase->checkDbAllPendingOrder(); 
    81          
     81 
    8282        $objCartSess = new SC_CartSession_Ex(); 
    8383        $objSiteSess = new SC_SiteSession_Ex(); 
     
    110110        // エラーチェック 
    111111        $arrError = $objFormParam->checkError(); 
    112         if(isset($arrError) && !empty($arrError)) { 
     112        if (isset($arrError) && !empty($arrError)) { 
    113113            SC_Utils_Ex::sfDispSiteError(CART_NOT_FOUND); 
    114114            SC_Response_Ex::actionExit(); 
     
    219219     * @return object 
    220220     */ 
    221     function lfInitParam($arrRequest) 
     221    public function lfInitParam($arrRequest) 
    222222    { 
    223223        $objFormParam = new SC_FormParam_Ex(); 
     
    239239     * @return object 
    240240     */ 
    241     function lfInitParam4OpenCategoryTree($arrRequest) 
     241    public function lfInitParam4OpenCategoryTree($arrRequest) 
    242242    { 
    243243        $objFormParam = new SC_FormParam_Ex(); 
     
    261261     * @return 
    262262     */ 
    263     function lfUpdateOrderTempid($pre_uniqid,$uniqid) 
     263    public function lfUpdateOrderTempid($pre_uniqid,$uniqid) 
    264264    { 
    265265        $sqlval['order_temp_id'] = $uniqid; 
     
    279279     * @return void 
    280280     */ 
    281     function lfGetCartPrevUrl(&$session,$referer) 
     281    public function lfGetCartPrevUrl(&$session,$referer) 
    282282    { 
    283283        if (!preg_match('/cart/', $referer)) { 
     
    304304     * @return void 
    305305     */ 
    306     function lfSetCurrentCart(&$objSiteSess, &$objCartSess, $cartKey) 
     306    public function lfSetCurrentCart(&$objSiteSess, &$objCartSess, $cartKey) 
    307307    { 
    308308        // 正常に登録されたことを記録しておく 
Note: See TracChangeset for help on using the changeset viewer.