@@ -59,99 +59,99 @@ |
||
| 59 | 59 | use Symfony\Component\EventDispatcher\GenericEvent as OldGenericEvent; |
| 60 | 60 | |
| 61 | 61 | class Application extends App implements IBootstrap { |
| 62 | - public const APP_ID = 'files_sharing'; |
|
| 63 | - |
|
| 64 | - public function __construct(array $urlParams = []) { |
|
| 65 | - parent::__construct(self::APP_ID, $urlParams); |
|
| 66 | - } |
|
| 67 | - |
|
| 68 | - public function register(IRegistrationContext $context): void { |
|
| 69 | - $context->registerService(ExternalMountProvider::class, function (ContainerInterface $c) { |
|
| 70 | - return new ExternalMountProvider( |
|
| 71 | - $c->get(IDBConnection::class), |
|
| 72 | - function () use ($c) { |
|
| 73 | - return $c->get(Manager::class); |
|
| 74 | - }, |
|
| 75 | - $c->get(ICloudIdManager::class) |
|
| 76 | - ); |
|
| 77 | - }); |
|
| 78 | - |
|
| 79 | - /** |
|
| 80 | - * Middleware |
|
| 81 | - */ |
|
| 82 | - $context->registerMiddleWare(SharingCheckMiddleware::class); |
|
| 83 | - $context->registerMiddleWare(OCSShareAPIMiddleware::class); |
|
| 84 | - $context->registerMiddleWare(ShareInfoMiddleware::class); |
|
| 85 | - |
|
| 86 | - $context->registerCapability(Capabilities::class); |
|
| 87 | - |
|
| 88 | - $context->registerNotifierService(Notifier::class); |
|
| 89 | - $context->registerEventListener(UserChangedEvent::class, DisplayNameCache::class); |
|
| 90 | - $context->registerEventListener(UserDeletedEvent::class, DisplayNameCache::class); |
|
| 91 | - $context->registerEventListener(GroupChangedEvent::class, GroupDisplayNameCache::class); |
|
| 92 | - $context->registerEventListener(GroupDeletedEvent::class, GroupDisplayNameCache::class); |
|
| 93 | - |
|
| 94 | - // Sidebar and files scripts |
|
| 95 | - $context->registerEventListener(LoadAdditionalScriptsEvent::class, LoadAdditionalListener::class); |
|
| 96 | - $context->registerEventListener(LoadSidebar::class, LoadSidebarListener::class); |
|
| 97 | - $context->registerEventListener(ShareCreatedEvent::class, ShareInteractionListener::class); |
|
| 98 | - $context->registerEventListener(ShareCreatedEvent::class, UserShareAcceptanceListener::class); |
|
| 99 | - $context->registerEventListener(UserAddedEvent::class, UserAddedToGroupListener::class); |
|
| 100 | - |
|
| 101 | - // Publish activity for public download |
|
| 102 | - $context->registerEventListener(BeforeNodeReadEvent::class, BeforeNodeReadListener::class); |
|
| 103 | - $context->registerEventListener(BeforeZipCreatedEvent::class, BeforeNodeReadListener::class); |
|
| 104 | - |
|
| 105 | - // Handle download events for view only checks. Priority higher than 0 to run early. |
|
| 106 | - $context->registerEventListener(BeforeZipCreatedEvent::class, BeforeZipCreatedListener::class, 5); |
|
| 107 | - $context->registerEventListener(BeforeDirectFileDownloadEvent::class, BeforeDirectFileDownloadListener::class, 5); |
|
| 108 | - |
|
| 109 | - // File request auth |
|
| 110 | - $context->registerEventListener(BeforeTemplateRenderedEvent::class, LoadPublicFileRequestAuthListener::class); |
|
| 111 | - |
|
| 112 | - $context->registerConfigLexicon(ConfigLexicon::class); |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - public function boot(IBootContext $context): void { |
|
| 116 | - $context->injectFn([$this, 'registerMountProviders']); |
|
| 117 | - $context->injectFn([$this, 'registerEventsScripts']); |
|
| 118 | - |
|
| 119 | - Helper::registerHooks(); |
|
| 120 | - |
|
| 121 | - Share::registerBackend('file', File::class); |
|
| 122 | - Share::registerBackend('folder', Folder::class, 'file'); |
|
| 123 | - } |
|
| 124 | - |
|
| 125 | - |
|
| 126 | - public function registerMountProviders(IMountProviderCollection $mountProviderCollection, MountProvider $mountProvider, ExternalMountProvider $externalMountProvider): void { |
|
| 127 | - $mountProviderCollection->registerProvider($mountProvider); |
|
| 128 | - $mountProviderCollection->registerProvider($externalMountProvider); |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - public function registerEventsScripts(IEventDispatcher $dispatcher): void { |
|
| 132 | - $dispatcher->addListener(ResourcesLoadAdditionalScriptsEvent::class, function (): void { |
|
| 133 | - Util::addScript('files_sharing', 'collaboration'); |
|
| 134 | - }); |
|
| 135 | - $dispatcher->addListener(BeforeTemplateRenderedEvent::class, function (): void { |
|
| 136 | - /** |
|
| 137 | - * Always add main sharing script |
|
| 138 | - */ |
|
| 139 | - Util::addScript(self::APP_ID, 'main'); |
|
| 140 | - }); |
|
| 141 | - |
|
| 142 | - // notifications api to accept incoming user shares |
|
| 143 | - $dispatcher->addListener(ShareCreatedEvent::class, function (ShareCreatedEvent $event): void { |
|
| 144 | - /** @var Listener $listener */ |
|
| 145 | - $listener = $this->getContainer()->query(Listener::class); |
|
| 146 | - $listener->shareNotification($event); |
|
| 147 | - }); |
|
| 148 | - $dispatcher->addListener(IGroup::class . '::postAddUser', function ($event): void { |
|
| 149 | - if (!$event instanceof OldGenericEvent) { |
|
| 150 | - return; |
|
| 151 | - } |
|
| 152 | - /** @var Listener $listener */ |
|
| 153 | - $listener = $this->getContainer()->query(Listener::class); |
|
| 154 | - $listener->userAddedToGroup($event); |
|
| 155 | - }); |
|
| 156 | - } |
|
| 62 | + public const APP_ID = 'files_sharing'; |
|
| 63 | + |
|
| 64 | + public function __construct(array $urlParams = []) { |
|
| 65 | + parent::__construct(self::APP_ID, $urlParams); |
|
| 66 | + } |
|
| 67 | + |
|
| 68 | + public function register(IRegistrationContext $context): void { |
|
| 69 | + $context->registerService(ExternalMountProvider::class, function (ContainerInterface $c) { |
|
| 70 | + return new ExternalMountProvider( |
|
| 71 | + $c->get(IDBConnection::class), |
|
| 72 | + function () use ($c) { |
|
| 73 | + return $c->get(Manager::class); |
|
| 74 | + }, |
|
| 75 | + $c->get(ICloudIdManager::class) |
|
| 76 | + ); |
|
| 77 | + }); |
|
| 78 | + |
|
| 79 | + /** |
|
| 80 | + * Middleware |
|
| 81 | + */ |
|
| 82 | + $context->registerMiddleWare(SharingCheckMiddleware::class); |
|
| 83 | + $context->registerMiddleWare(OCSShareAPIMiddleware::class); |
|
| 84 | + $context->registerMiddleWare(ShareInfoMiddleware::class); |
|
| 85 | + |
|
| 86 | + $context->registerCapability(Capabilities::class); |
|
| 87 | + |
|
| 88 | + $context->registerNotifierService(Notifier::class); |
|
| 89 | + $context->registerEventListener(UserChangedEvent::class, DisplayNameCache::class); |
|
| 90 | + $context->registerEventListener(UserDeletedEvent::class, DisplayNameCache::class); |
|
| 91 | + $context->registerEventListener(GroupChangedEvent::class, GroupDisplayNameCache::class); |
|
| 92 | + $context->registerEventListener(GroupDeletedEvent::class, GroupDisplayNameCache::class); |
|
| 93 | + |
|
| 94 | + // Sidebar and files scripts |
|
| 95 | + $context->registerEventListener(LoadAdditionalScriptsEvent::class, LoadAdditionalListener::class); |
|
| 96 | + $context->registerEventListener(LoadSidebar::class, LoadSidebarListener::class); |
|
| 97 | + $context->registerEventListener(ShareCreatedEvent::class, ShareInteractionListener::class); |
|
| 98 | + $context->registerEventListener(ShareCreatedEvent::class, UserShareAcceptanceListener::class); |
|
| 99 | + $context->registerEventListener(UserAddedEvent::class, UserAddedToGroupListener::class); |
|
| 100 | + |
|
| 101 | + // Publish activity for public download |
|
| 102 | + $context->registerEventListener(BeforeNodeReadEvent::class, BeforeNodeReadListener::class); |
|
| 103 | + $context->registerEventListener(BeforeZipCreatedEvent::class, BeforeNodeReadListener::class); |
|
| 104 | + |
|
| 105 | + // Handle download events for view only checks. Priority higher than 0 to run early. |
|
| 106 | + $context->registerEventListener(BeforeZipCreatedEvent::class, BeforeZipCreatedListener::class, 5); |
|
| 107 | + $context->registerEventListener(BeforeDirectFileDownloadEvent::class, BeforeDirectFileDownloadListener::class, 5); |
|
| 108 | + |
|
| 109 | + // File request auth |
|
| 110 | + $context->registerEventListener(BeforeTemplateRenderedEvent::class, LoadPublicFileRequestAuthListener::class); |
|
| 111 | + |
|
| 112 | + $context->registerConfigLexicon(ConfigLexicon::class); |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + public function boot(IBootContext $context): void { |
|
| 116 | + $context->injectFn([$this, 'registerMountProviders']); |
|
| 117 | + $context->injectFn([$this, 'registerEventsScripts']); |
|
| 118 | + |
|
| 119 | + Helper::registerHooks(); |
|
| 120 | + |
|
| 121 | + Share::registerBackend('file', File::class); |
|
| 122 | + Share::registerBackend('folder', Folder::class, 'file'); |
|
| 123 | + } |
|
| 124 | + |
|
| 125 | + |
|
| 126 | + public function registerMountProviders(IMountProviderCollection $mountProviderCollection, MountProvider $mountProvider, ExternalMountProvider $externalMountProvider): void { |
|
| 127 | + $mountProviderCollection->registerProvider($mountProvider); |
|
| 128 | + $mountProviderCollection->registerProvider($externalMountProvider); |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + public function registerEventsScripts(IEventDispatcher $dispatcher): void { |
|
| 132 | + $dispatcher->addListener(ResourcesLoadAdditionalScriptsEvent::class, function (): void { |
|
| 133 | + Util::addScript('files_sharing', 'collaboration'); |
|
| 134 | + }); |
|
| 135 | + $dispatcher->addListener(BeforeTemplateRenderedEvent::class, function (): void { |
|
| 136 | + /** |
|
| 137 | + * Always add main sharing script |
|
| 138 | + */ |
|
| 139 | + Util::addScript(self::APP_ID, 'main'); |
|
| 140 | + }); |
|
| 141 | + |
|
| 142 | + // notifications api to accept incoming user shares |
|
| 143 | + $dispatcher->addListener(ShareCreatedEvent::class, function (ShareCreatedEvent $event): void { |
|
| 144 | + /** @var Listener $listener */ |
|
| 145 | + $listener = $this->getContainer()->query(Listener::class); |
|
| 146 | + $listener->shareNotification($event); |
|
| 147 | + }); |
|
| 148 | + $dispatcher->addListener(IGroup::class . '::postAddUser', function ($event): void { |
|
| 149 | + if (!$event instanceof OldGenericEvent) { |
|
| 150 | + return; |
|
| 151 | + } |
|
| 152 | + /** @var Listener $listener */ |
|
| 153 | + $listener = $this->getContainer()->query(Listener::class); |
|
| 154 | + $listener->userAddedToGroup($event); |
|
| 155 | + }); |
|
| 156 | + } |
|
| 157 | 157 | } |
@@ -25,19 +25,19 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | class LoadSidebarListener implements IEventListener { |
| 27 | 27 | |
| 28 | - public function __construct( |
|
| 29 | - private IInitialState $initialState, |
|
| 30 | - private IManager $shareManager, |
|
| 31 | - ) { |
|
| 32 | - } |
|
| 33 | - |
|
| 34 | - public function handle(Event $event): void { |
|
| 35 | - if (!($event instanceof LoadSidebar)) { |
|
| 36 | - return; |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - $appConfig = Server::get(IAppConfig::class); |
|
| 40 | - $this->initialState->provideInitialState('showFederatedSharesAsInternal', $appConfig->getValueBool('files_sharing', ConfigLexicon::SHOW_FEDERATED_AS_INTERNAL)); |
|
| 41 | - Util::addScript(Application::APP_ID, 'files_sharing_tab', 'files'); |
|
| 42 | - } |
|
| 28 | + public function __construct( |
|
| 29 | + private IInitialState $initialState, |
|
| 30 | + private IManager $shareManager, |
|
| 31 | + ) { |
|
| 32 | + } |
|
| 33 | + |
|
| 34 | + public function handle(Event $event): void { |
|
| 35 | + if (!($event instanceof LoadSidebar)) { |
|
| 36 | + return; |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + $appConfig = Server::get(IAppConfig::class); |
|
| 40 | + $this->initialState->provideInitialState('showFederatedSharesAsInternal', $appConfig->getValueBool('files_sharing', ConfigLexicon::SHOW_FEDERATED_AS_INTERNAL)); |
|
| 41 | + Util::addScript(Application::APP_ID, 'files_sharing_tab', 'files'); |
|
| 42 | + } |
|
| 43 | 43 | } |
@@ -6,115 +6,115 @@ |
||
| 6 | 6 | |
| 7 | 7 | class ComposerStaticInitFiles_Sharing |
| 8 | 8 | { |
| 9 | - public static $prefixLengthsPsr4 = array ( |
|
| 9 | + public static $prefixLengthsPsr4 = array( |
|
| 10 | 10 | 'O' => |
| 11 | - array ( |
|
| 11 | + array( |
|
| 12 | 12 | 'OCA\\Files_Sharing\\' => 18, |
| 13 | 13 | ), |
| 14 | 14 | ); |
| 15 | 15 | |
| 16 | - public static $prefixDirsPsr4 = array ( |
|
| 16 | + public static $prefixDirsPsr4 = array( |
|
| 17 | 17 | 'OCA\\Files_Sharing\\' => |
| 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\\Files_Sharing\\Activity\\Filter' => __DIR__ . '/..' . '/../lib/Activity/Filter.php', |
|
| 26 | - 'OCA\\Files_Sharing\\Activity\\Providers\\Base' => __DIR__ . '/..' . '/../lib/Activity/Providers/Base.php', |
|
| 27 | - 'OCA\\Files_Sharing\\Activity\\Providers\\Downloads' => __DIR__ . '/..' . '/../lib/Activity/Providers/Downloads.php', |
|
| 28 | - 'OCA\\Files_Sharing\\Activity\\Providers\\Groups' => __DIR__ . '/..' . '/../lib/Activity/Providers/Groups.php', |
|
| 29 | - 'OCA\\Files_Sharing\\Activity\\Providers\\PublicLinks' => __DIR__ . '/..' . '/../lib/Activity/Providers/PublicLinks.php', |
|
| 30 | - 'OCA\\Files_Sharing\\Activity\\Providers\\RemoteShares' => __DIR__ . '/..' . '/../lib/Activity/Providers/RemoteShares.php', |
|
| 31 | - 'OCA\\Files_Sharing\\Activity\\Providers\\Users' => __DIR__ . '/..' . '/../lib/Activity/Providers/Users.php', |
|
| 32 | - 'OCA\\Files_Sharing\\Activity\\Settings\\PublicLinks' => __DIR__ . '/..' . '/../lib/Activity/Settings/PublicLinks.php', |
|
| 33 | - 'OCA\\Files_Sharing\\Activity\\Settings\\PublicLinksUpload' => __DIR__ . '/..' . '/../lib/Activity/Settings/PublicLinksUpload.php', |
|
| 34 | - 'OCA\\Files_Sharing\\Activity\\Settings\\RemoteShare' => __DIR__ . '/..' . '/../lib/Activity/Settings/RemoteShare.php', |
|
| 35 | - 'OCA\\Files_Sharing\\Activity\\Settings\\ShareActivitySettings' => __DIR__ . '/..' . '/../lib/Activity/Settings/ShareActivitySettings.php', |
|
| 36 | - 'OCA\\Files_Sharing\\Activity\\Settings\\Shared' => __DIR__ . '/..' . '/../lib/Activity/Settings/Shared.php', |
|
| 37 | - 'OCA\\Files_Sharing\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
| 38 | - 'OCA\\Files_Sharing\\BackgroundJob\\FederatedSharesDiscoverJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/FederatedSharesDiscoverJob.php', |
|
| 39 | - 'OCA\\Files_Sharing\\Cache' => __DIR__ . '/..' . '/../lib/Cache.php', |
|
| 40 | - 'OCA\\Files_Sharing\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php', |
|
| 41 | - 'OCA\\Files_Sharing\\Collaboration\\ShareRecipientSorter' => __DIR__ . '/..' . '/../lib/Collaboration/ShareRecipientSorter.php', |
|
| 42 | - 'OCA\\Files_Sharing\\Command\\CleanupRemoteStorages' => __DIR__ . '/..' . '/../lib/Command/CleanupRemoteStorages.php', |
|
| 43 | - 'OCA\\Files_Sharing\\Command\\DeleteOrphanShares' => __DIR__ . '/..' . '/../lib/Command/DeleteOrphanShares.php', |
|
| 44 | - 'OCA\\Files_Sharing\\Command\\ExiprationNotification' => __DIR__ . '/..' . '/../lib/Command/ExiprationNotification.php', |
|
| 45 | - 'OCA\\Files_Sharing\\Command\\FixShareOwners' => __DIR__ . '/..' . '/../lib/Command/FixShareOwners.php', |
|
| 46 | - 'OCA\\Files_Sharing\\Command\\ListShares' => __DIR__ . '/..' . '/../lib/Command/ListShares.php', |
|
| 47 | - 'OCA\\Files_Sharing\\Config\\ConfigLexicon' => __DIR__ . '/..' . '/../lib/Config/ConfigLexicon.php', |
|
| 48 | - 'OCA\\Files_Sharing\\Controller\\AcceptController' => __DIR__ . '/..' . '/../lib/Controller/AcceptController.php', |
|
| 49 | - 'OCA\\Files_Sharing\\Controller\\DeletedShareAPIController' => __DIR__ . '/..' . '/../lib/Controller/DeletedShareAPIController.php', |
|
| 50 | - 'OCA\\Files_Sharing\\Controller\\ExternalSharesController' => __DIR__ . '/..' . '/../lib/Controller/ExternalSharesController.php', |
|
| 51 | - 'OCA\\Files_Sharing\\Controller\\PublicPreviewController' => __DIR__ . '/..' . '/../lib/Controller/PublicPreviewController.php', |
|
| 52 | - 'OCA\\Files_Sharing\\Controller\\RemoteController' => __DIR__ . '/..' . '/../lib/Controller/RemoteController.php', |
|
| 53 | - 'OCA\\Files_Sharing\\Controller\\SettingsController' => __DIR__ . '/..' . '/../lib/Controller/SettingsController.php', |
|
| 54 | - 'OCA\\Files_Sharing\\Controller\\ShareAPIController' => __DIR__ . '/..' . '/../lib/Controller/ShareAPIController.php', |
|
| 55 | - 'OCA\\Files_Sharing\\Controller\\ShareController' => __DIR__ . '/..' . '/../lib/Controller/ShareController.php', |
|
| 56 | - 'OCA\\Files_Sharing\\Controller\\ShareInfoController' => __DIR__ . '/..' . '/../lib/Controller/ShareInfoController.php', |
|
| 57 | - 'OCA\\Files_Sharing\\Controller\\ShareesAPIController' => __DIR__ . '/..' . '/../lib/Controller/ShareesAPIController.php', |
|
| 58 | - 'OCA\\Files_Sharing\\DefaultPublicShareTemplateProvider' => __DIR__ . '/..' . '/../lib/DefaultPublicShareTemplateProvider.php', |
|
| 59 | - 'OCA\\Files_Sharing\\DeleteOrphanedSharesJob' => __DIR__ . '/..' . '/../lib/DeleteOrphanedSharesJob.php', |
|
| 60 | - 'OCA\\Files_Sharing\\Event\\BeforeTemplateRenderedEvent' => __DIR__ . '/..' . '/../lib/Event/BeforeTemplateRenderedEvent.php', |
|
| 61 | - 'OCA\\Files_Sharing\\Event\\ShareLinkAccessedEvent' => __DIR__ . '/..' . '/../lib/Event/ShareLinkAccessedEvent.php', |
|
| 62 | - 'OCA\\Files_Sharing\\Event\\ShareMountedEvent' => __DIR__ . '/..' . '/../lib/Event/ShareMountedEvent.php', |
|
| 63 | - 'OCA\\Files_Sharing\\Exceptions\\BrokenPath' => __DIR__ . '/..' . '/../lib/Exceptions/BrokenPath.php', |
|
| 64 | - 'OCA\\Files_Sharing\\Exceptions\\S2SException' => __DIR__ . '/..' . '/../lib/Exceptions/S2SException.php', |
|
| 65 | - 'OCA\\Files_Sharing\\Exceptions\\SharingRightsException' => __DIR__ . '/..' . '/../lib/Exceptions/SharingRightsException.php', |
|
| 66 | - 'OCA\\Files_Sharing\\ExpireSharesJob' => __DIR__ . '/..' . '/../lib/ExpireSharesJob.php', |
|
| 67 | - 'OCA\\Files_Sharing\\External\\Cache' => __DIR__ . '/..' . '/../lib/External/Cache.php', |
|
| 68 | - 'OCA\\Files_Sharing\\External\\Manager' => __DIR__ . '/..' . '/../lib/External/Manager.php', |
|
| 69 | - 'OCA\\Files_Sharing\\External\\Mount' => __DIR__ . '/..' . '/../lib/External/Mount.php', |
|
| 70 | - 'OCA\\Files_Sharing\\External\\MountProvider' => __DIR__ . '/..' . '/../lib/External/MountProvider.php', |
|
| 71 | - 'OCA\\Files_Sharing\\External\\Scanner' => __DIR__ . '/..' . '/../lib/External/Scanner.php', |
|
| 72 | - 'OCA\\Files_Sharing\\External\\Storage' => __DIR__ . '/..' . '/../lib/External/Storage.php', |
|
| 73 | - 'OCA\\Files_Sharing\\External\\Watcher' => __DIR__ . '/..' . '/../lib/External/Watcher.php', |
|
| 74 | - 'OCA\\Files_Sharing\\Helper' => __DIR__ . '/..' . '/../lib/Helper.php', |
|
| 75 | - 'OCA\\Files_Sharing\\Hooks' => __DIR__ . '/..' . '/../lib/Hooks.php', |
|
| 76 | - 'OCA\\Files_Sharing\\ISharedMountPoint' => __DIR__ . '/..' . '/../lib/ISharedMountPoint.php', |
|
| 77 | - 'OCA\\Files_Sharing\\ISharedStorage' => __DIR__ . '/..' . '/../lib/ISharedStorage.php', |
|
| 78 | - 'OCA\\Files_Sharing\\Listener\\BeforeDirectFileDownloadListener' => __DIR__ . '/..' . '/../lib/Listener/BeforeDirectFileDownloadListener.php', |
|
| 79 | - 'OCA\\Files_Sharing\\Listener\\BeforeNodeReadListener' => __DIR__ . '/..' . '/../lib/Listener/BeforeNodeReadListener.php', |
|
| 80 | - 'OCA\\Files_Sharing\\Listener\\BeforeZipCreatedListener' => __DIR__ . '/..' . '/../lib/Listener/BeforeZipCreatedListener.php', |
|
| 81 | - 'OCA\\Files_Sharing\\Listener\\LoadAdditionalListener' => __DIR__ . '/..' . '/../lib/Listener/LoadAdditionalListener.php', |
|
| 82 | - 'OCA\\Files_Sharing\\Listener\\LoadPublicFileRequestAuthListener' => __DIR__ . '/..' . '/../lib/Listener/LoadPublicFileRequestAuthListener.php', |
|
| 83 | - 'OCA\\Files_Sharing\\Listener\\LoadSidebarListener' => __DIR__ . '/..' . '/../lib/Listener/LoadSidebarListener.php', |
|
| 84 | - 'OCA\\Files_Sharing\\Listener\\ShareInteractionListener' => __DIR__ . '/..' . '/../lib/Listener/ShareInteractionListener.php', |
|
| 85 | - 'OCA\\Files_Sharing\\Listener\\UserAddedToGroupListener' => __DIR__ . '/..' . '/../lib/Listener/UserAddedToGroupListener.php', |
|
| 86 | - 'OCA\\Files_Sharing\\Listener\\UserShareAcceptanceListener' => __DIR__ . '/..' . '/../lib/Listener/UserShareAcceptanceListener.php', |
|
| 87 | - 'OCA\\Files_Sharing\\Middleware\\OCSShareAPIMiddleware' => __DIR__ . '/..' . '/../lib/Middleware/OCSShareAPIMiddleware.php', |
|
| 88 | - 'OCA\\Files_Sharing\\Middleware\\ShareInfoMiddleware' => __DIR__ . '/..' . '/../lib/Middleware/ShareInfoMiddleware.php', |
|
| 89 | - 'OCA\\Files_Sharing\\Middleware\\SharingCheckMiddleware' => __DIR__ . '/..' . '/../lib/Middleware/SharingCheckMiddleware.php', |
|
| 90 | - 'OCA\\Files_Sharing\\Migration\\OwncloudGuestShareType' => __DIR__ . '/..' . '/../lib/Migration/OwncloudGuestShareType.php', |
|
| 91 | - 'OCA\\Files_Sharing\\Migration\\SetAcceptedStatus' => __DIR__ . '/..' . '/../lib/Migration/SetAcceptedStatus.php', |
|
| 92 | - 'OCA\\Files_Sharing\\Migration\\SetPasswordColumn' => __DIR__ . '/..' . '/../lib/Migration/SetPasswordColumn.php', |
|
| 93 | - 'OCA\\Files_Sharing\\Migration\\Version11300Date20201120141438' => __DIR__ . '/..' . '/../lib/Migration/Version11300Date20201120141438.php', |
|
| 94 | - 'OCA\\Files_Sharing\\Migration\\Version21000Date20201223143245' => __DIR__ . '/..' . '/../lib/Migration/Version21000Date20201223143245.php', |
|
| 95 | - 'OCA\\Files_Sharing\\Migration\\Version22000Date20210216084241' => __DIR__ . '/..' . '/../lib/Migration/Version22000Date20210216084241.php', |
|
| 96 | - 'OCA\\Files_Sharing\\Migration\\Version24000Date20220208195521' => __DIR__ . '/..' . '/../lib/Migration/Version24000Date20220208195521.php', |
|
| 97 | - 'OCA\\Files_Sharing\\Migration\\Version24000Date20220404142216' => __DIR__ . '/..' . '/../lib/Migration/Version24000Date20220404142216.php', |
|
| 98 | - 'OCA\\Files_Sharing\\Migration\\Version31000Date20240821142813' => __DIR__ . '/..' . '/../lib/Migration/Version31000Date20240821142813.php', |
|
| 99 | - 'OCA\\Files_Sharing\\MountProvider' => __DIR__ . '/..' . '/../lib/MountProvider.php', |
|
| 100 | - 'OCA\\Files_Sharing\\Notification\\Listener' => __DIR__ . '/..' . '/../lib/Notification/Listener.php', |
|
| 101 | - 'OCA\\Files_Sharing\\Notification\\Notifier' => __DIR__ . '/..' . '/../lib/Notification/Notifier.php', |
|
| 102 | - 'OCA\\Files_Sharing\\OrphanHelper' => __DIR__ . '/..' . '/../lib/OrphanHelper.php', |
|
| 103 | - 'OCA\\Files_Sharing\\ResponseDefinitions' => __DIR__ . '/..' . '/../lib/ResponseDefinitions.php', |
|
| 104 | - 'OCA\\Files_Sharing\\Scanner' => __DIR__ . '/..' . '/../lib/Scanner.php', |
|
| 105 | - 'OCA\\Files_Sharing\\Settings\\Personal' => __DIR__ . '/..' . '/../lib/Settings/Personal.php', |
|
| 106 | - 'OCA\\Files_Sharing\\ShareBackend\\File' => __DIR__ . '/..' . '/../lib/ShareBackend/File.php', |
|
| 107 | - 'OCA\\Files_Sharing\\ShareBackend\\Folder' => __DIR__ . '/..' . '/../lib/ShareBackend/Folder.php', |
|
| 108 | - 'OCA\\Files_Sharing\\SharedMount' => __DIR__ . '/..' . '/../lib/SharedMount.php', |
|
| 109 | - 'OCA\\Files_Sharing\\SharedStorage' => __DIR__ . '/..' . '/../lib/SharedStorage.php', |
|
| 110 | - 'OCA\\Files_Sharing\\SharesReminderJob' => __DIR__ . '/..' . '/../lib/SharesReminderJob.php', |
|
| 111 | - 'OCA\\Files_Sharing\\Updater' => __DIR__ . '/..' . '/../lib/Updater.php', |
|
| 112 | - 'OCA\\Files_Sharing\\ViewOnly' => __DIR__ . '/..' . '/../lib/ViewOnly.php', |
|
| 23 | + public static $classMap = array( |
|
| 24 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php', |
|
| 25 | + 'OCA\\Files_Sharing\\Activity\\Filter' => __DIR__.'/..'.'/../lib/Activity/Filter.php', |
|
| 26 | + 'OCA\\Files_Sharing\\Activity\\Providers\\Base' => __DIR__.'/..'.'/../lib/Activity/Providers/Base.php', |
|
| 27 | + 'OCA\\Files_Sharing\\Activity\\Providers\\Downloads' => __DIR__.'/..'.'/../lib/Activity/Providers/Downloads.php', |
|
| 28 | + 'OCA\\Files_Sharing\\Activity\\Providers\\Groups' => __DIR__.'/..'.'/../lib/Activity/Providers/Groups.php', |
|
| 29 | + 'OCA\\Files_Sharing\\Activity\\Providers\\PublicLinks' => __DIR__.'/..'.'/../lib/Activity/Providers/PublicLinks.php', |
|
| 30 | + 'OCA\\Files_Sharing\\Activity\\Providers\\RemoteShares' => __DIR__.'/..'.'/../lib/Activity/Providers/RemoteShares.php', |
|
| 31 | + 'OCA\\Files_Sharing\\Activity\\Providers\\Users' => __DIR__.'/..'.'/../lib/Activity/Providers/Users.php', |
|
| 32 | + 'OCA\\Files_Sharing\\Activity\\Settings\\PublicLinks' => __DIR__.'/..'.'/../lib/Activity/Settings/PublicLinks.php', |
|
| 33 | + 'OCA\\Files_Sharing\\Activity\\Settings\\PublicLinksUpload' => __DIR__.'/..'.'/../lib/Activity/Settings/PublicLinksUpload.php', |
|
| 34 | + 'OCA\\Files_Sharing\\Activity\\Settings\\RemoteShare' => __DIR__.'/..'.'/../lib/Activity/Settings/RemoteShare.php', |
|
| 35 | + 'OCA\\Files_Sharing\\Activity\\Settings\\ShareActivitySettings' => __DIR__.'/..'.'/../lib/Activity/Settings/ShareActivitySettings.php', |
|
| 36 | + 'OCA\\Files_Sharing\\Activity\\Settings\\Shared' => __DIR__.'/..'.'/../lib/Activity/Settings/Shared.php', |
|
| 37 | + 'OCA\\Files_Sharing\\AppInfo\\Application' => __DIR__.'/..'.'/../lib/AppInfo/Application.php', |
|
| 38 | + 'OCA\\Files_Sharing\\BackgroundJob\\FederatedSharesDiscoverJob' => __DIR__.'/..'.'/../lib/BackgroundJob/FederatedSharesDiscoverJob.php', |
|
| 39 | + 'OCA\\Files_Sharing\\Cache' => __DIR__.'/..'.'/../lib/Cache.php', |
|
| 40 | + 'OCA\\Files_Sharing\\Capabilities' => __DIR__.'/..'.'/../lib/Capabilities.php', |
|
| 41 | + 'OCA\\Files_Sharing\\Collaboration\\ShareRecipientSorter' => __DIR__.'/..'.'/../lib/Collaboration/ShareRecipientSorter.php', |
|
| 42 | + 'OCA\\Files_Sharing\\Command\\CleanupRemoteStorages' => __DIR__.'/..'.'/../lib/Command/CleanupRemoteStorages.php', |
|
| 43 | + 'OCA\\Files_Sharing\\Command\\DeleteOrphanShares' => __DIR__.'/..'.'/../lib/Command/DeleteOrphanShares.php', |
|
| 44 | + 'OCA\\Files_Sharing\\Command\\ExiprationNotification' => __DIR__.'/..'.'/../lib/Command/ExiprationNotification.php', |
|
| 45 | + 'OCA\\Files_Sharing\\Command\\FixShareOwners' => __DIR__.'/..'.'/../lib/Command/FixShareOwners.php', |
|
| 46 | + 'OCA\\Files_Sharing\\Command\\ListShares' => __DIR__.'/..'.'/../lib/Command/ListShares.php', |
|
| 47 | + 'OCA\\Files_Sharing\\Config\\ConfigLexicon' => __DIR__.'/..'.'/../lib/Config/ConfigLexicon.php', |
|
| 48 | + 'OCA\\Files_Sharing\\Controller\\AcceptController' => __DIR__.'/..'.'/../lib/Controller/AcceptController.php', |
|
| 49 | + 'OCA\\Files_Sharing\\Controller\\DeletedShareAPIController' => __DIR__.'/..'.'/../lib/Controller/DeletedShareAPIController.php', |
|
| 50 | + 'OCA\\Files_Sharing\\Controller\\ExternalSharesController' => __DIR__.'/..'.'/../lib/Controller/ExternalSharesController.php', |
|
| 51 | + 'OCA\\Files_Sharing\\Controller\\PublicPreviewController' => __DIR__.'/..'.'/../lib/Controller/PublicPreviewController.php', |
|
| 52 | + 'OCA\\Files_Sharing\\Controller\\RemoteController' => __DIR__.'/..'.'/../lib/Controller/RemoteController.php', |
|
| 53 | + 'OCA\\Files_Sharing\\Controller\\SettingsController' => __DIR__.'/..'.'/../lib/Controller/SettingsController.php', |
|
| 54 | + 'OCA\\Files_Sharing\\Controller\\ShareAPIController' => __DIR__.'/..'.'/../lib/Controller/ShareAPIController.php', |
|
| 55 | + 'OCA\\Files_Sharing\\Controller\\ShareController' => __DIR__.'/..'.'/../lib/Controller/ShareController.php', |
|
| 56 | + 'OCA\\Files_Sharing\\Controller\\ShareInfoController' => __DIR__.'/..'.'/../lib/Controller/ShareInfoController.php', |
|
| 57 | + 'OCA\\Files_Sharing\\Controller\\ShareesAPIController' => __DIR__.'/..'.'/../lib/Controller/ShareesAPIController.php', |
|
| 58 | + 'OCA\\Files_Sharing\\DefaultPublicShareTemplateProvider' => __DIR__.'/..'.'/../lib/DefaultPublicShareTemplateProvider.php', |
|
| 59 | + 'OCA\\Files_Sharing\\DeleteOrphanedSharesJob' => __DIR__.'/..'.'/../lib/DeleteOrphanedSharesJob.php', |
|
| 60 | + 'OCA\\Files_Sharing\\Event\\BeforeTemplateRenderedEvent' => __DIR__.'/..'.'/../lib/Event/BeforeTemplateRenderedEvent.php', |
|
| 61 | + 'OCA\\Files_Sharing\\Event\\ShareLinkAccessedEvent' => __DIR__.'/..'.'/../lib/Event/ShareLinkAccessedEvent.php', |
|
| 62 | + 'OCA\\Files_Sharing\\Event\\ShareMountedEvent' => __DIR__.'/..'.'/../lib/Event/ShareMountedEvent.php', |
|
| 63 | + 'OCA\\Files_Sharing\\Exceptions\\BrokenPath' => __DIR__.'/..'.'/../lib/Exceptions/BrokenPath.php', |
|
| 64 | + 'OCA\\Files_Sharing\\Exceptions\\S2SException' => __DIR__.'/..'.'/../lib/Exceptions/S2SException.php', |
|
| 65 | + 'OCA\\Files_Sharing\\Exceptions\\SharingRightsException' => __DIR__.'/..'.'/../lib/Exceptions/SharingRightsException.php', |
|
| 66 | + 'OCA\\Files_Sharing\\ExpireSharesJob' => __DIR__.'/..'.'/../lib/ExpireSharesJob.php', |
|
| 67 | + 'OCA\\Files_Sharing\\External\\Cache' => __DIR__.'/..'.'/../lib/External/Cache.php', |
|
| 68 | + 'OCA\\Files_Sharing\\External\\Manager' => __DIR__.'/..'.'/../lib/External/Manager.php', |
|
| 69 | + 'OCA\\Files_Sharing\\External\\Mount' => __DIR__.'/..'.'/../lib/External/Mount.php', |
|
| 70 | + 'OCA\\Files_Sharing\\External\\MountProvider' => __DIR__.'/..'.'/../lib/External/MountProvider.php', |
|
| 71 | + 'OCA\\Files_Sharing\\External\\Scanner' => __DIR__.'/..'.'/../lib/External/Scanner.php', |
|
| 72 | + 'OCA\\Files_Sharing\\External\\Storage' => __DIR__.'/..'.'/../lib/External/Storage.php', |
|
| 73 | + 'OCA\\Files_Sharing\\External\\Watcher' => __DIR__.'/..'.'/../lib/External/Watcher.php', |
|
| 74 | + 'OCA\\Files_Sharing\\Helper' => __DIR__.'/..'.'/../lib/Helper.php', |
|
| 75 | + 'OCA\\Files_Sharing\\Hooks' => __DIR__.'/..'.'/../lib/Hooks.php', |
|
| 76 | + 'OCA\\Files_Sharing\\ISharedMountPoint' => __DIR__.'/..'.'/../lib/ISharedMountPoint.php', |
|
| 77 | + 'OCA\\Files_Sharing\\ISharedStorage' => __DIR__.'/..'.'/../lib/ISharedStorage.php', |
|
| 78 | + 'OCA\\Files_Sharing\\Listener\\BeforeDirectFileDownloadListener' => __DIR__.'/..'.'/../lib/Listener/BeforeDirectFileDownloadListener.php', |
|
| 79 | + 'OCA\\Files_Sharing\\Listener\\BeforeNodeReadListener' => __DIR__.'/..'.'/../lib/Listener/BeforeNodeReadListener.php', |
|
| 80 | + 'OCA\\Files_Sharing\\Listener\\BeforeZipCreatedListener' => __DIR__.'/..'.'/../lib/Listener/BeforeZipCreatedListener.php', |
|
| 81 | + 'OCA\\Files_Sharing\\Listener\\LoadAdditionalListener' => __DIR__.'/..'.'/../lib/Listener/LoadAdditionalListener.php', |
|
| 82 | + 'OCA\\Files_Sharing\\Listener\\LoadPublicFileRequestAuthListener' => __DIR__.'/..'.'/../lib/Listener/LoadPublicFileRequestAuthListener.php', |
|
| 83 | + 'OCA\\Files_Sharing\\Listener\\LoadSidebarListener' => __DIR__.'/..'.'/../lib/Listener/LoadSidebarListener.php', |
|
| 84 | + 'OCA\\Files_Sharing\\Listener\\ShareInteractionListener' => __DIR__.'/..'.'/../lib/Listener/ShareInteractionListener.php', |
|
| 85 | + 'OCA\\Files_Sharing\\Listener\\UserAddedToGroupListener' => __DIR__.'/..'.'/../lib/Listener/UserAddedToGroupListener.php', |
|
| 86 | + 'OCA\\Files_Sharing\\Listener\\UserShareAcceptanceListener' => __DIR__.'/..'.'/../lib/Listener/UserShareAcceptanceListener.php', |
|
| 87 | + 'OCA\\Files_Sharing\\Middleware\\OCSShareAPIMiddleware' => __DIR__.'/..'.'/../lib/Middleware/OCSShareAPIMiddleware.php', |
|
| 88 | + 'OCA\\Files_Sharing\\Middleware\\ShareInfoMiddleware' => __DIR__.'/..'.'/../lib/Middleware/ShareInfoMiddleware.php', |
|
| 89 | + 'OCA\\Files_Sharing\\Middleware\\SharingCheckMiddleware' => __DIR__.'/..'.'/../lib/Middleware/SharingCheckMiddleware.php', |
|
| 90 | + 'OCA\\Files_Sharing\\Migration\\OwncloudGuestShareType' => __DIR__.'/..'.'/../lib/Migration/OwncloudGuestShareType.php', |
|
| 91 | + 'OCA\\Files_Sharing\\Migration\\SetAcceptedStatus' => __DIR__.'/..'.'/../lib/Migration/SetAcceptedStatus.php', |
|
| 92 | + 'OCA\\Files_Sharing\\Migration\\SetPasswordColumn' => __DIR__.'/..'.'/../lib/Migration/SetPasswordColumn.php', |
|
| 93 | + 'OCA\\Files_Sharing\\Migration\\Version11300Date20201120141438' => __DIR__.'/..'.'/../lib/Migration/Version11300Date20201120141438.php', |
|
| 94 | + 'OCA\\Files_Sharing\\Migration\\Version21000Date20201223143245' => __DIR__.'/..'.'/../lib/Migration/Version21000Date20201223143245.php', |
|
| 95 | + 'OCA\\Files_Sharing\\Migration\\Version22000Date20210216084241' => __DIR__.'/..'.'/../lib/Migration/Version22000Date20210216084241.php', |
|
| 96 | + 'OCA\\Files_Sharing\\Migration\\Version24000Date20220208195521' => __DIR__.'/..'.'/../lib/Migration/Version24000Date20220208195521.php', |
|
| 97 | + 'OCA\\Files_Sharing\\Migration\\Version24000Date20220404142216' => __DIR__.'/..'.'/../lib/Migration/Version24000Date20220404142216.php', |
|
| 98 | + 'OCA\\Files_Sharing\\Migration\\Version31000Date20240821142813' => __DIR__.'/..'.'/../lib/Migration/Version31000Date20240821142813.php', |
|
| 99 | + 'OCA\\Files_Sharing\\MountProvider' => __DIR__.'/..'.'/../lib/MountProvider.php', |
|
| 100 | + 'OCA\\Files_Sharing\\Notification\\Listener' => __DIR__.'/..'.'/../lib/Notification/Listener.php', |
|
| 101 | + 'OCA\\Files_Sharing\\Notification\\Notifier' => __DIR__.'/..'.'/../lib/Notification/Notifier.php', |
|
| 102 | + 'OCA\\Files_Sharing\\OrphanHelper' => __DIR__.'/..'.'/../lib/OrphanHelper.php', |
|
| 103 | + 'OCA\\Files_Sharing\\ResponseDefinitions' => __DIR__.'/..'.'/../lib/ResponseDefinitions.php', |
|
| 104 | + 'OCA\\Files_Sharing\\Scanner' => __DIR__.'/..'.'/../lib/Scanner.php', |
|
| 105 | + 'OCA\\Files_Sharing\\Settings\\Personal' => __DIR__.'/..'.'/../lib/Settings/Personal.php', |
|
| 106 | + 'OCA\\Files_Sharing\\ShareBackend\\File' => __DIR__.'/..'.'/../lib/ShareBackend/File.php', |
|
| 107 | + 'OCA\\Files_Sharing\\ShareBackend\\Folder' => __DIR__.'/..'.'/../lib/ShareBackend/Folder.php', |
|
| 108 | + 'OCA\\Files_Sharing\\SharedMount' => __DIR__.'/..'.'/../lib/SharedMount.php', |
|
| 109 | + 'OCA\\Files_Sharing\\SharedStorage' => __DIR__.'/..'.'/../lib/SharedStorage.php', |
|
| 110 | + 'OCA\\Files_Sharing\\SharesReminderJob' => __DIR__.'/..'.'/../lib/SharesReminderJob.php', |
|
| 111 | + 'OCA\\Files_Sharing\\Updater' => __DIR__.'/..'.'/../lib/Updater.php', |
|
| 112 | + 'OCA\\Files_Sharing\\ViewOnly' => __DIR__.'/..'.'/../lib/ViewOnly.php', |
|
| 113 | 113 | ); |
| 114 | 114 | |
| 115 | 115 | public static function getInitializer(ClassLoader $loader) |
| 116 | 116 | { |
| 117 | - return \Closure::bind(function () use ($loader) { |
|
| 117 | + return \Closure::bind(function() use ($loader) { |
|
| 118 | 118 | $loader->prefixLengthsPsr4 = ComposerStaticInitFiles_Sharing::$prefixLengthsPsr4; |
| 119 | 119 | $loader->prefixDirsPsr4 = ComposerStaticInitFiles_Sharing::$prefixDirsPsr4; |
| 120 | 120 | $loader->classMap = ComposerStaticInitFiles_Sharing::$classMap; |
@@ -6,93 +6,93 @@ |
||
| 6 | 6 | $baseDir = $vendorDir; |
| 7 | 7 | |
| 8 | 8 | return array( |
| 9 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
| 10 | - 'OCA\\Files_Sharing\\Activity\\Filter' => $baseDir . '/../lib/Activity/Filter.php', |
|
| 11 | - 'OCA\\Files_Sharing\\Activity\\Providers\\Base' => $baseDir . '/../lib/Activity/Providers/Base.php', |
|
| 12 | - 'OCA\\Files_Sharing\\Activity\\Providers\\Downloads' => $baseDir . '/../lib/Activity/Providers/Downloads.php', |
|
| 13 | - 'OCA\\Files_Sharing\\Activity\\Providers\\Groups' => $baseDir . '/../lib/Activity/Providers/Groups.php', |
|
| 14 | - 'OCA\\Files_Sharing\\Activity\\Providers\\PublicLinks' => $baseDir . '/../lib/Activity/Providers/PublicLinks.php', |
|
| 15 | - 'OCA\\Files_Sharing\\Activity\\Providers\\RemoteShares' => $baseDir . '/../lib/Activity/Providers/RemoteShares.php', |
|
| 16 | - 'OCA\\Files_Sharing\\Activity\\Providers\\Users' => $baseDir . '/../lib/Activity/Providers/Users.php', |
|
| 17 | - 'OCA\\Files_Sharing\\Activity\\Settings\\PublicLinks' => $baseDir . '/../lib/Activity/Settings/PublicLinks.php', |
|
| 18 | - 'OCA\\Files_Sharing\\Activity\\Settings\\PublicLinksUpload' => $baseDir . '/../lib/Activity/Settings/PublicLinksUpload.php', |
|
| 19 | - 'OCA\\Files_Sharing\\Activity\\Settings\\RemoteShare' => $baseDir . '/../lib/Activity/Settings/RemoteShare.php', |
|
| 20 | - 'OCA\\Files_Sharing\\Activity\\Settings\\ShareActivitySettings' => $baseDir . '/../lib/Activity/Settings/ShareActivitySettings.php', |
|
| 21 | - 'OCA\\Files_Sharing\\Activity\\Settings\\Shared' => $baseDir . '/../lib/Activity/Settings/Shared.php', |
|
| 22 | - 'OCA\\Files_Sharing\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', |
|
| 23 | - 'OCA\\Files_Sharing\\BackgroundJob\\FederatedSharesDiscoverJob' => $baseDir . '/../lib/BackgroundJob/FederatedSharesDiscoverJob.php', |
|
| 24 | - 'OCA\\Files_Sharing\\Cache' => $baseDir . '/../lib/Cache.php', |
|
| 25 | - 'OCA\\Files_Sharing\\Capabilities' => $baseDir . '/../lib/Capabilities.php', |
|
| 26 | - 'OCA\\Files_Sharing\\Collaboration\\ShareRecipientSorter' => $baseDir . '/../lib/Collaboration/ShareRecipientSorter.php', |
|
| 27 | - 'OCA\\Files_Sharing\\Command\\CleanupRemoteStorages' => $baseDir . '/../lib/Command/CleanupRemoteStorages.php', |
|
| 28 | - 'OCA\\Files_Sharing\\Command\\DeleteOrphanShares' => $baseDir . '/../lib/Command/DeleteOrphanShares.php', |
|
| 29 | - 'OCA\\Files_Sharing\\Command\\ExiprationNotification' => $baseDir . '/../lib/Command/ExiprationNotification.php', |
|
| 30 | - 'OCA\\Files_Sharing\\Command\\FixShareOwners' => $baseDir . '/../lib/Command/FixShareOwners.php', |
|
| 31 | - 'OCA\\Files_Sharing\\Command\\ListShares' => $baseDir . '/../lib/Command/ListShares.php', |
|
| 32 | - 'OCA\\Files_Sharing\\Config\\ConfigLexicon' => $baseDir . '/../lib/Config/ConfigLexicon.php', |
|
| 33 | - 'OCA\\Files_Sharing\\Controller\\AcceptController' => $baseDir . '/../lib/Controller/AcceptController.php', |
|
| 34 | - 'OCA\\Files_Sharing\\Controller\\DeletedShareAPIController' => $baseDir . '/../lib/Controller/DeletedShareAPIController.php', |
|
| 35 | - 'OCA\\Files_Sharing\\Controller\\ExternalSharesController' => $baseDir . '/../lib/Controller/ExternalSharesController.php', |
|
| 36 | - 'OCA\\Files_Sharing\\Controller\\PublicPreviewController' => $baseDir . '/../lib/Controller/PublicPreviewController.php', |
|
| 37 | - 'OCA\\Files_Sharing\\Controller\\RemoteController' => $baseDir . '/../lib/Controller/RemoteController.php', |
|
| 38 | - 'OCA\\Files_Sharing\\Controller\\SettingsController' => $baseDir . '/../lib/Controller/SettingsController.php', |
|
| 39 | - 'OCA\\Files_Sharing\\Controller\\ShareAPIController' => $baseDir . '/../lib/Controller/ShareAPIController.php', |
|
| 40 | - 'OCA\\Files_Sharing\\Controller\\ShareController' => $baseDir . '/../lib/Controller/ShareController.php', |
|
| 41 | - 'OCA\\Files_Sharing\\Controller\\ShareInfoController' => $baseDir . '/../lib/Controller/ShareInfoController.php', |
|
| 42 | - 'OCA\\Files_Sharing\\Controller\\ShareesAPIController' => $baseDir . '/../lib/Controller/ShareesAPIController.php', |
|
| 43 | - 'OCA\\Files_Sharing\\DefaultPublicShareTemplateProvider' => $baseDir . '/../lib/DefaultPublicShareTemplateProvider.php', |
|
| 44 | - 'OCA\\Files_Sharing\\DeleteOrphanedSharesJob' => $baseDir . '/../lib/DeleteOrphanedSharesJob.php', |
|
| 45 | - 'OCA\\Files_Sharing\\Event\\BeforeTemplateRenderedEvent' => $baseDir . '/../lib/Event/BeforeTemplateRenderedEvent.php', |
|
| 46 | - 'OCA\\Files_Sharing\\Event\\ShareLinkAccessedEvent' => $baseDir . '/../lib/Event/ShareLinkAccessedEvent.php', |
|
| 47 | - 'OCA\\Files_Sharing\\Event\\ShareMountedEvent' => $baseDir . '/../lib/Event/ShareMountedEvent.php', |
|
| 48 | - 'OCA\\Files_Sharing\\Exceptions\\BrokenPath' => $baseDir . '/../lib/Exceptions/BrokenPath.php', |
|
| 49 | - 'OCA\\Files_Sharing\\Exceptions\\S2SException' => $baseDir . '/../lib/Exceptions/S2SException.php', |
|
| 50 | - 'OCA\\Files_Sharing\\Exceptions\\SharingRightsException' => $baseDir . '/../lib/Exceptions/SharingRightsException.php', |
|
| 51 | - 'OCA\\Files_Sharing\\ExpireSharesJob' => $baseDir . '/../lib/ExpireSharesJob.php', |
|
| 52 | - 'OCA\\Files_Sharing\\External\\Cache' => $baseDir . '/../lib/External/Cache.php', |
|
| 53 | - 'OCA\\Files_Sharing\\External\\Manager' => $baseDir . '/../lib/External/Manager.php', |
|
| 54 | - 'OCA\\Files_Sharing\\External\\Mount' => $baseDir . '/../lib/External/Mount.php', |
|
| 55 | - 'OCA\\Files_Sharing\\External\\MountProvider' => $baseDir . '/../lib/External/MountProvider.php', |
|
| 56 | - 'OCA\\Files_Sharing\\External\\Scanner' => $baseDir . '/../lib/External/Scanner.php', |
|
| 57 | - 'OCA\\Files_Sharing\\External\\Storage' => $baseDir . '/../lib/External/Storage.php', |
|
| 58 | - 'OCA\\Files_Sharing\\External\\Watcher' => $baseDir . '/../lib/External/Watcher.php', |
|
| 59 | - 'OCA\\Files_Sharing\\Helper' => $baseDir . '/../lib/Helper.php', |
|
| 60 | - 'OCA\\Files_Sharing\\Hooks' => $baseDir . '/../lib/Hooks.php', |
|
| 61 | - 'OCA\\Files_Sharing\\ISharedMountPoint' => $baseDir . '/../lib/ISharedMountPoint.php', |
|
| 62 | - 'OCA\\Files_Sharing\\ISharedStorage' => $baseDir . '/../lib/ISharedStorage.php', |
|
| 63 | - 'OCA\\Files_Sharing\\Listener\\BeforeDirectFileDownloadListener' => $baseDir . '/../lib/Listener/BeforeDirectFileDownloadListener.php', |
|
| 64 | - 'OCA\\Files_Sharing\\Listener\\BeforeNodeReadListener' => $baseDir . '/../lib/Listener/BeforeNodeReadListener.php', |
|
| 65 | - 'OCA\\Files_Sharing\\Listener\\BeforeZipCreatedListener' => $baseDir . '/../lib/Listener/BeforeZipCreatedListener.php', |
|
| 66 | - 'OCA\\Files_Sharing\\Listener\\LoadAdditionalListener' => $baseDir . '/../lib/Listener/LoadAdditionalListener.php', |
|
| 67 | - 'OCA\\Files_Sharing\\Listener\\LoadPublicFileRequestAuthListener' => $baseDir . '/../lib/Listener/LoadPublicFileRequestAuthListener.php', |
|
| 68 | - 'OCA\\Files_Sharing\\Listener\\LoadSidebarListener' => $baseDir . '/../lib/Listener/LoadSidebarListener.php', |
|
| 69 | - 'OCA\\Files_Sharing\\Listener\\ShareInteractionListener' => $baseDir . '/../lib/Listener/ShareInteractionListener.php', |
|
| 70 | - 'OCA\\Files_Sharing\\Listener\\UserAddedToGroupListener' => $baseDir . '/../lib/Listener/UserAddedToGroupListener.php', |
|
| 71 | - 'OCA\\Files_Sharing\\Listener\\UserShareAcceptanceListener' => $baseDir . '/../lib/Listener/UserShareAcceptanceListener.php', |
|
| 72 | - 'OCA\\Files_Sharing\\Middleware\\OCSShareAPIMiddleware' => $baseDir . '/../lib/Middleware/OCSShareAPIMiddleware.php', |
|
| 73 | - 'OCA\\Files_Sharing\\Middleware\\ShareInfoMiddleware' => $baseDir . '/../lib/Middleware/ShareInfoMiddleware.php', |
|
| 74 | - 'OCA\\Files_Sharing\\Middleware\\SharingCheckMiddleware' => $baseDir . '/../lib/Middleware/SharingCheckMiddleware.php', |
|
| 75 | - 'OCA\\Files_Sharing\\Migration\\OwncloudGuestShareType' => $baseDir . '/../lib/Migration/OwncloudGuestShareType.php', |
|
| 76 | - 'OCA\\Files_Sharing\\Migration\\SetAcceptedStatus' => $baseDir . '/../lib/Migration/SetAcceptedStatus.php', |
|
| 77 | - 'OCA\\Files_Sharing\\Migration\\SetPasswordColumn' => $baseDir . '/../lib/Migration/SetPasswordColumn.php', |
|
| 78 | - 'OCA\\Files_Sharing\\Migration\\Version11300Date20201120141438' => $baseDir . '/../lib/Migration/Version11300Date20201120141438.php', |
|
| 79 | - 'OCA\\Files_Sharing\\Migration\\Version21000Date20201223143245' => $baseDir . '/../lib/Migration/Version21000Date20201223143245.php', |
|
| 80 | - 'OCA\\Files_Sharing\\Migration\\Version22000Date20210216084241' => $baseDir . '/../lib/Migration/Version22000Date20210216084241.php', |
|
| 81 | - 'OCA\\Files_Sharing\\Migration\\Version24000Date20220208195521' => $baseDir . '/../lib/Migration/Version24000Date20220208195521.php', |
|
| 82 | - 'OCA\\Files_Sharing\\Migration\\Version24000Date20220404142216' => $baseDir . '/../lib/Migration/Version24000Date20220404142216.php', |
|
| 83 | - 'OCA\\Files_Sharing\\Migration\\Version31000Date20240821142813' => $baseDir . '/../lib/Migration/Version31000Date20240821142813.php', |
|
| 84 | - 'OCA\\Files_Sharing\\MountProvider' => $baseDir . '/../lib/MountProvider.php', |
|
| 85 | - 'OCA\\Files_Sharing\\Notification\\Listener' => $baseDir . '/../lib/Notification/Listener.php', |
|
| 86 | - 'OCA\\Files_Sharing\\Notification\\Notifier' => $baseDir . '/../lib/Notification/Notifier.php', |
|
| 87 | - 'OCA\\Files_Sharing\\OrphanHelper' => $baseDir . '/../lib/OrphanHelper.php', |
|
| 88 | - 'OCA\\Files_Sharing\\ResponseDefinitions' => $baseDir . '/../lib/ResponseDefinitions.php', |
|
| 89 | - 'OCA\\Files_Sharing\\Scanner' => $baseDir . '/../lib/Scanner.php', |
|
| 90 | - 'OCA\\Files_Sharing\\Settings\\Personal' => $baseDir . '/../lib/Settings/Personal.php', |
|
| 91 | - 'OCA\\Files_Sharing\\ShareBackend\\File' => $baseDir . '/../lib/ShareBackend/File.php', |
|
| 92 | - 'OCA\\Files_Sharing\\ShareBackend\\Folder' => $baseDir . '/../lib/ShareBackend/Folder.php', |
|
| 93 | - 'OCA\\Files_Sharing\\SharedMount' => $baseDir . '/../lib/SharedMount.php', |
|
| 94 | - 'OCA\\Files_Sharing\\SharedStorage' => $baseDir . '/../lib/SharedStorage.php', |
|
| 95 | - 'OCA\\Files_Sharing\\SharesReminderJob' => $baseDir . '/../lib/SharesReminderJob.php', |
|
| 96 | - 'OCA\\Files_Sharing\\Updater' => $baseDir . '/../lib/Updater.php', |
|
| 97 | - 'OCA\\Files_Sharing\\ViewOnly' => $baseDir . '/../lib/ViewOnly.php', |
|
| 9 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php', |
|
| 10 | + 'OCA\\Files_Sharing\\Activity\\Filter' => $baseDir.'/../lib/Activity/Filter.php', |
|
| 11 | + 'OCA\\Files_Sharing\\Activity\\Providers\\Base' => $baseDir.'/../lib/Activity/Providers/Base.php', |
|
| 12 | + 'OCA\\Files_Sharing\\Activity\\Providers\\Downloads' => $baseDir.'/../lib/Activity/Providers/Downloads.php', |
|
| 13 | + 'OCA\\Files_Sharing\\Activity\\Providers\\Groups' => $baseDir.'/../lib/Activity/Providers/Groups.php', |
|
| 14 | + 'OCA\\Files_Sharing\\Activity\\Providers\\PublicLinks' => $baseDir.'/../lib/Activity/Providers/PublicLinks.php', |
|
| 15 | + 'OCA\\Files_Sharing\\Activity\\Providers\\RemoteShares' => $baseDir.'/../lib/Activity/Providers/RemoteShares.php', |
|
| 16 | + 'OCA\\Files_Sharing\\Activity\\Providers\\Users' => $baseDir.'/../lib/Activity/Providers/Users.php', |
|
| 17 | + 'OCA\\Files_Sharing\\Activity\\Settings\\PublicLinks' => $baseDir.'/../lib/Activity/Settings/PublicLinks.php', |
|
| 18 | + 'OCA\\Files_Sharing\\Activity\\Settings\\PublicLinksUpload' => $baseDir.'/../lib/Activity/Settings/PublicLinksUpload.php', |
|
| 19 | + 'OCA\\Files_Sharing\\Activity\\Settings\\RemoteShare' => $baseDir.'/../lib/Activity/Settings/RemoteShare.php', |
|
| 20 | + 'OCA\\Files_Sharing\\Activity\\Settings\\ShareActivitySettings' => $baseDir.'/../lib/Activity/Settings/ShareActivitySettings.php', |
|
| 21 | + 'OCA\\Files_Sharing\\Activity\\Settings\\Shared' => $baseDir.'/../lib/Activity/Settings/Shared.php', |
|
| 22 | + 'OCA\\Files_Sharing\\AppInfo\\Application' => $baseDir.'/../lib/AppInfo/Application.php', |
|
| 23 | + 'OCA\\Files_Sharing\\BackgroundJob\\FederatedSharesDiscoverJob' => $baseDir.'/../lib/BackgroundJob/FederatedSharesDiscoverJob.php', |
|
| 24 | + 'OCA\\Files_Sharing\\Cache' => $baseDir.'/../lib/Cache.php', |
|
| 25 | + 'OCA\\Files_Sharing\\Capabilities' => $baseDir.'/../lib/Capabilities.php', |
|
| 26 | + 'OCA\\Files_Sharing\\Collaboration\\ShareRecipientSorter' => $baseDir.'/../lib/Collaboration/ShareRecipientSorter.php', |
|
| 27 | + 'OCA\\Files_Sharing\\Command\\CleanupRemoteStorages' => $baseDir.'/../lib/Command/CleanupRemoteStorages.php', |
|
| 28 | + 'OCA\\Files_Sharing\\Command\\DeleteOrphanShares' => $baseDir.'/../lib/Command/DeleteOrphanShares.php', |
|
| 29 | + 'OCA\\Files_Sharing\\Command\\ExiprationNotification' => $baseDir.'/../lib/Command/ExiprationNotification.php', |
|
| 30 | + 'OCA\\Files_Sharing\\Command\\FixShareOwners' => $baseDir.'/../lib/Command/FixShareOwners.php', |
|
| 31 | + 'OCA\\Files_Sharing\\Command\\ListShares' => $baseDir.'/../lib/Command/ListShares.php', |
|
| 32 | + 'OCA\\Files_Sharing\\Config\\ConfigLexicon' => $baseDir.'/../lib/Config/ConfigLexicon.php', |
|
| 33 | + 'OCA\\Files_Sharing\\Controller\\AcceptController' => $baseDir.'/../lib/Controller/AcceptController.php', |
|
| 34 | + 'OCA\\Files_Sharing\\Controller\\DeletedShareAPIController' => $baseDir.'/../lib/Controller/DeletedShareAPIController.php', |
|
| 35 | + 'OCA\\Files_Sharing\\Controller\\ExternalSharesController' => $baseDir.'/../lib/Controller/ExternalSharesController.php', |
|
| 36 | + 'OCA\\Files_Sharing\\Controller\\PublicPreviewController' => $baseDir.'/../lib/Controller/PublicPreviewController.php', |
|
| 37 | + 'OCA\\Files_Sharing\\Controller\\RemoteController' => $baseDir.'/../lib/Controller/RemoteController.php', |
|
| 38 | + 'OCA\\Files_Sharing\\Controller\\SettingsController' => $baseDir.'/../lib/Controller/SettingsController.php', |
|
| 39 | + 'OCA\\Files_Sharing\\Controller\\ShareAPIController' => $baseDir.'/../lib/Controller/ShareAPIController.php', |
|
| 40 | + 'OCA\\Files_Sharing\\Controller\\ShareController' => $baseDir.'/../lib/Controller/ShareController.php', |
|
| 41 | + 'OCA\\Files_Sharing\\Controller\\ShareInfoController' => $baseDir.'/../lib/Controller/ShareInfoController.php', |
|
| 42 | + 'OCA\\Files_Sharing\\Controller\\ShareesAPIController' => $baseDir.'/../lib/Controller/ShareesAPIController.php', |
|
| 43 | + 'OCA\\Files_Sharing\\DefaultPublicShareTemplateProvider' => $baseDir.'/../lib/DefaultPublicShareTemplateProvider.php', |
|
| 44 | + 'OCA\\Files_Sharing\\DeleteOrphanedSharesJob' => $baseDir.'/../lib/DeleteOrphanedSharesJob.php', |
|
| 45 | + 'OCA\\Files_Sharing\\Event\\BeforeTemplateRenderedEvent' => $baseDir.'/../lib/Event/BeforeTemplateRenderedEvent.php', |
|
| 46 | + 'OCA\\Files_Sharing\\Event\\ShareLinkAccessedEvent' => $baseDir.'/../lib/Event/ShareLinkAccessedEvent.php', |
|
| 47 | + 'OCA\\Files_Sharing\\Event\\ShareMountedEvent' => $baseDir.'/../lib/Event/ShareMountedEvent.php', |
|
| 48 | + 'OCA\\Files_Sharing\\Exceptions\\BrokenPath' => $baseDir.'/../lib/Exceptions/BrokenPath.php', |
|
| 49 | + 'OCA\\Files_Sharing\\Exceptions\\S2SException' => $baseDir.'/../lib/Exceptions/S2SException.php', |
|
| 50 | + 'OCA\\Files_Sharing\\Exceptions\\SharingRightsException' => $baseDir.'/../lib/Exceptions/SharingRightsException.php', |
|
| 51 | + 'OCA\\Files_Sharing\\ExpireSharesJob' => $baseDir.'/../lib/ExpireSharesJob.php', |
|
| 52 | + 'OCA\\Files_Sharing\\External\\Cache' => $baseDir.'/../lib/External/Cache.php', |
|
| 53 | + 'OCA\\Files_Sharing\\External\\Manager' => $baseDir.'/../lib/External/Manager.php', |
|
| 54 | + 'OCA\\Files_Sharing\\External\\Mount' => $baseDir.'/../lib/External/Mount.php', |
|
| 55 | + 'OCA\\Files_Sharing\\External\\MountProvider' => $baseDir.'/../lib/External/MountProvider.php', |
|
| 56 | + 'OCA\\Files_Sharing\\External\\Scanner' => $baseDir.'/../lib/External/Scanner.php', |
|
| 57 | + 'OCA\\Files_Sharing\\External\\Storage' => $baseDir.'/../lib/External/Storage.php', |
|
| 58 | + 'OCA\\Files_Sharing\\External\\Watcher' => $baseDir.'/../lib/External/Watcher.php', |
|
| 59 | + 'OCA\\Files_Sharing\\Helper' => $baseDir.'/../lib/Helper.php', |
|
| 60 | + 'OCA\\Files_Sharing\\Hooks' => $baseDir.'/../lib/Hooks.php', |
|
| 61 | + 'OCA\\Files_Sharing\\ISharedMountPoint' => $baseDir.'/../lib/ISharedMountPoint.php', |
|
| 62 | + 'OCA\\Files_Sharing\\ISharedStorage' => $baseDir.'/../lib/ISharedStorage.php', |
|
| 63 | + 'OCA\\Files_Sharing\\Listener\\BeforeDirectFileDownloadListener' => $baseDir.'/../lib/Listener/BeforeDirectFileDownloadListener.php', |
|
| 64 | + 'OCA\\Files_Sharing\\Listener\\BeforeNodeReadListener' => $baseDir.'/../lib/Listener/BeforeNodeReadListener.php', |
|
| 65 | + 'OCA\\Files_Sharing\\Listener\\BeforeZipCreatedListener' => $baseDir.'/../lib/Listener/BeforeZipCreatedListener.php', |
|
| 66 | + 'OCA\\Files_Sharing\\Listener\\LoadAdditionalListener' => $baseDir.'/../lib/Listener/LoadAdditionalListener.php', |
|
| 67 | + 'OCA\\Files_Sharing\\Listener\\LoadPublicFileRequestAuthListener' => $baseDir.'/../lib/Listener/LoadPublicFileRequestAuthListener.php', |
|
| 68 | + 'OCA\\Files_Sharing\\Listener\\LoadSidebarListener' => $baseDir.'/../lib/Listener/LoadSidebarListener.php', |
|
| 69 | + 'OCA\\Files_Sharing\\Listener\\ShareInteractionListener' => $baseDir.'/../lib/Listener/ShareInteractionListener.php', |
|
| 70 | + 'OCA\\Files_Sharing\\Listener\\UserAddedToGroupListener' => $baseDir.'/../lib/Listener/UserAddedToGroupListener.php', |
|
| 71 | + 'OCA\\Files_Sharing\\Listener\\UserShareAcceptanceListener' => $baseDir.'/../lib/Listener/UserShareAcceptanceListener.php', |
|
| 72 | + 'OCA\\Files_Sharing\\Middleware\\OCSShareAPIMiddleware' => $baseDir.'/../lib/Middleware/OCSShareAPIMiddleware.php', |
|
| 73 | + 'OCA\\Files_Sharing\\Middleware\\ShareInfoMiddleware' => $baseDir.'/../lib/Middleware/ShareInfoMiddleware.php', |
|
| 74 | + 'OCA\\Files_Sharing\\Middleware\\SharingCheckMiddleware' => $baseDir.'/../lib/Middleware/SharingCheckMiddleware.php', |
|
| 75 | + 'OCA\\Files_Sharing\\Migration\\OwncloudGuestShareType' => $baseDir.'/../lib/Migration/OwncloudGuestShareType.php', |
|
| 76 | + 'OCA\\Files_Sharing\\Migration\\SetAcceptedStatus' => $baseDir.'/../lib/Migration/SetAcceptedStatus.php', |
|
| 77 | + 'OCA\\Files_Sharing\\Migration\\SetPasswordColumn' => $baseDir.'/../lib/Migration/SetPasswordColumn.php', |
|
| 78 | + 'OCA\\Files_Sharing\\Migration\\Version11300Date20201120141438' => $baseDir.'/../lib/Migration/Version11300Date20201120141438.php', |
|
| 79 | + 'OCA\\Files_Sharing\\Migration\\Version21000Date20201223143245' => $baseDir.'/../lib/Migration/Version21000Date20201223143245.php', |
|
| 80 | + 'OCA\\Files_Sharing\\Migration\\Version22000Date20210216084241' => $baseDir.'/../lib/Migration/Version22000Date20210216084241.php', |
|
| 81 | + 'OCA\\Files_Sharing\\Migration\\Version24000Date20220208195521' => $baseDir.'/../lib/Migration/Version24000Date20220208195521.php', |
|
| 82 | + 'OCA\\Files_Sharing\\Migration\\Version24000Date20220404142216' => $baseDir.'/../lib/Migration/Version24000Date20220404142216.php', |
|
| 83 | + 'OCA\\Files_Sharing\\Migration\\Version31000Date20240821142813' => $baseDir.'/../lib/Migration/Version31000Date20240821142813.php', |
|
| 84 | + 'OCA\\Files_Sharing\\MountProvider' => $baseDir.'/../lib/MountProvider.php', |
|
| 85 | + 'OCA\\Files_Sharing\\Notification\\Listener' => $baseDir.'/../lib/Notification/Listener.php', |
|
| 86 | + 'OCA\\Files_Sharing\\Notification\\Notifier' => $baseDir.'/../lib/Notification/Notifier.php', |
|
| 87 | + 'OCA\\Files_Sharing\\OrphanHelper' => $baseDir.'/../lib/OrphanHelper.php', |
|
| 88 | + 'OCA\\Files_Sharing\\ResponseDefinitions' => $baseDir.'/../lib/ResponseDefinitions.php', |
|
| 89 | + 'OCA\\Files_Sharing\\Scanner' => $baseDir.'/../lib/Scanner.php', |
|
| 90 | + 'OCA\\Files_Sharing\\Settings\\Personal' => $baseDir.'/../lib/Settings/Personal.php', |
|
| 91 | + 'OCA\\Files_Sharing\\ShareBackend\\File' => $baseDir.'/../lib/ShareBackend/File.php', |
|
| 92 | + 'OCA\\Files_Sharing\\ShareBackend\\Folder' => $baseDir.'/../lib/ShareBackend/Folder.php', |
|
| 93 | + 'OCA\\Files_Sharing\\SharedMount' => $baseDir.'/../lib/SharedMount.php', |
|
| 94 | + 'OCA\\Files_Sharing\\SharedStorage' => $baseDir.'/../lib/SharedStorage.php', |
|
| 95 | + 'OCA\\Files_Sharing\\SharesReminderJob' => $baseDir.'/../lib/SharesReminderJob.php', |
|
| 96 | + 'OCA\\Files_Sharing\\Updater' => $baseDir.'/../lib/Updater.php', |
|
| 97 | + 'OCA\\Files_Sharing\\ViewOnly' => $baseDir.'/../lib/ViewOnly.php', |
|
| 98 | 98 | ); |