blob: 9f2ac7fab1d61fd74bd12728ae21204ac690bb86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
}
}
}
?>
|