diff options
Diffstat (limited to 'app/php/controls/PasswordChange.php')
-rw-r--r-- | app/php/controls/PasswordChange.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app/php/controls/PasswordChange.php b/app/php/controls/PasswordChange.php new file mode 100644 index 0000000..9f2ac7f --- /dev/null +++ b/app/php/controls/PasswordChange.php @@ -0,0 +1,38 @@ +<?php + +Prado::using('Application.user.DbUser'); + +class PasswordChange extends TTemplateControl { + + public function getUserToChange() { + return $this->getControlState('user'); + } + + public function setUserToChange(DbUser $user) { + if ($user->IsGuest) { + throw new TInvalidDataValueException( + 'Password change impossible for guest user' + ); + } + $this->setControlState('user', $user); + } + + public function checkPassword($sender, $param) { + $param->IsValid = DbUser::verifyPassword( + $this->Password->Text, $this->UserToChange->getPassword() + ); + } + + public function changePassword($sender, $param) { + $this->SuccessMessage->Visible = FALSE; + if ($this->Page->IsValid) { + $this->UserToChange->changePassword( + $this->NewPassword->Text + ); + $this->SuccessMessage->Visible = TRUE; + } + } + +} + +?> |