mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
29 lines
657 B
PHP
29 lines
657 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
/**
|
|
* @class sessionAdminController
|
|
* @author NAVER (developers@xpressengine.com)
|
|
* @brief The admin controller class of the session module
|
|
*/
|
|
class SessionAdminController extends Session
|
|
{
|
|
/**
|
|
* @brief Initialization
|
|
*/
|
|
function init()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @brief The action to clean up the Derby session
|
|
*/
|
|
function procSessionAdminClear()
|
|
{
|
|
$oSessionController = getController('session');
|
|
$oSessionController->gc(0);
|
|
|
|
$this->add('result',lang('session_cleared'));
|
|
}
|
|
}
|
|
/* End of file session.admin.controller.php */
|
|
/* Location: ./modules/session/session.admin.controller.php */
|