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/rss/LC_Page_Rss_Products.php

    r23057 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        $this->skip_load_page_layout = true; 
     
    5252     * @return void 
    5353     */ 
    54     function process() 
     54    public function process() 
    5555    { 
    5656        $this->action(); 
     
    6262     * @return void 
    6363     */ 
    64     function action() 
     64    public function action() 
    6565    { 
    6666        $objView = new SC_SiteView_Ex(); 
     
    120120     * lfGetProductsDetailData. 
    121121     * 
    122      * @param str $mode モード 
    123      * @param str $product_id 商品ID 
     122     * @param  str   $mode      モード 
     123     * @param  str  $product_id 商品ID 
    124124     * @return array $arrProduct 商品情報の配列を返す 
    125125     */ 
    126     function lfGetProductsDetailData($mode, $product_id) 
     126    public function lfGetProductsDetailData($mode, $product_id) 
    127127    { 
    128128        $objQuery = SC_Query_Ex::getSingletonInstance(); 
     
    177177     * @return array $arrProduct 商品情報の配列を返す 
    178178     */ 
    179     function lfGetProductsListData() 
     179    public function lfGetProductsListData() 
    180180    { 
    181181        $objQuery = SC_Query_Ex::getSingletonInstance(); 
     
    191191     * @return array $arrProduct 商品情報の配列を返す 
    192192     */ 
    193     function lfGetProductsAllData() 
     193    public function lfGetProductsAllData() 
    194194    { 
    195195        $objQuery = SC_Query_Ex::getSingletonInstance(); 
     
    234234     * 商品情報を取得する 
    235235     * 
    236      * @param SC_Query $objQuery DB操作クラス 
    237      * @param integer $product_id 商品ID 
    238      * @return array $arrProduct 取得結果を配列で返す 
    239      */ 
    240     function lfGetProductsDetail(&$objQuery, $product_id = 'all') 
     236     * @param  SC_Query $objQuery  DB操作クラス 
     237     * @param  integer $product_id 商品ID 
     238     * @return array    $arrProduct 取得結果を配列で返す 
     239     */ 
     240    public function lfGetProductsDetail(&$objQuery, $product_id = 'all') 
    241241    { 
    242242        $objProduct = new SC_Product_Ex(); 
     
    278278     * 商品情報を取得する(vw_products_allclass使用) 
    279279     * 
    280      * @param SC_Query $objQuery DB操作クラス 
    281      * @return array $arrProduct 取得結果を配列で返す 
    282      */ 
    283     function lfGetProductsAllclass(&$objQuery) 
     280     * @param  SC_Query $objQuery DB操作クラス 
     281     * @return array    $arrProduct 取得結果を配列で返す 
     282     */ 
     283    public function lfGetProductsAllclass(&$objQuery) 
    284284    { 
    285285        // --- 商品一覧の取得 
Note: See TracChangeset for help on using the changeset viewer.