blob: b2c4501f9afbc07856bd3f0d82f5d20814f451c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\FilesReminders\Listener;
use OCA\DAV\Events\SabrePluginAddEvent;
use OCA\FilesReminders\Dav\PropFindPlugin;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
use Psr\Container\ContainerInterface;
/** @template-implements IEventListener<SabrePluginAddEvent> */
class SabrePluginAddListener implements IEventListener {
public function __construct(
private ContainerInterface $container,
) {
}
public function handle(Event $event): void {
if (!($event instanceof SabrePluginAddEvent)) {
return;
}
$server = $event->getServer();
$plugin = $this->container->get(PropFindPlugin::class);
$server->addPlugin($plugin);
}
}
|