Changeset 16204


Ignore:
Timestamp:
2007/10/01 11:40:44 (16 years ago)
Author:
nanasess
Message:

モバイルページの構成に変更

Location:
branches/feature-module-update
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/entry/LC_Page_Entry_EmailMobile.php

    r16202 r16204  
    2828    function init() { 
    2929        parent::init(); 
    30         $this->tpl_mainpage = 'entry/email_mobile.tpl'; 
    31         $this->tpl_title = '携帯メール登録'; 
    32         $this->allowClientCache(); 
    3330    } 
    3431 
     
    3936     */ 
    4037    function process() { 
     38    } 
     39 
     40    /** 
     41     * モバイルページを初期化する. 
     42     * 
     43     * @return void 
     44     */ 
     45    function mobileInit() { 
     46        $this->tpl_mainpage = 'entry/email_mobile.tpl'; 
     47        $this->tpl_title = '携帯メール登録'; 
     48        $this->allowClientCache(); 
     49    } 
     50 
     51    /** 
     52     * Page のプロセス(モバイル). 
     53     * 
     54     * @return void 
     55     */ 
     56    function mobileProcess() { 
    4157        $objView = new SC_MobileView; 
    4258        $objCustomer = new SC_Customer; 
  • branches/feature-module-update/html/mobile/entry/email_mobile.php

    r16202 r16204  
    11<?php 
    2 /* 
     2/** 
     3 * 
    34 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
    45 * 
    56 * http://www.lockon.co.jp/ 
     7 * 
     8 * 
     9 * モバイルサイト/空メール会員登録 
    610 */ 
    711 
     
    1418 
    1519$objPage = new LC_Page_Entry_EmailMobile_Ex(); 
    16 $objPage->init(); 
    17 $objPage->process(); 
     20$objPage->mobileInit(); 
     21$objPage->mobileProcess(); 
    1822register_shutdown_function(array($objPage, "destroy")); 
    1923?> 
Note: See TracChangeset for help on using the changeset viewer.