@@ -15,40 +15,40 @@ |
||
15 | 15 | use OCP\Settings\ISettings; |
16 | 16 | |
17 | 17 | class Presets implements ISettings { |
18 | - public function __construct( |
|
19 | - private ServerVersion $serverVersion, |
|
20 | - private IConfig $config, |
|
21 | - private IL10N $l, |
|
22 | - private readonly PresetManager $presetManager, |
|
23 | - private IInitialState $initialState, |
|
24 | - ) { |
|
25 | - } |
|
26 | - |
|
27 | - public function getForm() { |
|
28 | - $presets = $this->presetManager->retrieveLexiconPreset(); |
|
29 | - $selectedPreset = $this->presetManager->getLexiconPreset(); |
|
30 | - $presetsApps = $this->presetManager->retrieveLexiconPresetApps(); |
|
31 | - |
|
32 | - $this->initialState->provideInitialState('settings-selected-preset', $selectedPreset->name); |
|
33 | - $this->initialState->provideInitialState('settings-presets', $presets); |
|
34 | - $this->initialState->provideInitialState('settings-presets-apps', $presetsApps); |
|
35 | - |
|
36 | - return new TemplateResponse('settings', 'settings/admin/presets', [], ''); |
|
37 | - } |
|
38 | - |
|
39 | - public function getSection() { |
|
40 | - return 'presets'; |
|
41 | - } |
|
42 | - |
|
43 | - public function getPriority() { |
|
44 | - return 0; |
|
45 | - } |
|
46 | - |
|
47 | - public function getName(): ?string { |
|
48 | - return $this->l->t('Settings presets'); |
|
49 | - } |
|
50 | - |
|
51 | - public function getAuthorizedAppConfig(): array { |
|
52 | - return []; |
|
53 | - } |
|
18 | + public function __construct( |
|
19 | + private ServerVersion $serverVersion, |
|
20 | + private IConfig $config, |
|
21 | + private IL10N $l, |
|
22 | + private readonly PresetManager $presetManager, |
|
23 | + private IInitialState $initialState, |
|
24 | + ) { |
|
25 | + } |
|
26 | + |
|
27 | + public function getForm() { |
|
28 | + $presets = $this->presetManager->retrieveLexiconPreset(); |
|
29 | + $selectedPreset = $this->presetManager->getLexiconPreset(); |
|
30 | + $presetsApps = $this->presetManager->retrieveLexiconPresetApps(); |
|
31 | + |
|
32 | + $this->initialState->provideInitialState('settings-selected-preset', $selectedPreset->name); |
|
33 | + $this->initialState->provideInitialState('settings-presets', $presets); |
|
34 | + $this->initialState->provideInitialState('settings-presets-apps', $presetsApps); |
|
35 | + |
|
36 | + return new TemplateResponse('settings', 'settings/admin/presets', [], ''); |
|
37 | + } |
|
38 | + |
|
39 | + public function getSection() { |
|
40 | + return 'presets'; |
|
41 | + } |
|
42 | + |
|
43 | + public function getPriority() { |
|
44 | + return 0; |
|
45 | + } |
|
46 | + |
|
47 | + public function getName(): ?string { |
|
48 | + return $this->l->t('Settings presets'); |
|
49 | + } |
|
50 | + |
|
51 | + public function getAuthorizedAppConfig(): array { |
|
52 | + return []; |
|
53 | + } |
|
54 | 54 | } |
@@ -14,25 +14,25 @@ |
||
14 | 14 | |
15 | 15 | class Presets implements IIconSection { |
16 | 16 | |
17 | - public function __construct( |
|
18 | - private IL10N $l, |
|
19 | - private IURLGenerator $urlGenerator, |
|
20 | - ) { |
|
21 | - } |
|
22 | - |
|
23 | - public function getIcon(): string { |
|
24 | - return $this->urlGenerator->imagePath('settings', 'library_add_check.svg'); |
|
25 | - } |
|
26 | - |
|
27 | - public function getID(): string { |
|
28 | - return 'presets'; |
|
29 | - } |
|
30 | - |
|
31 | - public function getName(): string { |
|
32 | - return $this->l->t('Settings presets'); |
|
33 | - } |
|
34 | - |
|
35 | - public function getPriority(): int { |
|
36 | - return 0; |
|
37 | - } |
|
17 | + public function __construct( |
|
18 | + private IL10N $l, |
|
19 | + private IURLGenerator $urlGenerator, |
|
20 | + ) { |
|
21 | + } |
|
22 | + |
|
23 | + public function getIcon(): string { |
|
24 | + return $this->urlGenerator->imagePath('settings', 'library_add_check.svg'); |
|
25 | + } |
|
26 | + |
|
27 | + public function getID(): string { |
|
28 | + return 'presets'; |
|
29 | + } |
|
30 | + |
|
31 | + public function getName(): string { |
|
32 | + return $this->l->t('Settings presets'); |
|
33 | + } |
|
34 | + |
|
35 | + public function getPriority(): int { |
|
36 | + return 0; |
|
37 | + } |
|
38 | 38 | } |
@@ -6,139 +6,139 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
10 | - 'OCA\\Settings\\Activity\\GroupProvider' => $baseDir . '/../lib/Activity/GroupProvider.php', |
|
11 | - 'OCA\\Settings\\Activity\\GroupSetting' => $baseDir . '/../lib/Activity/GroupSetting.php', |
|
12 | - 'OCA\\Settings\\Activity\\Provider' => $baseDir . '/../lib/Activity/Provider.php', |
|
13 | - 'OCA\\Settings\\Activity\\SecurityFilter' => $baseDir . '/../lib/Activity/SecurityFilter.php', |
|
14 | - 'OCA\\Settings\\Activity\\SecurityProvider' => $baseDir . '/../lib/Activity/SecurityProvider.php', |
|
15 | - 'OCA\\Settings\\Activity\\SecuritySetting' => $baseDir . '/../lib/Activity/SecuritySetting.php', |
|
16 | - 'OCA\\Settings\\Activity\\Setting' => $baseDir . '/../lib/Activity/Setting.php', |
|
17 | - 'OCA\\Settings\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', |
|
18 | - 'OCA\\Settings\\BackgroundJobs\\VerifyUserData' => $baseDir . '/../lib/BackgroundJobs/VerifyUserData.php', |
|
19 | - 'OCA\\Settings\\Command\\AdminDelegation\\Add' => $baseDir . '/../lib/Command/AdminDelegation/Add.php', |
|
20 | - 'OCA\\Settings\\Command\\AdminDelegation\\Remove' => $baseDir . '/../lib/Command/AdminDelegation/Remove.php', |
|
21 | - 'OCA\\Settings\\Command\\AdminDelegation\\Show' => $baseDir . '/../lib/Command/AdminDelegation/Show.php', |
|
22 | - 'OCA\\Settings\\Controller\\AISettingsController' => $baseDir . '/../lib/Controller/AISettingsController.php', |
|
23 | - 'OCA\\Settings\\Controller\\AdminSettingsController' => $baseDir . '/../lib/Controller/AdminSettingsController.php', |
|
24 | - 'OCA\\Settings\\Controller\\AppSettingsController' => $baseDir . '/../lib/Controller/AppSettingsController.php', |
|
25 | - 'OCA\\Settings\\Controller\\AuthSettingsController' => $baseDir . '/../lib/Controller/AuthSettingsController.php', |
|
26 | - 'OCA\\Settings\\Controller\\AuthorizedGroupController' => $baseDir . '/../lib/Controller/AuthorizedGroupController.php', |
|
27 | - 'OCA\\Settings\\Controller\\ChangePasswordController' => $baseDir . '/../lib/Controller/ChangePasswordController.php', |
|
28 | - 'OCA\\Settings\\Controller\\CheckSetupController' => $baseDir . '/../lib/Controller/CheckSetupController.php', |
|
29 | - 'OCA\\Settings\\Controller\\CommonSettingsTrait' => $baseDir . '/../lib/Controller/CommonSettingsTrait.php', |
|
30 | - 'OCA\\Settings\\Controller\\DeclarativeSettingsController' => $baseDir . '/../lib/Controller/DeclarativeSettingsController.php', |
|
31 | - 'OCA\\Settings\\Controller\\HelpController' => $baseDir . '/../lib/Controller/HelpController.php', |
|
32 | - 'OCA\\Settings\\Controller\\LogSettingsController' => $baseDir . '/../lib/Controller/LogSettingsController.php', |
|
33 | - 'OCA\\Settings\\Controller\\MailSettingsController' => $baseDir . '/../lib/Controller/MailSettingsController.php', |
|
34 | - 'OCA\\Settings\\Controller\\PersonalSettingsController' => $baseDir . '/../lib/Controller/PersonalSettingsController.php', |
|
35 | - 'OCA\\Settings\\Controller\\PresetController' => $baseDir . '/../lib/Controller/PresetController.php', |
|
36 | - 'OCA\\Settings\\Controller\\ReasonsController' => $baseDir . '/../lib/Controller/ReasonsController.php', |
|
37 | - 'OCA\\Settings\\Controller\\TwoFactorSettingsController' => $baseDir . '/../lib/Controller/TwoFactorSettingsController.php', |
|
38 | - 'OCA\\Settings\\Controller\\UsersController' => $baseDir . '/../lib/Controller/UsersController.php', |
|
39 | - 'OCA\\Settings\\Controller\\WebAuthnController' => $baseDir . '/../lib/Controller/WebAuthnController.php', |
|
40 | - 'OCA\\Settings\\Events\\BeforeTemplateRenderedEvent' => $baseDir . '/../lib/Events/BeforeTemplateRenderedEvent.php', |
|
41 | - 'OCA\\Settings\\Hooks' => $baseDir . '/../lib/Hooks.php', |
|
42 | - 'OCA\\Settings\\Listener\\AppPasswordCreatedActivityListener' => $baseDir . '/../lib/Listener/AppPasswordCreatedActivityListener.php', |
|
43 | - 'OCA\\Settings\\Listener\\GroupRemovedListener' => $baseDir . '/../lib/Listener/GroupRemovedListener.php', |
|
44 | - 'OCA\\Settings\\Listener\\MailProviderListener' => $baseDir . '/../lib/Listener/MailProviderListener.php', |
|
45 | - 'OCA\\Settings\\Listener\\UserAddedToGroupActivityListener' => $baseDir . '/../lib/Listener/UserAddedToGroupActivityListener.php', |
|
46 | - 'OCA\\Settings\\Listener\\UserRemovedFromGroupActivityListener' => $baseDir . '/../lib/Listener/UserRemovedFromGroupActivityListener.php', |
|
47 | - 'OCA\\Settings\\Mailer\\NewUserMailHelper' => $baseDir . '/../lib/Mailer/NewUserMailHelper.php', |
|
48 | - 'OCA\\Settings\\Middleware\\SubadminMiddleware' => $baseDir . '/../lib/Middleware/SubadminMiddleware.php', |
|
49 | - 'OCA\\Settings\\ResponseDefinitions' => $baseDir . '/../lib/ResponseDefinitions.php', |
|
50 | - 'OCA\\Settings\\Search\\AppSearch' => $baseDir . '/../lib/Search/AppSearch.php', |
|
51 | - 'OCA\\Settings\\Search\\SectionSearch' => $baseDir . '/../lib/Search/SectionSearch.php', |
|
52 | - 'OCA\\Settings\\Search\\UserSearch' => $baseDir . '/../lib/Search/UserSearch.php', |
|
53 | - 'OCA\\Settings\\Sections\\Admin\\Additional' => $baseDir . '/../lib/Sections/Admin/Additional.php', |
|
54 | - 'OCA\\Settings\\Sections\\Admin\\ArtificialIntelligence' => $baseDir . '/../lib/Sections/Admin/ArtificialIntelligence.php', |
|
55 | - 'OCA\\Settings\\Sections\\Admin\\Delegation' => $baseDir . '/../lib/Sections/Admin/Delegation.php', |
|
56 | - 'OCA\\Settings\\Sections\\Admin\\Groupware' => $baseDir . '/../lib/Sections/Admin/Groupware.php', |
|
57 | - 'OCA\\Settings\\Sections\\Admin\\Overview' => $baseDir . '/../lib/Sections/Admin/Overview.php', |
|
58 | - 'OCA\\Settings\\Sections\\Admin\\Presets' => $baseDir . '/../lib/Sections/Admin/Presets.php', |
|
59 | - 'OCA\\Settings\\Sections\\Admin\\Security' => $baseDir . '/../lib/Sections/Admin/Security.php', |
|
60 | - 'OCA\\Settings\\Sections\\Admin\\Server' => $baseDir . '/../lib/Sections/Admin/Server.php', |
|
61 | - 'OCA\\Settings\\Sections\\Admin\\Sharing' => $baseDir . '/../lib/Sections/Admin/Sharing.php', |
|
62 | - 'OCA\\Settings\\Sections\\Personal\\Availability' => $baseDir . '/../lib/Sections/Personal/Availability.php', |
|
63 | - 'OCA\\Settings\\Sections\\Personal\\Calendar' => $baseDir . '/../lib/Sections/Personal/Calendar.php', |
|
64 | - 'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => $baseDir . '/../lib/Sections/Personal/PersonalInfo.php', |
|
65 | - 'OCA\\Settings\\Sections\\Personal\\Security' => $baseDir . '/../lib/Sections/Personal/Security.php', |
|
66 | - 'OCA\\Settings\\Sections\\Personal\\SyncClients' => $baseDir . '/../lib/Sections/Personal/SyncClients.php', |
|
67 | - 'OCA\\Settings\\Service\\AuthorizedGroupService' => $baseDir . '/../lib/Service/AuthorizedGroupService.php', |
|
68 | - 'OCA\\Settings\\Service\\NotFoundException' => $baseDir . '/../lib/Service/NotFoundException.php', |
|
69 | - 'OCA\\Settings\\Service\\ServiceException' => $baseDir . '/../lib/Service/ServiceException.php', |
|
70 | - 'OCA\\Settings\\Settings\\Admin\\ArtificialIntelligence' => $baseDir . '/../lib/Settings/Admin/ArtificialIntelligence.php', |
|
71 | - 'OCA\\Settings\\Settings\\Admin\\Delegation' => $baseDir . '/../lib/Settings/Admin/Delegation.php', |
|
72 | - 'OCA\\Settings\\Settings\\Admin\\Mail' => $baseDir . '/../lib/Settings/Admin/Mail.php', |
|
73 | - 'OCA\\Settings\\Settings\\Admin\\MailProvider' => $baseDir . '/../lib/Settings/Admin/MailProvider.php', |
|
74 | - 'OCA\\Settings\\Settings\\Admin\\Overview' => $baseDir . '/../lib/Settings/Admin/Overview.php', |
|
75 | - 'OCA\\Settings\\Settings\\Admin\\Presets' => $baseDir . '/../lib/Settings/Admin/Presets.php', |
|
76 | - 'OCA\\Settings\\Settings\\Admin\\Security' => $baseDir . '/../lib/Settings/Admin/Security.php', |
|
77 | - 'OCA\\Settings\\Settings\\Admin\\Server' => $baseDir . '/../lib/Settings/Admin/Server.php', |
|
78 | - 'OCA\\Settings\\Settings\\Admin\\Sharing' => $baseDir . '/../lib/Settings/Admin/Sharing.php', |
|
79 | - 'OCA\\Settings\\Settings\\Admin\\Users' => $baseDir . '/../lib/Settings/Admin/Users.php', |
|
80 | - 'OCA\\Settings\\Settings\\Personal\\Additional' => $baseDir . '/../lib/Settings/Personal/Additional.php', |
|
81 | - 'OCA\\Settings\\Settings\\Personal\\PersonalInfo' => $baseDir . '/../lib/Settings/Personal/PersonalInfo.php', |
|
82 | - 'OCA\\Settings\\Settings\\Personal\\Security\\Authtokens' => $baseDir . '/../lib/Settings/Personal/Security/Authtokens.php', |
|
83 | - 'OCA\\Settings\\Settings\\Personal\\Security\\Password' => $baseDir . '/../lib/Settings/Personal/Security/Password.php', |
|
84 | - 'OCA\\Settings\\Settings\\Personal\\Security\\TwoFactor' => $baseDir . '/../lib/Settings/Personal/Security/TwoFactor.php', |
|
85 | - 'OCA\\Settings\\Settings\\Personal\\Security\\WebAuthn' => $baseDir . '/../lib/Settings/Personal/Security/WebAuthn.php', |
|
86 | - 'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => $baseDir . '/../lib/Settings/Personal/ServerDevNotice.php', |
|
87 | - 'OCA\\Settings\\SetupChecks\\AllowedAdminRanges' => $baseDir . '/../lib/SetupChecks/AllowedAdminRanges.php', |
|
88 | - 'OCA\\Settings\\SetupChecks\\AppDirsWithDifferentOwner' => $baseDir . '/../lib/SetupChecks/AppDirsWithDifferentOwner.php', |
|
89 | - 'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => $baseDir . '/../lib/SetupChecks/BruteForceThrottler.php', |
|
90 | - 'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => $baseDir . '/../lib/SetupChecks/CheckUserCertificates.php', |
|
91 | - 'OCA\\Settings\\SetupChecks\\CodeIntegrity' => $baseDir . '/../lib/SetupChecks/CodeIntegrity.php', |
|
92 | - 'OCA\\Settings\\SetupChecks\\CronErrors' => $baseDir . '/../lib/SetupChecks/CronErrors.php', |
|
93 | - 'OCA\\Settings\\SetupChecks\\CronInfo' => $baseDir . '/../lib/SetupChecks/CronInfo.php', |
|
94 | - 'OCA\\Settings\\SetupChecks\\DataDirectoryProtected' => $baseDir . '/../lib/SetupChecks/DataDirectoryProtected.php', |
|
95 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => $baseDir . '/../lib/SetupChecks/DatabaseHasMissingColumns.php', |
|
96 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingIndices' => $baseDir . '/../lib/SetupChecks/DatabaseHasMissingIndices.php', |
|
97 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingPrimaryKeys' => $baseDir . '/../lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php', |
|
98 | - 'OCA\\Settings\\SetupChecks\\DatabasePendingBigIntConversions' => $baseDir . '/../lib/SetupChecks/DatabasePendingBigIntConversions.php', |
|
99 | - 'OCA\\Settings\\SetupChecks\\DebugMode' => $baseDir . '/../lib/SetupChecks/DebugMode.php', |
|
100 | - 'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => $baseDir . '/../lib/SetupChecks/DefaultPhoneRegionSet.php', |
|
101 | - 'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => $baseDir . '/../lib/SetupChecks/EmailTestSuccessful.php', |
|
102 | - 'OCA\\Settings\\SetupChecks\\FileLocking' => $baseDir . '/../lib/SetupChecks/FileLocking.php', |
|
103 | - 'OCA\\Settings\\SetupChecks\\ForwardedForHeaders' => $baseDir . '/../lib/SetupChecks/ForwardedForHeaders.php', |
|
104 | - 'OCA\\Settings\\SetupChecks\\HttpsUrlGeneration' => $baseDir . '/../lib/SetupChecks/HttpsUrlGeneration.php', |
|
105 | - 'OCA\\Settings\\SetupChecks\\InternetConnectivity' => $baseDir . '/../lib/SetupChecks/InternetConnectivity.php', |
|
106 | - 'OCA\\Settings\\SetupChecks\\JavaScriptModules' => $baseDir . '/../lib/SetupChecks/JavaScriptModules.php', |
|
107 | - 'OCA\\Settings\\SetupChecks\\JavaScriptSourceMaps' => $baseDir . '/../lib/SetupChecks/JavaScriptSourceMaps.php', |
|
108 | - 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat' => $baseDir . '/../lib/SetupChecks/LegacySSEKeyFormat.php', |
|
109 | - 'OCA\\Settings\\SetupChecks\\LoggingLevel' => $baseDir . '/../lib/SetupChecks/LoggingLevel.php', |
|
110 | - 'OCA\\Settings\\SetupChecks\\MaintenanceWindowStart' => $baseDir . '/../lib/SetupChecks/MaintenanceWindowStart.php', |
|
111 | - 'OCA\\Settings\\SetupChecks\\MemcacheConfigured' => $baseDir . '/../lib/SetupChecks/MemcacheConfigured.php', |
|
112 | - 'OCA\\Settings\\SetupChecks\\MimeTypeMigrationAvailable' => $baseDir . '/../lib/SetupChecks/MimeTypeMigrationAvailable.php', |
|
113 | - 'OCA\\Settings\\SetupChecks\\MysqlRowFormat' => $baseDir . '/../lib/SetupChecks/MysqlRowFormat.php', |
|
114 | - 'OCA\\Settings\\SetupChecks\\MysqlUnicodeSupport' => $baseDir . '/../lib/SetupChecks/MysqlUnicodeSupport.php', |
|
115 | - 'OCA\\Settings\\SetupChecks\\OcxProviders' => $baseDir . '/../lib/SetupChecks/OcxProviders.php', |
|
116 | - 'OCA\\Settings\\SetupChecks\\OverwriteCliUrl' => $baseDir . '/../lib/SetupChecks/OverwriteCliUrl.php', |
|
117 | - 'OCA\\Settings\\SetupChecks\\PhpApcuConfig' => $baseDir . '/../lib/SetupChecks/PhpApcuConfig.php', |
|
118 | - 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset' => $baseDir . '/../lib/SetupChecks/PhpDefaultCharset.php', |
|
119 | - 'OCA\\Settings\\SetupChecks\\PhpDisabledFunctions' => $baseDir . '/../lib/SetupChecks/PhpDisabledFunctions.php', |
|
120 | - 'OCA\\Settings\\SetupChecks\\PhpFreetypeSupport' => $baseDir . '/../lib/SetupChecks/PhpFreetypeSupport.php', |
|
121 | - 'OCA\\Settings\\SetupChecks\\PhpGetEnv' => $baseDir . '/../lib/SetupChecks/PhpGetEnv.php', |
|
122 | - 'OCA\\Settings\\SetupChecks\\PhpMaxFileSize' => $baseDir . '/../lib/SetupChecks/PhpMaxFileSize.php', |
|
123 | - 'OCA\\Settings\\SetupChecks\\PhpMemoryLimit' => $baseDir . '/../lib/SetupChecks/PhpMemoryLimit.php', |
|
124 | - 'OCA\\Settings\\SetupChecks\\PhpModules' => $baseDir . '/../lib/SetupChecks/PhpModules.php', |
|
125 | - 'OCA\\Settings\\SetupChecks\\PhpOpcacheSetup' => $baseDir . '/../lib/SetupChecks/PhpOpcacheSetup.php', |
|
126 | - 'OCA\\Settings\\SetupChecks\\PhpOutdated' => $baseDir . '/../lib/SetupChecks/PhpOutdated.php', |
|
127 | - 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering' => $baseDir . '/../lib/SetupChecks/PhpOutputBuffering.php', |
|
128 | - 'OCA\\Settings\\SetupChecks\\PushService' => $baseDir . '/../lib/SetupChecks/PushService.php', |
|
129 | - 'OCA\\Settings\\SetupChecks\\RandomnessSecure' => $baseDir . '/../lib/SetupChecks/RandomnessSecure.php', |
|
130 | - 'OCA\\Settings\\SetupChecks\\ReadOnlyConfig' => $baseDir . '/../lib/SetupChecks/ReadOnlyConfig.php', |
|
131 | - 'OCA\\Settings\\SetupChecks\\SchedulingTableSize' => $baseDir . '/../lib/SetupChecks/SchedulingTableSize.php', |
|
132 | - 'OCA\\Settings\\SetupChecks\\SecurityHeaders' => $baseDir . '/../lib/SetupChecks/SecurityHeaders.php', |
|
133 | - 'OCA\\Settings\\SetupChecks\\SupportedDatabase' => $baseDir . '/../lib/SetupChecks/SupportedDatabase.php', |
|
134 | - 'OCA\\Settings\\SetupChecks\\SystemIs64bit' => $baseDir . '/../lib/SetupChecks/SystemIs64bit.php', |
|
135 | - 'OCA\\Settings\\SetupChecks\\TaskProcessingPickupSpeed' => $baseDir . '/../lib/SetupChecks/TaskProcessingPickupSpeed.php', |
|
136 | - 'OCA\\Settings\\SetupChecks\\TempSpaceAvailable' => $baseDir . '/../lib/SetupChecks/TempSpaceAvailable.php', |
|
137 | - 'OCA\\Settings\\SetupChecks\\TransactionIsolation' => $baseDir . '/../lib/SetupChecks/TransactionIsolation.php', |
|
138 | - 'OCA\\Settings\\SetupChecks\\WellKnownUrls' => $baseDir . '/../lib/SetupChecks/WellKnownUrls.php', |
|
139 | - 'OCA\\Settings\\SetupChecks\\Woff2Loading' => $baseDir . '/../lib/SetupChecks/Woff2Loading.php', |
|
140 | - 'OCA\\Settings\\UserMigration\\AccountMigrator' => $baseDir . '/../lib/UserMigration/AccountMigrator.php', |
|
141 | - 'OCA\\Settings\\UserMigration\\AccountMigratorException' => $baseDir . '/../lib/UserMigration/AccountMigratorException.php', |
|
142 | - 'OCA\\Settings\\WellKnown\\ChangePasswordHandler' => $baseDir . '/../lib/WellKnown/ChangePasswordHandler.php', |
|
143 | - 'OCA\\Settings\\WellKnown\\SecurityTxtHandler' => $baseDir . '/../lib/WellKnown/SecurityTxtHandler.php', |
|
9 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php', |
|
10 | + 'OCA\\Settings\\Activity\\GroupProvider' => $baseDir.'/../lib/Activity/GroupProvider.php', |
|
11 | + 'OCA\\Settings\\Activity\\GroupSetting' => $baseDir.'/../lib/Activity/GroupSetting.php', |
|
12 | + 'OCA\\Settings\\Activity\\Provider' => $baseDir.'/../lib/Activity/Provider.php', |
|
13 | + 'OCA\\Settings\\Activity\\SecurityFilter' => $baseDir.'/../lib/Activity/SecurityFilter.php', |
|
14 | + 'OCA\\Settings\\Activity\\SecurityProvider' => $baseDir.'/../lib/Activity/SecurityProvider.php', |
|
15 | + 'OCA\\Settings\\Activity\\SecuritySetting' => $baseDir.'/../lib/Activity/SecuritySetting.php', |
|
16 | + 'OCA\\Settings\\Activity\\Setting' => $baseDir.'/../lib/Activity/Setting.php', |
|
17 | + 'OCA\\Settings\\AppInfo\\Application' => $baseDir.'/../lib/AppInfo/Application.php', |
|
18 | + 'OCA\\Settings\\BackgroundJobs\\VerifyUserData' => $baseDir.'/../lib/BackgroundJobs/VerifyUserData.php', |
|
19 | + 'OCA\\Settings\\Command\\AdminDelegation\\Add' => $baseDir.'/../lib/Command/AdminDelegation/Add.php', |
|
20 | + 'OCA\\Settings\\Command\\AdminDelegation\\Remove' => $baseDir.'/../lib/Command/AdminDelegation/Remove.php', |
|
21 | + 'OCA\\Settings\\Command\\AdminDelegation\\Show' => $baseDir.'/../lib/Command/AdminDelegation/Show.php', |
|
22 | + 'OCA\\Settings\\Controller\\AISettingsController' => $baseDir.'/../lib/Controller/AISettingsController.php', |
|
23 | + 'OCA\\Settings\\Controller\\AdminSettingsController' => $baseDir.'/../lib/Controller/AdminSettingsController.php', |
|
24 | + 'OCA\\Settings\\Controller\\AppSettingsController' => $baseDir.'/../lib/Controller/AppSettingsController.php', |
|
25 | + 'OCA\\Settings\\Controller\\AuthSettingsController' => $baseDir.'/../lib/Controller/AuthSettingsController.php', |
|
26 | + 'OCA\\Settings\\Controller\\AuthorizedGroupController' => $baseDir.'/../lib/Controller/AuthorizedGroupController.php', |
|
27 | + 'OCA\\Settings\\Controller\\ChangePasswordController' => $baseDir.'/../lib/Controller/ChangePasswordController.php', |
|
28 | + 'OCA\\Settings\\Controller\\CheckSetupController' => $baseDir.'/../lib/Controller/CheckSetupController.php', |
|
29 | + 'OCA\\Settings\\Controller\\CommonSettingsTrait' => $baseDir.'/../lib/Controller/CommonSettingsTrait.php', |
|
30 | + 'OCA\\Settings\\Controller\\DeclarativeSettingsController' => $baseDir.'/../lib/Controller/DeclarativeSettingsController.php', |
|
31 | + 'OCA\\Settings\\Controller\\HelpController' => $baseDir.'/../lib/Controller/HelpController.php', |
|
32 | + 'OCA\\Settings\\Controller\\LogSettingsController' => $baseDir.'/../lib/Controller/LogSettingsController.php', |
|
33 | + 'OCA\\Settings\\Controller\\MailSettingsController' => $baseDir.'/../lib/Controller/MailSettingsController.php', |
|
34 | + 'OCA\\Settings\\Controller\\PersonalSettingsController' => $baseDir.'/../lib/Controller/PersonalSettingsController.php', |
|
35 | + 'OCA\\Settings\\Controller\\PresetController' => $baseDir.'/../lib/Controller/PresetController.php', |
|
36 | + 'OCA\\Settings\\Controller\\ReasonsController' => $baseDir.'/../lib/Controller/ReasonsController.php', |
|
37 | + 'OCA\\Settings\\Controller\\TwoFactorSettingsController' => $baseDir.'/../lib/Controller/TwoFactorSettingsController.php', |
|
38 | + 'OCA\\Settings\\Controller\\UsersController' => $baseDir.'/../lib/Controller/UsersController.php', |
|
39 | + 'OCA\\Settings\\Controller\\WebAuthnController' => $baseDir.'/../lib/Controller/WebAuthnController.php', |
|
40 | + 'OCA\\Settings\\Events\\BeforeTemplateRenderedEvent' => $baseDir.'/../lib/Events/BeforeTemplateRenderedEvent.php', |
|
41 | + 'OCA\\Settings\\Hooks' => $baseDir.'/../lib/Hooks.php', |
|
42 | + 'OCA\\Settings\\Listener\\AppPasswordCreatedActivityListener' => $baseDir.'/../lib/Listener/AppPasswordCreatedActivityListener.php', |
|
43 | + 'OCA\\Settings\\Listener\\GroupRemovedListener' => $baseDir.'/../lib/Listener/GroupRemovedListener.php', |
|
44 | + 'OCA\\Settings\\Listener\\MailProviderListener' => $baseDir.'/../lib/Listener/MailProviderListener.php', |
|
45 | + 'OCA\\Settings\\Listener\\UserAddedToGroupActivityListener' => $baseDir.'/../lib/Listener/UserAddedToGroupActivityListener.php', |
|
46 | + 'OCA\\Settings\\Listener\\UserRemovedFromGroupActivityListener' => $baseDir.'/../lib/Listener/UserRemovedFromGroupActivityListener.php', |
|
47 | + 'OCA\\Settings\\Mailer\\NewUserMailHelper' => $baseDir.'/../lib/Mailer/NewUserMailHelper.php', |
|
48 | + 'OCA\\Settings\\Middleware\\SubadminMiddleware' => $baseDir.'/../lib/Middleware/SubadminMiddleware.php', |
|
49 | + 'OCA\\Settings\\ResponseDefinitions' => $baseDir.'/../lib/ResponseDefinitions.php', |
|
50 | + 'OCA\\Settings\\Search\\AppSearch' => $baseDir.'/../lib/Search/AppSearch.php', |
|
51 | + 'OCA\\Settings\\Search\\SectionSearch' => $baseDir.'/../lib/Search/SectionSearch.php', |
|
52 | + 'OCA\\Settings\\Search\\UserSearch' => $baseDir.'/../lib/Search/UserSearch.php', |
|
53 | + 'OCA\\Settings\\Sections\\Admin\\Additional' => $baseDir.'/../lib/Sections/Admin/Additional.php', |
|
54 | + 'OCA\\Settings\\Sections\\Admin\\ArtificialIntelligence' => $baseDir.'/../lib/Sections/Admin/ArtificialIntelligence.php', |
|
55 | + 'OCA\\Settings\\Sections\\Admin\\Delegation' => $baseDir.'/../lib/Sections/Admin/Delegation.php', |
|
56 | + 'OCA\\Settings\\Sections\\Admin\\Groupware' => $baseDir.'/../lib/Sections/Admin/Groupware.php', |
|
57 | + 'OCA\\Settings\\Sections\\Admin\\Overview' => $baseDir.'/../lib/Sections/Admin/Overview.php', |
|
58 | + 'OCA\\Settings\\Sections\\Admin\\Presets' => $baseDir.'/../lib/Sections/Admin/Presets.php', |
|
59 | + 'OCA\\Settings\\Sections\\Admin\\Security' => $baseDir.'/../lib/Sections/Admin/Security.php', |
|
60 | + 'OCA\\Settings\\Sections\\Admin\\Server' => $baseDir.'/../lib/Sections/Admin/Server.php', |
|
61 | + 'OCA\\Settings\\Sections\\Admin\\Sharing' => $baseDir.'/../lib/Sections/Admin/Sharing.php', |
|
62 | + 'OCA\\Settings\\Sections\\Personal\\Availability' => $baseDir.'/../lib/Sections/Personal/Availability.php', |
|
63 | + 'OCA\\Settings\\Sections\\Personal\\Calendar' => $baseDir.'/../lib/Sections/Personal/Calendar.php', |
|
64 | + 'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => $baseDir.'/../lib/Sections/Personal/PersonalInfo.php', |
|
65 | + 'OCA\\Settings\\Sections\\Personal\\Security' => $baseDir.'/../lib/Sections/Personal/Security.php', |
|
66 | + 'OCA\\Settings\\Sections\\Personal\\SyncClients' => $baseDir.'/../lib/Sections/Personal/SyncClients.php', |
|
67 | + 'OCA\\Settings\\Service\\AuthorizedGroupService' => $baseDir.'/../lib/Service/AuthorizedGroupService.php', |
|
68 | + 'OCA\\Settings\\Service\\NotFoundException' => $baseDir.'/../lib/Service/NotFoundException.php', |
|
69 | + 'OCA\\Settings\\Service\\ServiceException' => $baseDir.'/../lib/Service/ServiceException.php', |
|
70 | + 'OCA\\Settings\\Settings\\Admin\\ArtificialIntelligence' => $baseDir.'/../lib/Settings/Admin/ArtificialIntelligence.php', |
|
71 | + 'OCA\\Settings\\Settings\\Admin\\Delegation' => $baseDir.'/../lib/Settings/Admin/Delegation.php', |
|
72 | + 'OCA\\Settings\\Settings\\Admin\\Mail' => $baseDir.'/../lib/Settings/Admin/Mail.php', |
|
73 | + 'OCA\\Settings\\Settings\\Admin\\MailProvider' => $baseDir.'/../lib/Settings/Admin/MailProvider.php', |
|
74 | + 'OCA\\Settings\\Settings\\Admin\\Overview' => $baseDir.'/../lib/Settings/Admin/Overview.php', |
|
75 | + 'OCA\\Settings\\Settings\\Admin\\Presets' => $baseDir.'/../lib/Settings/Admin/Presets.php', |
|
76 | + 'OCA\\Settings\\Settings\\Admin\\Security' => $baseDir.'/../lib/Settings/Admin/Security.php', |
|
77 | + 'OCA\\Settings\\Settings\\Admin\\Server' => $baseDir.'/../lib/Settings/Admin/Server.php', |
|
78 | + 'OCA\\Settings\\Settings\\Admin\\Sharing' => $baseDir.'/../lib/Settings/Admin/Sharing.php', |
|
79 | + 'OCA\\Settings\\Settings\\Admin\\Users' => $baseDir.'/../lib/Settings/Admin/Users.php', |
|
80 | + 'OCA\\Settings\\Settings\\Personal\\Additional' => $baseDir.'/../lib/Settings/Personal/Additional.php', |
|
81 | + 'OCA\\Settings\\Settings\\Personal\\PersonalInfo' => $baseDir.'/../lib/Settings/Personal/PersonalInfo.php', |
|
82 | + 'OCA\\Settings\\Settings\\Personal\\Security\\Authtokens' => $baseDir.'/../lib/Settings/Personal/Security/Authtokens.php', |
|
83 | + 'OCA\\Settings\\Settings\\Personal\\Security\\Password' => $baseDir.'/../lib/Settings/Personal/Security/Password.php', |
|
84 | + 'OCA\\Settings\\Settings\\Personal\\Security\\TwoFactor' => $baseDir.'/../lib/Settings/Personal/Security/TwoFactor.php', |
|
85 | + 'OCA\\Settings\\Settings\\Personal\\Security\\WebAuthn' => $baseDir.'/../lib/Settings/Personal/Security/WebAuthn.php', |
|
86 | + 'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => $baseDir.'/../lib/Settings/Personal/ServerDevNotice.php', |
|
87 | + 'OCA\\Settings\\SetupChecks\\AllowedAdminRanges' => $baseDir.'/../lib/SetupChecks/AllowedAdminRanges.php', |
|
88 | + 'OCA\\Settings\\SetupChecks\\AppDirsWithDifferentOwner' => $baseDir.'/../lib/SetupChecks/AppDirsWithDifferentOwner.php', |
|
89 | + 'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => $baseDir.'/../lib/SetupChecks/BruteForceThrottler.php', |
|
90 | + 'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => $baseDir.'/../lib/SetupChecks/CheckUserCertificates.php', |
|
91 | + 'OCA\\Settings\\SetupChecks\\CodeIntegrity' => $baseDir.'/../lib/SetupChecks/CodeIntegrity.php', |
|
92 | + 'OCA\\Settings\\SetupChecks\\CronErrors' => $baseDir.'/../lib/SetupChecks/CronErrors.php', |
|
93 | + 'OCA\\Settings\\SetupChecks\\CronInfo' => $baseDir.'/../lib/SetupChecks/CronInfo.php', |
|
94 | + 'OCA\\Settings\\SetupChecks\\DataDirectoryProtected' => $baseDir.'/../lib/SetupChecks/DataDirectoryProtected.php', |
|
95 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => $baseDir.'/../lib/SetupChecks/DatabaseHasMissingColumns.php', |
|
96 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingIndices' => $baseDir.'/../lib/SetupChecks/DatabaseHasMissingIndices.php', |
|
97 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingPrimaryKeys' => $baseDir.'/../lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php', |
|
98 | + 'OCA\\Settings\\SetupChecks\\DatabasePendingBigIntConversions' => $baseDir.'/../lib/SetupChecks/DatabasePendingBigIntConversions.php', |
|
99 | + 'OCA\\Settings\\SetupChecks\\DebugMode' => $baseDir.'/../lib/SetupChecks/DebugMode.php', |
|
100 | + 'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => $baseDir.'/../lib/SetupChecks/DefaultPhoneRegionSet.php', |
|
101 | + 'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => $baseDir.'/../lib/SetupChecks/EmailTestSuccessful.php', |
|
102 | + 'OCA\\Settings\\SetupChecks\\FileLocking' => $baseDir.'/../lib/SetupChecks/FileLocking.php', |
|
103 | + 'OCA\\Settings\\SetupChecks\\ForwardedForHeaders' => $baseDir.'/../lib/SetupChecks/ForwardedForHeaders.php', |
|
104 | + 'OCA\\Settings\\SetupChecks\\HttpsUrlGeneration' => $baseDir.'/../lib/SetupChecks/HttpsUrlGeneration.php', |
|
105 | + 'OCA\\Settings\\SetupChecks\\InternetConnectivity' => $baseDir.'/../lib/SetupChecks/InternetConnectivity.php', |
|
106 | + 'OCA\\Settings\\SetupChecks\\JavaScriptModules' => $baseDir.'/../lib/SetupChecks/JavaScriptModules.php', |
|
107 | + 'OCA\\Settings\\SetupChecks\\JavaScriptSourceMaps' => $baseDir.'/../lib/SetupChecks/JavaScriptSourceMaps.php', |
|
108 | + 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat' => $baseDir.'/../lib/SetupChecks/LegacySSEKeyFormat.php', |
|
109 | + 'OCA\\Settings\\SetupChecks\\LoggingLevel' => $baseDir.'/../lib/SetupChecks/LoggingLevel.php', |
|
110 | + 'OCA\\Settings\\SetupChecks\\MaintenanceWindowStart' => $baseDir.'/../lib/SetupChecks/MaintenanceWindowStart.php', |
|
111 | + 'OCA\\Settings\\SetupChecks\\MemcacheConfigured' => $baseDir.'/../lib/SetupChecks/MemcacheConfigured.php', |
|
112 | + 'OCA\\Settings\\SetupChecks\\MimeTypeMigrationAvailable' => $baseDir.'/../lib/SetupChecks/MimeTypeMigrationAvailable.php', |
|
113 | + 'OCA\\Settings\\SetupChecks\\MysqlRowFormat' => $baseDir.'/../lib/SetupChecks/MysqlRowFormat.php', |
|
114 | + 'OCA\\Settings\\SetupChecks\\MysqlUnicodeSupport' => $baseDir.'/../lib/SetupChecks/MysqlUnicodeSupport.php', |
|
115 | + 'OCA\\Settings\\SetupChecks\\OcxProviders' => $baseDir.'/../lib/SetupChecks/OcxProviders.php', |
|
116 | + 'OCA\\Settings\\SetupChecks\\OverwriteCliUrl' => $baseDir.'/../lib/SetupChecks/OverwriteCliUrl.php', |
|
117 | + 'OCA\\Settings\\SetupChecks\\PhpApcuConfig' => $baseDir.'/../lib/SetupChecks/PhpApcuConfig.php', |
|
118 | + 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset' => $baseDir.'/../lib/SetupChecks/PhpDefaultCharset.php', |
|
119 | + 'OCA\\Settings\\SetupChecks\\PhpDisabledFunctions' => $baseDir.'/../lib/SetupChecks/PhpDisabledFunctions.php', |
|
120 | + 'OCA\\Settings\\SetupChecks\\PhpFreetypeSupport' => $baseDir.'/../lib/SetupChecks/PhpFreetypeSupport.php', |
|
121 | + 'OCA\\Settings\\SetupChecks\\PhpGetEnv' => $baseDir.'/../lib/SetupChecks/PhpGetEnv.php', |
|
122 | + 'OCA\\Settings\\SetupChecks\\PhpMaxFileSize' => $baseDir.'/../lib/SetupChecks/PhpMaxFileSize.php', |
|
123 | + 'OCA\\Settings\\SetupChecks\\PhpMemoryLimit' => $baseDir.'/../lib/SetupChecks/PhpMemoryLimit.php', |
|
124 | + 'OCA\\Settings\\SetupChecks\\PhpModules' => $baseDir.'/../lib/SetupChecks/PhpModules.php', |
|
125 | + 'OCA\\Settings\\SetupChecks\\PhpOpcacheSetup' => $baseDir.'/../lib/SetupChecks/PhpOpcacheSetup.php', |
|
126 | + 'OCA\\Settings\\SetupChecks\\PhpOutdated' => $baseDir.'/../lib/SetupChecks/PhpOutdated.php', |
|
127 | + 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering' => $baseDir.'/../lib/SetupChecks/PhpOutputBuffering.php', |
|
128 | + 'OCA\\Settings\\SetupChecks\\PushService' => $baseDir.'/../lib/SetupChecks/PushService.php', |
|
129 | + 'OCA\\Settings\\SetupChecks\\RandomnessSecure' => $baseDir.'/../lib/SetupChecks/RandomnessSecure.php', |
|
130 | + 'OCA\\Settings\\SetupChecks\\ReadOnlyConfig' => $baseDir.'/../lib/SetupChecks/ReadOnlyConfig.php', |
|
131 | + 'OCA\\Settings\\SetupChecks\\SchedulingTableSize' => $baseDir.'/../lib/SetupChecks/SchedulingTableSize.php', |
|
132 | + 'OCA\\Settings\\SetupChecks\\SecurityHeaders' => $baseDir.'/../lib/SetupChecks/SecurityHeaders.php', |
|
133 | + 'OCA\\Settings\\SetupChecks\\SupportedDatabase' => $baseDir.'/../lib/SetupChecks/SupportedDatabase.php', |
|
134 | + 'OCA\\Settings\\SetupChecks\\SystemIs64bit' => $baseDir.'/../lib/SetupChecks/SystemIs64bit.php', |
|
135 | + 'OCA\\Settings\\SetupChecks\\TaskProcessingPickupSpeed' => $baseDir.'/../lib/SetupChecks/TaskProcessingPickupSpeed.php', |
|
136 | + 'OCA\\Settings\\SetupChecks\\TempSpaceAvailable' => $baseDir.'/../lib/SetupChecks/TempSpaceAvailable.php', |
|
137 | + 'OCA\\Settings\\SetupChecks\\TransactionIsolation' => $baseDir.'/../lib/SetupChecks/TransactionIsolation.php', |
|
138 | + 'OCA\\Settings\\SetupChecks\\WellKnownUrls' => $baseDir.'/../lib/SetupChecks/WellKnownUrls.php', |
|
139 | + 'OCA\\Settings\\SetupChecks\\Woff2Loading' => $baseDir.'/../lib/SetupChecks/Woff2Loading.php', |
|
140 | + 'OCA\\Settings\\UserMigration\\AccountMigrator' => $baseDir.'/../lib/UserMigration/AccountMigrator.php', |
|
141 | + 'OCA\\Settings\\UserMigration\\AccountMigratorException' => $baseDir.'/../lib/UserMigration/AccountMigratorException.php', |
|
142 | + 'OCA\\Settings\\WellKnown\\ChangePasswordHandler' => $baseDir.'/../lib/WellKnown/ChangePasswordHandler.php', |
|
143 | + 'OCA\\Settings\\WellKnown\\SecurityTxtHandler' => $baseDir.'/../lib/WellKnown/SecurityTxtHandler.php', |
|
144 | 144 | ); |
@@ -6,161 +6,161 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInitSettings |
8 | 8 | { |
9 | - public static $prefixLengthsPsr4 = array ( |
|
9 | + public static $prefixLengthsPsr4 = array( |
|
10 | 10 | 'O' => |
11 | - array ( |
|
11 | + array( |
|
12 | 12 | 'OCA\\Settings\\' => 13, |
13 | 13 | ), |
14 | 14 | ); |
15 | 15 | |
16 | - public static $prefixDirsPsr4 = array ( |
|
16 | + public static $prefixDirsPsr4 = array( |
|
17 | 17 | 'OCA\\Settings\\' => |
18 | - array ( |
|
19 | - 0 => __DIR__ . '/..' . '/../lib', |
|
18 | + array( |
|
19 | + 0 => __DIR__.'/..'.'/../lib', |
|
20 | 20 | ), |
21 | 21 | ); |
22 | 22 | |
23 | - public static $classMap = array ( |
|
24 | - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
|
25 | - 'OCA\\Settings\\Activity\\GroupProvider' => __DIR__ . '/..' . '/../lib/Activity/GroupProvider.php', |
|
26 | - 'OCA\\Settings\\Activity\\GroupSetting' => __DIR__ . '/..' . '/../lib/Activity/GroupSetting.php', |
|
27 | - 'OCA\\Settings\\Activity\\Provider' => __DIR__ . '/..' . '/../lib/Activity/Provider.php', |
|
28 | - 'OCA\\Settings\\Activity\\SecurityFilter' => __DIR__ . '/..' . '/../lib/Activity/SecurityFilter.php', |
|
29 | - 'OCA\\Settings\\Activity\\SecurityProvider' => __DIR__ . '/..' . '/../lib/Activity/SecurityProvider.php', |
|
30 | - 'OCA\\Settings\\Activity\\SecuritySetting' => __DIR__ . '/..' . '/../lib/Activity/SecuritySetting.php', |
|
31 | - 'OCA\\Settings\\Activity\\Setting' => __DIR__ . '/..' . '/../lib/Activity/Setting.php', |
|
32 | - 'OCA\\Settings\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
33 | - 'OCA\\Settings\\BackgroundJobs\\VerifyUserData' => __DIR__ . '/..' . '/../lib/BackgroundJobs/VerifyUserData.php', |
|
34 | - 'OCA\\Settings\\Command\\AdminDelegation\\Add' => __DIR__ . '/..' . '/../lib/Command/AdminDelegation/Add.php', |
|
35 | - 'OCA\\Settings\\Command\\AdminDelegation\\Remove' => __DIR__ . '/..' . '/../lib/Command/AdminDelegation/Remove.php', |
|
36 | - 'OCA\\Settings\\Command\\AdminDelegation\\Show' => __DIR__ . '/..' . '/../lib/Command/AdminDelegation/Show.php', |
|
37 | - 'OCA\\Settings\\Controller\\AISettingsController' => __DIR__ . '/..' . '/../lib/Controller/AISettingsController.php', |
|
38 | - 'OCA\\Settings\\Controller\\AdminSettingsController' => __DIR__ . '/..' . '/../lib/Controller/AdminSettingsController.php', |
|
39 | - 'OCA\\Settings\\Controller\\AppSettingsController' => __DIR__ . '/..' . '/../lib/Controller/AppSettingsController.php', |
|
40 | - 'OCA\\Settings\\Controller\\AuthSettingsController' => __DIR__ . '/..' . '/../lib/Controller/AuthSettingsController.php', |
|
41 | - 'OCA\\Settings\\Controller\\AuthorizedGroupController' => __DIR__ . '/..' . '/../lib/Controller/AuthorizedGroupController.php', |
|
42 | - 'OCA\\Settings\\Controller\\ChangePasswordController' => __DIR__ . '/..' . '/../lib/Controller/ChangePasswordController.php', |
|
43 | - 'OCA\\Settings\\Controller\\CheckSetupController' => __DIR__ . '/..' . '/../lib/Controller/CheckSetupController.php', |
|
44 | - 'OCA\\Settings\\Controller\\CommonSettingsTrait' => __DIR__ . '/..' . '/../lib/Controller/CommonSettingsTrait.php', |
|
45 | - 'OCA\\Settings\\Controller\\DeclarativeSettingsController' => __DIR__ . '/..' . '/../lib/Controller/DeclarativeSettingsController.php', |
|
46 | - 'OCA\\Settings\\Controller\\HelpController' => __DIR__ . '/..' . '/../lib/Controller/HelpController.php', |
|
47 | - 'OCA\\Settings\\Controller\\LogSettingsController' => __DIR__ . '/..' . '/../lib/Controller/LogSettingsController.php', |
|
48 | - 'OCA\\Settings\\Controller\\MailSettingsController' => __DIR__ . '/..' . '/../lib/Controller/MailSettingsController.php', |
|
49 | - 'OCA\\Settings\\Controller\\PersonalSettingsController' => __DIR__ . '/..' . '/../lib/Controller/PersonalSettingsController.php', |
|
50 | - 'OCA\\Settings\\Controller\\PresetController' => __DIR__ . '/..' . '/../lib/Controller/PresetController.php', |
|
51 | - 'OCA\\Settings\\Controller\\ReasonsController' => __DIR__ . '/..' . '/../lib/Controller/ReasonsController.php', |
|
52 | - 'OCA\\Settings\\Controller\\TwoFactorSettingsController' => __DIR__ . '/..' . '/../lib/Controller/TwoFactorSettingsController.php', |
|
53 | - 'OCA\\Settings\\Controller\\UsersController' => __DIR__ . '/..' . '/../lib/Controller/UsersController.php', |
|
54 | - 'OCA\\Settings\\Controller\\WebAuthnController' => __DIR__ . '/..' . '/../lib/Controller/WebAuthnController.php', |
|
55 | - 'OCA\\Settings\\Events\\BeforeTemplateRenderedEvent' => __DIR__ . '/..' . '/../lib/Events/BeforeTemplateRenderedEvent.php', |
|
56 | - 'OCA\\Settings\\Hooks' => __DIR__ . '/..' . '/../lib/Hooks.php', |
|
57 | - 'OCA\\Settings\\Listener\\AppPasswordCreatedActivityListener' => __DIR__ . '/..' . '/../lib/Listener/AppPasswordCreatedActivityListener.php', |
|
58 | - 'OCA\\Settings\\Listener\\GroupRemovedListener' => __DIR__ . '/..' . '/../lib/Listener/GroupRemovedListener.php', |
|
59 | - 'OCA\\Settings\\Listener\\MailProviderListener' => __DIR__ . '/..' . '/../lib/Listener/MailProviderListener.php', |
|
60 | - 'OCA\\Settings\\Listener\\UserAddedToGroupActivityListener' => __DIR__ . '/..' . '/../lib/Listener/UserAddedToGroupActivityListener.php', |
|
61 | - 'OCA\\Settings\\Listener\\UserRemovedFromGroupActivityListener' => __DIR__ . '/..' . '/../lib/Listener/UserRemovedFromGroupActivityListener.php', |
|
62 | - 'OCA\\Settings\\Mailer\\NewUserMailHelper' => __DIR__ . '/..' . '/../lib/Mailer/NewUserMailHelper.php', |
|
63 | - 'OCA\\Settings\\Middleware\\SubadminMiddleware' => __DIR__ . '/..' . '/../lib/Middleware/SubadminMiddleware.php', |
|
64 | - 'OCA\\Settings\\ResponseDefinitions' => __DIR__ . '/..' . '/../lib/ResponseDefinitions.php', |
|
65 | - 'OCA\\Settings\\Search\\AppSearch' => __DIR__ . '/..' . '/../lib/Search/AppSearch.php', |
|
66 | - 'OCA\\Settings\\Search\\SectionSearch' => __DIR__ . '/..' . '/../lib/Search/SectionSearch.php', |
|
67 | - 'OCA\\Settings\\Search\\UserSearch' => __DIR__ . '/..' . '/../lib/Search/UserSearch.php', |
|
68 | - 'OCA\\Settings\\Sections\\Admin\\Additional' => __DIR__ . '/..' . '/../lib/Sections/Admin/Additional.php', |
|
69 | - 'OCA\\Settings\\Sections\\Admin\\ArtificialIntelligence' => __DIR__ . '/..' . '/../lib/Sections/Admin/ArtificialIntelligence.php', |
|
70 | - 'OCA\\Settings\\Sections\\Admin\\Delegation' => __DIR__ . '/..' . '/../lib/Sections/Admin/Delegation.php', |
|
71 | - 'OCA\\Settings\\Sections\\Admin\\Groupware' => __DIR__ . '/..' . '/../lib/Sections/Admin/Groupware.php', |
|
72 | - 'OCA\\Settings\\Sections\\Admin\\Overview' => __DIR__ . '/..' . '/../lib/Sections/Admin/Overview.php', |
|
73 | - 'OCA\\Settings\\Sections\\Admin\\Presets' => __DIR__ . '/..' . '/../lib/Sections/Admin/Presets.php', |
|
74 | - 'OCA\\Settings\\Sections\\Admin\\Security' => __DIR__ . '/..' . '/../lib/Sections/Admin/Security.php', |
|
75 | - 'OCA\\Settings\\Sections\\Admin\\Server' => __DIR__ . '/..' . '/../lib/Sections/Admin/Server.php', |
|
76 | - 'OCA\\Settings\\Sections\\Admin\\Sharing' => __DIR__ . '/..' . '/../lib/Sections/Admin/Sharing.php', |
|
77 | - 'OCA\\Settings\\Sections\\Personal\\Availability' => __DIR__ . '/..' . '/../lib/Sections/Personal/Availability.php', |
|
78 | - 'OCA\\Settings\\Sections\\Personal\\Calendar' => __DIR__ . '/..' . '/../lib/Sections/Personal/Calendar.php', |
|
79 | - 'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => __DIR__ . '/..' . '/../lib/Sections/Personal/PersonalInfo.php', |
|
80 | - 'OCA\\Settings\\Sections\\Personal\\Security' => __DIR__ . '/..' . '/../lib/Sections/Personal/Security.php', |
|
81 | - 'OCA\\Settings\\Sections\\Personal\\SyncClients' => __DIR__ . '/..' . '/../lib/Sections/Personal/SyncClients.php', |
|
82 | - 'OCA\\Settings\\Service\\AuthorizedGroupService' => __DIR__ . '/..' . '/../lib/Service/AuthorizedGroupService.php', |
|
83 | - 'OCA\\Settings\\Service\\NotFoundException' => __DIR__ . '/..' . '/../lib/Service/NotFoundException.php', |
|
84 | - 'OCA\\Settings\\Service\\ServiceException' => __DIR__ . '/..' . '/../lib/Service/ServiceException.php', |
|
85 | - 'OCA\\Settings\\Settings\\Admin\\ArtificialIntelligence' => __DIR__ . '/..' . '/../lib/Settings/Admin/ArtificialIntelligence.php', |
|
86 | - 'OCA\\Settings\\Settings\\Admin\\Delegation' => __DIR__ . '/..' . '/../lib/Settings/Admin/Delegation.php', |
|
87 | - 'OCA\\Settings\\Settings\\Admin\\Mail' => __DIR__ . '/..' . '/../lib/Settings/Admin/Mail.php', |
|
88 | - 'OCA\\Settings\\Settings\\Admin\\MailProvider' => __DIR__ . '/..' . '/../lib/Settings/Admin/MailProvider.php', |
|
89 | - 'OCA\\Settings\\Settings\\Admin\\Overview' => __DIR__ . '/..' . '/../lib/Settings/Admin/Overview.php', |
|
90 | - 'OCA\\Settings\\Settings\\Admin\\Presets' => __DIR__ . '/..' . '/../lib/Settings/Admin/Presets.php', |
|
91 | - 'OCA\\Settings\\Settings\\Admin\\Security' => __DIR__ . '/..' . '/../lib/Settings/Admin/Security.php', |
|
92 | - 'OCA\\Settings\\Settings\\Admin\\Server' => __DIR__ . '/..' . '/../lib/Settings/Admin/Server.php', |
|
93 | - 'OCA\\Settings\\Settings\\Admin\\Sharing' => __DIR__ . '/..' . '/../lib/Settings/Admin/Sharing.php', |
|
94 | - 'OCA\\Settings\\Settings\\Admin\\Users' => __DIR__ . '/..' . '/../lib/Settings/Admin/Users.php', |
|
95 | - 'OCA\\Settings\\Settings\\Personal\\Additional' => __DIR__ . '/..' . '/../lib/Settings/Personal/Additional.php', |
|
96 | - 'OCA\\Settings\\Settings\\Personal\\PersonalInfo' => __DIR__ . '/..' . '/../lib/Settings/Personal/PersonalInfo.php', |
|
97 | - 'OCA\\Settings\\Settings\\Personal\\Security\\Authtokens' => __DIR__ . '/..' . '/../lib/Settings/Personal/Security/Authtokens.php', |
|
98 | - 'OCA\\Settings\\Settings\\Personal\\Security\\Password' => __DIR__ . '/..' . '/../lib/Settings/Personal/Security/Password.php', |
|
99 | - 'OCA\\Settings\\Settings\\Personal\\Security\\TwoFactor' => __DIR__ . '/..' . '/../lib/Settings/Personal/Security/TwoFactor.php', |
|
100 | - 'OCA\\Settings\\Settings\\Personal\\Security\\WebAuthn' => __DIR__ . '/..' . '/../lib/Settings/Personal/Security/WebAuthn.php', |
|
101 | - 'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => __DIR__ . '/..' . '/../lib/Settings/Personal/ServerDevNotice.php', |
|
102 | - 'OCA\\Settings\\SetupChecks\\AllowedAdminRanges' => __DIR__ . '/..' . '/../lib/SetupChecks/AllowedAdminRanges.php', |
|
103 | - 'OCA\\Settings\\SetupChecks\\AppDirsWithDifferentOwner' => __DIR__ . '/..' . '/../lib/SetupChecks/AppDirsWithDifferentOwner.php', |
|
104 | - 'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => __DIR__ . '/..' . '/../lib/SetupChecks/BruteForceThrottler.php', |
|
105 | - 'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => __DIR__ . '/..' . '/../lib/SetupChecks/CheckUserCertificates.php', |
|
106 | - 'OCA\\Settings\\SetupChecks\\CodeIntegrity' => __DIR__ . '/..' . '/../lib/SetupChecks/CodeIntegrity.php', |
|
107 | - 'OCA\\Settings\\SetupChecks\\CronErrors' => __DIR__ . '/..' . '/../lib/SetupChecks/CronErrors.php', |
|
108 | - 'OCA\\Settings\\SetupChecks\\CronInfo' => __DIR__ . '/..' . '/../lib/SetupChecks/CronInfo.php', |
|
109 | - 'OCA\\Settings\\SetupChecks\\DataDirectoryProtected' => __DIR__ . '/..' . '/../lib/SetupChecks/DataDirectoryProtected.php', |
|
110 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabaseHasMissingColumns.php', |
|
111 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingIndices' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabaseHasMissingIndices.php', |
|
112 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingPrimaryKeys' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php', |
|
113 | - 'OCA\\Settings\\SetupChecks\\DatabasePendingBigIntConversions' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabasePendingBigIntConversions.php', |
|
114 | - 'OCA\\Settings\\SetupChecks\\DebugMode' => __DIR__ . '/..' . '/../lib/SetupChecks/DebugMode.php', |
|
115 | - 'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => __DIR__ . '/..' . '/../lib/SetupChecks/DefaultPhoneRegionSet.php', |
|
116 | - 'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => __DIR__ . '/..' . '/../lib/SetupChecks/EmailTestSuccessful.php', |
|
117 | - 'OCA\\Settings\\SetupChecks\\FileLocking' => __DIR__ . '/..' . '/../lib/SetupChecks/FileLocking.php', |
|
118 | - 'OCA\\Settings\\SetupChecks\\ForwardedForHeaders' => __DIR__ . '/..' . '/../lib/SetupChecks/ForwardedForHeaders.php', |
|
119 | - 'OCA\\Settings\\SetupChecks\\HttpsUrlGeneration' => __DIR__ . '/..' . '/../lib/SetupChecks/HttpsUrlGeneration.php', |
|
120 | - 'OCA\\Settings\\SetupChecks\\InternetConnectivity' => __DIR__ . '/..' . '/../lib/SetupChecks/InternetConnectivity.php', |
|
121 | - 'OCA\\Settings\\SetupChecks\\JavaScriptModules' => __DIR__ . '/..' . '/../lib/SetupChecks/JavaScriptModules.php', |
|
122 | - 'OCA\\Settings\\SetupChecks\\JavaScriptSourceMaps' => __DIR__ . '/..' . '/../lib/SetupChecks/JavaScriptSourceMaps.php', |
|
123 | - 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat' => __DIR__ . '/..' . '/../lib/SetupChecks/LegacySSEKeyFormat.php', |
|
124 | - 'OCA\\Settings\\SetupChecks\\LoggingLevel' => __DIR__ . '/..' . '/../lib/SetupChecks/LoggingLevel.php', |
|
125 | - 'OCA\\Settings\\SetupChecks\\MaintenanceWindowStart' => __DIR__ . '/..' . '/../lib/SetupChecks/MaintenanceWindowStart.php', |
|
126 | - 'OCA\\Settings\\SetupChecks\\MemcacheConfigured' => __DIR__ . '/..' . '/../lib/SetupChecks/MemcacheConfigured.php', |
|
127 | - 'OCA\\Settings\\SetupChecks\\MimeTypeMigrationAvailable' => __DIR__ . '/..' . '/../lib/SetupChecks/MimeTypeMigrationAvailable.php', |
|
128 | - 'OCA\\Settings\\SetupChecks\\MysqlRowFormat' => __DIR__ . '/..' . '/../lib/SetupChecks/MysqlRowFormat.php', |
|
129 | - 'OCA\\Settings\\SetupChecks\\MysqlUnicodeSupport' => __DIR__ . '/..' . '/../lib/SetupChecks/MysqlUnicodeSupport.php', |
|
130 | - 'OCA\\Settings\\SetupChecks\\OcxProviders' => __DIR__ . '/..' . '/../lib/SetupChecks/OcxProviders.php', |
|
131 | - 'OCA\\Settings\\SetupChecks\\OverwriteCliUrl' => __DIR__ . '/..' . '/../lib/SetupChecks/OverwriteCliUrl.php', |
|
132 | - 'OCA\\Settings\\SetupChecks\\PhpApcuConfig' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpApcuConfig.php', |
|
133 | - 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpDefaultCharset.php', |
|
134 | - 'OCA\\Settings\\SetupChecks\\PhpDisabledFunctions' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpDisabledFunctions.php', |
|
135 | - 'OCA\\Settings\\SetupChecks\\PhpFreetypeSupport' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpFreetypeSupport.php', |
|
136 | - 'OCA\\Settings\\SetupChecks\\PhpGetEnv' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpGetEnv.php', |
|
137 | - 'OCA\\Settings\\SetupChecks\\PhpMaxFileSize' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpMaxFileSize.php', |
|
138 | - 'OCA\\Settings\\SetupChecks\\PhpMemoryLimit' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpMemoryLimit.php', |
|
139 | - 'OCA\\Settings\\SetupChecks\\PhpModules' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpModules.php', |
|
140 | - 'OCA\\Settings\\SetupChecks\\PhpOpcacheSetup' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpOpcacheSetup.php', |
|
141 | - 'OCA\\Settings\\SetupChecks\\PhpOutdated' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpOutdated.php', |
|
142 | - 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpOutputBuffering.php', |
|
143 | - 'OCA\\Settings\\SetupChecks\\PushService' => __DIR__ . '/..' . '/../lib/SetupChecks/PushService.php', |
|
144 | - 'OCA\\Settings\\SetupChecks\\RandomnessSecure' => __DIR__ . '/..' . '/../lib/SetupChecks/RandomnessSecure.php', |
|
145 | - 'OCA\\Settings\\SetupChecks\\ReadOnlyConfig' => __DIR__ . '/..' . '/../lib/SetupChecks/ReadOnlyConfig.php', |
|
146 | - 'OCA\\Settings\\SetupChecks\\SchedulingTableSize' => __DIR__ . '/..' . '/../lib/SetupChecks/SchedulingTableSize.php', |
|
147 | - 'OCA\\Settings\\SetupChecks\\SecurityHeaders' => __DIR__ . '/..' . '/../lib/SetupChecks/SecurityHeaders.php', |
|
148 | - 'OCA\\Settings\\SetupChecks\\SupportedDatabase' => __DIR__ . '/..' . '/../lib/SetupChecks/SupportedDatabase.php', |
|
149 | - 'OCA\\Settings\\SetupChecks\\SystemIs64bit' => __DIR__ . '/..' . '/../lib/SetupChecks/SystemIs64bit.php', |
|
150 | - 'OCA\\Settings\\SetupChecks\\TaskProcessingPickupSpeed' => __DIR__ . '/..' . '/../lib/SetupChecks/TaskProcessingPickupSpeed.php', |
|
151 | - 'OCA\\Settings\\SetupChecks\\TempSpaceAvailable' => __DIR__ . '/..' . '/../lib/SetupChecks/TempSpaceAvailable.php', |
|
152 | - 'OCA\\Settings\\SetupChecks\\TransactionIsolation' => __DIR__ . '/..' . '/../lib/SetupChecks/TransactionIsolation.php', |
|
153 | - 'OCA\\Settings\\SetupChecks\\WellKnownUrls' => __DIR__ . '/..' . '/../lib/SetupChecks/WellKnownUrls.php', |
|
154 | - 'OCA\\Settings\\SetupChecks\\Woff2Loading' => __DIR__ . '/..' . '/../lib/SetupChecks/Woff2Loading.php', |
|
155 | - 'OCA\\Settings\\UserMigration\\AccountMigrator' => __DIR__ . '/..' . '/../lib/UserMigration/AccountMigrator.php', |
|
156 | - 'OCA\\Settings\\UserMigration\\AccountMigratorException' => __DIR__ . '/..' . '/../lib/UserMigration/AccountMigratorException.php', |
|
157 | - 'OCA\\Settings\\WellKnown\\ChangePasswordHandler' => __DIR__ . '/..' . '/../lib/WellKnown/ChangePasswordHandler.php', |
|
158 | - 'OCA\\Settings\\WellKnown\\SecurityTxtHandler' => __DIR__ . '/..' . '/../lib/WellKnown/SecurityTxtHandler.php', |
|
23 | + public static $classMap = array( |
|
24 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php', |
|
25 | + 'OCA\\Settings\\Activity\\GroupProvider' => __DIR__.'/..'.'/../lib/Activity/GroupProvider.php', |
|
26 | + 'OCA\\Settings\\Activity\\GroupSetting' => __DIR__.'/..'.'/../lib/Activity/GroupSetting.php', |
|
27 | + 'OCA\\Settings\\Activity\\Provider' => __DIR__.'/..'.'/../lib/Activity/Provider.php', |
|
28 | + 'OCA\\Settings\\Activity\\SecurityFilter' => __DIR__.'/..'.'/../lib/Activity/SecurityFilter.php', |
|
29 | + 'OCA\\Settings\\Activity\\SecurityProvider' => __DIR__.'/..'.'/../lib/Activity/SecurityProvider.php', |
|
30 | + 'OCA\\Settings\\Activity\\SecuritySetting' => __DIR__.'/..'.'/../lib/Activity/SecuritySetting.php', |
|
31 | + 'OCA\\Settings\\Activity\\Setting' => __DIR__.'/..'.'/../lib/Activity/Setting.php', |
|
32 | + 'OCA\\Settings\\AppInfo\\Application' => __DIR__.'/..'.'/../lib/AppInfo/Application.php', |
|
33 | + 'OCA\\Settings\\BackgroundJobs\\VerifyUserData' => __DIR__.'/..'.'/../lib/BackgroundJobs/VerifyUserData.php', |
|
34 | + 'OCA\\Settings\\Command\\AdminDelegation\\Add' => __DIR__.'/..'.'/../lib/Command/AdminDelegation/Add.php', |
|
35 | + 'OCA\\Settings\\Command\\AdminDelegation\\Remove' => __DIR__.'/..'.'/../lib/Command/AdminDelegation/Remove.php', |
|
36 | + 'OCA\\Settings\\Command\\AdminDelegation\\Show' => __DIR__.'/..'.'/../lib/Command/AdminDelegation/Show.php', |
|
37 | + 'OCA\\Settings\\Controller\\AISettingsController' => __DIR__.'/..'.'/../lib/Controller/AISettingsController.php', |
|
38 | + 'OCA\\Settings\\Controller\\AdminSettingsController' => __DIR__.'/..'.'/../lib/Controller/AdminSettingsController.php', |
|
39 | + 'OCA\\Settings\\Controller\\AppSettingsController' => __DIR__.'/..'.'/../lib/Controller/AppSettingsController.php', |
|
40 | + 'OCA\\Settings\\Controller\\AuthSettingsController' => __DIR__.'/..'.'/../lib/Controller/AuthSettingsController.php', |
|
41 | + 'OCA\\Settings\\Controller\\AuthorizedGroupController' => __DIR__.'/..'.'/../lib/Controller/AuthorizedGroupController.php', |
|
42 | + 'OCA\\Settings\\Controller\\ChangePasswordController' => __DIR__.'/..'.'/../lib/Controller/ChangePasswordController.php', |
|
43 | + 'OCA\\Settings\\Controller\\CheckSetupController' => __DIR__.'/..'.'/../lib/Controller/CheckSetupController.php', |
|
44 | + 'OCA\\Settings\\Controller\\CommonSettingsTrait' => __DIR__.'/..'.'/../lib/Controller/CommonSettingsTrait.php', |
|
45 | + 'OCA\\Settings\\Controller\\DeclarativeSettingsController' => __DIR__.'/..'.'/../lib/Controller/DeclarativeSettingsController.php', |
|
46 | + 'OCA\\Settings\\Controller\\HelpController' => __DIR__.'/..'.'/../lib/Controller/HelpController.php', |
|
47 | + 'OCA\\Settings\\Controller\\LogSettingsController' => __DIR__.'/..'.'/../lib/Controller/LogSettingsController.php', |
|
48 | + 'OCA\\Settings\\Controller\\MailSettingsController' => __DIR__.'/..'.'/../lib/Controller/MailSettingsController.php', |
|
49 | + 'OCA\\Settings\\Controller\\PersonalSettingsController' => __DIR__.'/..'.'/../lib/Controller/PersonalSettingsController.php', |
|
50 | + 'OCA\\Settings\\Controller\\PresetController' => __DIR__.'/..'.'/../lib/Controller/PresetController.php', |
|
51 | + 'OCA\\Settings\\Controller\\ReasonsController' => __DIR__.'/..'.'/../lib/Controller/ReasonsController.php', |
|
52 | + 'OCA\\Settings\\Controller\\TwoFactorSettingsController' => __DIR__.'/..'.'/../lib/Controller/TwoFactorSettingsController.php', |
|
53 | + 'OCA\\Settings\\Controller\\UsersController' => __DIR__.'/..'.'/../lib/Controller/UsersController.php', |
|
54 | + 'OCA\\Settings\\Controller\\WebAuthnController' => __DIR__.'/..'.'/../lib/Controller/WebAuthnController.php', |
|
55 | + 'OCA\\Settings\\Events\\BeforeTemplateRenderedEvent' => __DIR__.'/..'.'/../lib/Events/BeforeTemplateRenderedEvent.php', |
|
56 | + 'OCA\\Settings\\Hooks' => __DIR__.'/..'.'/../lib/Hooks.php', |
|
57 | + 'OCA\\Settings\\Listener\\AppPasswordCreatedActivityListener' => __DIR__.'/..'.'/../lib/Listener/AppPasswordCreatedActivityListener.php', |
|
58 | + 'OCA\\Settings\\Listener\\GroupRemovedListener' => __DIR__.'/..'.'/../lib/Listener/GroupRemovedListener.php', |
|
59 | + 'OCA\\Settings\\Listener\\MailProviderListener' => __DIR__.'/..'.'/../lib/Listener/MailProviderListener.php', |
|
60 | + 'OCA\\Settings\\Listener\\UserAddedToGroupActivityListener' => __DIR__.'/..'.'/../lib/Listener/UserAddedToGroupActivityListener.php', |
|
61 | + 'OCA\\Settings\\Listener\\UserRemovedFromGroupActivityListener' => __DIR__.'/..'.'/../lib/Listener/UserRemovedFromGroupActivityListener.php', |
|
62 | + 'OCA\\Settings\\Mailer\\NewUserMailHelper' => __DIR__.'/..'.'/../lib/Mailer/NewUserMailHelper.php', |
|
63 | + 'OCA\\Settings\\Middleware\\SubadminMiddleware' => __DIR__.'/..'.'/../lib/Middleware/SubadminMiddleware.php', |
|
64 | + 'OCA\\Settings\\ResponseDefinitions' => __DIR__.'/..'.'/../lib/ResponseDefinitions.php', |
|
65 | + 'OCA\\Settings\\Search\\AppSearch' => __DIR__.'/..'.'/../lib/Search/AppSearch.php', |
|
66 | + 'OCA\\Settings\\Search\\SectionSearch' => __DIR__.'/..'.'/../lib/Search/SectionSearch.php', |
|
67 | + 'OCA\\Settings\\Search\\UserSearch' => __DIR__.'/..'.'/../lib/Search/UserSearch.php', |
|
68 | + 'OCA\\Settings\\Sections\\Admin\\Additional' => __DIR__.'/..'.'/../lib/Sections/Admin/Additional.php', |
|
69 | + 'OCA\\Settings\\Sections\\Admin\\ArtificialIntelligence' => __DIR__.'/..'.'/../lib/Sections/Admin/ArtificialIntelligence.php', |
|
70 | + 'OCA\\Settings\\Sections\\Admin\\Delegation' => __DIR__.'/..'.'/../lib/Sections/Admin/Delegation.php', |
|
71 | + 'OCA\\Settings\\Sections\\Admin\\Groupware' => __DIR__.'/..'.'/../lib/Sections/Admin/Groupware.php', |
|
72 | + 'OCA\\Settings\\Sections\\Admin\\Overview' => __DIR__.'/..'.'/../lib/Sections/Admin/Overview.php', |
|
73 | + 'OCA\\Settings\\Sections\\Admin\\Presets' => __DIR__.'/..'.'/../lib/Sections/Admin/Presets.php', |
|
74 | + 'OCA\\Settings\\Sections\\Admin\\Security' => __DIR__.'/..'.'/../lib/Sections/Admin/Security.php', |
|
75 | + 'OCA\\Settings\\Sections\\Admin\\Server' => __DIR__.'/..'.'/../lib/Sections/Admin/Server.php', |
|
76 | + 'OCA\\Settings\\Sections\\Admin\\Sharing' => __DIR__.'/..'.'/../lib/Sections/Admin/Sharing.php', |
|
77 | + 'OCA\\Settings\\Sections\\Personal\\Availability' => __DIR__.'/..'.'/../lib/Sections/Personal/Availability.php', |
|
78 | + 'OCA\\Settings\\Sections\\Personal\\Calendar' => __DIR__.'/..'.'/../lib/Sections/Personal/Calendar.php', |
|
79 | + 'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => __DIR__.'/..'.'/../lib/Sections/Personal/PersonalInfo.php', |
|
80 | + 'OCA\\Settings\\Sections\\Personal\\Security' => __DIR__.'/..'.'/../lib/Sections/Personal/Security.php', |
|
81 | + 'OCA\\Settings\\Sections\\Personal\\SyncClients' => __DIR__.'/..'.'/../lib/Sections/Personal/SyncClients.php', |
|
82 | + 'OCA\\Settings\\Service\\AuthorizedGroupService' => __DIR__.'/..'.'/../lib/Service/AuthorizedGroupService.php', |
|
83 | + 'OCA\\Settings\\Service\\NotFoundException' => __DIR__.'/..'.'/../lib/Service/NotFoundException.php', |
|
84 | + 'OCA\\Settings\\Service\\ServiceException' => __DIR__.'/..'.'/../lib/Service/ServiceException.php', |
|
85 | + 'OCA\\Settings\\Settings\\Admin\\ArtificialIntelligence' => __DIR__.'/..'.'/../lib/Settings/Admin/ArtificialIntelligence.php', |
|
86 | + 'OCA\\Settings\\Settings\\Admin\\Delegation' => __DIR__.'/..'.'/../lib/Settings/Admin/Delegation.php', |
|
87 | + 'OCA\\Settings\\Settings\\Admin\\Mail' => __DIR__.'/..'.'/../lib/Settings/Admin/Mail.php', |
|
88 | + 'OCA\\Settings\\Settings\\Admin\\MailProvider' => __DIR__.'/..'.'/../lib/Settings/Admin/MailProvider.php', |
|
89 | + 'OCA\\Settings\\Settings\\Admin\\Overview' => __DIR__.'/..'.'/../lib/Settings/Admin/Overview.php', |
|
90 | + 'OCA\\Settings\\Settings\\Admin\\Presets' => __DIR__.'/..'.'/../lib/Settings/Admin/Presets.php', |
|
91 | + 'OCA\\Settings\\Settings\\Admin\\Security' => __DIR__.'/..'.'/../lib/Settings/Admin/Security.php', |
|
92 | + 'OCA\\Settings\\Settings\\Admin\\Server' => __DIR__.'/..'.'/../lib/Settings/Admin/Server.php', |
|
93 | + 'OCA\\Settings\\Settings\\Admin\\Sharing' => __DIR__.'/..'.'/../lib/Settings/Admin/Sharing.php', |
|
94 | + 'OCA\\Settings\\Settings\\Admin\\Users' => __DIR__.'/..'.'/../lib/Settings/Admin/Users.php', |
|
95 | + 'OCA\\Settings\\Settings\\Personal\\Additional' => __DIR__.'/..'.'/../lib/Settings/Personal/Additional.php', |
|
96 | + 'OCA\\Settings\\Settings\\Personal\\PersonalInfo' => __DIR__.'/..'.'/../lib/Settings/Personal/PersonalInfo.php', |
|
97 | + 'OCA\\Settings\\Settings\\Personal\\Security\\Authtokens' => __DIR__.'/..'.'/../lib/Settings/Personal/Security/Authtokens.php', |
|
98 | + 'OCA\\Settings\\Settings\\Personal\\Security\\Password' => __DIR__.'/..'.'/../lib/Settings/Personal/Security/Password.php', |
|
99 | + 'OCA\\Settings\\Settings\\Personal\\Security\\TwoFactor' => __DIR__.'/..'.'/../lib/Settings/Personal/Security/TwoFactor.php', |
|
100 | + 'OCA\\Settings\\Settings\\Personal\\Security\\WebAuthn' => __DIR__.'/..'.'/../lib/Settings/Personal/Security/WebAuthn.php', |
|
101 | + 'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => __DIR__.'/..'.'/../lib/Settings/Personal/ServerDevNotice.php', |
|
102 | + 'OCA\\Settings\\SetupChecks\\AllowedAdminRanges' => __DIR__.'/..'.'/../lib/SetupChecks/AllowedAdminRanges.php', |
|
103 | + 'OCA\\Settings\\SetupChecks\\AppDirsWithDifferentOwner' => __DIR__.'/..'.'/../lib/SetupChecks/AppDirsWithDifferentOwner.php', |
|
104 | + 'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => __DIR__.'/..'.'/../lib/SetupChecks/BruteForceThrottler.php', |
|
105 | + 'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => __DIR__.'/..'.'/../lib/SetupChecks/CheckUserCertificates.php', |
|
106 | + 'OCA\\Settings\\SetupChecks\\CodeIntegrity' => __DIR__.'/..'.'/../lib/SetupChecks/CodeIntegrity.php', |
|
107 | + 'OCA\\Settings\\SetupChecks\\CronErrors' => __DIR__.'/..'.'/../lib/SetupChecks/CronErrors.php', |
|
108 | + 'OCA\\Settings\\SetupChecks\\CronInfo' => __DIR__.'/..'.'/../lib/SetupChecks/CronInfo.php', |
|
109 | + 'OCA\\Settings\\SetupChecks\\DataDirectoryProtected' => __DIR__.'/..'.'/../lib/SetupChecks/DataDirectoryProtected.php', |
|
110 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => __DIR__.'/..'.'/../lib/SetupChecks/DatabaseHasMissingColumns.php', |
|
111 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingIndices' => __DIR__.'/..'.'/../lib/SetupChecks/DatabaseHasMissingIndices.php', |
|
112 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingPrimaryKeys' => __DIR__.'/..'.'/../lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php', |
|
113 | + 'OCA\\Settings\\SetupChecks\\DatabasePendingBigIntConversions' => __DIR__.'/..'.'/../lib/SetupChecks/DatabasePendingBigIntConversions.php', |
|
114 | + 'OCA\\Settings\\SetupChecks\\DebugMode' => __DIR__.'/..'.'/../lib/SetupChecks/DebugMode.php', |
|
115 | + 'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => __DIR__.'/..'.'/../lib/SetupChecks/DefaultPhoneRegionSet.php', |
|
116 | + 'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => __DIR__.'/..'.'/../lib/SetupChecks/EmailTestSuccessful.php', |
|
117 | + 'OCA\\Settings\\SetupChecks\\FileLocking' => __DIR__.'/..'.'/../lib/SetupChecks/FileLocking.php', |
|
118 | + 'OCA\\Settings\\SetupChecks\\ForwardedForHeaders' => __DIR__.'/..'.'/../lib/SetupChecks/ForwardedForHeaders.php', |
|
119 | + 'OCA\\Settings\\SetupChecks\\HttpsUrlGeneration' => __DIR__.'/..'.'/../lib/SetupChecks/HttpsUrlGeneration.php', |
|
120 | + 'OCA\\Settings\\SetupChecks\\InternetConnectivity' => __DIR__.'/..'.'/../lib/SetupChecks/InternetConnectivity.php', |
|
121 | + 'OCA\\Settings\\SetupChecks\\JavaScriptModules' => __DIR__.'/..'.'/../lib/SetupChecks/JavaScriptModules.php', |
|
122 | + 'OCA\\Settings\\SetupChecks\\JavaScriptSourceMaps' => __DIR__.'/..'.'/../lib/SetupChecks/JavaScriptSourceMaps.php', |
|
123 | + 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat' => __DIR__.'/..'.'/../lib/SetupChecks/LegacySSEKeyFormat.php', |
|
124 | + 'OCA\\Settings\\SetupChecks\\LoggingLevel' => __DIR__.'/..'.'/../lib/SetupChecks/LoggingLevel.php', |
|
125 | + 'OCA\\Settings\\SetupChecks\\MaintenanceWindowStart' => __DIR__.'/..'.'/../lib/SetupChecks/MaintenanceWindowStart.php', |
|
126 | + 'OCA\\Settings\\SetupChecks\\MemcacheConfigured' => __DIR__.'/..'.'/../lib/SetupChecks/MemcacheConfigured.php', |
|
127 | + 'OCA\\Settings\\SetupChecks\\MimeTypeMigrationAvailable' => __DIR__.'/..'.'/../lib/SetupChecks/MimeTypeMigrationAvailable.php', |
|
128 | + 'OCA\\Settings\\SetupChecks\\MysqlRowFormat' => __DIR__.'/..'.'/../lib/SetupChecks/MysqlRowFormat.php', |
|
129 | + 'OCA\\Settings\\SetupChecks\\MysqlUnicodeSupport' => __DIR__.'/..'.'/../lib/SetupChecks/MysqlUnicodeSupport.php', |
|
130 | + 'OCA\\Settings\\SetupChecks\\OcxProviders' => __DIR__.'/..'.'/../lib/SetupChecks/OcxProviders.php', |
|
131 | + 'OCA\\Settings\\SetupChecks\\OverwriteCliUrl' => __DIR__.'/..'.'/../lib/SetupChecks/OverwriteCliUrl.php', |
|
132 | + 'OCA\\Settings\\SetupChecks\\PhpApcuConfig' => __DIR__.'/..'.'/../lib/SetupChecks/PhpApcuConfig.php', |
|
133 | + 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset' => __DIR__.'/..'.'/../lib/SetupChecks/PhpDefaultCharset.php', |
|
134 | + 'OCA\\Settings\\SetupChecks\\PhpDisabledFunctions' => __DIR__.'/..'.'/../lib/SetupChecks/PhpDisabledFunctions.php', |
|
135 | + 'OCA\\Settings\\SetupChecks\\PhpFreetypeSupport' => __DIR__.'/..'.'/../lib/SetupChecks/PhpFreetypeSupport.php', |
|
136 | + 'OCA\\Settings\\SetupChecks\\PhpGetEnv' => __DIR__.'/..'.'/../lib/SetupChecks/PhpGetEnv.php', |
|
137 | + 'OCA\\Settings\\SetupChecks\\PhpMaxFileSize' => __DIR__.'/..'.'/../lib/SetupChecks/PhpMaxFileSize.php', |
|
138 | + 'OCA\\Settings\\SetupChecks\\PhpMemoryLimit' => __DIR__.'/..'.'/../lib/SetupChecks/PhpMemoryLimit.php', |
|
139 | + 'OCA\\Settings\\SetupChecks\\PhpModules' => __DIR__.'/..'.'/../lib/SetupChecks/PhpModules.php', |
|
140 | + 'OCA\\Settings\\SetupChecks\\PhpOpcacheSetup' => __DIR__.'/..'.'/../lib/SetupChecks/PhpOpcacheSetup.php', |
|
141 | + 'OCA\\Settings\\SetupChecks\\PhpOutdated' => __DIR__.'/..'.'/../lib/SetupChecks/PhpOutdated.php', |
|
142 | + 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering' => __DIR__.'/..'.'/../lib/SetupChecks/PhpOutputBuffering.php', |
|
143 | + 'OCA\\Settings\\SetupChecks\\PushService' => __DIR__.'/..'.'/../lib/SetupChecks/PushService.php', |
|
144 | + 'OCA\\Settings\\SetupChecks\\RandomnessSecure' => __DIR__.'/..'.'/../lib/SetupChecks/RandomnessSecure.php', |
|
145 | + 'OCA\\Settings\\SetupChecks\\ReadOnlyConfig' => __DIR__.'/..'.'/../lib/SetupChecks/ReadOnlyConfig.php', |
|
146 | + 'OCA\\Settings\\SetupChecks\\SchedulingTableSize' => __DIR__.'/..'.'/../lib/SetupChecks/SchedulingTableSize.php', |
|
147 | + 'OCA\\Settings\\SetupChecks\\SecurityHeaders' => __DIR__.'/..'.'/../lib/SetupChecks/SecurityHeaders.php', |
|
148 | + 'OCA\\Settings\\SetupChecks\\SupportedDatabase' => __DIR__.'/..'.'/../lib/SetupChecks/SupportedDatabase.php', |
|
149 | + 'OCA\\Settings\\SetupChecks\\SystemIs64bit' => __DIR__.'/..'.'/../lib/SetupChecks/SystemIs64bit.php', |
|
150 | + 'OCA\\Settings\\SetupChecks\\TaskProcessingPickupSpeed' => __DIR__.'/..'.'/../lib/SetupChecks/TaskProcessingPickupSpeed.php', |
|
151 | + 'OCA\\Settings\\SetupChecks\\TempSpaceAvailable' => __DIR__.'/..'.'/../lib/SetupChecks/TempSpaceAvailable.php', |
|
152 | + 'OCA\\Settings\\SetupChecks\\TransactionIsolation' => __DIR__.'/..'.'/../lib/SetupChecks/TransactionIsolation.php', |
|
153 | + 'OCA\\Settings\\SetupChecks\\WellKnownUrls' => __DIR__.'/..'.'/../lib/SetupChecks/WellKnownUrls.php', |
|
154 | + 'OCA\\Settings\\SetupChecks\\Woff2Loading' => __DIR__.'/..'.'/../lib/SetupChecks/Woff2Loading.php', |
|
155 | + 'OCA\\Settings\\UserMigration\\AccountMigrator' => __DIR__.'/..'.'/../lib/UserMigration/AccountMigrator.php', |
|
156 | + 'OCA\\Settings\\UserMigration\\AccountMigratorException' => __DIR__.'/..'.'/../lib/UserMigration/AccountMigratorException.php', |
|
157 | + 'OCA\\Settings\\WellKnown\\ChangePasswordHandler' => __DIR__.'/..'.'/../lib/WellKnown/ChangePasswordHandler.php', |
|
158 | + 'OCA\\Settings\\WellKnown\\SecurityTxtHandler' => __DIR__.'/..'.'/../lib/WellKnown/SecurityTxtHandler.php', |
|
159 | 159 | ); |
160 | 160 | |
161 | 161 | public static function getInitializer(ClassLoader $loader) |
162 | 162 | { |
163 | - return \Closure::bind(function () use ($loader) { |
|
163 | + return \Closure::bind(function() use ($loader) { |
|
164 | 164 | $loader->prefixLengthsPsr4 = ComposerStaticInitSettings::$prefixLengthsPsr4; |
165 | 165 | $loader->prefixDirsPsr4 = ComposerStaticInitSettings::$prefixDirsPsr4; |
166 | 166 | $loader->classMap = ComposerStaticInitSettings::$classMap; |
@@ -20,81 +20,81 @@ |
||
20 | 20 | * Please Add & Manage your Config Keys in that file and keep the Lexicon up to date! |
21 | 21 | */ |
22 | 22 | class ConfigLexicon implements ILexicon { |
23 | - public const SHAREAPI_ALLOW_FEDERATION_ON_PUBLIC_SHARES = 'shareapi_allow_federation_on_public_shares'; |
|
24 | - public const SHARE_CUSTOM_TOKEN = 'shareapi_allow_custom_tokens'; |
|
25 | - public const SHARE_LINK_PASSWORD_DEFAULT = 'shareapi_enable_link_password_by_default'; |
|
26 | - public const SHARE_LINK_PASSWORD_ENFORCED = 'shareapi_enforce_links_password'; |
|
27 | - public const SHARE_LINK_EXPIRE_DATE_DEFAULT = 'shareapi_default_expire_date'; |
|
28 | - public const SHARE_LINK_EXPIRE_DATE_ENFORCED = 'shareapi_enforce_expire_date'; |
|
29 | - public const USER_LANGUAGE = 'lang'; |
|
30 | - public const OCM_DISCOVERY_ENABLED = 'ocm_discovery_enabled'; |
|
31 | - public const USER_LOCALE = 'locale'; |
|
32 | - public const USER_TIMEZONE = 'timezone'; |
|
23 | + public const SHAREAPI_ALLOW_FEDERATION_ON_PUBLIC_SHARES = 'shareapi_allow_federation_on_public_shares'; |
|
24 | + public const SHARE_CUSTOM_TOKEN = 'shareapi_allow_custom_tokens'; |
|
25 | + public const SHARE_LINK_PASSWORD_DEFAULT = 'shareapi_enable_link_password_by_default'; |
|
26 | + public const SHARE_LINK_PASSWORD_ENFORCED = 'shareapi_enforce_links_password'; |
|
27 | + public const SHARE_LINK_EXPIRE_DATE_DEFAULT = 'shareapi_default_expire_date'; |
|
28 | + public const SHARE_LINK_EXPIRE_DATE_ENFORCED = 'shareapi_enforce_expire_date'; |
|
29 | + public const USER_LANGUAGE = 'lang'; |
|
30 | + public const OCM_DISCOVERY_ENABLED = 'ocm_discovery_enabled'; |
|
31 | + public const USER_LOCALE = 'locale'; |
|
32 | + public const USER_TIMEZONE = 'timezone'; |
|
33 | 33 | |
34 | - public const LASTCRON_TIMESTAMP = 'lastcron'; |
|
34 | + public const LASTCRON_TIMESTAMP = 'lastcron'; |
|
35 | 35 | |
36 | - public function getStrictness(): Strictness { |
|
37 | - return Strictness::IGNORE; |
|
38 | - } |
|
36 | + public function getStrictness(): Strictness { |
|
37 | + return Strictness::IGNORE; |
|
38 | + } |
|
39 | 39 | |
40 | - public function getAppConfigs(): array { |
|
41 | - return [ |
|
42 | - new Entry( |
|
43 | - key: self::SHAREAPI_ALLOW_FEDERATION_ON_PUBLIC_SHARES, |
|
44 | - type: ValueType::BOOL, |
|
45 | - defaultRaw: true, |
|
46 | - definition: 'adds share permission to public shares to allow adding them to your Nextcloud (federation)', |
|
47 | - lazy: true, |
|
48 | - ), |
|
49 | - new Entry( |
|
50 | - key: self::SHARE_CUSTOM_TOKEN, |
|
51 | - type: ValueType::BOOL, |
|
52 | - defaultRaw: fn (Preset $p): bool => match ($p) { |
|
53 | - Preset::FAMILY, Preset::PRIVATE => true, |
|
54 | - default => false, |
|
55 | - }, |
|
56 | - definition: 'Allow users to customize share URL', |
|
57 | - lazy: true, |
|
58 | - note: 'Shares with guessable tokens may be accessed easily. Shares with custom tokens will continue to be accessible after this setting has been disabled.', |
|
59 | - ), |
|
60 | - new Entry(self::SHARE_LINK_PASSWORD_DEFAULT, ValueType::BOOL, false, 'Ask for a password when sharing document by default'), |
|
61 | - new Entry( |
|
62 | - key: self::SHARE_LINK_PASSWORD_ENFORCED, |
|
63 | - type: ValueType::BOOL, |
|
64 | - defaultRaw: fn (Preset $p): bool => match ($p) { |
|
65 | - Preset::SCHOOL, Preset::UNIVERSITY, Preset::SHARED, Preset::SMALL, Preset::MEDIUM, Preset::LARGE => true, |
|
66 | - default => false, |
|
67 | - }, |
|
68 | - definition: 'Enforce password protection for shared documents' |
|
69 | - ), |
|
70 | - new Entry( |
|
71 | - key: self::SHARE_LINK_EXPIRE_DATE_DEFAULT, |
|
72 | - type: ValueType::BOOL, |
|
73 | - defaultRaw: fn (Preset $p): bool => match ($p) { |
|
74 | - Preset::SHARED, Preset::SMALL, Preset::MEDIUM, Preset::LARGE => true, |
|
75 | - default => false, |
|
76 | - }, |
|
77 | - definition: 'Default expiration date for shares via link or mail' |
|
78 | - ), |
|
79 | - new Entry( |
|
80 | - key: self::SHARE_LINK_EXPIRE_DATE_ENFORCED, |
|
81 | - type: ValueType::BOOL, |
|
82 | - defaultRaw: fn (Preset $p): bool => match ($p) { |
|
83 | - Preset::SHARED, Preset::SMALL, Preset::MEDIUM, Preset::LARGE => true, |
|
84 | - default => false, |
|
85 | - }, |
|
86 | - definition: 'Enforce expiration date for shares via link or mail' |
|
87 | - ), |
|
88 | - new Entry(self::LASTCRON_TIMESTAMP, ValueType::INT, 0, 'timestamp of last cron execution'), |
|
89 | - new Entry(self::OCM_DISCOVERY_ENABLED, ValueType::BOOL, true, 'enable/disable OCM', lazy: true), |
|
90 | - ]; |
|
91 | - } |
|
40 | + public function getAppConfigs(): array { |
|
41 | + return [ |
|
42 | + new Entry( |
|
43 | + key: self::SHAREAPI_ALLOW_FEDERATION_ON_PUBLIC_SHARES, |
|
44 | + type: ValueType::BOOL, |
|
45 | + defaultRaw: true, |
|
46 | + definition: 'adds share permission to public shares to allow adding them to your Nextcloud (federation)', |
|
47 | + lazy: true, |
|
48 | + ), |
|
49 | + new Entry( |
|
50 | + key: self::SHARE_CUSTOM_TOKEN, |
|
51 | + type: ValueType::BOOL, |
|
52 | + defaultRaw: fn (Preset $p): bool => match ($p) { |
|
53 | + Preset::FAMILY, Preset::PRIVATE => true, |
|
54 | + default => false, |
|
55 | + }, |
|
56 | + definition: 'Allow users to customize share URL', |
|
57 | + lazy: true, |
|
58 | + note: 'Shares with guessable tokens may be accessed easily. Shares with custom tokens will continue to be accessible after this setting has been disabled.', |
|
59 | + ), |
|
60 | + new Entry(self::SHARE_LINK_PASSWORD_DEFAULT, ValueType::BOOL, false, 'Ask for a password when sharing document by default'), |
|
61 | + new Entry( |
|
62 | + key: self::SHARE_LINK_PASSWORD_ENFORCED, |
|
63 | + type: ValueType::BOOL, |
|
64 | + defaultRaw: fn (Preset $p): bool => match ($p) { |
|
65 | + Preset::SCHOOL, Preset::UNIVERSITY, Preset::SHARED, Preset::SMALL, Preset::MEDIUM, Preset::LARGE => true, |
|
66 | + default => false, |
|
67 | + }, |
|
68 | + definition: 'Enforce password protection for shared documents' |
|
69 | + ), |
|
70 | + new Entry( |
|
71 | + key: self::SHARE_LINK_EXPIRE_DATE_DEFAULT, |
|
72 | + type: ValueType::BOOL, |
|
73 | + defaultRaw: fn (Preset $p): bool => match ($p) { |
|
74 | + Preset::SHARED, Preset::SMALL, Preset::MEDIUM, Preset::LARGE => true, |
|
75 | + default => false, |
|
76 | + }, |
|
77 | + definition: 'Default expiration date for shares via link or mail' |
|
78 | + ), |
|
79 | + new Entry( |
|
80 | + key: self::SHARE_LINK_EXPIRE_DATE_ENFORCED, |
|
81 | + type: ValueType::BOOL, |
|
82 | + defaultRaw: fn (Preset $p): bool => match ($p) { |
|
83 | + Preset::SHARED, Preset::SMALL, Preset::MEDIUM, Preset::LARGE => true, |
|
84 | + default => false, |
|
85 | + }, |
|
86 | + definition: 'Enforce expiration date for shares via link or mail' |
|
87 | + ), |
|
88 | + new Entry(self::LASTCRON_TIMESTAMP, ValueType::INT, 0, 'timestamp of last cron execution'), |
|
89 | + new Entry(self::OCM_DISCOVERY_ENABLED, ValueType::BOOL, true, 'enable/disable OCM', lazy: true), |
|
90 | + ]; |
|
91 | + } |
|
92 | 92 | |
93 | - public function getUserConfigs(): array { |
|
94 | - return [ |
|
95 | - new Entry(self::USER_LANGUAGE, ValueType::STRING, definition: 'language'), |
|
96 | - new Entry(self::USER_LOCALE, ValueType::STRING, definition: 'locale'), |
|
97 | - new Entry(self::USER_TIMEZONE, ValueType::STRING, definition: 'timezone'), |
|
98 | - ]; |
|
99 | - } |
|
93 | + public function getUserConfigs(): array { |
|
94 | + return [ |
|
95 | + new Entry(self::USER_LANGUAGE, ValueType::STRING, definition: 'language'), |
|
96 | + new Entry(self::USER_LOCALE, ValueType::STRING, definition: 'locale'), |
|
97 | + new Entry(self::USER_TIMEZONE, ValueType::STRING, definition: 'timezone'), |
|
98 | + ]; |
|
99 | + } |
|
100 | 100 | } |