芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/cloud.pulsehost.co.uk/modules/AdminPanelWebclient/Module.php
oModuleSettings; } /** * Obtains list of module settings for authenticated user. * * @return array */ public function GetSettings() { \Aurora\System\Api::checkUserRoleIsAtLeast(\Aurora\System\Enums\UserRole::Anonymous); $aTenants = []; try { // Settings should be obtainable even if db is not configured yet $aTenants = \Aurora\Modules\Core\Module::Decorator()->GetTenants(0, 0, ''); } catch (\Exception $ex) { } return array( 'EntitiesPerPage' => $this->oModuleSettings->EntitiesPerPage, 'TabsOrder' => $this->oModuleSettings->TabsOrder, 'EntitiesOrder' => $this->oModuleSettings->EntitiesOrder, 'Tenants' => $aTenants, ); } }