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_REALDIR . "pages/mypage/LC_Page_AbstractMypage.php"); |
---|
26 | |
---|
27 | /** |
---|
28 | * MyPage のページクラス. |
---|
29 | * |
---|
30 | * @package Page |
---|
31 | * @author LOCKON CO.,LTD. |
---|
32 | * @version $Id$ |
---|
33 | */ |
---|
34 | class LC_Page_MyPage extends LC_Page_AbstractMypage { |
---|
35 | |
---|
36 | // {{{ properties |
---|
37 | |
---|
38 | /** ページナンバー */ |
---|
39 | var $tpl_pageno; |
---|
40 | |
---|
41 | // }}} |
---|
42 | // {{{ functions |
---|
43 | |
---|
44 | /** |
---|
45 | * Page を初期化する. |
---|
46 | * |
---|
47 | * @return void |
---|
48 | */ |
---|
49 | function init() { |
---|
50 | parent::init(); |
---|
51 | $this->tpl_title = 'MYページ'; |
---|
52 | if (Net_UserAgent_Mobile::isMobile() === true){ |
---|
53 | $this->tpl_subtitle = 'MYページ'; |
---|
54 | } else { |
---|
55 | $this->tpl_subtitle = '購入履歴一覧'; |
---|
56 | } |
---|
57 | $this->tpl_navi = TEMPLATE_REALDIR . 'mypage/navi.tpl'; |
---|
58 | $this->tpl_mainno = 'mypage'; |
---|
59 | $this->tpl_mypageno = 'index'; |
---|
60 | $this->httpCacheControl('nocache'); |
---|
61 | } |
---|
62 | |
---|
63 | /** |
---|
64 | * Page のプロセス. |
---|
65 | * |
---|
66 | * @return void |
---|
67 | */ |
---|
68 | function process() { |
---|
69 | parent::process(); |
---|
70 | } |
---|
71 | |
---|
72 | /** |
---|
73 | * Page のAction. |
---|
74 | * |
---|
75 | * @return void |
---|
76 | */ |
---|
77 | function action() { |
---|
78 | |
---|
79 | $objQuery = new SC_Query(); |
---|
80 | $objCustomer = new SC_Customer(); |
---|
81 | |
---|
82 | //ページ送り用 |
---|
83 | if (isset($_POST['pageno'])) { |
---|
84 | $this->tpl_pageno = htmlspecialchars($_POST['pageno'], ENT_QUOTES, CHAR_CODE); |
---|
85 | } |
---|
86 | |
---|
87 | $col = "order_id, create_date, payment_id, payment_total"; |
---|
88 | $from = "dtb_order"; |
---|
89 | $where = "del_flg = 0 AND customer_id=?"; |
---|
90 | $arrval = array($objCustomer->getvalue('customer_id')); |
---|
91 | $order = "order_id DESC"; |
---|
92 | |
---|
93 | $linemax = $objQuery->count($from, $where, $arrval); |
---|
94 | $this->tpl_linemax = $linemax; |
---|
95 | |
---|
96 | if (Net_UserAgent_Mobile::isMobile() === true){ |
---|
97 | define ("HISTORY_NUM", 5); // TODO |
---|
98 | $pageNo = isset($_GET['pageno']) ? (int) $_GET['pageno'] : 0; // TODO |
---|
99 | |
---|
100 | // ページ送りの取得 |
---|
101 | // next |
---|
102 | if ($pageNo + HISTORY_NUM < $linemax) { |
---|
103 | $next = "<a href='?pageno=" . ($pageNo + HISTORY_NUM) . "'>次へ→</a>"; |
---|
104 | } else { |
---|
105 | $next = ""; |
---|
106 | } |
---|
107 | |
---|
108 | // previous |
---|
109 | if ($pageNo - HISTORY_NUM > 0) { |
---|
110 | $previous = "<a href='?pageno=" . ($pageNo - HISTORY_NUM) . "'>←前へ</a>"; |
---|
111 | } elseif ($pageNo == 0) { |
---|
112 | $previous = ""; |
---|
113 | } else { |
---|
114 | $previous = "<a href='?pageno=0'>←前へ</a>"; |
---|
115 | } |
---|
116 | |
---|
117 | // bar |
---|
118 | if ($next != '' && $previous != '') { |
---|
119 | $bar = " | "; |
---|
120 | } else { |
---|
121 | $bar = ""; |
---|
122 | } |
---|
123 | |
---|
124 | $this->tpl_strnavi = $previous . $bar . $next; |
---|
125 | |
---|
126 | // 取得範囲の指定(開始行番号、行数のセット) |
---|
127 | $objQuery->setLimitOffset(HISTORY_NUM, $pageNo); |
---|
128 | } else { |
---|
129 | // ページ送りの取得 |
---|
130 | $objNavi = new SC_PageNavi($this->tpl_pageno, $linemax, SEARCH_PMAX, "fnNaviPage", NAVI_PMAX); |
---|
131 | $this->tpl_strnavi = $objNavi->strnavi; // 表示文字列 |
---|
132 | $startno = $objNavi->start_row; |
---|
133 | |
---|
134 | // 取得範囲の指定(開始行番号、行数のセット) |
---|
135 | $objQuery->setLimitOffset(SEARCH_PMAX, $startno); |
---|
136 | } |
---|
137 | |
---|
138 | // 表示順序 |
---|
139 | $objQuery->setOrder($order); |
---|
140 | |
---|
141 | //購入履歴の取得 |
---|
142 | $this->arrOrder = $objQuery->select($col, $from, $where, $arrval); |
---|
143 | |
---|
144 | // 支払い方法の取得 |
---|
145 | $objDb = new SC_Helper_DB_Ex(); |
---|
146 | $this->arrPayment = $objDb->sfGetIDValueList("dtb_payment", "payment_id", "payment_method"); |
---|
147 | |
---|
148 | } |
---|
149 | |
---|
150 | /** |
---|
151 | * デストラクタ. |
---|
152 | * |
---|
153 | * @return void |
---|
154 | */ |
---|
155 | function destroy() { |
---|
156 | parent::destroy(); |
---|
157 | } |
---|
158 | } |
---|