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

Revision 22567, 3.9 KB checked in by shutta, 11 years ago (diff)

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

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        $objQuery =& SC_Query_Ex::getSingletonInstance();
97        $objProduct = new SC_Product_Ex();
98
99        // おすすめ商品取得
100        $col = 'T1.best_id, T1.category_id, T1.rank, T1.product_id, T1.title, T1.comment, T1.create_date, T1.update_date';
101        $table = 'dtb_best_products as T1 INNER JOIN dtb_products as T2 ON T1.product_id = T2.product_id';
102        $where = 'T1.del_flg = 0 and T2.status = 1';
103        if (NOSTOCK_HIDDEN) {
104            $where .= ' AND EXISTS(SELECT * FROM dtb_products_class WHERE product_id = T1.product_id AND dtb_products_class.del_flg = 0 AND (stock >= 1 OR stock_unlimited = 1))';
105        }
106        $objQuery->setOrder('T1.rank');
107        $objQuery->setLimit(RECOMMEND_NUM);
108        $arrBestProducts = $objQuery->select($col, $table, $where);
109
110        $objQuery =& SC_Query_Ex::getSingletonInstance();
111        if (count($arrBestProducts) > 0) {
112            // 商品一覧を取得
113            // where条件生成&セット
114            $arrProductId = array();
115            $where = 'product_id IN (';
116            foreach ($arrBestProducts as $key => $val) {
117                $arrProductId[] = $val['product_id'];
118            }
119            // 取得
120            $arrProductList = $objProduct->getListByProductIds($objQuery, $arrProductId);
121            // おすすめ商品情報にマージ
122            foreach ($arrBestProducts as $key => $value) {
123                $arrRow =& $arrBestProducts[$key];
124                if (isset($arrProductList[$arrRow['product_id']])) {
125                    $arrRow = array_merge($arrRow, $arrProductList[$arrRow['product_id']]);
126                } else {
127                    // 削除済み商品は除外
128                    unset($arrBestProducts[$key]);
129                }
130            }
131        }
132        return $arrBestProducts;
133    }
134}
Note: See TracBrowser for help on using the repository browser.