blob: 1ef0b820a3a5d8a857fbfc4ec0fe02ae429d6151 (
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
|
<?php
/**
* AccountPortlet class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2006 PradoSoft
* @license http://www.pradosoft.com/license/
*/
Prado::using('Application.Portlets.Portlet');
/**
* AccountPortlet class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2006 PradoSoft
* @license http://www.pradosoft.com/license/
*/
class AccountPortlet extends Portlet
{
public function logout($sender,$param)
{
$this->Application->getModule('auth')->logout();
$this->Response->reload();
}
}
|