1: <?php
2: /**
3: * This code is licensed under AGPLv3 license or Afterlogic Software License
4: * if commercial version of the product was purchased.
5: * For full statements of the licenses see LICENSE-AFTERLOGIC and LICENSE-AGPL3 files.
6: */
7:
8: namespace Aurora\Modules\MailSignup;
9:
10: /**
11: * @license https://www.gnu.org/licenses/agpl-3.0.html AGPL-3.0
12: * @license https://afterlogic.com/products/common-licensing Afterlogic Software License
13: * @copyright Copyright (c) 2023, Afterlogic Corp.
14: *
15: * @property Settings $oModuleSettings
16: *
17: * @package Modules
18: */
19: class Module extends \Aurora\System\Module\AbstractModule
20: {
21: public function init() {}
22:
23: /**
24: * @return Module
25: */
26: public static function getInstance()
27: {
28: return parent::getInstance();
29: }
30:
31: /**
32: * @return Module
33: */
34: public static function Decorator()
35: {
36: return parent::Decorator();
37: }
38:
39: /**
40: * @return Settings
41: */
42: public function getModuleSettings()
43: {
44: return $this->oModuleSettings;
45: }
46:
47: /**
48: * Obtains list of module settings for authenticated user.
49: * @return array
50: */
51: public function GetSettings()
52: {
53: \Aurora\System\Api::checkUserRoleIsAtLeast(\Aurora\System\Enums\UserRole::Anonymous);
54:
55: return [
56: 'ServerModuleName' => $this->oModuleSettings->ServerModuleName,
57: 'HashModuleName' => $this->oModuleSettings->HashModuleName,
58: 'CustomLogoUrl' => $this->oModuleSettings->CustomLogoUrl,
59: 'InfoText' => $this->oModuleSettings->InfoText,
60: 'BottomInfoHtmlText' => $this->oModuleSettings->BottomInfoHtmlText,
61: 'DomainList' => $this->oModuleSettings->DomainList
62: ];
63: }
64:
65: /**
66: * All actions occur in subscriptions
67: *
68: * @param string $Name
69: * @param string $Login
70: * @param string $Password
71: * @return boolean
72: */
73: public function Signup($Name, $Login, $Password)
74: {
75: return false;
76: }
77: }
78: