source: branches/feature-module-update/data/class/pages/contact/LC_Page_Contact_Complete.php @ 16401

Revision 16401, 1.5 KB checked in by nanasess, 17 years ago (diff)

不要な $tpl_css を削除

  • Property charset set to UTF-8'
  • 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 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8// {{{ requires
9require_once(CLASS_PATH . "pages/LC_Page.php");
10
11/**
12 * 問い合わせ(完了ページ) のページクラス.
13 *
14 * @package Page
15 * @author LOCKON CO.,LTD.
16 * @version $Id$
17 */
18class LC_Page_Contact_Complete extends LC_Page {
19
20    // }}}
21    // {{{ functions
22
23    /**
24     * Page を初期化する.
25     *
26     * @return void
27     */
28    function init() {
29        parent::init();
30        $this->tpl_mainpage = 'contact/complete.tpl';
31        $this->tpl_title = 'お問い合わせ(完了ページ)';
32        $this->tpl_mainno = 'contact';
33    }
34
35    /**
36     * Page のプロセス.
37     *
38     * @return void
39     */
40    function process() {
41        $objView = new SC_SiteView();
42        $objCampaignSess = new SC_CampaignSession();
43
44        // レイアウトデザインを取得
45        $layout = new SC_Helper_PageLayout_Ex();
46        $layout->sfGetPageLayout($this, false, DEF_LAYOUT);
47
48        // キャンペーンからの遷移かチェック
49        $this->is_campaign = $objCampaignSess->getIsCampaign();
50        $this->campaign_dir = $objCampaignSess->getCampaignDir();
51
52        $objView->assignobj($this);
53        // フレームを選択(キャンペーンページから遷移なら変更)
54        $objCampaignSess->pageView($objView);
55    }
56
57    /**
58     * デストラクタ.
59     *
60     * @return void
61     */
62    function destroy() {
63        parent::destroy();
64    }
65}
66?>
Note: See TracBrowser for help on using the repository browser.