/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/ |
H A D | PropPatchTest.php | 7 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 D | ServerUpdatePropertiesTest.php | 33 $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 D | TreeTest.php | 206 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 D | AbstractPDOTest.php | 55 $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 D | Mock.php | 48 * @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 D | AbstractPDOTest.php | 52 $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 D | AbstractPDOTest.php | 131 $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 D | Plugin.php | 102 * @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 D | Plugin.php | 97 * @param PropPatch $propPatch 100 function propPatch($path, PropPatch $propPatch) { argument 104 $this->backend->propPatch($path, $propPatch);
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/ |
H A D | IProperties.php | 25 * @param PropPatch $propPatch 28 function propPatch(PropPatch $propPatch); function
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/ |
H A D | IProperties.php | 25 * @param PropPatch $propPatch 28 function propPatch(PropPatch $propPatch); argument
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Request/ |
H A D | PropPatchTest.php | 12 $propPatch = new PropPatch(); 13 $propPatch->properties = [ 20 ['{DAV:}propertyupdate' => $propPatch]
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/ |
H A D | BackendInterface.php | 49 * @param PropPatch $propPatch 52 function propPatch($path, PropPatch $propPatch); argument
|
H A D | PDO.php | 120 * @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 D | BackendInterface.php | 49 * @param PropPatch $propPatch 52 function propPatch($path, PropPatch $propPatch); argument
|
H A D | PDO.php | 110 * @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 D | Subscription.php | 124 * @param PropPatch $propPatch 127 function propPatch(PropPatch $propPatch) { argument 131 $propPatch
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/ |
H A D | SubscriptionTest.php | 118 $propPatch = new PropPatch([ 121 $sub->propPatch($propPatch); 122 $this->assertTrue($propPatch->commit());
|
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Subscriptions/ |
H A D | Subscription.php | 122 * @param PropPatch $propPatch 125 function propPatch(PropPatch $propPatch) { argument 129 $propPatch
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/ |
H A D | AbstractTest.php | 13 $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 D | AddressBookTest.php | 109 $propPatch = new PropPatch([ 112 $this->ab->propPatch($propPatch); 113 $this->assertTrue($propPatch->commit());
|
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/ |
H A D | Principal.php | 198 function propPatch(DAV\PropPatch $propPatch) { function in Sabre\\DAVACL\\Principal 202 $propPatch
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/ |
H A D | PrincipalTest.php | 79 $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 D | Principal.php | 196 function propPatch(DAV\PropPatch $propPatch) { argument 200 $propPatch
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/ |
H A D | CalendarTest.php | 56 $propPatch = new PropPatch([ 60 $result = $this->calendar->propPatch($propPatch); 61 $result = $propPatch->commit();
|