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 |
---|
25 | require_once(CLASS_PATH . "pages/LC_Page.php"); |
---|
26 | |
---|
27 | /** |
---|
28 | * 商品一覧 のページクラス. |
---|
29 | * |
---|
30 | * @package Page |
---|
31 | * @author LOCKON CO.,LTD. |
---|
32 | * @version $Id:LC_Page_Products_List.php 15532 2007-08-31 14:39:46Z nanasess $ |
---|
33 | */ |
---|
34 | class LC_Page_Products_List extends LC_Page { |
---|
35 | |
---|
36 | // {{{ properties |
---|
37 | |
---|
38 | /** テンプレートクラス名1 */ |
---|
39 | var $tpl_class_name1 = array(); |
---|
40 | |
---|
41 | /** テンプレートクラス名2 */ |
---|
42 | var $tpl_class_name2 = array(); |
---|
43 | |
---|
44 | /** JavaScript テンプレート */ |
---|
45 | var $tpl_javascript; |
---|
46 | |
---|
47 | var $orderby; |
---|
48 | |
---|
49 | var $mode; |
---|
50 | |
---|
51 | /** 検索条件(内部データ) */ |
---|
52 | var $arrSearchData = array(); |
---|
53 | |
---|
54 | /** 検索条件(表示用) */ |
---|
55 | var $arrSearch = array(); |
---|
56 | |
---|
57 | var $tpl_subtitle = ''; |
---|
58 | |
---|
59 | /** ランダム文字列 **/ |
---|
60 | var $tpl_rnd = ''; |
---|
61 | |
---|
62 | // }}} |
---|
63 | // {{{ functions |
---|
64 | |
---|
65 | /** |
---|
66 | * Page を初期化する. |
---|
67 | * |
---|
68 | * @return void |
---|
69 | */ |
---|
70 | function init() { |
---|
71 | parent::init(); |
---|
72 | |
---|
73 | $masterData = new SC_DB_MasterData_Ex(); |
---|
74 | $this->arrSTATUS = $masterData->getMasterData("mtb_status"); |
---|
75 | $this->arrSTATUS_IMAGE = $masterData->getMasterData("mtb_status_image"); |
---|
76 | $this->arrDELIVERYDATE = $masterData->getMasterData("mtb_delivery_date"); |
---|
77 | $this->arrPRODUCTLISTMAX = $masterData->getMasterData("mtb_product_list_max"); |
---|
78 | } |
---|
79 | |
---|
80 | /** |
---|
81 | * Page のプロセス. |
---|
82 | * |
---|
83 | * @return void |
---|
84 | */ |
---|
85 | function process() { |
---|
86 | $this->lfLoadParam(); |
---|
87 | |
---|
88 | $objView = new SC_SiteView(!$this->inCart); |
---|
89 | $objQuery = new SC_Query(); |
---|
90 | $objDb = new SC_Helper_DB_Ex(); |
---|
91 | |
---|
92 | // タイトル編集 |
---|
93 | if ($this->mode == 'search') { |
---|
94 | $this->tpl_subtitle = "検索結果"; |
---|
95 | } elseif ($this->arrSearchData['category_id'] == 0) { |
---|
96 | $this->tpl_subtitle = "全商品"; |
---|
97 | } else { |
---|
98 | $arrCat = $objDb->sfGetCat($this->arrSearchData['category_id']); |
---|
99 | $this->tpl_subtitle = $arrCat['name']; |
---|
100 | } |
---|
101 | |
---|
102 | $count = $objQuery->count("dtb_best_products", "category_id = ?", array($this->arrSearchData['category_id'])); |
---|
103 | |
---|
104 | // 商品一覧の表示処理 |
---|
105 | $this->lfDispProductsList(); |
---|
106 | |
---|
107 | // 検索条件を画面に表示 |
---|
108 | // カテゴリー検索条件 |
---|
109 | if ($this->arrSearchData['category_id'] == 0) { |
---|
110 | $this->arrSearch['category'] = "指定なし"; |
---|
111 | } else { |
---|
112 | $arrCat = $objQuery->getOne("SELECT category_name FROM dtb_category WHERE category_id = ?", array($this->arrSearchData['category_id'])); |
---|
113 | $this->arrSearch['category'] = $arrCat; |
---|
114 | } |
---|
115 | |
---|
116 | // メーカー検索条件 |
---|
117 | if (strlen($this->arrSearchData['maker_id']) == 0) { |
---|
118 | $this->arrSearch['maker'] = "指定なし"; |
---|
119 | } else { |
---|
120 | $this->arrSearch['maker'] = $objQuery->getOne("SELECT name FROM dtb_maker WHERE maker_id = ?", $this->arrSearchData['maker_id']); |
---|
121 | } |
---|
122 | |
---|
123 | // 商品名検索条件 |
---|
124 | if (strlen($this->arrSearchData['name']) == 0) { |
---|
125 | $this->arrSearch['name'] = "指定なし"; |
---|
126 | } else { |
---|
127 | $this->arrSearch['name'] = $this->arrSearchData['name']; |
---|
128 | } |
---|
129 | |
---|
130 | // レイアウトデザインを取得 |
---|
131 | $layout = new SC_Helper_PageLayout_Ex(); |
---|
132 | $layout->sfGetPageLayout($this, false, "products/list.php"); |
---|
133 | |
---|
134 | foreach ($this->arrProducts as $arrProduct) { |
---|
135 | $js_fnOnLoad .= "fnSetClassCategories(document.product_form{$arrProduct['product_id']});\n"; |
---|
136 | } |
---|
137 | |
---|
138 | if ($this->inCart) { |
---|
139 | // 商品IDの正当性チェック |
---|
140 | if (!SC_Utils_Ex::sfIsInt($this->arrForm['product_id']) || !$objDb->sfIsRecord("dtb_products", "product_id", $this->arrForm['product_id'], "del_flg = 0 AND status = 1")) { |
---|
141 | SC_Utils_Ex::sfDispSiteError(PRODUCT_NOT_FOUND); |
---|
142 | } |
---|
143 | $product_id = $this->arrForm['product_id']; |
---|
144 | // 入力内容のチェック |
---|
145 | $arrErr = $this->lfCheckError($product_id); |
---|
146 | if (count($arrErr) == 0) { |
---|
147 | $classcategory_id1 = $this->arrForm['classcategory_id1']; |
---|
148 | $classcategory_id2 = $this->arrForm['classcategory_id2']; |
---|
149 | // 規格1が設定されていない場合 |
---|
150 | if (!$this->tpl_classcat_find1[$product_id]) { |
---|
151 | $classcategory_id1 = '0'; |
---|
152 | } |
---|
153 | // 規格2が設定されていない場合 |
---|
154 | if (!$this->tpl_classcat_find2[$product_id]) { |
---|
155 | $classcategory_id2 = '0'; |
---|
156 | } |
---|
157 | // 規格IDを取得 |
---|
158 | $objProduct = new SC_Product(); |
---|
159 | $product_class_id = $this->arrForm['product_class_id']; |
---|
160 | $product_type = $this->arrForm['product_type']; |
---|
161 | $objCartSess = new SC_CartSession(); |
---|
162 | $objCartSess->addProduct($product_class_id, $this->arrForm['quantity'], $product_type); |
---|
163 | $this->sendRedirect($this->getLocation(URL_CART_TOP)); |
---|
164 | exit; |
---|
165 | } |
---|
166 | foreach (array_keys($this->arrProducts) as $key) { |
---|
167 | $arrProduct =& $this->arrProducts[$key]; |
---|
168 | if ($arrProduct['product_id'] == $product_id) { |
---|
169 | $arrProduct['product_class_id'] = $this->arrForm['product_class_id']; |
---|
170 | $arrProduct['classcategory_id1'] = $this->arrForm['classcategory_id1']; |
---|
171 | $arrProduct['classcategory_id2'] = $this->arrForm['classcategory_id2']; |
---|
172 | $arrProduct['quantity'] = $this->arrForm['quantity']; |
---|
173 | $arrProduct['arrErr'] = $arrErr; |
---|
174 | $js_fnOnLoad .= "fnSetClassCategories(document.product_form{$arrProduct['product_id']}, '{$this->arrForm['classcategory_id2']}');\n"; |
---|
175 | } |
---|
176 | } |
---|
177 | } |
---|
178 | $this->tpl_javascript .= 'function fnOnLoad(){' . $js_fnOnLoad . '}'; |
---|
179 | $this->tpl_onload .= 'fnOnLoad(); '; |
---|
180 | |
---|
181 | $this->tpl_rnd = SC_Utils_Ex::sfGetRandomString(3); |
---|
182 | |
---|
183 | $objView->assignobj($this); |
---|
184 | $objView->display(SITE_FRAME); |
---|
185 | } |
---|
186 | |
---|
187 | /** |
---|
188 | * モバイルページを初期化する. |
---|
189 | * |
---|
190 | * @return void |
---|
191 | */ |
---|
192 | function mobileInit() { |
---|
193 | $this->init(); |
---|
194 | } |
---|
195 | |
---|
196 | /** |
---|
197 | * Page のプロセス(モバイル). |
---|
198 | * |
---|
199 | * FIXME スパゲッティ... |
---|
200 | * |
---|
201 | * @return void |
---|
202 | */ |
---|
203 | function mobileProcess() { |
---|
204 | $this->lfLoadParam(); |
---|
205 | |
---|
206 | $objView = new SC_MobileView(); |
---|
207 | $objQuery = new SC_Query(); |
---|
208 | $objDb = new SC_Helper_DB_Ex(); |
---|
209 | |
---|
210 | // タイトル編集 |
---|
211 | $tpl_search_mode = false; |
---|
212 | |
---|
213 | if ($this->mode == 'search') { |
---|
214 | $this->tpl_subtitle = "検索結果"; |
---|
215 | $tpl_search_mode = true; |
---|
216 | } elseif ($this->arrSearchData['category_id'] == 0) { |
---|
217 | $this->tpl_subtitle = "全商品"; |
---|
218 | } else { |
---|
219 | $arrCat = $objDb->sfGetCat($this->arrSearchData['category_id']); |
---|
220 | $this->tpl_subtitle = $arrCat['name']; |
---|
221 | } |
---|
222 | |
---|
223 | $count = $objQuery->count("dtb_best_products", "category_id = ?", array($this->arrSearchData['category_id'])); |
---|
224 | |
---|
225 | // 商品一覧の表示処理 |
---|
226 | $this->lfDispProductsList(); |
---|
227 | |
---|
228 | // 検索条件を画面に表示 |
---|
229 | // カテゴリー検索条件 |
---|
230 | if ($this->arrSearchData['category_id'] == 0) { |
---|
231 | $this->arrSearch['category'] = "指定なし"; |
---|
232 | } else { |
---|
233 | $arrCat = $objQuery->getOne("SELECT category_name FROM dtb_category WHERE category_id = ?",array($category_id)); |
---|
234 | $this->arrSearch['category'] = $arrCat; |
---|
235 | } |
---|
236 | |
---|
237 | // 商品名検索条件 |
---|
238 | if ($this->arrForm['name'] === "") { |
---|
239 | $this->arrSearch['name'] = "指定なし"; |
---|
240 | } else { |
---|
241 | $this->arrSearch['name'] = $this->arrForm['name']; |
---|
242 | } |
---|
243 | |
---|
244 | // ページ送り機能用のURLを作成する。 |
---|
245 | $objURL = new Net_URL($_SERVER['PHP_SELF']); |
---|
246 | foreach ($_REQUEST as $key => $value) { |
---|
247 | if ($key == session_name() || $key == 'pageno') { |
---|
248 | continue; |
---|
249 | } |
---|
250 | $objURL->addQueryString($key, mb_convert_encoding($value, 'SJIS', CHAR_CODE)); |
---|
251 | } |
---|
252 | |
---|
253 | if ($this->objNavi->now_page > 1) { |
---|
254 | $objURL->addQueryString('pageno', $this->objNavi->now_page - 1); |
---|
255 | $this->tpl_previous_page = $objURL->path . '?' . $objURL->getQueryString(); |
---|
256 | } |
---|
257 | if ($this->objNavi->now_page < $this->objNavi->max_page) { |
---|
258 | $objURL->addQueryString('pageno', $this->objNavi->now_page + 1); |
---|
259 | $this->tpl_next_page = $objURL->path . '?' . $objURL->getQueryString(); |
---|
260 | } |
---|
261 | |
---|
262 | $this->tpl_search_mode = $tpl_search_mode; |
---|
263 | |
---|
264 | $this->tpl_mainpage = MOBILE_TEMPLATE_DIR . "products/list.tpl"; |
---|
265 | |
---|
266 | $objView->assignobj($this); |
---|
267 | $objView->display(SITE_FRAME); |
---|
268 | } |
---|
269 | |
---|
270 | /** |
---|
271 | * デストラクタ. |
---|
272 | * |
---|
273 | * @return void |
---|
274 | */ |
---|
275 | function destroy() { |
---|
276 | parent::destroy(); |
---|
277 | } |
---|
278 | |
---|
279 | /** |
---|
280 | * カテゴリIDの取得 |
---|
281 | * |
---|
282 | * @return integer カテゴリID |
---|
283 | */ |
---|
284 | function lfGetCategoryId($category_id) { |
---|
285 | $objDb = new SC_Helper_DB_Ex(); |
---|
286 | |
---|
287 | // 指定なしの場合、0 を返す |
---|
288 | if ( |
---|
289 | strlen($category_id) == 0 |
---|
290 | || (String) $category_id == '0' |
---|
291 | ) { |
---|
292 | return 0; |
---|
293 | } |
---|
294 | |
---|
295 | // 正当性チェック |
---|
296 | if ( |
---|
297 | !SC_Utils_Ex::sfIsInt($category_id) |
---|
298 | || SC_Utils_Ex::sfIsZeroFilling($category_id) |
---|
299 | || !$objDb->sfIsRecord('dtb_category', 'category_id', (array)$category_id, 'del_flg = 0') |
---|
300 | ) { |
---|
301 | SC_Utils_Ex::sfDispSiteError(CATEGORY_NOT_FOUND); |
---|
302 | } |
---|
303 | |
---|
304 | // 指定されたカテゴリIDを元に正しいカテゴリIDを取得する。 |
---|
305 | $arrCategory_id = $objDb->sfGetCategoryId('', $category_id); |
---|
306 | |
---|
307 | if (empty($arrCategory_id)) { |
---|
308 | SC_Utils_Ex::sfDispSiteError(CATEGORY_NOT_FOUND); |
---|
309 | } |
---|
310 | |
---|
311 | return $arrCategory_id[0]; |
---|
312 | } |
---|
313 | |
---|
314 | /* 商品一覧の表示 */ |
---|
315 | function lfDispProductsList() { |
---|
316 | |
---|
317 | $objDb = new SC_Helper_DB_Ex(); |
---|
318 | $arrval = array(); |
---|
319 | $arrval_order = array(); |
---|
320 | $arrval_category = array(); |
---|
321 | |
---|
322 | // カテゴリからのWHERE文字列取得 |
---|
323 | if ($this->arrSearchData['category_id'] != 0) { |
---|
324 | list($where_category, $arrval_category) = $objDb->sfGetCatWhere($this->arrSearchData['category_id']); |
---|
325 | } |
---|
326 | |
---|
327 | // ▼対象商品IDの抽出 |
---|
328 | // 商品検索条件の作成(未削除、表示) |
---|
329 | $where = "del_flg = 0 AND status = 1 "; |
---|
330 | $where1 = "alldtl.del_flg = 0 AND alldtl.status = 1 "; |
---|
331 | |
---|
332 | // 在庫無し商品の非表示 |
---|
333 | if (NOSTOCK_HIDDEN === true) { |
---|
334 | $where .= ' AND (stock_max >= 1 OR stock_unlimited_max = 1)'; |
---|
335 | } |
---|
336 | |
---|
337 | if (strlen($where_category) >= 1) { |
---|
338 | $where.= " AND $where_category"; |
---|
339 | $where1 .= " AND T2.$where_category"; |
---|
340 | $arrval = array_merge($arrval, $arrval_category); |
---|
341 | } |
---|
342 | |
---|
343 | // 商品名をwhere文に |
---|
344 | $name = $this->arrSearchData['name']; |
---|
345 | $name = ereg_replace(",", "", $name);// XXX |
---|
346 | // 全角スペースを半角スペースに変換 |
---|
347 | $name = str_replace(' ', ' ', $name); |
---|
348 | // スペースでキーワードを分割 |
---|
349 | $names = preg_split("/ +/", $name); |
---|
350 | // 分割したキーワードを一つずつwhere文に追加 |
---|
351 | foreach ($names as $val) { |
---|
352 | if ( strlen($val) > 0 ) { |
---|
353 | $where .= " AND ( name ILIKE ? OR comment3 ILIKE ?) "; |
---|
354 | $where1 .= " AND ( alldtl.name ILIKE ? OR alldtl.comment3 ILIKE ?) "; |
---|
355 | $arrval[] = "%$val%"; |
---|
356 | $arrval[] = "%$val%"; |
---|
357 | } |
---|
358 | } |
---|
359 | |
---|
360 | // メーカーらのWHERE文字列取得 |
---|
361 | if ($this->arrSearchData['maker_id']) { |
---|
362 | $where .= " AND maker_id = ? "; |
---|
363 | $where1 .= " AND alldtl.maker_id = ? "; |
---|
364 | $arrval[] = $this->arrSearchData['maker_id']; |
---|
365 | } |
---|
366 | |
---|
367 | // 一覧表示する商品IDを取得 |
---|
368 | $objQuery =& SC_Query::getSingletonInstance(); |
---|
369 | $objQuery->setWhere($where1); |
---|
370 | $objProduct = new SC_Product(); |
---|
371 | $arrProduct_id = $objProduct->findProductIds($objQuery, $arrval); |
---|
372 | |
---|
373 | // 行数の取得 |
---|
374 | $linemax = count($arrProduct_id); |
---|
375 | |
---|
376 | $this->tpl_linemax = $linemax; // 何件が該当しました。表示用 |
---|
377 | |
---|
378 | // ページ送りの取得 |
---|
379 | $urlParam = "category_id={$this->arrSearchData['category_id']}&pageno=#page#"; |
---|
380 | $this->objNavi = new SC_PageNavi($this->tpl_pageno, $linemax, $this->disp_number, "fnNaviPage", NAVI_PMAX, $urlParam); |
---|
381 | $strnavi = $this->objNavi->strnavi; |
---|
382 | |
---|
383 | // 表示文字列 |
---|
384 | $this->tpl_strnavi = empty($strnavi) ? " " : $strnavi; |
---|
385 | $startno = $this->objNavi->start_row; // 開始行 |
---|
386 | |
---|
387 | // WHERE 句 |
---|
388 | $where = '0=0'; |
---|
389 | if (is_array($arrProduct_id) && !empty($arrProduct_id)) { |
---|
390 | $where .= ' AND product_id IN (' . implode(',', $arrProduct_id) . ')'; |
---|
391 | } else { |
---|
392 | // 一致させない |
---|
393 | $where .= ' AND 0<>0'; |
---|
394 | } |
---|
395 | |
---|
396 | // 表示順序 |
---|
397 | switch ($this->orderby) { |
---|
398 | |
---|
399 | // 販売価格順 |
---|
400 | case 'price': |
---|
401 | $order = "price02_min, product_id"; |
---|
402 | break; |
---|
403 | |
---|
404 | // 新着順 |
---|
405 | case 'date': |
---|
406 | $order = "create_date DESC, product_id"; |
---|
407 | break; |
---|
408 | |
---|
409 | default: |
---|
410 | if (strlen($where_category) >= 1) { |
---|
411 | $dtb_product_categories = "(SELECT * FROM dtb_product_categories WHERE $where_category)"; |
---|
412 | $arrval_order = array_merge($arrval_category, $arrval_category); |
---|
413 | } else { |
---|
414 | $dtb_product_categories = 'dtb_product_categories'; |
---|
415 | } |
---|
416 | $order = <<< __EOS__ |
---|
417 | ( |
---|
418 | SELECT |
---|
419 | T3.rank |
---|
420 | FROM |
---|
421 | $dtb_product_categories T2 |
---|
422 | JOIN dtb_category T3 |
---|
423 | USING (category_id) |
---|
424 | WHERE T2.product_id = alldtl.product_id |
---|
425 | ORDER BY T3.rank DESC, T2.rank DESC |
---|
426 | LIMIT 1 |
---|
427 | ) DESC |
---|
428 | ,( |
---|
429 | SELECT |
---|
430 | T2.rank |
---|
431 | FROM |
---|
432 | $dtb_product_categories T2 |
---|
433 | JOIN dtb_category T3 |
---|
434 | USING (category_id) |
---|
435 | WHERE T2.product_id = alldtl.product_id |
---|
436 | ORDER BY T3.rank DESC, T2.rank DESC |
---|
437 | LIMIT 1 |
---|
438 | ) DESC |
---|
439 | ,product_id |
---|
440 | __EOS__; |
---|
441 | break; |
---|
442 | } |
---|
443 | |
---|
444 | // 取得範囲の指定(開始行番号、行数のセット) |
---|
445 | $objQuery =& SC_Query::getSingletonInstance(); |
---|
446 | $objQuery->setLimitOffset($this->disp_number, $startno) |
---|
447 | ->setOrder($order) |
---|
448 | ->setWhere($where); |
---|
449 | |
---|
450 | // 検索結果の取得 |
---|
451 | $objProduct = new SC_Product(); |
---|
452 | $this->arrProducts = $objProduct->lists($objQuery, $arrval_order); |
---|
453 | |
---|
454 | $arrProductId = array(); |
---|
455 | // 規格セレクトボックス設定 |
---|
456 | foreach ($this->arrProducts as $product) { |
---|
457 | $arrProductId[] = $product['product_id']; |
---|
458 | } |
---|
459 | |
---|
460 | // 規格を設定 |
---|
461 | $objProduct->setProductsClassByProductIds($arrProductId); |
---|
462 | |
---|
463 | // 規格1クラス名 |
---|
464 | $this->tpl_class_name1 = $objProduct->className1; |
---|
465 | |
---|
466 | // 規格2クラス名 |
---|
467 | $this->tpl_class_name2 = $objProduct->className2; |
---|
468 | |
---|
469 | // 規格1 |
---|
470 | $this->arrClassCat1 = $objProduct->classCats1; |
---|
471 | |
---|
472 | // 規格1が設定されている |
---|
473 | $this->tpl_classcat_find1 = $objProduct->classCat1_find; |
---|
474 | // 規格2が設定されている |
---|
475 | $this->tpl_classcat_find2 = $objProduct->classCat2_find; |
---|
476 | |
---|
477 | $this->tpl_stock_find = $objProduct->stock_find; |
---|
478 | $this->tpl_product_class_id = $objProduct->product_class_id; |
---|
479 | $this->tpl_product_type = $objProduct->product_type; |
---|
480 | |
---|
481 | $productsClassCategories = $objProduct->classCategories; |
---|
482 | |
---|
483 | require_once DATA_PATH . 'module/Services/JSON.php'; |
---|
484 | $objJson = new Services_JSON(); |
---|
485 | $this->tpl_javascript .= 'productsClassCategories = ' . $objJson->encode($productsClassCategories) . '; '; |
---|
486 | } |
---|
487 | |
---|
488 | /* 入力内容のチェック */ |
---|
489 | function lfCheckError($id) { |
---|
490 | |
---|
491 | // 入力データを渡す。 |
---|
492 | $objErr = new SC_CheckError($this->arrForm); |
---|
493 | |
---|
494 | // 複数項目チェック |
---|
495 | if ($this->tpl_classcat_find1[$id]) { |
---|
496 | $objErr->doFunc(array("規格1", 'classcategory_id1', INT_LEN), array("EXIST_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK")); |
---|
497 | } |
---|
498 | if ($this->tpl_classcat_find2[$id]) { |
---|
499 | $objErr->doFunc(array("規格2", 'classcategory_id2', INT_LEN), array("EXIST_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK")); |
---|
500 | } |
---|
501 | $objErr->doFunc(array("数量", 'quantity', INT_LEN), array("EXIST_CHECK", "ZERO_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK")); |
---|
502 | |
---|
503 | return $objErr->arrErr; |
---|
504 | } |
---|
505 | |
---|
506 | /** |
---|
507 | * パラメータの読み込み |
---|
508 | * |
---|
509 | * @return void |
---|
510 | */ |
---|
511 | function lfLoadParam() { |
---|
512 | $this->arrForm = $_GET; |
---|
513 | |
---|
514 | $this->mode = $this->arrForm['mode']; |
---|
515 | $this->arrSearchData['category_id'] = $this->lfGetCategoryId($this->arrForm['category_id']); |
---|
516 | $this->arrSearchData['maker_id'] = $this->arrForm['maker_id']; |
---|
517 | $this->arrSearchData['name'] = $this->arrForm['name']; |
---|
518 | $this->orderby = $this->arrForm['orderby']; |
---|
519 | // 表示件数 |
---|
520 | if ( |
---|
521 | isset($this->arrForm['disp_number']) |
---|
522 | && SC_Utils_Ex::sfIsInt($this->arrForm['disp_number']) |
---|
523 | ) { |
---|
524 | $this->disp_number = $this->arrForm['disp_number']; |
---|
525 | } else { |
---|
526 | //最小表示件数を選択 |
---|
527 | $this->disp_number = current(array_keys($this->arrPRODUCTLISTMAX)); |
---|
528 | } |
---|
529 | $this->tpl_pageno = $this->arrForm['pageno']; |
---|
530 | $this->inCart = strlen($this->arrForm['product_id']) >= 1; |
---|
531 | } |
---|
532 | } |
---|
533 | ?> |
---|