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

Revision 21514, 7.2 KB checked in by Seasoft, 12 years ago (diff)

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

  • 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-2011 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_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.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_Ex {
35
36    // }}}
37    // {{{ functions
38
39    /**
40     * Page を初期化する.
41     *
42     * @return void
43     */
44    function init() {
45        parent::init();
46        $this->tpl_mainno = 'contents';
47        $this->tpl_subno = '';
48
49        $this->tpl_subtitle = '商品検索';
50    }
51
52    /**
53     * Page のプロセス.
54     *
55     * @return void
56     */
57    function process() {
58        $this->action();
59        $this->sendResponse();
60    }
61
62    /**
63     * Page のアクション.
64     *
65     * @return void
66     */
67    function action() {
68        $objDb = new SC_Helper_DB_Ex();
69        $objFormParam = new SC_FormParam_Ex();
70        $this->lfInitParam($objFormParam);
71        $objFormParam->setParam($_POST);
72        $objFormParam->convParam();
73
74        switch ($this->getMode()) {
75        case 'search':
76            // POST値の引き継ぎ
77            $this->arrErr = $this->lfCheckError($objFormParam);
78            $arrPost = $objFormParam->getHashArray();
79            // 入力された値にエラーがない場合、検索処理を行う。
80            // 検索結果の数に応じてページャの処理も入れる。
81            if (SC_Utils_Ex::isBlank($this->arrErr)) {
82                $objProduct = new SC_Product_Ex();
83
84                $wheres = $this->createWhere($objFormParam,$objDb);
85                $this->tpl_linemax = $this->getLineCount($wheres,$objProduct);
86
87                $page_max = SC_Utils_Ex::sfGetSearchPageMax($arrPost['search_page_max']);
88
89                // ページ送りの取得
90                $objNavi = new SC_PageNavi_Ex($arrPost['search_pageno'], $this->tpl_linemax, $page_max, 'fnNaviSearchOnlyPage', NAVI_PMAX);
91                $this->tpl_strnavi = $objNavi->strnavi;      // 表示文字列
92                $startno = $objNavi->start_row;
93
94                $arrProduct_id = $this->getProducts($wheres, $objProduct, $page_max, $startno);
95                $this->arrProducts = $this->getProductList($arrProduct_id,$objProduct);
96                $this->arrForm = $arrPost;
97            }
98            break;
99        default:
100            break;
101        }
102
103        // カテゴリ取得
104        $this->arrCatList = $objDb->sfGetCategoryList();
105        $this->setTemplate('contents/recommend_search.tpl');
106    }
107
108    /**
109     * デストラクタ.
110     *
111     * @return void
112     */
113    function destroy() {
114        parent::destroy();
115    }
116
117    /**
118     * パラメーターの初期化を行う
119     * @param Object $objFormParam
120     */
121    function lfInitParam(&$objFormParam) {
122        $objFormParam->addParam('商品ID', 'search_name', LTEXT_LEN, 'KVa', array('MAX_LENGTH_CHECK'));
123        $objFormParam->addParam('商品ID', 'search_category_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK','NUM_CHECK'));
124        $objFormParam->addParam('ページ番号', 'search_pageno', INT_LEN, 'n', array('MAX_LENGTH_CHECK','NUM_CHECK'));
125    }
126
127    /**
128     * 入力されたパラメーターのエラーチェックを行う。
129     * @param Object $objFormParam
130     * @return Array エラー内容
131     */
132    function lfCheckError(&$objFormParam) {
133        $objErr = new SC_CheckError_Ex($objFormParam->getHashArray());
134        $objErr->arrErr = $objFormParam->checkError();
135        return $objErr->arrErr;
136    }
137
138    /**
139     *
140     * POSTされた値からSQLのWHEREとBINDを配列で返す。
141     * @return array ('where' => where string, 'bind' => databind array)
142     * @param SC_FormParam $objFormParam
143     */
144    function createWhere(&$objFormParam,&$objDb) {
145        $arrForm = $objFormParam->getHashArray();
146        $where = 'alldtl.del_flg = 0';
147        $bind = array();
148        foreach ($arrForm as $key => $val) {
149            if ($val == '') {
150                continue;
151            }
152
153            switch ($key) {
154                case 'search_name':
155                    $where .= ' AND name ILIKE ?';
156                    $bind[] = '%'.$val.'%';
157                    break;
158                case 'search_category_id':
159                    list($tmp_where, $tmp_bind) = $objDb->sfGetCatWhere($val);
160                    if ($tmp_where != '') {
161                        $where.= ' AND alldtl.product_id IN (SELECT product_id FROM dtb_product_categories WHERE ' . $tmp_where . ')';
162                        $bind = array_merge((array)$bind, (array)$tmp_bind);
163                    }
164                    break;
165
166                default:
167                    break;
168            }
169        }
170        return array(
171            'where'=>$where,
172            'bind' => $bind
173        );
174    }
175
176    /**
177     *
178     * 検索結果対象となる商品の数を返す。
179     * @param array $whereAndBind
180     * @param SC_Product $objProduct
181     */
182    function getLineCount($whereAndBind,&$objProduct) {
183        $where = $whereAndBind['where'];
184        $bind = $whereAndBind['bind'];
185        // 検索結果対象となる商品の数を取得
186        $objQuery =& SC_Query_Ex::getSingletonInstance();
187        $objQuery->setWhere($where);
188        $linemax = $objProduct->findProductCount($objQuery, $bind);
189        return  $linemax;   // 何件が該当しました。表示用
190    }
191
192    /**
193     * 検索結果の取得
194     * @param array $whereAndBind string whereと array bindの連想配列
195     * @param SC_Product $objProduct
196     */
197    function getProducts($whereAndBind,&$objProduct, $page_max, $startno) {
198        $where = $whereAndBind['where'];
199        $bind = $whereAndBind['bind'];
200        $objQuery =& SC_Query_Ex::getSingletonInstance();
201        $objQuery->setWhere($where);
202        // 取得範囲の指定(開始行番号、行数のセット)
203        $objQuery->setLimitOffset($page_max, $startno);
204
205        // 検索結果の取得
206        return $objProduct->findProductIdsOrder($objQuery, $bind);
207    }
208
209    /**
210     * 商品取得
211     *
212     * @param array $arrProductId
213     * @param SC_Product $objProduct
214     */
215    function getProductList($arrProductId, &$objProduct) {
216        $objQuery =& SC_Query_Ex::getSingletonInstance();
217
218        // 表示順序
219        $order = 'update_date DESC, product_id DESC';
220        $objQuery->setOrder($order);
221
222        return $objProduct->getListByProductIds($objQuery, $arrProductId);
223    }
224}
Note: See TracBrowser for help on using the repository browser.