Home
last modified time | relevance | path

Searched refs:propPatch (Results 1 – 25 of 67) sorted by path

123

/plugin/davcal/
H A DcalendarBackendDokuwiki.php160 function updateCalendar($calendarId, \Sabre\DAV\PropPatch $propPatch) argument
165 $propPatch->handle($supportedProperties, function($mutations) use ($calendarId)
641 function updateSubscription($subscriptionId, DAV\PropPatch $propPatch) argument
H A DprincipalBackendDokuwiki.php40 public function updatePrincipal($path, \Sabre\DAV\PropPatch $propPatch) argument
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DAbstractBackend.php35 function updateCalendar($calendarId, \Sabre\DAV\PropPatch $propPatch) { argument
H A DBackendInterface.php70 function updateCalendar($calendarId, \Sabre\DAV\PropPatch $propPatch); argument
H A DPDO.php259 function updateCalendar($calendarId, \Sabre\DAV\PropPatch $propPatch) { argument
264 $propPatch->handle($supportedProperties, function($mutations) use ($calendarId) {
1063 function updateSubscription($subscriptionId, DAV\PropPatch $propPatch) { argument
1068 $propPatch->handle($supportedProperties, function($mutations) use ($subscriptionId) {
H A DSubscriptionSupport.php79 function updateSubscription($subscriptionId, DAV\PropPatch $propPatch); argument
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DCalendar.php68 * @param PropPatch $propPatch
71 function propPatch(PropPatch $propPatch) { function in Sabre\\CalDAV\\Calendar
73 return $this->caldavBackend->updateCalendar($this->calendarInfo['id'], $propPatch);
H A DSharingPlugin.php211 function propPatch($path, DAV\PropPatch $propPatch) { function in Sabre\\CalDAV\\SharingPlugin
217 $propPatch->handle('{DAV:}resourcetype', function($value) use ($node) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Subscriptions/
H A DSubscription.php122 * @param PropPatch $propPatch
125 function propPatch(PropPatch $propPatch) { function in Sabre\\CalDAV\\Subscriptions\\Subscription
129 $propPatch
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DAddressBook.php192 function propPatch(DAV\PropPatch $propPatch) { argument
194 return $this->carddavBackend->updateAddressBook($this->addressBookInfo['id'], $propPatch);
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/Backend/
H A DBackendInterface.php55 function updateAddressBook($addressBookId, \Sabre\DAV\PropPatch $propPatch); argument
H A DPDO.php102 function updateAddressBook($addressBookId, \Sabre\DAV\PropPatch $propPatch) { argument
109 $propPatch->handle($supportedProperties, function($mutations) use ($addressBookId) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php265 function propPatch($url, array $properties) { function in Sabre\\DAV\\Client
267 $propPatch = new Xml\Request\PropPatch();
268 $propPatch->properties = $properties;
271 $propPatch
H A DCorePlugin.php379 $propPatch = $this->server->xml->expect('{DAV:}propertyupdate', $request->getBody());
383 $newProperties = $propPatch->properties;
738 * @param PropPatch $propPatch
741 function propPatchProtectedPropertyCheck($path, PropPatch $propPatch) { argument
744 $mutations = $propPatch->getMutations();
752 $propPatch->setResultCode($protected, 403);
764 * @param PropPatch $propPatch
767 function propPatchNodeUpdate($path, PropPatch $propPatch) { argument
773 $node->propPatch($propPatch);
H A DIProperties.php25 * @param PropPatch $propPatch
28 function propPatch(PropPatch $propPatch); argument
H A DServer.php1188 $propPatch = new PropPatch($properties);
1189 $this->emit('propPatch', [$path, $propPatch]);
1190 $propPatch->commit();
1192 return $propPatch->getResult();
H A DTree.php330 $propPatch = new PropPatch($props);
331 $destination->propPatch($propPatch);
332 $propPatch->commit();
/plugin/davcal/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/
H A DBackendInterface.php49 * @param PropPatch $propPatch
52 function propPatch($path, PropPatch $propPatch); argument
H A DPDO.php110 * @param PropPatch $propPatch
113 function propPatch($path, PropPatch $propPatch) { function in Sabre\\DAV\\PropertyStorage\\Backend\\PDO
115 $propPatch->handleRemaining(function($properties) use ($path) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/PropertyStorage/
H A DPlugin.php97 * @param PropPatch $propPatch
100 function propPatch($path, PropPatch $propPatch) { function in Sabre\\DAV\\PropertyStorage\\Plugin
104 $this->backend->propPatch($path, $propPatch);
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php950 function propPatch($path, DAV\PropPatch $propPatch) { function in Sabre\\DAVACL\\Plugin
952 $propPatch->handle('{DAV:}group-member-set', function($value) use ($path) {
H A DPrincipal.php196 function propPatch(DAV\PropPatch $propPatch) { function in Sabre\\DAVACL\\Principal
200 $propPatch
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/PrincipalBackend/
H A DBackendInterface.php62 function updatePrincipal($path, \Sabre\DAV\PropPatch $propPatch); argument
H A DPDO.php179 function updatePrincipal($path, DAV\PropPatch $propPatch) { argument
181 $propPatch->handle(array_keys($this->fieldMap), function($properties) use ($path) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DAbstractPDOTest.php74 $propPatch = new PropPatch([
80 $backend->updateCalendar($newId, $propPatch);
81 $result = $propPatch->commit();
800 $propPatch = new DAV\PropPatch([
813 ], $propPatch->getResult());

123