* @link http://www.pradosoft.com/ * @copyright Copyright © 2006 PradoSoft * @license http://www.pradosoft.com/license/ */ Prado::using('Application.Portlets.Portlet'); /** * LoginPortlet class * * @author Qiang Xue * @link http://www.pradosoft.com/ * @copyright Copyright © 2006 PradoSoft * @license http://www.pradosoft.com/license/ */ class LoginPortlet extends Portlet { public function validateUser($sender,$param) { $authManager=$this->Application->getModule('auth'); if(!$authManager->login(strtolower($this->Username->Text),$this->Password->Text)) $param->IsValid=false; } public function loginButtonClicked($sender,$param) { if($this->Page->IsValid) $this->Response->reload(); //$this->Response->redirect($this->Application->getModule('auth')->getReturnUrl()); } }