Home
last modified time | relevance | path

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

123

/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
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() {
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/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/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();
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/
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/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/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/webdav/vendor/sabre/dav/lib/DAV/
H A DIProperties.php25 * @param PropPatch $propPatch
28 function propPatch(PropPatch $propPatch); function
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DIProperties.php25 * @param PropPatch $propPatch
28 function propPatch(PropPatch $propPatch); argument
/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/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/
H A DBackendInterface.php49 * @param PropPatch $propPatch
52 function propPatch($path, PropPatch $propPatch); function
H A DPDO.php120 * @param PropPatch $propPatch
123 function propPatch($path, PropPatch $propPatch) { function in Sabre\\DAV\\PropertyStorage\\Backend\\PDO
125 $propPatch->handleRemaining(function($properties) use ($path) {
/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/webdav/vendor/sabre/dav/lib/CalDAV/Subscriptions/
H A DSubscription.php124 * @param PropPatch $propPatch
127 function propPatch(PropPatch $propPatch) { argument
131 $propPatch
/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/lib/CalDAV/Subscriptions/
H A DSubscription.php122 * @param PropPatch $propPatch
125 function propPatch(PropPatch $propPatch) { argument
129 $propPatch
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DAbstractTest.php13 $propPatch = new PropPatch( ['{DAV:}displayname' => 'anything'] );
15 $abstract->updateCalendar('randomid', $propPatch);
16 $result = $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/webdav/vendor/sabre/dav/lib/DAVACL/
H A DPrincipal.php198 function propPatch(DAV\PropPatch $propPatch) { argument
202 $propPatch
/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/davcal/vendor/sabre/dav/lib/DAVACL/
H A DPrincipal.php196 function propPatch(DAV\PropPatch $propPatch) { function in Sabre\\DAVACL\\Principal
200 $propPatch
/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();

123