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