Ignore:
Timestamp:
2007/08/10 18:36:55 (19 years ago)
Author:
nanasess
Message:

Page のクラス化対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/html/admin/index.php

    r15080 r15280  
    55 * http://www.lockon.co.jp/ 
    66 */ 
     7// {{{ requires 
    78require_once("./require.php"); 
     9require_once(CLASS_PATH . "page_extends/admin/LC_Page_Admin_Ex.php"); 
    810 
    9 class LC_Page { 
    10     function LC_Page() { 
    11         $this->tpl_mainpage = 'login.tpl'; 
    12     } 
    13 } 
     11// }}} 
     12// {{{ generate page 
    1413 
    15 $objPage = new LC_Page(); 
    16 $objView = new SC_AdminView(); 
    17 $objView->assignobj($objPage); 
    18 $objView->display(LOGIN_FRAME); 
     14$objPage = new LC_Page_Admin_Ex(); 
     15$objPage->init(); 
     16$objPage->process(); 
     17register_shutdown_function(array($objPage, "destroy")); 
    1918?> 
Note: See TracChangeset for help on using the changeset viewer.