Home
last modified time | relevance | path

Searched refs:propPatch (Results 26 – 50 of 67) sorted by last modified time

123

/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/
H A DMock.php67 public function updateAddressBook($addressBookId, \Sabre\DAV\PropPatch $propPatch) { argument
73 $propPatch->handleRemaining(function($mutations) use (&$book) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DClientTest.php219 … $result = $client->propPatch('foo', ['{DAV:}displayname' => 'hi', '{urn:zim}gir' => null], 1);
H A DHTTPPreferParsingTest.php149 $this->server->on('propPatch', function($path, PropPatch $propPatch) {
151 $propPatch->handle('{DAV:}something', function($props) {
H A DPropPatchTest.php7 protected $propPatch; variable in Sabre\\DAV\\PropPatchTest
11 $this->propPatch = new PropPatch([
181 $this->propPatch->commit();
190 $propPatch = new PropPatch([
216 ], $propPatch->getResult());
225 $propPatch = new PropPatch([
235 $propPatch->commit();
241 $propPatch = new PropPatch([
266 ], $propPatch->getResult());
273 $propPatch = new PropPatch([
[all …]
H A DServerUpdatePropertiesTest.php33 $server->on('propPatch', function($path, PropPatch $propPatch) {
34 $propPatch->handleRemaining(function() { return true; });
55 $server->on('propPatch', function($path, PropPatch $propPatch) {
56 $propPatch->setResultCode('{DAV:}foo', 404);
57 $propPatch->handleRemaining(function() { return true; });
90 $server->on('propPatch', function($path, PropPatch $propPatch) {
92 $propPatch->handle(['{DAV:}foo', '{DAV:}foo2'], function() {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Mock/
H A DPropertiesCollection.php50 public function propPatch(PropPatch $proppatch) { function in Sabre\\DAV\\Mock\\PropertiesCollection
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/
H A DAbstractPDOTest.php55 $backend->propPatch('dir', $propPatch);
56 $propPatch->commit();
75 $backend->propPatch('dir', $propPatch);
76 $propPatch->commit();
96 $backend->propPatch('dir', $propPatch);
97 $propPatch->commit();
114 $backend->propPatch('dir', $propPatch);
115 $propPatch->commit();
147 $backend->propPatch('dir/child', $propPatch);
148 $propPatch->commit();
[all …]
H A DMock.php48 * @param PropPatch $propPatch
51 public function propPatch($path, PropPatch $propPatch) { function in Sabre\\DAV\\PropertyStorage\\Backend\\Mock
56 $propPatch->handleRemaining(function($properties) use ($path) {
/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/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/CalDAV/Backend/
H A DBackendInterface.php70 function updateCalendar($calendarId, \Sabre\DAV\PropPatch $propPatch); argument
/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/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);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/
H A DMock.php136 function updatePrincipal($path, \Sabre\DAV\PropPatch $propPatch) { argument
147 $propPatch->handleRemaining(function($mutations) use ($principal, $principalIndex) {
H A DAbstractPDOTest.php131 $propPatch = new DAV\PropPatch([
135 $backend->updatePrincipal('principals/user', $propPatch);
136 $result = $propPatch->commit();
154 $propPatch = new DAV\PropPatch([
159 $backend->updatePrincipal('principals/user', $propPatch);
160 $result = $propPatch->commit();
167 ), $propPatch->getResult());
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DPrincipalTest.php79 $propPatch = new DAV\PropPatch(array('{DAV:}yourmom' => 'test'));
81 $result = $principal->propPatch($propPatch);
82 $result = $propPatch->commit();
/plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/
H A DPlugin.php102 * @param PropPatch $propPatch
105 function propPatch($path, PropPatch $propPatch) { function in Sabre\\DAV\\PropertyStorage\\Plugin
109 $this->backend->propPatch($path, $propPatch);
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php1264 $propPatch = new PropPatch($properties);
1265 $this->emit('propPatch', [$path, $propPatch]);
1266 $propPatch->commit();
1268 return $propPatch->getResult();
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md183 * #726: Better error reporting in `Client::propPatch`. We're now throwing
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DAbstractBackend.php35 function updateCalendar($calendarId, \Sabre\DAV\PropPatch $propPatch) { argument
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php317 * @param PropPatch $propPatch
320 function propPatch($path, PropPatch $propPatch) { argument
323 …$propPatch->handle('{http://calendarserver.org/ns/}calendar-availability', function($value) use ($…
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Subscriptions/
H A DSubscription.php124 * @param PropPatch $propPatch
127 function propPatch(PropPatch $propPatch) { function in Sabre\\CalDAV\\Subscriptions\\Subscription
131 $propPatch

123