| Revision 15099,
933 bytes
checked in by Yammy, 19 years ago
(diff) |
|
UTF-8変換済みファイルインポート
1.3.4ベース
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 4 | * |
|---|
| 5 | * http://www.lockon.co.jp/ |
|---|
| 6 | */ |
|---|
| 7 | require_once("../require.php"); |
|---|
| 8 | |
|---|
| 9 | class LC_Page { |
|---|
| 10 | function LC_Page() { |
|---|
| 11 | $this->tpl_css[1] = URL_DIR.'css/layout/contact/index.css'; // メインCSSパス |
|---|
| 12 | $this->tpl_mainpage = 'contact/complete.tpl'; |
|---|
| 13 | $this->tpl_title .= 'お問い合わせ(完了ページ)'; |
|---|
| 14 | $this->tpl_mainno = 'contact'; |
|---|
| 15 | } |
|---|
| 16 | } |
|---|
| 17 | |
|---|
| 18 | $objPage = new LC_Page(); |
|---|
| 19 | $objView = new SC_SiteView(); |
|---|
| 20 | $objCampaignSess = new SC_CampaignSession(); |
|---|
| 21 | |
|---|
| 22 | // レイアウトデザインを取得 |
|---|
| 23 | $objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT); |
|---|
| 24 | |
|---|
| 25 | // キャンペーンからの遷移かチェック |
|---|
| 26 | $objPage->is_campaign = $objCampaignSess->getIsCampaign(); |
|---|
| 27 | $objPage->campaign_dir = $objCampaignSess->getCampaignDir(); |
|---|
| 28 | |
|---|
| 29 | $objView->assignobj($objPage); |
|---|
| 30 | // フレームを選択(キャンペーンページから遷移なら変更) |
|---|
| 31 | $objCampaignSess->pageView($objView); |
|---|
| 32 | |
|---|
| 33 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.