source: branches/version-2_13-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend.php @ 22735

Revision 22735, 3.5 KB checked in by h_yoshimoto, 11 years ago (diff)

#2193 ユニットテストチームのコミットをマージ(from camp/camp-2_13-tests)

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
24// {{{ requires
25require_once CLASS_EX_REALDIR . 'page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Ex.php';
26
27/**
28 * Recommend のページクラス.
29 *
30 * @package Page
31 * @author LOCKON CO.,LTD.
32 * @version $Id: LC_Page_FrontParts_Bloc_Best5 - Copy.php -1   $
33 */
34class LC_Page_FrontParts_Bloc_Recommend extends LC_Page_FrontParts_Bloc_Ex
35{
36
37    // }}}
38    // {{{ functions
39
40    /**
41     * Page を初期化する.
42     *
43     * @return void
44     */
45    function init()
46    {
47        parent::init();
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
69        // 基本情報を渡す
70        $objSiteInfo = SC_Helper_DB_Ex::sfGetBasisData();
71        $this->arrInfo = $objSiteInfo->data;
72
73        //おすすめ商品表示
74        $this->arrBestProducts = $this->lfGetRanking();
75
76
77    }
78
79    /**
80     * デストラクタ.
81     *
82     * @return void
83     */
84    function destroy()
85    {
86        parent::destroy();
87    }
88
89    /**
90     * おすすめ商品検索.
91     *
92     * @return array $arrBestProducts 検索結果配列
93     */
94    function lfGetRanking()
95    {
96        $objRecommend = new SC_Helper_BestProducts_Ex();
97
98        // おすすめ商品取得
99        $arrRecommends = $objRecommend->getList(RECOMMEND_NUM);
100
101        $response = array();
102        if (count($arrRecommends) > 0) {
103            // 商品一覧を取得
104            $objQuery =& SC_Query_Ex::getSingletonInstance();
105            $objProduct = new SC_Product_Ex();
106            // where条件生成&セット
107            $arrProductId = array();
108            foreach ($arrRecommends as $key => $val) {
109                $arrProductId[] = $val['product_id'];
110            }
111            $arrProducts = $objProduct->getListByProductIds($objQuery, $arrProductId);
112
113            // 税込金額を設定する
114            SC_Product_Ex::setIncTaxToProducts($arrProducts);
115
116            // おすすめ商品情報にマージ
117            foreach ($arrRecommends as $key => $value) {
118                if (isset($arrProducts[$value['product_id']])) {
119                    $product = $arrProducts[$value['product_id']];
120                    if (!NOSTOCK_HIDDEN || ($product['status'] == 1 && ($product['stock_max'] >= 1 || $product['stock_unlimited_max'] == 1))) {
121                        $response[] = array_merge($value, $arrProducts[$value['product_id']]);
122                    }
123                } else {
124                    // 削除済み商品は除外
125                    unset($arrRecommends[$key]);
126                }
127            }
128        }
129        return $response;
130    }
131}
Note: See TracBrowser for help on using the repository browser.