Ignore:
Timestamp:
2013/06/08 16:35:27 (11 years ago)
Author:
Seasoft
Message:

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

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

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

    r22608 r22856  
    2222 */ 
    2323 
    24 // {{{ requires 
    2524require_once CLASS_EX_REALDIR . 'page_extends/LC_Page_Ex.php'; 
    2625 
     
    3534 * @version $Id:LC_Page_Products_Detail.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3635 */ 
    37 class LC_Page_Products_Detail extends LC_Page_Ex  
     36class LC_Page_Products_Detail extends LC_Page_Ex 
    3837{ 
    39  
    4038    /** 商品ステータス */ 
    4139    var $arrSTATUS; 
     
    5957    var $mode; 
    6058 
    61     // }}} 
    62     // {{{ functions 
    6359 
    6460    /** 
     
    266262                SC_Utils_Ex::sfDispSiteError(PRODUCT_NOT_FOUND); 
    267263        } 
     264 
    268265        return $product_id; 
    269266    } 
     
    276273            $objUpFile->addFile("詳細-サブ画像$cnt", "sub_image$cnt", array('jpg'), IMAGE_SIZE); 
    277274        } 
     275 
    278276        return $objUpFile; 
    279277    } 
     
    291289    function lfMakeSelectMobile(&$objPage, $product_id,$request_classcategory_id1) 
    292290    { 
    293  
    294291        $classcat_find1 = false; 
    295292        $classcat_find2 = false; 
     
    374371    { 
    375372        $objProduct = new SC_Product_Ex(); 
     373 
    376374        return $objProduct->getProductsClassFullByProductId($product_id); 
    377375    } 
     
    405403    function lfCheckError($mode,&$objFormParam,$tpl_classcat_find1 = null ,$tpl_classcat_find2 = null) 
    406404    { 
    407  
    408405        switch ($mode) { 
    409406        case 'add_favorite_sphone': 
     
    447444        $arrWhereVal = array($id); 
    448445        $arrReview = $objQuery->select($col, $from, $where, $arrWhereVal); 
     446 
    449447        return $arrReview; 
    450448    } 
     
    468466            } 
    469467        } 
     468 
    470469        return $subImageFlag; 
    471470    } 
     
    503502    /** 
    504503     * Add product(s) into the cart. 
    505      *  
    506      * @return void  
     504     * 
     505     * @return void 
    507506     */ 
    508507    function doCart() 
     
    530529     * Add product to authenticated user's favorites. 
    531530     * 
    532      * @param type $objCustomer  
     531     * @param type $objCustomer 
    533532     * @return void 
    534533     */ 
     
    540539            if (count($this->arrErr) == 0) { 
    541540                if (!$this->lfRegistFavoriteProduct($this->objFormParam->getValue('favorite_product_id'),$objCustomer->getValue('customer_id'))) { 
    542  
    543541                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    544542                    $objPlugin->doAction('LC_Page_Products_Detail_action_add_favorite', array($this)); 
     
    553551     * Add product to authenticated user's favorites. (for Smart phone) 
    554552     * 
    555      * @param type $objCustomer  
     553     * @param type $objCustomer 
    556554     * @return void 
    557555     */ 
     
    563561            if (count($this->arrErr) == 0) { 
    564562                if ($this->lfRegistFavoriteProduct($this->objFormParam->getValue('favorite_product_id'),$objCustomer->getValue('customer_id'))) { 
    565  
    566563                    $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    567564                    $objPlugin->doAction('LC_Page_Products_Detail_action_add_favorite_sphone', array($this)); 
     
    577574 
    578575    /** 
    579      *  
    580      *  
    581      * @return void  
     576     * 
     577     * 
     578     * @return void 
    582579     */ 
    583580    function doDefault() 
     
    589586 
    590587    /** 
    591      *  
     588     * 
    592589     * @return void 
    593590     */ 
     
    607604    /** 
    608605     * 
    609      * @return type  
     606     * @return type 
    610607     */ 
    611608    function doMobileSelect2() 
     
    632629 
    633630    /** 
    634      *  
     631     * 
    635632     * @return void 
    636633     */ 
     
    676673    /** 
    677674     * 
    678      * @return void  
     675     * @return void 
    679676     */ 
    680677    function doMobileCart() 
     
    689686    /** 
    690687     * 
    691      * @return void  
     688     * @return void 
    692689     */ 
    693690    function doMobileDefault() 
Note: See TracChangeset for help on using the changeset viewer.