blob: 08fdfaf6549398443eae993a2f758bff3fac85fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
/**
* Logout class file.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2006 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Revision: $ $16/07/2006: $
* @package Demos
*/
/**
* Logout page class.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @version $Revision: $ $16/07/2006: $
* @package Demos
* @since 3.1
*/
class Logout extends TPage
{
/**
* Logs out the current user and redirect to default page.
*/
function onLoad($param)
{
$this->Application->getModule('auth')->logout();
$url = $this->Service->constructUrl($this->Service->DefaultPage);
$this->Response->redirect($url);
}
}
?>
|