/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/ |
H A D | HrefTest.php | 13 $href = new Href('path'); 20 $href = new Href('path'); 36 $href = new Href('path', false); 90 $href = new Href('http://example.org/?a&b', false); 104 $href = new Href([
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/ |
H A D | PluginPropertiesWithSharedCalendarTest.php | 22 …'{http://calendarserver.org/ns/}shared-url' => new DAV\Xml\Property\Href('calendars/user2/default/… 52 $this->assertTrue($prop instanceof DAV\Xml\Property\Href); 57 $this->assertTrue($prop instanceof DAV\Xml\Property\Href); 62 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
|
H A D | PluginPropertiesTest.php | 42 $this->assertTrue($prop instanceof DAV\Xml\Property\Href); 47 $this->assertTrue($prop instanceof DAV\Xml\Property\Href); 52 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/ |
H A D | CalendarHomeSubscriptionsTest.php | 17 …'{http://calendarserver.org/ns/}source' => new \Sabre\DAV\Xml\Property\Href('http://example.org/te… 57 …'{http://calendarserver.org/ns/}source' => new \Sabre\DAV\Xml\Property\Href('http://example.org/te… 81 …'{http://calendarserver.org/ns/}source' => new \Sabre\DAV\Xml\Property\Href('http://example.org/te…
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Request/ |
H A D | PropPatchTest.php | 6 use Sabre\DAV\Xml\Property\Href; alias 16 '{DAV:}some-url' => new Href('foo/bar')
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Element/ |
H A D | PropTest.php | 7 use Sabre\DAV\Xml\Property\Href; alias 66 '{DAV:}foo' => new Href('/hello', false)
|
H A D | ResponseTest.php | 141 '{DAV:}link' => new DAV\Xml\Property\Href('http://sabredav.org/', false)
|
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Subscriptions/ |
H A D | Subscription.php | 8 use Sabre\DAV\Xml\Property\Href; alias 159 $r[$prop] = new Href($this->subscriptionInfo['source']);
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/ |
H A D | SubscriptionTest.php | 5 use Sabre\DAV\Xml\Property\Href; alias 17 '{http://calendarserver.org/ns/}source' => new Href('http://example.org/src', false),
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/ |
H A D | ExpandPropertiesTest.php | 17 '{http://sabredav.org/ns}href' => new DAV\Xml\Property\Href('node2'), 22 '{http://sabredav.org/ns}hreflist' => new DAV\Xml\Property\Href(['node1','node3']),
|
H A D | PluginUpdatePropertiesTest.php | 63 '{DAV:}group-member-set' => new DAV\Xml\Property\Href(['/bar','/baz'], true), 101 '{DAV:}group-member-set' => new DAV\Xml\Property\Href(['/bar','/baz'],false),
|
/plugin/davcal/vendor/sabre/dav/bin/ |
H A D | migrateto30.php | 163 serialize(new Sabre\DAV\Xml\Property\Href($row['vcardurl'])) 166 echo serialize(new Sabre\DAV\Xml\Property\Href($row['vcardurl']));
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Element/ |
H A D | Sharee.php | 7 use Sabre\DAV\Xml\Property\Href; alias 125 new Href($this->href),
|
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Subscriptions/ |
H A D | Subscription.php | 6 use Sabre\DAV\Xml\Property\Href; alias 157 $r[$prop] = new Href($this->subscriptionInfo['source'], false);
|
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/ |
H A D | Plugin.php | 11 use Sabre\DAV\Xml\Property\Href; alias 1014 return new Href($node->getAlternateUriSet()); 1017 return new Href($node->getPrincipalUrl() . '/'); 1024 return new Href($members); 1031 return new Href($members); 1042 return new Href($val); 1079 return new Href($node->getOwner() . '/'); 1098 } elseif ($value instanceof Href) { 1300 if (!$hrefs instanceof Href) { 1409 if (!$node[200][$propertyName] instanceof DAV\Xml\Property\Href) {
|
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/ |
H A D | Plugin.php | 867 return new DAV\Xml\Property\Href($node->getAlternateUriSet()); 870 return new DAV\Xml\Property\Href($node->getPrincipalUrl() . '/'); 877 return new DAV\Xml\Property\Href($members); 884 return new DAV\Xml\Property\Href($members); 895 return new DAV\Xml\Property\Href($val); 936 return new DAV\Xml\Property\Href($node->getOwner() . '/'); 955 } elseif ($value instanceof DAV\Xml\Property\Href) { 1154 if (!$node[200][$propertyName] instanceof DAV\Xml\Property\Href) {
|
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/ |
H A D | SharingPlugin.php | 6 use Sabre\DAV\Xml\Property\Href; alias 130 return new Href( 335 $writer->write(new Href($url));
|
H A D | Plugin.php | 9 use Sabre\DAV\Xml\Property\Href; alias 332 return new Href($calendarHomePath); 340 return new Href($addresses, false); 385 $propFind->set($propRead, new Href($readList)); 386 $propFind->set($propWrite, new Href($writeList));
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/ |
H A D | LocalHref.php | 25 class LocalHref extends Href {
|
H A D | Href.php | 26 class Href implements Element, HtmlOutput { class
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/ |
H A D | AbstractPDOTest.php | 8 use Sabre\DAV\Xml\Property\Href; alias 93 $custom = new Href('/foo/bar/');
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/ |
H A D | AbstractPDOTest.php | 759 …'{http://calendarserver.org/ns/}source' => new \Sabre\DAV\Xml\Property\Href('http://example.org/ca… 802 …'{http://calendarserver.org/ns/}source' => new \Sabre\DAV\Xml\Property\Href('http://example.org/ca… 820 …'{http://calendarserver.org/ns/}source' => new \Sabre\DAV\Xml\Property\Href('http://example.org/ca… 834 …'{http://calendarserver.org/ns/}source' => new \Sabre\DAV\Xml\Property\Href('http://example.org/ca…
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/ |
H A D | SyncTokenPropertyTest.php | 94 new Xml\Property\Href(Sync\Plugin::SYNCTOKEN_PREFIX . "hello", false)
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/ |
H A D | Href.php | 25 class Href implements Element, HtmlOutput { class
|
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/Xml/Property/ |
H A D | Principal.php | 21 class Principal extends DAV\Xml\Property\Href {
|