Searched refs:supportedComponents (Results 1 – 5 of 5) sorted by relevance
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Notification/ |
H A D | Invite.php | 112 protected $supportedComponents; variable in Sabre\\CalDAV\\Xml\\Notification\\Invite 267 if ($this->supportedComponents) { 268 …('{' . CalDAV\Plugin::NS_CALDAV . '}supported-calendar-component-set', $this->supportedComponents);
|
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Notification/ |
H A D | Invite.php | 111 protected $supportedComponents; variable in Sabre\\CalDAV\\Xml\\Notification\\Invite 272 if ($this->supportedComponents) { 273 …('{' . CalDAV\Plugin::NS_CALDAV . '}supported-calendar-component-set', $this->supportedComponents);
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Xml/Notification/ |
H A D | InviteTest.php | 162 …'supportedComponents' => new CalDAV\Xml\Property\SupportedCalendarComponentSet(['VEVENT','VTODO']),
|
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/ |
H A D | Plugin.php | 861 $supportedComponents = $calendarProperties[$sCCS]->getValue(); 863 $supportedComponents = ['VJOURNAL', 'VTODO', 'VEVENT']; 881 if (!$foundType || !in_array($foundType, $supportedComponents)) { 882 …'iCalendar objects must at least have a component of type ' . implode(', ', $supportedComponents));
|
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/ |
H A D | Plugin.php | 831 $supportedComponents = $calendarProperties[$sCCS]->getValue(); 833 $supportedComponents = ['VJOURNAL', 'VTODO', 'VEVENT']; 847 if (!in_array($foundType, $supportedComponents)) { 848 …validComponentType('This calendar only supports ' . implode(', ', $supportedComponents) . '. We fo…
|