summaryrefslogtreecommitdiff
path: root/app/php/components/PasswordChange.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-04-06 13:50:31 +0200
committeremkael <emkael@tlen.pl>2016-04-06 13:51:23 +0200
commitdfe234a7aaaacedcc94716f955b44a1b50c4a057 (patch)
tree3c16b945b65a654d6dd63421250fb2bb496cd1f2 /app/php/components/PasswordChange.php
parentfd7b7aa1bade514a87667ff90b94dc3050f68560 (diff)
* components -> controls
Diffstat (limited to 'app/php/components/PasswordChange.php')
-rw-r--r--app/php/components/PasswordChange.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/app/php/components/PasswordChange.php b/app/php/components/PasswordChange.php
deleted file mode 100644
index 9f2ac7f..0000000
--- a/app/php/components/PasswordChange.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?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;
- }
- }
-
-}
-
-?>