summaryrefslogtreecommitdiff
path: root/app/php/pages/Profile.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-03-10 16:36:52 +0100
committeremkael <emkael@tlen.pl>2016-03-10 16:36:52 +0100
commit8a4afbcfefb283d8217ae6be0f96d7e01bbbd21d (patch)
tree34056cdd9c0fbab1919fb11dfd07079a0c9a2741 /app/php/pages/Profile.php
parentf2cdce29953391437018fcc69d08451d4b4a17f2 (diff)
* password change form in profile page
Diffstat (limited to 'app/php/pages/Profile.php')
-rw-r--r--app/php/pages/Profile.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/php/pages/Profile.php b/app/php/pages/Profile.php
index fb2c89f..6df87bc 100644
--- a/app/php/pages/Profile.php
+++ b/app/php/pages/Profile.php
@@ -2,6 +2,23 @@
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;
+ }
+ }
+
}
?>