source: branches/version-2_4/data/class/pages/entry/LC_Page_Entry_Kiyaku.php @ 18734

Revision 18734, 4.1 KB checked in by nanasess, 14 years ago (diff)

Copyright の更新(#601)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id Revision Date
  • 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-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
25require_once(CLASS_PATH . "pages/LC_Page.php");
26
27/**
28 * ご利用規約 のページクラス.
29 *
30 * @package Page
31 * @author LOCKON CO.,LTD.
32 * @version $Id$
33 */
34class LC_Page_Entry_Kiyaku extends LC_Page {
35
36    // }}}
37    // {{{ functions
38
39    /**
40     * Page を初期化する.
41     *
42     * @return void
43     */
44    function init() {
45        parent::init();
46        $this->tpl_mainpage = 'entry/kiyaku.tpl';
47        $this->tpl_title = "ご利用規約";
48    }
49
50    /**
51     * Page のプロセス.
52     *
53     * @return void
54     */
55    function process() {
56        global $objCampaignSess;
57
58        $objView = new SC_SiteView();
59        $objCustomer = new SC_Customer();
60        $objCampaignSess = new SC_CampaignSession();
61
62        // レイアウトデザインを取得
63        $layout = new SC_Helper_PageLayout_Ex();
64        $layout->sfGetPageLayout($this, false, DEF_LAYOUT);
65
66        // 規約内容の取得
67        $objQuery = new SC_Query();
68        $objQuery->setorder("rank DESC");
69        $arrRet = $objQuery->select("kiyaku_title, kiyaku_text", "dtb_kiyaku", "del_flg <> 1");
70
71        $max = count($arrRet);
72        $this->tpl_kiyaku_text = "";
73        for ($i = 0; $i < $max; $i++) {
74            $this->tpl_kiyaku_text.=$arrRet[$i]['kiyaku_title'] . "\n\n";
75            $this->tpl_kiyaku_text.=$arrRet[$i]['kiyaku_text'] . "\n\n";
76        }
77
78        // キャンペーンからの遷移がチェック
79        $this->is_campaign = $objCampaignSess->getIsCampaign();
80        $this->campaign_dir = $objCampaignSess->getCampaignDir();
81
82        $objView->assignobj($this);
83        // フレームを選択(キャンペーンページから遷移なら変更)
84        $objCampaignSess->pageView($objView);
85    }
86
87    /**
88     * モバイルページを初期化する.
89     *
90     * @return void
91     */
92    function mobileInit() {
93        $this->init();
94    }
95
96    /**
97     * Page のプロセス(モバイル).
98     *
99     * @return void
100     */
101    function mobileProcess() {
102        $objView = new SC_MobileView();
103        $objCustomer = new SC_Customer();
104
105        $offset = isset($_REQUEST['offset']) ? $_REQUEST['offset'] : 0;
106        $next = $offset;
107
108        // レイアウトデザインを取得
109        $objLayout = new SC_Helper_PageLayout_Ex();
110        $objLayout->sfGetPageLayout($this, false, DEF_LAYOUT);
111
112        // 規約内容の取得
113        $objQuery = new SC_Query();
114        $count = $objQuery->count("dtb_kiyaku", "del_flg <> 1");
115        $objQuery->setorder("rank DESC");
116        $objQuery->setlimitoffset(1, $offset);
117        $arrRet = $objQuery->select("kiyaku_title, kiyaku_text", "dtb_kiyaku", "del_flg <> 1");
118
119        if($count > $offset + 1){
120            $next++;
121        } else {
122            $next = -1;
123        }
124
125        $max = count($arrRet);
126        $this->tpl_kiyaku_text = "";
127        for ($i = 0; $i < $max; $i++) {
128            $this->tpl_kiyaku_text.=$arrRet[$i]['kiyaku_title'] . "\n\n";
129            $this->tpl_kiyaku_text.=$arrRet[$i]['kiyaku_text'] . "\n\n";
130        }
131
132        $objView->assign("offset", $next);
133        $objView->assignobj($this);
134        $objView->display(SITE_FRAME);
135    }
136
137    /**
138     * デストラクタ.
139     *
140     * @return void
141     */
142    function destroy() {
143        parent::destroy();
144    }
145}
146?>
Note: See TracBrowser for help on using the repository browser.