Ignore:
Timestamp:
2007/08/16 15:39:40 (17 years ago)
Author:
nanasess
Message:

クラス化対応

File:
1 edited

Legend:

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

    r15080 r15289  
    55 * http://www.lockon.co.jp/ 
    66 */ 
     7// {{{ requires 
    78require_once("./require.php"); 
     9require_once(CLASS_PATH . "page_extends/admin/LC_Page_Admin_Logout_Ex.php"); 
    810 
    9 $objSess = new SC_Session(); 
    10 $objSess->logout(); 
     11// }}} 
     12// {{{ generate page 
    1113 
    12 header("Location: " . URL_DIR . "admin/index.php"); 
     14$objPage = new LC_Page_Admin_Logout_Ex(); 
     15$objPage->init(); 
     16$objPage->process(); 
     17register_shutdown_function(array($objPage, "destroy")); 
    1318?> 
Note: See TracChangeset for help on using the changeset viewer.