source: branches/feature-module-update/html/mobile/regist/complete.php @ 15080

Revision 15080, 755 bytes checked in by nanasess, 17 years ago (diff)

svn properties 設定

  • svn:mime-type - application/x-httpd-php; charset=UTF-8
  • svn:keywords - Id
  • Property svn:keywords set to Id
  • Property svn:mime-type set to application/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
8require_once("../require.php");
9
10class LC_Page{
11    function LC_Page(){
12        $this->tpl_mainpage = 'regist/complete.tpl';
13        $this->tpl_css = '/css/layout/regist/complete.css';
14        $this->tpl_title = '会員登録(完了ページ)';
15    }
16}
17
18$objPage = new LC_Page();
19$objView = new SC_MobileView();
20
21// カートが空かどうかを確認する。
22$objCartSess = new SC_CartSession("", false);
23$objPage->tpl_cart_empty = count($objCartSess->getCartList()) < 1;
24
25// レイアウトデザインを取得
26$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
27
28$objView->assignobj($objPage);
29$objView->display(SITE_FRAME);
30
31?>
Note: See TracBrowser for help on using the repository browser.