Changeset 15289 for branches


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

クラス化対応

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

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/SC_Session.php

    r15287 r15289  
    9898        session_destroy(); 
    9999        // ログに記録する 
    100         gfPrintLog("logout : user=".$this->login_id." auth=".$this->authority." sid=".$this->sid); 
     100        GC_Utils_Ex::gfPrintLog("logout : user=".$this->login_id." auth=".$this->authority." sid=".$this->sid); 
    101101    } 
    102102 
     
    109109        unset($_SESSION['uniqid']); 
    110110        // ログに記録する 
    111         gfPrintLog("logout : user=".$this->login_id." auth=".$this->authority." sid=".$this->sid); 
     111        GC_Utils_Ex::gfPrintLog("logout : user=".$this->login_id." auth=".$this->authority." sid=".$this->sid); 
    112112    } 
    113113} 
  • 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.