diff options
author | emkael <emkael@tlen.pl> | 2016-03-10 17:04:37 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-03-10 17:05:29 +0100 |
commit | 94fb52459898989ea2158e6b90440632724a1679 (patch) | |
tree | 893ff1164a377c0c3f7130ef11e8ddd76d42252c /app/php/pages/Profile.php | |
parent | 07ecb30061e36402acf8f4f62e7b7267ebf92c86 (diff) |
* password change form as a component
Diffstat (limited to 'app/php/pages/Profile.php')
-rw-r--r-- | app/php/pages/Profile.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app/php/pages/Profile.php b/app/php/pages/Profile.php deleted file mode 100644 index 6df87bc..0000000 --- a/app/php/pages/Profile.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php - -class Profile extends TPage { - - public function checkPassword($sender, $param) { - $param->IsValid = DbUser::verifyPassword( - $this->Password->Text, $this->User->DbRecord->Password - ); - } - - public function changePassword($sender, $param) { - $this->SuccessMessage->Visible = FALSE; - if ($this->Page->IsValid) { - $this->User->DbRecord->Password = DbUser::generatePassword( - $this->NewPassword->Text - ); - $this->User->DbRecord->save(); - $this->SuccessMessage->Visible = TRUE; - } - } - -} - -?> |