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

Revision 22856, 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     *
111     * @return void
112     */
113    function destroy()
114    {
115        parent::destroy();
116    }
117
118    /* 商品読み込み */
119    function lfGetProduct($category_id)
120    {
121        // FIXME SC_Product クラスを使用した実装
122        $objQuery =& SC_Query_Ex::getSingletonInstance();
123        $col = 'alldtl.product_id, name, main_list_image, product_code_min, product_code_max, status';
124        $objProduct = new SC_Product();
125        $table = $objProduct->alldtlSQL();
126        $table.= ' LEFT JOIN dtb_product_categories AS T5 ON alldtl.product_id = T5.product_id';
127        $where = 'del_flg = 0 AND category_id = ?';
128
129        // 行数の取得
130        $linemax = $objQuery->count($table, $where, array($category_id));
131        // 該当件数表示用
132        $this->tpl_linemax = $linemax;
133
134        $objNavi = new SC_PageNavi_Ex($this->tpl_pageno, $linemax, SEARCH_PMAX, 'fnNaviPage', NAVI_PMAX);
135        $startno = $objNavi->start_row;
136        $this->tpl_start_row = $objNavi->start_row;
137        $this->tpl_strnavi = $objNavi->strnavi;     // Navi表示文字列
138        $this->tpl_pagemax = $objNavi->max_page;    // ページ最大数(「上へ下へ」表示判定用)
139        $this->tpl_disppage = $objNavi->now_page;   // 表示ページ番号(「上へ下へ」表示判定用)
140
141        // 取得範囲の指定(開始行番号、行数のセット)
142        $objQuery->setLimitOffset(SEARCH_PMAX, $startno);
143
144        $objQuery->setOrder('rank DESC, alldtl.product_id DESC');
145
146        $arrRet = $objQuery->select($col, $table, $where, array($category_id));
147
148        return $arrRet;
149    }
150
151    /*
152     * 商品の数値指定での並び替え実行
153     */
154    function lfRenumber($parent_category_id)
155    {
156        $objQuery =& SC_Query_Ex::getSingletonInstance();
157
158        $sql = <<< __EOS__
159            UPDATE dtb_product_categories
160            SET
161                rank =
162                    (
163                        SELECT COUNT(*)
164                        FROM dtb_product_categories t_in
165                        WHERE t_in.category_id = dtb_product_categories.category_id
166                            AND (
167                                t_in.rank < dtb_product_categories.rank
168                                OR (
169                                    t_in.rank = dtb_product_categories.rank
170                                    AND t_in.product_id < dtb_product_categories.product_id
171                                )
172                            )
173                    ) + 1
174            WHERE dtb_product_categories.category_id = ?
175__EOS__;
176        $arrRet = $objQuery->query($sql, array($parent_category_id));
177
178        return $arrRet;
179    }
180
181    function lfRankUp(&$objDb, $parent_category_id, $product_id)
182    {
183        $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id);
184        $objDb->sfRankUp('dtb_product_categories', 'product_id', $product_id, $where);
185    }
186
187    function lfRankDown(&$objDb, $parent_category_id, $product_id)
188    {
189        $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id);
190        $objDb->sfRankDown('dtb_product_categories', 'product_id', $product_id, $where);
191    }
192
193    function lfRankMove(&$objDb, $parent_category_id, $product_id)
194    {
195        $key = 'pos-'.$product_id;
196        $input_pos = mb_convert_kana($_POST[$key], 'n');
197        if (SC_Utils_Ex::sfIsInt($input_pos)) {
198            $where = 'category_id = ' . SC_Utils_Ex::sfQuoteSmart($parent_category_id);
199            $objDb->sfMoveRank('dtb_product_categories', 'product_id', $product_id, $input_pos, $where);
200        }
201    }
202}
Note: See TracBrowser for help on using the repository browser.