BeforeRemotePropfindEvent
extends Event
in package
This event is fired before a PROPFIND request is sent to remote WebDAV storage Used to extend the list of properties to request additional data from the remote server
Tags
Table of Contents
Properties
- $properties : array<string|int, mixed>
Methods
- __construct() : mixed
- Compatibility constructor
- addProperties() : void
- getProperties() : array<string|int, string>
- isPropagationStopped() : bool
- {@inheritDoc}
- stopPropagation() : void
- Stops the propagation of the event to further event listeners
Properties
$properties
private
array<string|int, mixed>
$properties
Methods
__construct()
Compatibility constructor
public
__construct(array<string|int, mixed> $properties) : mixed
In Nextcloud 17.0.0 this event class used a now deprecated/removed Symfony base class that had a constructor (with default arguments). To lower the risk of a breaking change (PHP won't allow parent constructor calls if there is none), this empty constructor's only purpose is to hopefully not break existing sub- classes of this class.
Parameters
- $properties : array<string|int, mixed>
addProperties()
public
addProperties(array<string|int, string> $properties) : void
Parameters
- $properties : array<string|int, string>
Tags
getProperties()
public
getProperties() : array<string|int, string>
Tags
Return values
array<string|int, string>isPropagationStopped()
{@inheritDoc}
public
isPropagationStopped() : bool
Tags
Return values
boolstopPropagation()
Stops the propagation of the event to further event listeners
public
stopPropagation() : void