Blame | Letzte Änderung | Log anzeigen | RSS feed
<?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 $Id: Logout.php 1400 2006-09-09 03:13:44Z wei $* @package Demos*//*** Logout page class.** @author Wei Zhuo <weizhuo[at]gmail[dot]com>* @version $Id: Logout.php 1400 2006-09-09 03:13:44Z wei $* @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);}}?>