source: branches/version-2_12-dev/data/class/pages/products/LC_Page_Products_Detail.php @ 21832

Revision 21832, 23.1 KB checked in by nanasess, 12 years ago (diff)

#1752 (LIMIT, OFFSET をベタ書きしない)

  • SC_Query::setLimitOffset() は MDB2::setLimit() のラッパーに修正
  • SC_SelectSql::setLimitOffset() は SC_Query::setLimitOffset() を使用するよう修正
  • 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/LC_Page_Ex.php';
26
27if (file_exists(MODULE_REALDIR . 'mdl_gmopg/inc/function.php')) {
28    require_once MODULE_REALDIR . 'mdl_gmopg/inc/function.php';
29}
30/**
31 * 商品詳細 のページクラス.
32 *
33 * @package Page
34 * @author LOCKON CO.,LTD.
35 * @version $Id:LC_Page_Products_Detail.php 15532 2007-08-31 14:39:46Z nanasess $
36 */
37class LC_Page_Products_Detail extends LC_Page_Ex {
38
39    /** 商品ステータス */
40    var $arrSTATUS;
41
42    /** 商品ステータス画像 */
43    var $arrSTATUS_IMAGE;
44
45    /** 発送予定日 */
46    var $arrDELIVERYDATE;
47
48    /** おすすめレベル */
49    var $arrRECOMMEND;
50
51    /** フォームパラメーター */
52    var $objFormParam;
53
54    /** アップロードファイル */
55    var $objUpFile;
56
57    /** モード */
58    var $mode;
59
60    // }}}
61    // {{{ functions
62
63    /**
64     * Page を初期化する.
65     *
66     * @return void
67     */
68    function init() {
69        parent::init();
70        $masterData = new SC_DB_MasterData_Ex();
71        $this->arrSTATUS = $masterData->getMasterData('mtb_status');
72        $this->arrSTATUS_IMAGE = $masterData->getMasterData('mtb_status_image');
73        $this->arrDELIVERYDATE = $masterData->getMasterData('mtb_delivery_date');
74        $this->arrRECOMMEND = $masterData->getMasterData('mtb_recommend');
75    }
76
77    /**
78     * Page のプロセス.
79     *
80     * @return void
81     */
82    function process() {
83        parent::process();
84        $this->action();
85        $this->sendResponse();
86    }
87
88    /**
89     * Page のAction.
90     *
91     * @return void
92     */
93    function action() {
94
95        // 会員クラス
96        $objCustomer = new SC_Customer_Ex();
97
98        // パラメーター管理クラス
99        $this->objFormParam = new SC_FormParam_Ex();
100        // パラメーター情報の初期化
101        $this->arrForm = $this->lfInitParam($this->objFormParam);
102        // ファイル管理クラス
103        $this->objUpFile = new SC_UploadFile_Ex(IMAGE_TEMP_REALDIR, IMAGE_SAVE_REALDIR);
104        // ファイル情報の初期化
105        $this->objUpFile = $this->lfInitFile($this->objUpFile);
106
107        // プロダクトIDの正当性チェック
108        $product_id = $this->lfCheckProductId($this->objFormParam->getValue('admin'),$this->objFormParam->getValue('product_id'));
109        $this->mode = $this->getMode();
110
111        $objProduct = new SC_Product_Ex();
112        $objProduct->setProductsClassByProductIds(array($product_id));
113
114        // 規格1クラス名
115        $this->tpl_class_name1 = $objProduct->className1[$product_id];
116
117        // 規格2クラス名
118        $this->tpl_class_name2 = $objProduct->className2[$product_id];
119
120        // 規格1
121        $this->arrClassCat1 = $objProduct->classCats1[$product_id];
122
123        // 規格1が設定されている
124        $this->tpl_classcat_find1 = $objProduct->classCat1_find[$product_id];
125        // 規格2が設定されている
126        $this->tpl_classcat_find2 = $objProduct->classCat2_find[$product_id];
127
128        $this->tpl_stock_find = $objProduct->stock_find[$product_id];
129        $this->tpl_product_class_id = $objProduct->classCategories[$product_id]['__unselected']['__unselected']['product_class_id'];
130        $this->tpl_product_type = $objProduct->classCategories[$product_id]['__unselected']['__unselected']['product_type'];
131
132        // 在庫が無い場合は、OnLoadしない。(javascriptエラー防止)
133        if ($this->tpl_stock_find) {
134            // 規格選択セレクトボックスの作成
135            $this->js_lnOnload .= $this->lfMakeSelect();
136        }
137
138        $this->tpl_javascript .= 'classCategories = ' . SC_Utils_Ex::jsonEncode($objProduct->classCategories[$product_id]) . ';';
139        $this->tpl_javascript .= 'function lnOnLoad(){' . $this->js_lnOnload . '}';
140        $this->tpl_onload .= 'lnOnLoad();';
141
142        // モバイル用 規格選択セレクトボックスの作成
143        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) {
144            $this->lfMakeSelectMobile($this, $product_id,$this->objFormParam->getValue('classcategory_id1'));
145        }
146
147        // 商品IDをFORM内に保持する
148        $this->tpl_product_id = $product_id;
149
150        switch ($this->mode) {
151            case 'cart':
152                $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam,
153                                                    $this->tpl_classcat_find1,
154                                                    $this->tpl_classcat_find2);
155                if (count($this->arrErr) == 0) {
156                    $objCartSess = new SC_CartSession_Ex();
157                    $product_class_id = $this->objFormParam->getValue('product_class_id');
158
159                    $objCartSess->addProduct($product_class_id, $this->objFormParam->getValue('quantity'));
160
161
162                    SC_Response_Ex::sendRedirect(CART_URLPATH);
163                    SC_Response_Ex::actionExit();
164                }
165                break;
166            case 'add_favorite':
167                // ログイン中のユーザが商品をお気に入りにいれる処理
168                if ($objCustomer->isLoginSuccess() === true && $this->objFormParam->getValue('favorite_product_id') > 0) {
169                    $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam);
170                    if (count($this->arrErr) == 0) {
171                        if (!$this->lfRegistFavoriteProduct($this->objFormParam->getValue('favorite_product_id'),$objCustomer->getValue('customer_id'))) {
172
173                            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg);
174                            $objPlugin->doAction('LC_Page_Products_Detail_action_add_favorite', array($this));
175
176                            SC_Response_Ex::actionExit();
177                        }
178                    }
179                }
180                break;
181
182            case 'add_favorite_sphone':
183                // ログイン中のユーザが商品をお気に入りにいれる処理(スマートフォン用)
184                if ($objCustomer->isLoginSuccess() === true && $this->objFormParam->getValue('favorite_product_id') > 0) {
185                    $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam);
186                    if (count($this->arrErr) == 0) {
187                        if ($this->lfRegistFavoriteProduct($this->objFormParam->getValue('favorite_product_id'),$objCustomer->getValue('customer_id'))) {
188
189                            $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg);
190                            $objPlugin->doAction('LC_Page_Products_Detail_action_add_favorite_sphone', array($this));
191
192                            print 'true';
193                            SC_Response_Ex::actionExit();
194                        }
195                    }
196                    print 'error';
197                    SC_Response_Ex::actionExit();
198                }
199                break;
200
201            case 'select':
202            case 'select2':
203            case 'selectItem':
204                /**
205                 * モバイルの数量指定・規格選択の際に、
206                 * $_SESSION['cart_referer_url'] を上書きさせないために、
207                 * 何もせずbreakする。
208                 */
209                break;
210
211            default:
212                // カート「戻るボタン」用に保持
213                $netURL = new Net_URL();
214                $_SESSION['cart_referer_url'] = $netURL->getURL();
215                break;
216        }
217
218        // モバイル用 ポストバック処理
219        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) {
220            switch ($this->mode) {
221                case 'select':
222                    // 規格1が設定されている場合
223                    if ($this->tpl_classcat_find1) {
224                        // templateの変更
225                        $this->tpl_mainpage = 'products/select_find1.tpl';
226                        break;
227                    }
228
229                    // 数量の入力を行う
230                    $this->tpl_mainpage = 'products/select_item.tpl';
231                    break;
232
233                case 'select2':
234                    $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam,$this->tpl_classcat_find1,$this->tpl_classcat_find2);
235
236                    // 規格1が設定されていて、エラーを検出した場合
237                    if ($this->tpl_classcat_find1 and $this->arrErr['classcategory_id1']) {
238                        // templateの変更
239                        $this->tpl_mainpage = 'products/select_find1.tpl';
240                        break;
241                    }
242
243                    // 規格2が設定されている場合
244                    if ($this->tpl_classcat_find2) {
245                        $this->arrErr = array();
246
247                        $this->tpl_mainpage = 'products/select_find2.tpl';
248                        break;
249                    }
250
251                case 'selectItem':
252                    $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam,$this->tpl_classcat_find1,$this->tpl_classcat_find2);
253
254                    // 規格2が設定されていて、エラーを検出した場合
255                    if ($this->tpl_classcat_find2 and $this->arrErr['classcategory_id2']) {
256                        // templateの変更
257                        $this->tpl_mainpage = 'products/select_find2.tpl';
258                        break;
259                    }
260
261                    $value1 = $this->objFormParam->getValue('classcategory_id1');
262                    $value2 = '#' . $this->objFormParam->getValue('classcategory_id2');
263
264                    if (strlen($value1) === 0) {
265                        $value1 = '__unselected';
266                    }
267
268                    $this->tpl_product_class_id = $objProduct->classCategories[$product_id][$value1][$value2]['product_class_id'];
269
270                    // この段階では、数量の入力チェックエラーを出させない。
271                    unset($this->arrErr['quantity']);
272
273                    // 数量の入力を行う
274                    $this->tpl_mainpage = 'products/select_item.tpl';
275                    break;
276
277                case 'cart':
278                    // この段階でエラーが出る場合は、数量の入力エラーのはず
279                    if (count($this->arrErr)) {
280                        // 数量の入力を行う
281                        $this->tpl_mainpage = 'products/select_item.tpl';
282                    }
283                    break;
284
285                default:
286                    $this->tpl_mainpage = 'products/detail.tpl';
287                    break;
288            }
289        }
290
291        // 商品詳細を取得
292        $this->arrProduct = $objProduct->getDetail($product_id);
293
294        // サブタイトルを取得
295        $this->tpl_subtitle = $this->arrProduct['name'];
296
297        // 関連カテゴリを取得
298        $this->arrRelativeCat = SC_Helper_DB_Ex::sfGetMultiCatTree($product_id);
299
300        // 商品ステータスを取得
301        $this->productStatus = $objProduct->getProductStatus($product_id);
302
303        // 画像ファイル指定がない場合の置換処理
304        $this->arrProduct['main_image']
305            = SC_Utils_Ex::sfNoImageMain($this->arrProduct['main_image']);
306
307        $this->subImageFlag = $this->lfSetFile($this->objUpFile,$this->arrProduct,$this->arrFile);
308        //レビュー情報の取得
309        $this->arrReview = $this->lfGetReviewData($product_id);
310
311        //関連商品情報表示
312        $this->arrRecommend = $this->lfPreGetRecommendProducts($product_id);
313
314        // ログイン判定
315        if ($objCustomer->isLoginSuccess() === true) {
316            //お気に入りボタン表示
317            $this->tpl_login = true;
318            $this->is_favorite = SC_Helper_DB_Ex::sfDataExists('dtb_customer_favorite_products', 'customer_id = ? AND product_id = ?', array($objCustomer->getValue('customer_id'), $product_id));
319        }
320
321    }
322
323    /**
324     * デストラクタ.
325     *
326     * @return void
327     */
328    function destroy() {
329        parent::destroy();
330    }
331
332    /* プロダクトIDの正当性チェック */
333    function lfCheckProductId($admin_mode,$product_id) {
334        // 管理機能からの確認の場合は、非公開の商品も表示する。
335        if (isset($admin_mode) && $admin_mode == 'on') {
336            SC_Utils_Ex::sfIsSuccess(new SC_Session_Ex());
337            $status = true;
338            $where = 'del_flg = 0';
339        } else {
340            $status = false;
341            $where = 'del_flg = 0 AND status = 1';
342        }
343
344        if (!SC_Utils_Ex::sfIsInt($product_id)
345            || SC_Utils_Ex::sfIsZeroFilling($product_id)
346            || !SC_Helper_DB_Ex::sfIsRecord('dtb_products', 'product_id', (array)$product_id, $where)
347        ) {
348                SC_Utils_Ex::sfDispSiteError(PRODUCT_NOT_FOUND);
349        }
350        return $product_id;
351    }
352
353    /* ファイル情報の初期化 */
354    function lfInitFile($objUpFile) {
355        $objUpFile->addFile('詳細-メイン画像', 'main_image', array('jpg'), IMAGE_SIZE);
356        for ($cnt = 1; $cnt <= PRODUCTSUB_MAX; $cnt++) {
357            $objUpFile->addFile("詳細-サブ画像$cnt", "sub_image$cnt", array('jpg'), IMAGE_SIZE);
358        }
359        return $objUpFile;
360    }
361
362    /* 規格選択セレクトボックスの作成 */
363    function lfMakeSelect() {
364        return 'fnSetClassCategories('
365            . 'document.form1, '
366            . SC_Utils_Ex::jsonEncode($this->objFormParam->getValue('classcategory_id2'))
367            . '); ';
368    }
369
370    /* 規格選択セレクトボックスの作成(モバイル) */
371    function lfMakeSelectMobile(&$objPage, $product_id,$request_classcategory_id1) {
372
373        $classcat_find1 = false;
374        $classcat_find2 = false;
375
376        // 規格名一覧
377        $arrClassName = SC_Helper_DB_Ex::sfGetIDValueList('dtb_class', 'class_id', 'name');
378        // 規格分類名一覧
379        $arrClassCatName = SC_Helper_DB_Ex::sfGetIDValueList('dtb_classcategory', 'classcategory_id', 'name');
380        // 商品規格情報の取得
381        $arrProductsClass = $this->lfGetProductsClass($product_id);
382
383        // 規格1クラス名の取得
384        $objPage->tpl_class_name1 = $arrClassName[$arrProductsClass[0]['class_id1']];
385        // 規格2クラス名の取得
386        $objPage->tpl_class_name2 = $arrClassName[$arrProductsClass[0]['class_id2']];
387
388        // すべての組み合わせ数
389        $count = count($arrProductsClass);
390
391        $classcat_id1 = '';
392
393        $arrSele1 = array();
394        $arrSele2 = array();
395
396        for ($i = 0; $i < $count; $i++) {
397            // 在庫のチェック
398            if ($arrProductsClass[$i]['stock'] <= 0 && $arrProductsClass[$i]['stock_unlimited'] != '1') {
399                continue;
400            }
401
402            // 規格1のセレクトボックス用
403            if ($classcat_id1 != $arrProductsClass[$i]['classcategory_id1']) {
404                $classcat_id1 = $arrProductsClass[$i]['classcategory_id1'];
405                $arrSele1[$classcat_id1] = $arrClassCatName[$classcat_id1];
406            }
407
408            // 規格2のセレクトボックス用
409            if ($arrProductsClass[$i]['classcategory_id1'] == $request_classcategory_id1 and $classcat_id2 != $arrProductsClass[$i]['classcategory_id2']) {
410                $classcat_id2 = $arrProductsClass[$i]['classcategory_id2'];
411                $arrSele2[$classcat_id2] = $arrClassCatName[$classcat_id2];
412            }
413        }
414
415        // 規格1
416        $objPage->arrClassCat1 = $arrSele1;
417        $objPage->arrClassCat2 = $arrSele2;
418
419        // 規格1が設定されている
420        if (isset($arrProductsClass[0]['classcategory_id1']) && $arrProductsClass[0]['classcategory_id1'] != '0') {
421            $classcat_find1 = true;
422        }
423
424        // 規格2が設定されている
425        if (isset($arrProductsClass[0]['classcategory_id2']) && $arrProductsClass[0]['classcategory_id2'] != '0') {
426            $classcat_find2 = true;
427        }
428
429        $objPage->tpl_classcat_find1 = $classcat_find1;
430        $objPage->tpl_classcat_find2 = $classcat_find2;
431    }
432
433    /* パラメーター情報の初期化 */
434    function lfInitParam(&$objFormParam) {
435        $objFormParam->addParam('規格1', 'classcategory_id1', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
436        $objFormParam->addParam('規格2', 'classcategory_id2', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
437        $objFormParam->addParam('数量', 'quantity', INT_LEN, 'n', array('EXIST_CHECK', 'ZERO_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
438        $objFormParam->addParam('管理者ログイン', 'admin', INT_LEN, 'a', array('ALNUM_CHECK','MAX_LENGTH_CHECK'));
439        $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n', array('EXIST_CHECK', 'ZERO_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
440        $objFormParam->addParam('お気に入り商品ID', 'favorite_product_id', INT_LEN, 'n', array('ZERO_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
441        $objFormParam->addParam('商品規格ID', 'product_class_id', INT_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
442        // 値の取得
443        $objFormParam->setParam($_REQUEST);
444        // 入力値の変換
445        $objFormParam->convParam();
446        // 入力情報を渡す
447        return $objFormParam->getFormParamList();
448    }
449
450    /* 商品規格情報の取得 */
451    function lfGetProductsClass($product_id) {
452        $objProduct = new SC_Product_Ex();
453        return $objProduct->getProductsClassFullByProductId($product_id);
454    }
455
456    /* 登録済み関連商品の読み込み */
457    function lfPreGetRecommendProducts($product_id) {
458        $objProduct = new SC_Product_Ex();
459        $objQuery =& SC_Query_Ex::getSingletonInstance();
460
461        $objQuery->setOrder('rank DESC');
462        $arrRecommendData = $objQuery->select('recommend_product_id, comment', 'dtb_recommend_products as t1 left join dtb_products as t2 on t1.recommend_product_id = t2.product_id', 't1.product_id = ? and t2.del_flg = 0 and t2.status = 1', array($product_id));
463
464        $arrRecommendProductId = array();
465        foreach ($arrRecommendData as $recommend) {
466            $arrRecommendProductId[] = $recommend['recommend_product_id'];
467        }
468
469        $objQuery =& SC_Query_Ex::getSingletonInstance();
470        $arrProducts = $objProduct->getListByProductIds($objQuery, $arrRecommendProductId);
471
472        $arrRecommend = array();
473        foreach ($arrRecommendData as $key => $arrRow) {
474            $arrRecommendData[$key] = array_merge($arrRow, $arrProducts[$arrRow['recommend_product_id']]);
475        }
476
477        return $arrRecommendData;
478    }
479
480    /* 入力内容のチェック */
481    function lfCheckError($mode,&$objFormParam,$tpl_classcat_find1 = null ,$tpl_classcat_find2 = null) {
482
483        switch ($mode) {
484        case 'add_favorite_sphone':
485        case 'add_favorite':
486            $objCustomer = new SC_Customer_Ex();
487            $objErr = new SC_CheckError_Ex();
488            $customer_id = $objCustomer->getValue('customer_id');
489            if (SC_Helper_DB_Ex::sfDataExists('dtb_customer_favorite_products', 'customer_id = ? AND product_id = ?', array($customer_id, $favorite_product_id))) {
490                $objErr->arrErr['add_favorite'.$favorite_product_id] = '※ この商品は既にお気に入りに追加されています。<br />';
491            }
492            break;
493        default:
494            // 入力データを渡す。
495            $arrRet =  $objFormParam->getHashArray();
496            $objErr = new SC_CheckError_Ex($arrRet);
497            $objErr->arrErr = $objFormParam->checkError();
498
499            // 複数項目チェック
500            if ($tpl_classcat_find1) {
501                $objErr->doFunc(array('規格1', 'classcategory_id1'), array('EXIST_CHECK'));
502            }
503            if ($tpl_classcat_find2) {
504                $objErr->doFunc(array('規格2', 'classcategory_id2'), array('EXIST_CHECK'));
505            }
506            break;
507        }
508
509        return $objErr->arrErr;
510    }
511
512    //商品ごとのレビュー情報を取得する
513    function lfGetReviewData($id) {
514        $objQuery =& SC_Query_Ex::getSingletonInstance();
515        //商品ごとのレビュー情報を取得する
516        $col = 'create_date, reviewer_url, reviewer_name, recommend_level, title, comment';
517        $from = 'dtb_review';
518        $where = 'del_flg = 0 AND status = 1 AND product_id = ?';
519        $objQuery->setOrder('create_date DESC');
520        $objQuery->setLimit(REVIEW_REGIST_MAX);
521        $arrWhereVal = array($id);
522        $arrReview = $objQuery->select($col, $from, $where, $arrWhereVal);
523        return $arrReview;
524    }
525
526    /*
527     * ファイルの情報をセットする
528     * @return $subImageFlag
529     */
530    function lfSetFile($objUpFile,$arrProduct,&$arrFile) {
531        // DBからのデータを引き継ぐ
532        $objUpFile->setDBFileList($arrProduct);
533        // ファイル表示用配列を渡す
534        $arrFile = $objUpFile->getFormFileList(IMAGE_TEMP_URLPATH, IMAGE_SAVE_URLPATH, true);
535
536        // サブ画像の有無を判定
537        $subImageFlag = false;
538        for ($i = 1; $i <= PRODUCTSUB_MAX; $i++) {
539            if ($arrFile['sub_image' . $i]['filepath'] != '') {
540                $subImageFlag = true;
541            }
542        }
543        return $subImageFlag;
544    }
545
546    /*
547     * お気に入り商品登録
548     * @return void
549     */
550    function lfRegistFavoriteProduct($favorite_product_id,$customer_id) {
551        // ログイン中のユーザが商品をお気に入りにいれる処理
552        if (!SC_Helper_DB_Ex::sfIsRecord('dtb_products', 'product_id', $favorite_product_id, 'del_flg = 0 AND status = 1')) {
553            SC_Utils_Ex::sfDispSiteError(PRODUCT_NOT_FOUND);
554            return false;
555        } else {
556            $objQuery =& SC_Query_Ex::getSingletonInstance();
557            $exists = $objQuery->exists('dtb_customer_favorite_products', 'customer_id = ? AND product_id = ?', array($customer_id, $favorite_product_id));
558
559            if (!$exists) {
560                $sqlval['customer_id'] = $customer_id;
561                $sqlval['product_id'] = $favorite_product_id;
562                $sqlval['update_date'] = 'CURRENT_TIMESTAMP';
563                $sqlval['create_date'] = 'CURRENT_TIMESTAMP';
564
565                $objQuery->begin();
566                $objQuery->insert('dtb_customer_favorite_products', $sqlval);
567                $objQuery->commit();
568            }
569            // お気に入りに登録したことを示すフラグ
570            $this->just_added_favorite = true;
571            return true;
572        }
573    }
574}
Note: See TracBrowser for help on using the repository browser.