1: | <?php |
2: | |
3: | |
4: | |
5: | |
6: | |
7: | |
8: | namespace Aurora\Modules\ChangePasswordWebclient; |
9: | |
10: | |
11: | |
12: | |
13: | |
14: | |
15: | |
16: | |
17: | |
18: | |
19: | |
20: | |
21: | class Module extends \Aurora\System\Module\AbstractWebclientModule |
22: | { |
23: | |
24: | |
25: | |
26: | |
27: | |
28: | public static function getInstance() |
29: | { |
30: | return parent::getInstance(); |
31: | } |
32: | |
33: | |
34: | |
35: | |
36: | public static function Decorator() |
37: | { |
38: | return parent::Decorator(); |
39: | } |
40: | |
41: | |
42: | |
43: | |
44: | public function getModuleSettings() |
45: | { |
46: | return $this->oModuleSettings; |
47: | } |
48: | |
49: | |
50: | |
51: | |
52: | |
53: | |
54: | public function GetSettings() |
55: | { |
56: | \Aurora\System\Api::checkUserRoleIsAtLeast(\Aurora\System\Enums\UserRole::Anonymous); |
57: | |
58: | return array( |
59: | 'ShowSingleMailChangePasswordInCommonSettings' => $this->oModuleSettings->ShowSingleMailChangePasswordInCommonSettings, |
60: | 'ShowSingleMailChangePasswordInSecuritySettings' => $this->oModuleSettings->ShowSingleMailChangePasswordInSecuritySettings, |
61: | ); |
62: | } |
63: | |
64: | } |
65: | |