Ignore:
Timestamp:
2013/08/26 15:52:37 (11 years ago)
Author:
m_uehara
Message:

#2348 r23116 - r23125 をマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/class/pages/admin/products/LC_Page_Admin_Products_ProductRank.php

    r23103 r23126  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    5353     * @return void 
    5454     */ 
    55     function process() 
     55    public function process() 
    5656    { 
    5757        $this->action(); 
     
    6464     * @return void 
    6565     */ 
    66     function action() 
     66    public function action() 
    6767    { 
    6868        $objDb = new SC_Helper_DB_Ex(); 
     
    106106 
    107107    /* 商品読み込み */ 
    108     function lfGetProduct($category_id) 
     108    public function lfGetProduct($category_id) 
    109109    { 
    110110        // FIXME SC_Product クラスを使用した実装 
     
    141141     * 商品の数値指定での並び替え実行 
    142142     */ 
    143     function lfRenumber($parent_category_id) 
     143    public function lfRenumber($parent_category_id) 
    144144    { 
    145145        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    168168    } 
    169169 
    170     function lfRankUp(&$objDb, $parent_category_id, $product_id) 
     170    public function lfRankUp(&$objDb, $parent_category_id, $product_id) 
    171171    { 
    172172        $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id); 
     
    174174    } 
    175175 
    176     function lfRankDown(&$objDb, $parent_category_id, $product_id) 
     176    public function lfRankDown(&$objDb, $parent_category_id, $product_id) 
    177177    { 
    178178        $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id); 
     
    180180    } 
    181181 
    182     function lfRankMove(&$objDb, $parent_category_id, $product_id) 
     182    public function lfRankMove(&$objDb, $parent_category_id, $product_id) 
    183183    { 
    184184        $key = 'pos-'.$product_id; 
Note: See TracChangeset for help on using the changeset viewer.