source: branches/version-2_13-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductRank.php @ 22857

Revision 22857, 7.0 KB checked in by Seasoft, 11 years ago (diff)

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

  • 主に空白・空白行の調整。
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23
24require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php';
25
26/**
27 * 商品並べ替え のページクラス.
28 *
29 * @package Page
30 * @author LOCKON CO.,LTD.
31 * @version $Id$
32 */
33class LC_Page_Admin_Products_ProductRank extends LC_Page_Admin_Ex
34{
35    /**
36     * Page を初期化する.
37     *
38     * @return void
39     */
40    function init()
41    {
42        parent::init();
43        $this->tpl_mainpage = 'products/product_rank.tpl';
44        $this->tpl_mainno = 'products';
45        $this->tpl_subno = 'product_rank';
46        $this->tpl_maintitle = '商品管理';
47        $this->tpl_subtitle = '商品並び替え';
48    }
49
50    /**
51     * Page のプロセス.
52     *
53     * @return void
54     */
55    function process()
56    {
57        $this->action();
58        $this->sendResponse();
59    }
60
61    /**
62     * Page のアクション.
63     *
64     * @return void
65     */
66    function action()
67    {
68        $objDb = new SC_Helper_DB_Ex();
69        $objCategory = new SC_Helper_Category_Ex();
70
71        $this->tpl_pageno = isset($_POST['pageno']) ? $_POST['pageno'] : '';
72
73        // 通常時は親カテゴリを0に設定する。
74        $this->arrForm['parent_category_id'] =
75            isset($_POST['parent_category_id']) ? $_POST['parent_category_id'] : 0;
76        $this->arrForm['product_id'] =
77            isset($_POST['product_id']) ? $_POST['product_id'] : '';
78
79        switch ($this->getMode()) {
80            case 'up':
81                $this->lfRankUp($objDb, $this->arrForm['parent_category_id'], $this->arrForm['product_id']);
82                break;
83            case 'down':
84                $this->lfRankDown($objDb, $this->arrForm['parent_category_id'], $this->arrForm['product_id']);
85                break;
86            case 'move':
87                $this->lfRankMove($objDb, $this->arrForm['parent_category_id'], $this->arrForm['product_id']);
88                break;
89            case 'tree':
90                // カテゴリの切替は、ページ番号をクリアする。
91                $this->tpl_pageno = '';
92                break;
93            case 'renumber':
94                $this->lfRenumber($this->arrForm['parent_category_id']);
95                break;
96            default:
97                break;
98        }
99
100        $this->arrTree = $objCategory->getTree();
101        $this->arrParentID = $objCategory->getTreeTrail($this->arrForm['parent_category_id']);
102        $this->arrProductsList = $this->lfGetProduct($this->arrForm['parent_category_id']);
103        $arrBread = $objCategory->getTreeTrail($this->arrForm['parent_category_id'], FALSE);
104        $this->tpl_bread_crumbs = SC_Utils_Ex::jsonEncode(array_reverse($arrBread));
105    }
106
107    /**
108     * デストラクタ.
109     *
110     * @return void
111     */
112    function destroy()
113    {
114        parent::destroy();
115    }
116
117    /* 商品読み込み */
118    function lfGetProduct($category_id)
119    {
120        // FIXME SC_Product クラスを使用した実装
121        $objQuery =& SC_Query_Ex::getSingletonInstance();
122        $col = 'alldtl.product_id, name, main_list_image, product_code_min, product_code_max, status';
123        $objProduct = new SC_Product();
124        $table = $objProduct->alldtlSQL();
125        $table.= ' LEFT JOIN dtb_product_categories AS T5 ON alldtl.product_id = T5.product_id';
126        $where = 'del_flg = 0 AND category_id = ?';
127
128        // 行数の取得
129        $linemax = $objQuery->count($table, $where, array($category_id));
130        // 該当件数表示用
131        $this->tpl_linemax = $linemax;
132
133        $objNavi = new SC_PageNavi_Ex($this->tpl_pageno, $linemax, SEARCH_PMAX, 'fnNaviPage', NAVI_PMAX);
134        $startno = $objNavi->start_row;
135        $this->tpl_start_row = $objNavi->start_row;
136        $this->tpl_strnavi = $objNavi->strnavi;     // Navi表示文字列
137        $this->tpl_pagemax = $objNavi->max_page;    // ページ最大数(「上へ下へ」表示判定用)
138        $this->tpl_disppage = $objNavi->now_page;   // 表示ページ番号(「上へ下へ」表示判定用)
139
140        // 取得範囲の指定(開始行番号、行数のセット)
141        $objQuery->setLimitOffset(SEARCH_PMAX, $startno);
142
143        $objQuery->setOrder('rank DESC, alldtl.product_id DESC');
144
145        $arrRet = $objQuery->select($col, $table, $where, array($category_id));
146
147        return $arrRet;
148    }
149
150    /*
151     * 商品の数値指定での並び替え実行
152     */
153    function lfRenumber($parent_category_id)
154    {
155        $objQuery =& SC_Query_Ex::getSingletonInstance();
156
157        $sql = <<< __EOS__
158            UPDATE dtb_product_categories
159            SET
160                rank =
161                    (
162                        SELECT COUNT(*)
163                        FROM dtb_product_categories t_in
164                        WHERE t_in.category_id = dtb_product_categories.category_id
165                            AND (
166                                t_in.rank < dtb_product_categories.rank
167                                OR (
168                                    t_in.rank = dtb_product_categories.rank
169                                    AND t_in.product_id < dtb_product_categories.product_id
170                                )
171                            )
172                    ) + 1
173            WHERE dtb_product_categories.category_id = ?
174__EOS__;
175        $arrRet = $objQuery->query($sql, array($parent_category_id));
176
177        return $arrRet;
178    }
179
180    function lfRankUp(&$objDb, $parent_category_id, $product_id)
181    {
182        $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id);
183        $objDb->sfRankUp('dtb_product_categories', 'product_id', $product_id, $where);
184    }
185
186    function lfRankDown(&$objDb, $parent_category_id, $product_id)
187    {
188        $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id);
189        $objDb->sfRankDown('dtb_product_categories', 'product_id', $product_id, $where);
190    }
191
192    function lfRankMove(&$objDb, $parent_category_id, $product_id)
193    {
194        $key = 'pos-'.$product_id;
195        $input_pos = mb_convert_kana($_POST[$key], 'n');
196        if (SC_Utils_Ex::sfIsInt($input_pos)) {
197            $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id);
198            $objDb->sfMoveRank('dtb_product_categories', 'product_id', $product_id, $input_pos, $where);
199        }
200    }
201}
Note: See TracBrowser for help on using the repository browser.