Home
last modified time | relevance | path

Searched refs:vcalendar (Results 1 – 19 of 19) sorted by relevance

/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DCalendarQueryVAlarmTest.php15 $vcalendar = new VObject\Component\VCalendar();
17 $vevent = $vcalendar->createComponent('VEVENT');
22 $valarm = $vcalendar->createComponent('VALARM');
27 $vcalendar->add($vevent);
59 $vcalendar = new VObject\Component\VCalendar();
62 $vevent = $vcalendar->createComponent('VEVENT');
67 $valarm = $vcalendar->createComponent('VALARM');
71 $vcalendar->add($vevent);
78 $vcalendar = new VObject\Component\VCalendar();
80 $vevent = $vcalendar->createComponent('VEVENT');
[all …]
/plugin/task/
H A Dstyle.css11 div.dokuwiki div.vcalendar {
15 div.dokuwiki div.vcalendar fieldset {
21 div.dokuwiki div.vcalendar img.summary {
25 div.dokuwiki div.vcalendar abbr {
30 div.dokuwiki div.vcalendar table.blind {
38 div.dokuwiki div.vcalendar table.blind th {
46 div.dokuwiki div.vcalendar table.blind td {
54 div.dokuwiki div.vcalendar fieldset.priority1 { background-color: #fff7e8; }
55 div.dokuwiki div.vcalendar fieldset.priority2 { background-color: #fff1d9; }
62 div.dokuwiki div.vcalendar fieldset.due { border: 1px solid #ffa200; }
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php124 … static public function getTimeZone($tzid, Component $vcalendar = null, $failIfUncertain = false) { argument
181 if ($vcalendar) {
184 foreach($vcalendar->select('VTIMEZONE') as $vtimezone) {
H A DFreeBusyGenerator.php105 * @param Component $vcalendar
108 public function setBaseObject(Component $vcalendar) { argument
110 $this->baseObject = $vcalendar;
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php124 … static public function getTimeZone($tzid, Component $vcalendar = null, $failIfUncertain = false) { argument
181 if ($vcalendar) {
184 foreach($vcalendar->select('VTIMEZONE') as $vtimezone) {
H A DFreeBusyGenerator.php105 * @param Component $vcalendar
108 public function setBaseObject(Component $vcalendar) { argument
110 $this->baseObject = $vcalendar;
/plugin/davcal/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php124 … static public function getTimeZone($tzid, Component $vcalendar = null, $failIfUncertain = false) { argument
181 if ($vcalendar) {
184 foreach($vcalendar->select('VTIMEZONE') as $vtimezone) {
H A DFreeBusyGenerator.php105 * @param Component $vcalendar
108 public function setBaseObject(Component $vcalendar) { argument
110 $this->baseObject = $vcalendar;
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php125 static function getTimeZone($tzid, Component $vcalendar = null, $failIfUncertain = false) { argument
192 if ($vcalendar) {
195 foreach ($vcalendar->select('VTIMEZONE') as $vtimezone) {
H A DFreeBusyGenerator.php114 * @param Document $vcalendar
117 function setBaseObject(Document $vcalendar) { argument
119 $this->baseObject = $vcalendar;
126 * @param Document $vcalendar
129 function setVAvailability(Document $vcalendar) { argument
131 $this->vavailability = $vcalendar;
/plugin/webdav/vendor/sabre/vobject/lib/
H A DTimeZoneUtil.php125 public static function getTimeZone($tzid, Component $vcalendar = null, $failIfUncertain = false) argument
189 if ($vcalendar) {
191 foreach ($vcalendar->select('VTIMEZONE') as $vtimezone) {
H A DFreeBusyGenerator.php113 * @param Document $vcalendar
115 public function setBaseObject(Document $vcalendar) argument
117 $this->baseObject = $vcalendar;
123 * @param Document $vcalendar
125 public function setVAvailability(Document $vcalendar) argument
127 $this->vavailability = $vcalendar;
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
H A DIssue259Test.php12 $vcalendar = $parser->parse();
13 $eventAsArray = $vcalendar->select('VEVENT');
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php841 $vcalendar = new VObject\Component\VCalendar();
842 $vcalendar->METHOD = 'REPLY';
847 $generator->setBaseObject($vcalendar);
852 $vcalendar->VFREEBUSY->ATTENDEE = 'mailto:' . $email;
853 $vcalendar->VFREEBUSY->UID = (string)$request->VFREEBUSY->UID;
854 $vcalendar->VFREEBUSY->ORGANIZER = clone $request->VFREEBUSY->ORGANIZER;
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php1002 $vcalendar = new VObject\Component\VCalendar();
1003 $vcalendar->METHOD = 'REPLY';
1008 $generator->setBaseObject($vcalendar);
1021 $vcalendar->VFREEBUSY->ATTENDEE = 'mailto:' . $email;
1022 $vcalendar->VFREEBUSY->UID = (string)$request->VFREEBUSY->UID;
1023 $vcalendar->VFREEBUSY->ORGANIZER = clone $request->VFREEBUSY->ORGANIZER;
/plugin/icalevents/
H A Ddeleted.files11 externals/iCalcreator/lib/vcalendar.class.php
/plugin/webdav/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng389 vcalendar+
394 vcalendar = element vcalendar {
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng389 vcalendar+
394 vcalendar = element vcalendar {
/plugin/davcal/
H A Dhelper.php780 $vcalendar = new \Sabre\VObject\Component\VCalendar();
783 $event = $vcalendar->add('VEVENT');
843 $eventStr = $vcalendar->serialize();