2022-12-06 11:22:53 -05:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2022-12-06 11:22:53 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2022-12-06 11:22:53 -05:00
|
|
|
*/
|
2026-05-28 08:54:31 -04:00
|
|
|
|
2022-12-06 11:22:53 -05:00
|
|
|
namespace OCP;
|
|
|
|
|
|
2022-12-15 11:26:03 -05:00
|
|
|
/**
|
|
|
|
|
* Dispatched before Sabre is loaded when accessing public webdav endpoints
|
|
|
|
|
* This can be used to inject a Sabre plugin for example
|
|
|
|
|
*
|
|
|
|
|
* @since 26.0.0
|
|
|
|
|
*/
|
|
|
|
|
class BeforeSabrePubliclyLoadedEvent extends SabrePluginEvent {
|
2022-12-06 11:22:53 -05:00
|
|
|
}
|