source: branches/version-2_12-multilang/data/class/pages/rss/LC_Page_Rss_Products.php @ 22503

Revision 22503, 10.8 KB checked in by m_uehara, 11 years ago (diff)

#2084 メッセージIDの振り直し

  • 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-2012 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
27/**
28 * RSS(商品) のページクラス.
29 *
30 * @package Page
31 * @author LOCKON CO.,LTD.
32 * @version $Id$
33 */
34class LC_Page_Rss_Products extends LC_Page_Ex {
35
36    // }}}
37    // {{{ functions
38
39    /**
40     * Page を初期化する.
41     *
42     * @return void
43     */
44    function init() {
45        parent::init();
46        $this->tpl_mainpage = 'rss/products.tpl';
47        $this->encode = 'UTF-8';
48        $this->title = t('c_Product list information_01');
49    }
50
51    /**
52     * Page のプロセス.
53     *
54     * @return void
55     */
56    function process() {
57        $this->action();
58    }
59
60    /**
61     * Page のアクション.
62     *
63     * @return void
64     */
65    function action() {
66
67        $objView = new SC_SiteView_Ex();
68
69        //店舗情報をセット
70        $this->arrSiteInfo = SC_Helper_DB_Ex::sfGetBasisData();
71
72        //商品IDを取得
73        if (isset($_GET['product_id']) && $_GET['product_id'] != '' && is_numeric($_GET['product_id'])) {
74            $product_id = $_GET['product_id'];
75        } else {
76            $product_id = '';
77        }
78
79        // モードによって分岐
80        $mode = $this->getMode();
81        switch ($mode) {
82            case 'all':
83                $arrProducts = $this->lfGetProductsDetailData($mode, $product_id);
84                break;
85            case 'list':
86                if ($product_id != '' && is_numeric($product_id)) {
87                    $arrProducts = $this->lfGetProductsDetailData($mode, $product_id);
88                } else {
89                    $arrProducts = $this->lfGetProductsListData();
90                }
91                break;
92            default:
93                if ($product_id != '' && is_numeric($product_id)) {
94                    $arrProducts = $this->lfGetProductsDetailData($mode, $product_id);
95                } else {
96                    $arrProducts = $this->lfGetProductsAllData();
97                }
98                break;
99        }
100
101        // 商品情報をセット
102        $this->arrProducts = $arrProducts;
103        // 従来互換 (for 2.11)
104        $this->arrProduct = &$this->arrProducts;
105
106        //セットしたデータをテンプレートファイルに出力
107        $objView->assignobj($this);
108
109        //キャッシュしない(念のため)
110        header('Pragma: no-cache');
111
112        //XMLテキスト(これがないと正常にRSSとして認識してくれないツールがあるため)
113        header('Content-type: application/xml');
114
115        //画面表示
116        $objView->display($this->tpl_mainpage, true);
117    }
118
119    /**
120     * デストラクタ.
121     *
122     * @return void
123     */
124    function destroy() {
125        parent::destroy();
126    }
127
128    /**
129     * lfGetProductsDetailData.
130     *
131     * @param str $mode モード
132     * @param str $product_id 商品ID
133     * @return array $arrProduct 商品情報の配列を返す
134     */
135    function lfGetProductsDetailData($mode, $product_id) {
136        $objQuery = SC_Query_Ex::getSingletonInstance();
137        //商品詳細を取得
138        if ($mode == 'all') {
139            $arrProduct = $this->lfGetProductsDetail($objQuery, $mode);
140        } else {
141            $arrProduct = $this->lfGetProductsDetail($objQuery, $product_id);
142        }
143        // 値の整形
144        foreach ($arrProduct as $key => $val) {
145            //販売価格を税込みに編集
146            $arrProduct[$key]['price02'] = SC_Helper_DB_Ex::sfCalcIncTax($arrProduct[$key]['price02']);
147            // 画像ファイルのURLセット
148            if (file_exists(IMAGE_SAVE_REALDIR . $arrProduct[$key]['main_list_image'])) {
149                $dir = IMAGE_SAVE_RSS_URL;
150            } else {
151                $dir = IMAGE_TEMP_RSS_URL;
152            }
153            $arrProduct[$key]['main_list_image'] = $dir . $arrProduct[$key]['main_list_image'];
154            if (file_exists(IMAGE_SAVE_REALDIR . $arrProduct[$key]['main_image'])) {
155                $dir = IMAGE_SAVE_RSS_URL;
156            } else {
157                $dir = IMAGE_TEMP_RSS_URL;
158            }
159            $arrProduct[$key]['main_image'] = $dir . $arrProduct[$key]['main_image'];
160            if (file_exists(IMAGE_SAVE_REALDIR . $arrProduct[$key]['main_large_image'])) {
161                $dir = IMAGE_SAVE_RSS_URL;
162            } else {
163                $dir = IMAGE_TEMP_RSS_URL;
164            }
165            $arrProduct[$key]['main_large_image'] = $dir . $arrProduct[$key]['main_large_image'];
166            // ポイント計算
167            $arrProduct[$key]['point'] = SC_Utils_Ex::sfPrePoint(
168                $arrProduct[$key]['price02'],
169                $arrProduct[$key]['point_rate']
170            );
171            // 在庫無制限
172            if ($arrProduct[$key]['stock_unlimited'] == 1) {
173                $arrProduct[$key]['stock_unlimited'] = t('LC_Page_Rss_Products_002');
174            } else {
175                $arrProduct[$key]['stock_unlimited'] = NULL;
176            }
177        }
178        return $arrProduct;
179    }
180
181    /**
182     * lfGetProductsListData.
183     *
184     * @return array $arrProduct 商品情報の配列を返す
185     */
186    function lfGetProductsListData() {
187        $objQuery = SC_Query_Ex::getSingletonInstance();
188        //商品一覧を取得
189        $arrProduct = $objQuery->getAll('SELECT product_id, name AS product_name FROM dtb_products');
190        return $arrProduct;
191    }
192
193    /**
194     * lfGetProductsAllData.
195     *
196     * @return array $arrProduct 商品情報の配列を返す
197     */
198    function lfGetProductsAllData() {
199        $objQuery = SC_Query_Ex::getSingletonInstance();
200        //商品情報を取得
201        $arrProduct = $this->lfGetProductsAllclass($objQuery);
202        // 値の整形
203        foreach ($arrProduct as $key => $val) {
204            // 画像ファイルのURLセット
205            if (file_exists(IMAGE_SAVE_REALDIR . $arrProduct[$key]['main_list_image'])) {
206                $dir = IMAGE_SAVE_RSS_URL;
207            } else {
208                $dir = IMAGE_TEMP_RSS_URL;
209            }
210            $arrProduct[$key]['main_list_image'] = $dir . $arrProduct[$key]['main_list_image'];
211            if (file_exists(IMAGE_SAVE_REALDIR . $arrProduct[$key]['main_image'])) {
212                $dir = IMAGE_SAVE_RSS_URL;
213            } else {
214                $dir = IMAGE_TEMP_RSS_URL;
215            }
216            $arrProduct[$key]['main_image'] = $dir . $arrProduct[$key]['main_image'];
217            if (file_exists(IMAGE_SAVE_REALDIR . $arrProduct[$key]['main_large_image'])) {
218                $dir = IMAGE_SAVE_RSS_URL;
219            } else {
220                $dir = IMAGE_TEMP_RSS_URL;
221            }
222            $arrProduct[$key]['main_large_image'] = $dir . $arrProduct[$key]['main_large_image'];
223            // ポイント計算
224            $arrProduct[$key]['point_max'] = SC_Utils_Ex::sfPrePoint(
225                $arrProduct[$key]['price02_max'],
226                $arrProduct[$key]['point_rate']
227            );
228            $arrProduct[$key]['point_min'] = SC_Utils_Ex::sfPrePoint(
229                $arrProduct[$key]['price02_min'],
230                $arrProduct[$key]['point_rate']
231            );
232        }
233        return $arrProduct;
234    }
235
236    /**
237     * 商品情報を取得する
238     *
239     * @param SC_Query $objQuery DB操作クラス
240     * @param integer $product_id 商品ID
241     * @return array $arrProduct 取得結果を配列で返す
242     */
243    function lfGetProductsDetail(&$objQuery, $product_id = 'all') {
244        $objProduct = new SC_Product_Ex();
245
246        // --- 商品詳細の取得
247        if ($product_id == 'all') {
248            $objQuery->setOrder('product_id');
249            $arrProductLsit = $objProduct->lists($objQuery);
250        } else {
251            $arrProductLsit = $objProduct->getListByProductIds($objQuery, array($product_id));
252        }
253
254        // 各商品のカテゴリIDとランクの取得
255        $arrProduct = array();
256        foreach ($arrProductLsit as $key => $val) {
257            $sql = '';
258            $sql .= ' SELECT';
259            $sql .= '   T1.category_id,';
260            $sql .= '   T1.rank AS product_rank,';
261            $sql .= '   T2.rank AS category_rank';
262            $sql .= ' FROM';
263            $sql .= '   dtb_product_categories AS T1';
264            $sql .= ' LEFT JOIN';
265            $sql .= '   dtb_category AS T2';
266            $sql .= ' ON';
267            $sql .= '   T1.category_id = T2.category_id';
268            $sql .= ' WHERE';
269            $sql .= '   product_id = ?';
270            $arrCategory = $objQuery->getAll($sql, array($val['product_id']));
271            if (!empty($arrCategory)) {
272                $arrProduct[$key] = array_merge($val, $arrCategory[0]);
273            }
274        }
275        return $arrProduct;
276    }
277
278    /**
279     * 商品情報を取得する(vw_products_allclass使用)
280     *
281     * @param SC_Query $objQuery DB操作クラス
282     * @return array $arrProduct 取得結果を配列で返す
283     */
284    function lfGetProductsAllclass(&$objQuery) {
285        // --- 商品一覧の取得
286        $objQuery->setWhere('del_flg = 0 AND status = 1');
287        $objQuery->setOrder('product_id');
288        $objProduct = new SC_Product_Ex();
289        $arrProductLsit = $objProduct->lists($objQuery);
290        // 各商品のカテゴリIDとランクの取得
291        $arrProducts = array();
292        foreach ($arrProductLsit as $key => $val) {
293            $sql = '';
294            $sql .= ' SELECT';
295            $sql .= '   T1.category_id,';
296            $sql .= '   T1.rank AS product_rank,';
297            $sql .= '   T2.rank AS category_rank';
298            $sql .= ' FROM';
299            $sql .= '   dtb_product_categories AS T1';
300            $sql .= ' LEFT JOIN';
301            $sql .= '   dtb_category AS T2';
302            $sql .= ' ON';
303            $sql .= '   T1.category_id = T2.category_id';
304            $sql .= ' WHERE';
305            $sql .= '   product_id = ?';
306            $arrCategory = $objQuery->getAll($sql, array($val['product_id']));
307            if (!empty($arrCategory)) {
308                $arrProducts[$key] = array_merge($val, $arrCategory[0]);
309            }
310        }
311
312        // 税込金額を設定する
313        SC_Product_Ex::setIncTaxToProducts($arrProducts);
314
315        return $arrProducts;
316    }
317}
Note: See TracBrowser for help on using the repository browser.