| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/ |
| H A D | AbstractPDOTest.php | 28 $propFind = new PropFind('dir', ['{DAV:}displayname']); 29 $backend->propFind('dir', $propFind); 31 $this->assertEquals('Directory', $propFind->get('{DAV:}displayname')); 39 $propFind = new PropFind('dir', ['{DAV:}displayname']); 40 $propFind->set('{DAV:}displayname', 'foo'); 41 $backend->propFind('dir', $propFind); 43 $this->assertEquals('foo', $propFind->get('{DAV:}displayname')); 58 $propFind = new PropFind('dir', ['{DAV:}displayname']); 59 $backend->propFind('dir', $propFind); 61 $this->assertEquals('bar', $propFind->get('{DAV:}displayname')); [all …]
|
| H A D | Mock.php | 23 * @param PropFind $propFind 26 public function propFind($path, PropFind $propFind) { function in Sabre\\DAV\\PropertyStorage\\Backend\\Mock 33 $propFind->set($name, $value);
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/ |
| H A D | PropFindTest.php | 9 $propFind = new PropFind('foo', ['{DAV:}displayname']); 10 $propFind->handle('{DAV:}displayname', 'foobar'); 15 ], $propFind->getResultForMultiStatus()); 21 $propFind = new PropFind('foo', ['{DAV:}displayname']); 22 $propFind->handle('{DAV:}displayname', function() { return 'foobar'; }); 27 ], $propFind->getResultForMultiStatus()); 33 $propFind = new PropFind('foo', ['{DAV:}displayname'], 0, PropFind::ALLPROPS); 37 ], $propFind->getResultForMultiStatus()); 43 $propFind = new PropFind('foo', ['{DAV:}displayname']); 44 $propFind->set('{DAV:}displayname', 'bar'); [all …]
|
| H A D | SyncTokenPropertyTest.php | 16 $propFind = new PropFind('foo', [ 21 $propFind->set($name, $value); 23 $corePlugin->propFindLate($propFind, new SimpleCollection('hi')); 25 $this->assertEquals("hello", $propFind->get('{http://calendarserver.org/ns/}getctag')); 46 $propFind = new PropFind('foo', [ 52 $corePlugin->propFindLate($propFind, new SimpleCollection('hi')); 54 $this->assertEquals("hello", $propFind->get('{http://calendarserver.org/ns/}getctag')); 70 $propFind = new PropFind('foo', [ 75 $corePlugin->propFindLate($propFind, new SimpleCollection('hi')); 77 $this->assertNull($propFind->get('{http://calendarserver.org/ns/}getctag'));
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Request/ |
| H A D | PropFindTest.php | 21 $propFind = new PropFind(); 22 $propFind->properties = ['{DAV:}hello']; 24 $this->assertEquals($propFind, $result['value']); 39 $propFind = new PropFind(); 40 $propFind->allProp = true; 42 $this->assertEquals($propFind, $result['value']);
|
| /plugin/webdav/vendor/sabre/dav/lib/DAV/Browser/ |
| D | GuessContentType.php | 69 * @param PropFind $propFind 73 function propFind(PropFind $propFind, INode $node) { function in Sabre\\DAV\\Browser\\GuessContentType 75 $propFind->handle('{DAV:}getcontenttype', function() use ($propFind) { 77 list(, $fileName) = URLUtil::splitPath($propFind->getPath());
|
| /plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/ |
| H A D | GuessContentType.php | 69 * @param PropFind $propFind 73 function propFind(PropFind $propFind, INode $node) { function in Sabre\\DAV\\Browser\\GuessContentType 75 $propFind->handle('{DAV:}getcontenttype', function() use ($propFind) { 77 list(, $fileName) = URLUtil::splitPath($propFind->getPath());
|
| /plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/ |
| D | Plugin.php | 82 * @param PropFind $propFind 86 function propFind(PropFind $propFind, INode $node) { argument 88 $path = $propFind->getPath(); 91 $this->backend->propFind($propFind->getPath(), $propFind);
|
| /plugin/davcal/vendor/sabre/dav/lib/DAV/PropertyStorage/ |
| H A D | Plugin.php | 77 * @param PropFind $propFind 81 function propFind(PropFind $propFind, INode $node) { argument 83 $path = $propFind->getPath(); 86 $this->backend->propFind($propFind->getPath(), $propFind);
|
| /plugin/webdav/vendor/sabre/dav/lib/DAV/ |
| D | CorePlugin.php | 783 * @param PropFind $propFind 787 function propFind(PropFind $propFind, INode $node) { argument 789 $propFind->handle('{DAV:}getlastmodified', function() use ($node) { 797 $propFind->handle('{DAV:}getcontentlength', [$node, 'getSize']); 798 $propFind->handle('{DAV:}getetag', [$node, 'getETag']); 799 $propFind->handle('{DAV:}getcontenttype', [$node, 'getContentType']); 804 $propFind->handle('{DAV:}quota-used-bytes', function() use (&$quotaInfo, $node) { 808 $propFind->handle('{DAV:}quota-available-bytes', function() use (&$quotaInfo, $node) { 816 $propFind->handle('{DAV:}supported-report-set', function() use ($propFind) { 819 … $reports = array_merge($reports, $plugin->getSupportedReportSet($propFind->getPath())); [all …]
|
| /plugin/davcal/vendor/sabre/dav/lib/DAV/ |
| H A D | CorePlugin.php | 783 * @param PropFind $propFind 787 function propFind(PropFind $propFind, INode $node) { function in Sabre\\DAV\\CorePlugin 789 $propFind->handle('{DAV:}getlastmodified', function() use ($node) { 797 $propFind->handle('{DAV:}getcontentlength', [$node, 'getSize']); 798 $propFind->handle('{DAV:}getetag', [$node, 'getETag']); 799 $propFind->handle('{DAV:}getcontenttype', [$node, 'getContentType']); 804 $propFind->handle('{DAV:}quota-used-bytes', function() use (&$quotaInfo, $node) { 808 $propFind->handle('{DAV:}quota-available-bytes', function() use (&$quotaInfo, $node) { 816 $propFind->handle('{DAV:}supported-report-set', function() use ($propFind) { 819 … $reports = array_merge($reports, $plugin->getSupportedReportSet($propFind->getPath())); [all …]
|
| /plugin/davcal/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/ |
| H A D | PDO.php | 70 * @param PropFind $propFind 73 function propFind($path, PropFind $propFind) { function in Sabre\\DAV\\PropertyStorage\\Backend\\PDO 75 if (!$propFind->isAllProps() && count($propFind->get404Properties()) === 0) { 87 $propFind->set($row['name'], $row['value']); 90 $propFind->set($row['name'], new Complex($row['value'])); 93 $propFind->set($row['name'], unserialize($row['value']));
|
| H A D | BackendInterface.php | 34 * @param PropFind $propFind 37 function propFind($path, PropFind $propFind); function
|
| /plugin/webdav/vendor/sabre/dav/lib/CalDAV/Subscriptions/ |
| D | Plugin.php | 62 * @param PropFind $propFind 66 function propFind(PropFind $propFind, INode $node) { argument 78 if ($propFind->getStatus($prop) === 200) { 79 $propFind->set($prop, '', 200);
|
| /plugin/davcal/vendor/sabre/dav/lib/CalDAV/Subscriptions/ |
| H A D | Plugin.php | 62 * @param PropFind $propFind 66 function propFind(PropFind $propFind, INode $node) { function in Sabre\\CalDAV\\Subscriptions\\Plugin 78 if ($propFind->getStatus($prop) === 200) { 79 $propFind->set($prop, '', 200);
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/ |
| H A D | PluginTest.php | 40 $propFind = new PropFind('foo', [$propName]); 41 $propFind->set($propName,null,200); 44 $plugin->propFind($propFind, new \Sabre\DAV\SimpleCollection('hi')); 46 $this->assertFalse(is_null($propFind->get($propName)));
|
| /plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/ |
| D | PDO.php | 77 * @param PropFind $propFind 80 function propFind($path, PropFind $propFind) { function in Sabre\\DAV\\PropertyStorage\\Backend\\PDO 82 if (!$propFind->isAllProps() && count($propFind->get404Properties()) === 0) { 97 $propFind->set($row['name'], $row['value']); 100 $propFind->set($row['name'], new Complex($row['value'])); 103 $propFind->set($row['name'], unserialize($row['value']));
|
| D | BackendInterface.php | 34 * @param PropFind $propFind 37 function propFind($path, PropFind $propFind); argument
|
| /plugin/webdav/core/Plugin/ |
| D | FakeLocker.php | 91 * @param PropFind $propFind 95 public function propFind(PropFind $propFind, INode $node) argument 97 $propFind->handle('{DAV:}supportedlock', function () { 100 $propFind->handle('{DAV:}lockdiscovery', function () use ($propFind) {
|
| D | DokuWiki.php | 49 * @param PropFind $propFind 53 public function propFind(PropFind $propFind, INode $node) function in dokuwiki\\plugin\\webdav\\core\\Plugin\\DokuWiki 90 $propFind->handle($propname, $propvalue);
|
| /plugin/davcal/vendor/sabre/dav/lib/DAVACL/ |
| H A D | Plugin.php | 839 function propFind(DAV\PropFind $propFind, DAV\INode $node) { function in Sabre\\DAVACL\\Plugin 841 $path = $propFind->getPath(); 855 foreach ($propFind->getRequestedProperties() as $requestedProperty) { 856 $propFind->set($requestedProperty, null, 403); 866 $propFind->handle('{DAV:}alternate-URI-set', function() use ($node) { 869 $propFind->handle('{DAV:}principal-URL', function() use ($node) { 872 $propFind->handle('{DAV:}group-member-set', function() use ($node) { 879 $propFind->handle('{DAV:}group-membership', function() use ($node) { 886 $propFind->handle('{DAV:}displayname', [$node, 'getDisplayName']); 890 $propFind->handle('{DAV:}principal-collection-set', function() { [all …]
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/ |
| H A D | SogoStripContentTypeTest.php | 49 $propFind = new PropFind('hello', ['{DAV:}getcontenttype']); 50 $propFind->set('{DAV:}getcontenttype', 'text/plain'); 51 $this->carddavPlugin->propFindLate($propFind, new \Sabre\DAV\SimpleCollection('foo')); 52 $this->assertEquals('text/plain', $propFind->get('{DAV:}getcontenttype'));
|
| /plugin/webdav/vendor/sabre/dav/lib/DAVACL/ |
| D | Plugin.php | 986 function propFind(DAV\PropFind $propFind, DAV\INode $node) { argument 988 $path = $propFind->getPath(); 1002 foreach ($propFind->getRequestedProperties() as $requestedProperty) { 1003 $propFind->set($requestedProperty, null, 403); 1013 $propFind->handle('{DAV:}alternate-URI-set', function() use ($node) { 1016 $propFind->handle('{DAV:}principal-URL', function() use ($node) { 1019 $propFind->handle('{DAV:}group-member-set', function() use ($node) { 1026 $propFind->handle('{DAV:}group-membership', function() use ($node) { 1033 $propFind->handle('{DAV:}displayname', [$node, 'getDisplayName']); 1037 $propFind->handle('{DAV:}principal-collection-set', function() { [all …]
|
| /plugin/webdav/vendor/sabre/dav/lib/DAV/Sharing/ |
| D | Plugin.php | 149 * @param PropFind $propFind 153 function propFind(PropFind $propFind, INode $node) { function in Sabre\\DAV\\Sharing\\Plugin 157 $propFind->handle('{DAV:}share-access', function() use ($node) { 162 $propFind->handle('{DAV:}invite', function() use ($node) { 167 $propFind->handle('{DAV:}share-resource-uri', function() use ($node) {
|
| /plugin/davcal/vendor/sabre/dav/lib/CalDAV/ |
| H A D | SharingPlugin.php | 115 function propFindEarly(DAV\PropFind $propFind, DAV\INode $node) { argument 119 $propFind->handle('{' . Plugin::NS_CALENDARSERVER . '}invite', function() use ($node) { 129 … $propFind->handle('{' . Plugin::NS_CALENDARSERVER . '}shared-url', function() use ($node) { 135 $propFind->handle('{' . Plugin::NS_CALENDARSERVER . '}invite', function() use ($node) { 180 function propFindLate(DAV\PropFind $propFind, DAV\INode $node) { argument 183 if ($rt = $propFind->get('{DAV:}resourcetype')) { 188 … $propFind->handle('{' . Plugin::NS_CALENDARSERVER . '}allowed-sharing-modes', function() {
|