Home
last modified time | relevance | path

Searched refs:propPatch (Results 1 – 25 of 67) sorted by last modified time

123

/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DTreeTest.php206 function propPatch(PropPatch $propPatch) { function in Sabre\\DAV\\TreeFileTester
208 $this->properties = $propPatch->getMutations();
209 $propPatch->setRemainingResultCode(200);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Request/
H A DPropPatchTest.php12 $propPatch = new PropPatch();
13 $propPatch->properties = [
20 ['{DAV:}propertyupdate' => $propPatch]
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DAbstractBackend.php35 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) { argument
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/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/DAV/
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) { argument
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) { argument
952 $propPatch->handle('{DAV:}group-member-set', function($value) use ($path) {
H A DPrincipal.php196 function propPatch(DAV\PropPatch $propPatch) { argument
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());
H A DAbstractTest.php13 $propPatch = new PropPatch( ['{DAV:}displayname' => 'anything'] );
15 $abstract->updateCalendar('randomid', $propPatch);
16 $result = $propPatch->commit();
H A DMockSubscriptionSupport.php111 public function updateSubscription($subscriptionId, DAV\PropPatch $propPatch) { argument
125 $propPatch->handleRemaining(function($mutations) use (&$found) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DCalendarTest.php56 $propPatch = new PropPatch([
60 $result = $this->calendar->propPatch($propPatch);
61 $result = $propPatch->commit();
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/
H A DSubscriptionTest.php118 $propPatch = new PropPatch([
121 $sub->propPatch($propPatch);
122 $this->assertTrue($propPatch->commit());
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DAddressBookTest.php109 $propPatch = new PropPatch([
112 $this->ab->propPatch($propPatch);
113 $this->assertTrue($propPatch->commit());
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/
H A DAbstractPDOTest.php52 $propPatch = new PropPatch([
58 $this->backend->updateAddressBook(1, $propPatch);
59 $result = $propPatch->commit();
83 $propPatch = new PropPatch([
86 $this->backend->updateAddressBook(1, $propPatch);
87 $result = $propPatch->commit();
111 $propPatch = new PropPatch([
116 $this->backend->updateAddressBook(1, $propPatch);
117 $result = $propPatch->commit();

123