Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 5 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
PasswordReset | |
0.00% |
0 / 5 |
|
0.00% |
0 / 5 |
30 | |
0.00% |
0 / 1 |
getId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTitle | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getLabel | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getDescription | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getUrl | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2014 (original work) Open Assessment Technologies SA; |
19 | * |
20 | * |
21 | */ |
22 | |
23 | namespace oat\tao\model\entryPoint; |
24 | |
25 | use oat\oatbox\PhpSerializable; |
26 | use tao_models_classes_accessControl_AclProxy; |
27 | use oat\oatbox\Configurable; |
28 | |
29 | class PasswordReset extends Configurable implements Entrypoint |
30 | { |
31 | public function getId() |
32 | { |
33 | return 'passwordreset'; |
34 | } |
35 | |
36 | public function getTitle() |
37 | { |
38 | return __("Unable to access your account?"); |
39 | } |
40 | |
41 | public function getLabel() |
42 | { |
43 | return __('Password reset'); |
44 | } |
45 | |
46 | public function getDescription() |
47 | { |
48 | return __('Request a password reset via Email.'); |
49 | } |
50 | |
51 | public function getUrl() |
52 | { |
53 | return _url('index', 'PasswordRecovery', 'tao'); |
54 | } |
55 | } |