Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php/*** LoginPortlet class file** @author Qiang Xue <qiang.xue@gmail.com>* @link http://www.pradosoft.com/* @copyright Copyright © 2006 PradoSoft* @license http://www.pradosoft.com/license/* @version $Id: LoginPortlet.php 1398 2006-09-08 19:31:03Z xue $*/Prado::using('Application.Portlets.Portlet');/*** LoginPortlet class** @author Qiang Xue <qiang.xue@gmail.com>* @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());}}?>