Ignore:
Timestamp:
2012/03/06 22:37:30 (12 years ago)
Author:
Seasoft
Message:

#1613 (typo修正・ソース整形・ソースコメントの改善)

Location:
branches/version-2_12-dev/data/class/pages/products
Files:
6 edited

Legend:

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

    r21594 r21596  
    6565        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    6666        $objPlugin->doAction('lc_page_products_categorylist_action_start', array($this)); 
    67          
     67 
    6868        // カテゴリIDの正当性チェック 
    6969        $this->lfCheckCategoryId(); 
     
    7575        $this->arrChildren = $arrCategoryData['arrChildren']; 
    7676        $this->tpl_subtitle = $this->arrCategory['category_name']; 
    77          
     77 
    7878        // フックポイント. 
    7979        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
  • branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Detail.php

    r21594 r21596  
    9595        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    9696        $objPlugin->doAction('lc_page_products_detail_action_start', array($this)); 
    97          
     97 
    9898        // 会員クラス 
    9999        $objCustomer = new SC_Customer_Ex(); 
     
    161161 
    162162                    $objCartSess->addProduct($product_class_id, $this->objFormParam->getValue('quantity')); 
    163                      
     163 
    164164                    // フックポイント. 
    165165                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     
    179179                            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    180180                            $objPlugin->doAction('lc_page_products_detail_action_add_favorite', array($this)); 
    181                              
     181 
    182182                            exit; 
    183183                        } 
     
    195195                            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    196196                            $objPlugin->doAction('lc_page_products_detail_action_add_favorite_sphone', array($this)); 
    197                              
     197 
    198198                            print 'true'; 
    199199                            exit; 
  • branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_List.php

    r21594 r21596  
    9898        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    9999        $objPlugin->doAction('lc_page_products_list_action_start', array($this)); 
    100          
     100 
    101101        $objProduct = new SC_Product_Ex(); 
    102102 
     
    143143                $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    144144                $objPlugin->doAction('lc_page_products_list_action_json', array($this)); 
    145                  
     145 
    146146                echo SC_Utils_Ex::jsonEncode($this->arrProducts); 
    147147                exit; 
     
    197197                    if (empty($arrErr)) { 
    198198                        $this->lfAddCart($this->arrForm, $_SERVER['HTTP_REFERER']); 
    199                          
     199 
    200200                        // フックポイント. 
    201201                        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    202202                        $objPlugin->doAction('lc_page_products_list_action_cart', array($this)); 
    203                          
     203 
    204204                        SC_Response_Ex::sendRedirect(CART_URLPATH); 
    205205                        exit; 
     
    222222 
    223223        $this->tpl_rnd          = SC_Utils_Ex::sfGetRandomString(3); 
    224          
     224 
    225225        // フックポイント. 
    226226        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
  • branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Review.php

    r21594 r21596  
    8282        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    8383        $objPlugin->doAction('lc_page_products_review_action_start', array($this)); 
    84          
     84 
    8585        $objFormParam = new SC_FormParam_Ex(); 
    8686        $this->lfInitParam($objFormParam); 
     
    108108                    //登録実行 
    109109                    $this->lfRegistRecommendData($objFormParam); 
    110                      
     110 
    111111                    // フックポイント. 
    112112                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
     
    134134 
    135135        $this->setTemplate($this->tpl_mainpage); 
    136          
     136 
    137137        // フックポイント. 
    138138        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
  • branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_ReviewComplete.php

    r21594 r21596  
    6666        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    6767        $objPlugin->doAction('lc_page_products_reviewcomplete_action_start', array($this)); 
    68          
     68 
    6969        $this->setTemplate('products/review_complete.tpl'); 
    70          
     70 
    7171        // フックポイント. 
    7272        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
  • branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Search.php

    r21594 r21596  
    6666        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    6767        $objPlugin->doAction('lc_page_products_search_action_start', array($this)); 
    68          
     68 
    6969        // フックポイント. 
    7070        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
Note: See TracChangeset for help on using the changeset viewer.