source: branches/version-2_5-dev/data/class/pages/admin/contents/LC_Page_Admin_Contents_RecommendSearch.php @ 19803

Revision 19803, 5.6 KB checked in by Seasoft, 13 years ago (diff)

#834(パラメータの定数名に「URL」を含むにもかかわらず、パスのみのものがある)

  • 一斉置換前の現状記録のためのコミット

#628(未使用処理・定義などの削除)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to "Id Revision Date"
  • 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-2010 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
24// {{{ requires
25require_once(CLASS_FILE_PATH . "pages/admin/LC_Page_Admin.php");
26
27/**
28 * おすすめ商品管理 商品検索のページクラス.
29 *
30 * @package Page
31 * @author LOCKON CO.,LTD.
32 * @version $Id$
33 */
34class LC_Page_Admin_Contents_RecommendSearch extends LC_Page_Admin {
35
36    // }}}
37    // {{{ functions
38
39    /**
40     * Page を初期化する.
41     *
42     * @return void
43     */
44    function init() {
45        parent::init();
46        $this->tpl_mainpage = 'contents/recomend_search.tpl';
47        $this->tpl_mainno = 'contents';
48        $this->tpl_subnavi = '';
49        $this->tpl_subno = "";
50
51    }
52
53    /**
54     * Page のプロセス.
55     *
56     * @return void
57     */
58    function process() {
59        $this->action();
60        $this->sendResponse();
61    }
62
63    /**
64     * Page のアクション.
65     *
66     * @return void
67     */
68    function action() {
69        $objSess = new SC_Session();
70        $objDb = new SC_Helper_DB_Ex();
71
72        // 認証可否の判定
73        SC_Utils_Ex::sfIsSuccess($objSess);
74
75        if (!isset($_POST['mode'])) $_POST['mode'] = "";
76        if ($_POST['mode'] == "search") {
77
78            // POST値の引き継ぎ
79            $this->arrForm = $_POST;
80            // 入力文字の強制変換
81            $this->lfConvertParam();
82
83            $where = 'del_flg = 0';
84
85            /* 入力エラーなし */
86            foreach ($this->arrForm as $key => $val) {
87                if($val == "") {
88                    continue;
89                }
90
91                switch ($key) {
92                case 'search_name':
93                    $where .= " AND name ILIKE ?";
94                    $arrval[] = "%$val%";
95                    break;
96                case 'search_category_id':
97                     list($tmp_where, $tmp_arrval) = $objDb->sfGetCatWhere($val);
98                    if($tmp_where != "") {
99                        $where.= " AND product_id IN (SELECT product_id FROM dtb_product_categories WHERE " . $tmp_where . ")";
100                        $arrval = array_merge((array)$arrval, (array)$tmp_arrval);
101                    }
102                    break;
103                case 'search_product_code':
104                    $where .= " AND product_id IN (SELECT product_id FROM dtb_products_class WHERE product_code LIKE ? GROUP BY product_id)";
105                    $arrval[] = "$val%";
106                    break;
107                default:
108                    break;
109                }
110            }
111
112            $order = "update_date DESC, product_id DESC";
113
114            $objQuery = new SC_Query();
115            // 行数の取得
116            if (empty($arrval)) $arrval = array();
117            $linemax = $objQuery->count("dtb_products", $where, $arrval);
118            $this->tpl_linemax = $linemax;               // 何件が該当しました。表示用
119
120            // ページ送りの処理
121            if(isset($_POST['search_page_max'])
122               && is_numeric($_POST['search_page_max'])) {
123                $page_max = $_POST['search_page_max'];
124            } else {
125                $page_max = SEARCH_PMAX;
126            }
127
128            // ページ送りの取得
129            $objNavi = new SC_PageNavi($_POST['search_pageno'], $linemax, $page_max, "fnNaviSearchOnlyPage", NAVI_PMAX);
130            $this->tpl_strnavi = $objNavi->strnavi;      // 表示文字列
131            $startno = $objNavi->start_row;
132
133            // 取得範囲の指定(開始行番号、行数のセット)
134            $objQuery->setLimitOffset($page_max, $startno);
135            // 表示順序
136            $objQuery->setOrder($order);
137
138            // FIXME 商品コードの表示
139            // 検索結果の取得
140            $this->arrProducts = $objQuery->select("*", SC_Product::alldtlSQL(), $where, $arrval);
141        }
142
143        // カテゴリ取得
144        $this->arrCatList = $objDb->sfGetCategoryList();
145    }
146
147    /**
148     * デストラクタ.
149     *
150     * @return void
151     */
152    function destroy() {
153        parent::destroy();
154    }
155
156    /* 取得文字列の変換 */
157    function lfConvertParam() {
158        /*
159         *  文字列の変換
160         *  K :  「半角(ハンカク)片仮名」を「全角片仮名」に変換
161         *  C :  「全角ひら仮名」を「全角かた仮名」に変換
162         *  V :  濁点付きの文字を一文字に変換。"K","H"と共に使用します
163         *  n :  「全角」数字を「半角(ハンカク)」に変換
164         */
165        $arrConvList['search_name'] = "KVa";
166        $arrConvList['search_product_code'] = "KVa";
167
168        // 文字変換
169        foreach ($arrConvList as $key => $val) {
170            // POSTされてきた値のみ変換する。
171            if(isset($this->arrForm[$key])) {
172                $this->arrForm[$key] = mb_convert_kana($this->arrForm[$key] ,$val);
173            }
174        }
175    }
176}
177?>
Note: See TracBrowser for help on using the repository browser.