| 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\SettingsWebclient; |
| 9: | |
| 10: | /** |
| 11: | * This module displays the interface of user settings. The settings are provided by other modules. |
| 12: | * |
| 13: | * @license https://www.gnu.org/licenses/agpl-3.0.html AGPL-3.0 |
| 14: | * @license https://afterlogic.com/products/common-licensing Afterlogic Software License |
| 15: | * @copyright Copyright (c) 2023, Afterlogic Corp. |
| 16: | * |
| 17: | * @property Settings $oModuleSettings |
| 18: | * |
| 19: | * @package Modules |
| 20: | */ |
| 21: | class Module extends \Aurora\System\Module\AbstractWebclientModule |
| 22: | { |
| 23: | /***** public functions might be called with web API *****/ |
| 24: | |
| 25: | /** |
| 26: | * @return Module |
| 27: | */ |
| 28: | public static function getInstance() |
| 29: | { |
| 30: | return parent::getInstance(); |
| 31: | } |
| 32: | |
| 33: | /** |
| 34: | * @return Module |
| 35: | */ |
| 36: | public static function Decorator() |
| 37: | { |
| 38: | return parent::Decorator(); |
| 39: | } |
| 40: | |
| 41: | /** |
| 42: | * @return Settings |
| 43: | */ |
| 44: | public function getModuleSettings() |
| 45: | { |
| 46: | return $this->oModuleSettings; |
| 47: | } |
| 48: | |
| 49: | /** |
| 50: | * Obtains list of module settings for authenticated user. |
| 51: | * |
| 52: | * @return array |
| 53: | */ |
| 54: | public function GetSettings() |
| 55: | { |
| 56: | \Aurora\System\Api::checkUserRoleIsAtLeast(\Aurora\System\Enums\UserRole::Anonymous); |
| 57: | |
| 58: | return array( |
| 59: | 'TabsOrder' => $this->oModuleSettings->TabsOrder, |
| 60: | ); |
| 61: | } |
| 62: | /***** public functions might be called with web API *****/ |
| 63: | } |
| 64: |