* @link https://github.com/pradosoft/prado * @copyright Copyright © 2006-2015 The PRADO Group * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ Prado::using('Application.Portlets.Portlet'); /** * AccountPortlet class * * @author Qiang Xue * @link https://github.com/pradosoft/prado * @copyright Copyright © 2006-2015 The PRADO Group * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ class AccountPortlet extends Portlet { public function logout($sender,$param) { $this->Application->getModule('auth')->logout(); $this->Response->reload(); } }