Home
last modified time | relevance | path

Searched refs:calendar (Results 1 – 25 of 259) sorted by relevance

1234567891011

/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DCalendarTest.php20 protected $calendar; variable in Sabre\\CalDAV\\CalendarTest
34 $this->calendar = new Calendar($this->backend, $this->calendars[0]);
47 $this->assertEquals($this->calendars[0]['uri'], $this->calendar->getName());
60 $result = $this->calendar->propPatch($propPatch);
79 $result = $this->calendar->getProperties($question);
93 $this->calendar->getChild('randomname');
102 $children = $this->calendar->getChildren();
114 $this->assertFalse($this->calendar->childExists('foo'));
116 $children = $this->calendar->getChildren();
117 $this->assertTrue($this->calendar->childExists($children[0]->getName()));
[all …]
H A DCalendarObjectTest.php17 protected $calendar; variable in Sabre\\CalDAV\\CalendarObjectTest
27 $this->calendar = new Calendar($this->backend, $calendars[0]);
33 unset($this->calendar);
40 $children = $this->calendar->getChildren();
81 $children = $this->calendar->getChildren();
95 $children = $this->calendar->getChildren();
113 $children = $this->calendar->getChildren();
119 $children2 = $this->calendar->getChildren();
129 $children = $this->calendar->getChildren();
144 $children = $this->calendar->getChildren();
[all …]
/plugin/datepicker/
Dstyle.css7 /* The main calendar widget. DIV containing a table. */
8 div.calendar { position: relative; z-index:100;}
16 .calendar, .calendar table {
27 .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
32 .calendar .nav {
36 .calendar thead .title { /* This holds the current "month, year" */
44 .calendar thead tr { /* Row <TR> containing navigation buttons */
49 .calendar thead .daynames { /* Row <TR> containing the day names */
53 .calendar thead .name { /* Cells <TD> containing the day names */
60 .calendar thead .weekend { /* How a weekend day name shows in header */
[all …]
Dscript.js45 function datepickeronUpdate(calendar) argument
48 par = calendar.params;
55 datestr = calendar.date.print(par.daFormat);
76 function weekpickeronUpdate(calendar) argument
79 par = calendar.params;
85 datestr = calendar.date.print(par.daFormat);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Component/
DVAlarmTest.php24 $calendar = new VCalendar();
27 $valarm1 = $calendar->createComponent('VALARM');
29 $calendar->createProperty('TRIGGER', '20120312T130000Z', array('VALUE' => 'DATE-TIME'))
36 $valarm2 = $calendar->createComponent('VALARM');
38 $calendar->createProperty('TRIGGER', '-P1D', array('VALUE' => 'DURATION'))
41 $vevent2 = $calendar->createComponent('VEVENT');
49 $valarm3 = $calendar->createComponent('VALARM');
50 …$valarm3->add( $calendar->createProperty('TRIGGER', '-P1D', array('VALUE'=>'DURATION', 'RELATED' =…
52 $vevent3 = $calendar->createComponent('VEVENT');
61 $valarm4 = $calendar->createComponent('VALARM');
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/
DVAlarmTest.php23 $calendar = new VCalendar();
26 $valarm1 = $calendar->createComponent('VALARM');
28 $calendar->createProperty('TRIGGER', '20120312T130000Z', ['VALUE' => 'DATE-TIME'])
35 $valarm2 = $calendar->createComponent('VALARM');
37 $calendar->createProperty('TRIGGER', '-P1D', ['VALUE' => 'DURATION'])
40 $vevent2 = $calendar->createComponent('VEVENT');
48 $valarm3 = $calendar->createComponent('VALARM');
49 …$valarm3->add($calendar->createProperty('TRIGGER', '-P1D', ['VALUE' => 'DURATION', 'RELATED' => 'E…
51 $vevent3 = $calendar->createComponent('VEVENT');
60 $valarm4 = $calendar->createComponent('VALARM');
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
DVAlarmTest.php24 $calendar = new VCalendar();
27 $valarm1 = $calendar->createComponent('VALARM');
29 $calendar->createProperty('TRIGGER', '20120312T130000Z', array('VALUE' => 'DATE-TIME'))
36 $valarm2 = $calendar->createComponent('VALARM');
38 $calendar->createProperty('TRIGGER', '-P1D', array('VALUE' => 'DURATION'))
41 $vevent2 = $calendar->createComponent('VEVENT');
49 $valarm3 = $calendar->createComponent('VALARM');
50 …$valarm3->add( $calendar->createProperty('TRIGGER', '-P1D', array('VALUE'=>'DURATION', 'RELATED' =…
52 $vevent3 = $calendar->createComponent('VEVENT');
61 $valarm4 = $calendar->createComponent('VALARM');
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/
H A DVAlarmTest.php24 $calendar = new VCalendar();
27 $valarm1 = $calendar->createComponent('VALARM');
29 $calendar->createProperty('TRIGGER', '20120312T130000Z', array('VALUE' => 'DATE-TIME'))
36 $valarm2 = $calendar->createComponent('VALARM');
38 $calendar->createProperty('TRIGGER', '-P1D', array('VALUE' => 'DURATION'))
41 $vevent2 = $calendar->createComponent('VEVENT');
49 $valarm3 = $calendar->createComponent('VALARM');
50 …$valarm3->add( $calendar->createProperty('TRIGGER', '-P1D', array('VALUE'=>'DURATION', 'RELATED' =…
52 $vevent3 = $calendar->createComponent('VEVENT');
61 $valarm4 = $calendar->createComponent('VALARM');
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
DRecurTest.php203 $calendar = new VCalendar();
204 … $property = $calendar->createProperty('RRULE', 'FREQ=YEARLY;COUNT=6;BYMONTHDAY=24;BYMONTH=0');
216 $calendar = new VCalendar();
217 … $property = $calendar->createProperty('RRULE', 'FREQ=YEARLY;COUNT=6;BYMONTHDAY=24;BYMONTH=0');
229 $calendar = new VCalendar();
230 … $property = $calendar->createProperty('RRULE', 'FREQ=YEARLY;COUNT=6;BYMONTHDAY=24;BYMONTH=bla');
242 $calendar = new VCalendar();
243 … $property = $calendar->createProperty('RRULE', 'FREQ=YEARLY;COUNT=6;BYMONTHDAY=24;BYMONTH=bla');
256 $calendar = new VCalendar();
257 … $property = $calendar->createProperty('RRULE', 'FREQ=YEARLY;COUNT=6;BYMONTHDAY=24;BYMONTH=14');
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/ITip/
DBroker.php160 * @param VCalendar|string $calendar
166 public function parseEvent($calendar = null, $userHref, $oldCalendar = null) argument
188 if (!is_null($calendar)) {
189 if (is_string($calendar)) {
190 $calendar = Reader::read($calendar);
192 if (!isset($calendar->VEVENT)) {
196 $eventInfo = $this->parseEventInfo($calendar);
207 $baseCalendar = $calendar;
455 * @param VCalendar $calendar
461 …protected function parseEventForOrganizer(VCalendar $calendar, array $eventInfo, array $oldEventIn… argument
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/ITip/
DBroker.php162 * @param VCalendar|string $calendar
167 public function parseEvent($calendar = null, $userHref, $oldCalendar = null) { argument
189 if (!is_null($calendar)) {
191 if (is_string($calendar)) {
192 $calendar = Reader::read($calendar);
194 if (!isset($calendar->VEVENT)) {
198 $eventInfo = $this->parseEventInfo($calendar);
209 $baseCalendar = $calendar;
457 * @param VCalendar $calendar
462 …protected function parseEventForOrganizer(VCalendar $calendar, array $eventInfo, array $oldEventIn… argument
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/ITip/
DBroker.php163 * @param VCalendar|string $calendar
169 function parseEvent($calendar = null, $userHref, $oldCalendar = null) { argument
191 if (!is_null($calendar)) {
193 if (is_string($calendar)) {
194 $calendar = Reader::read($calendar);
196 if (!isset($calendar->VEVENT)) {
200 $eventInfo = $this->parseEventInfo($calendar);
211 $baseCalendar = $calendar;
462 * @param VCalendar $calendar
468 …protected function parseEventForOrganizer(VCalendar $calendar, array $eventInfo, array $oldEventIn… argument
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/ITip/
DBroker.php162 * @param VCalendar|string $calendar
167 public function parseEvent($calendar = null, $userHref, $oldCalendar = null) { argument
189 if (!is_null($calendar)) {
191 if (is_string($calendar)) {
192 $calendar = Reader::read($calendar);
194 if (!isset($calendar->VEVENT)) {
198 $eventInfo = $this->parseEventInfo($calendar);
209 $baseCalendar = $calendar;
457 * @param VCalendar $calendar
462 …protected function parseEventForOrganizer(VCalendar $calendar, array $eventInfo, array $oldEventIn… argument
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
DPropertyTest.php263 $calendar = new VCalendar();
264 $property = $calendar->createProperty('X-PROP', "Bla\x00");
286 $calendar = new VCalendar();
287 $property = $calendar->createProperty('X-PROP', $s);
297 $calendar = new VCalendar();
298 $property = $calendar->createProperty("X_*&PROP*", "Bla");
308 $calendar = new VCalendar();
309 $property = $calendar->createProperty("SUMMARY", null);
337 $calendar = new VCalendar();
338 $property = $calendar->createProperty("X-PROP", null);
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
DPropertyTest.php262 $calendar = new VCalendar();
263 $property = $calendar->createProperty('X-PROP', "Bla\x00");
285 $calendar = new VCalendar();
286 $property = $calendar->createProperty('X-PROP', $s);
296 $calendar = new VCalendar();
297 $property = $calendar->createProperty("X_*&PROP*", "Bla");
307 $calendar = new VCalendar();
308 $property = $calendar->createProperty("SUMMARY", null);
336 $calendar = new VCalendar();
337 $property = $calendar->createProperty("X-PROP", null);
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
DPropertyTest.php263 $calendar = new VCalendar();
264 $property = $calendar->createProperty('X-PROP', "Bla\x00");
286 $calendar = new VCalendar();
287 $property = $calendar->createProperty('X-PROP', $s);
297 $calendar = new VCalendar();
298 $property = $calendar->createProperty("X_*&PROP*", "Bla");
308 $calendar = new VCalendar();
309 $property = $calendar->createProperty("SUMMARY", null);
337 $calendar = new VCalendar();
338 $property = $calendar->createProperty("X-PROP", null);
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DPropertyTest.php263 $calendar = new VCalendar();
264 $property = $calendar->createProperty('X-PROP', "Bla\x00");
286 $calendar = new VCalendar();
287 $property = $calendar->createProperty('X-PROP', $s);
297 $calendar = new VCalendar();
298 $property = $calendar->createProperty("X_*&PROP*", "Bla");
308 $calendar = new VCalendar();
309 $property = $calendar->createProperty("SUMMARY", null);
337 $calendar = new VCalendar();
338 $property = $calendar->createProperty("X-PROP", null);
[all …]
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
DAbstractBackend.php177 foreach ($this->getCalendarsForUser($principalUri) as $calendar) {
180 if ($calendar['principaluri'] !== $principalUri) {
185 …if (isset($calendar['{http://sabredav.org/ns}owner-principal']) && $calendar['{http://sabredav.org…
190 $calendar['id'],
219 return $calendar['uri'] . '/' . $results[0];
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DAbstractBackend.php172 foreach ($this->getCalendarsForUser($principalUri) as $calendar) {
175 if ($calendar['principaluri'] !== $principalUri) {
180 …if (isset($calendar['{http://sabredav.org/ns}owner-principal']) && $calendar['{http://sabredav.org…
185 $calendar['id'],
214 return $calendar['uri'] . '/' . $results[0];
/plugin/davcal/vendor/sabre/vobject/lib/ITip/
H A DBroker.php162 * @param VCalendar|string $calendar
167 public function parseEvent($calendar = null, $userHref, $oldCalendar = null) { argument
189 if (!is_null($calendar)) {
191 if (is_string($calendar)) {
192 $calendar = Reader::read($calendar);
194 if (!isset($calendar->VEVENT)) {
198 $eventInfo = $this->parseEventInfo($calendar);
209 $baseCalendar = $calendar;
457 * @param VCalendar $calendar
462 …protected function parseEventForOrganizer(VCalendar $calendar, array $eventInfo, array $oldEventIn… argument
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DCalendarHome.php147 … foreach ($this->caldavBackend->getCalendarsForUser($this->principalInfo['uri']) as $calendar) {
148 if ($calendar['uri'] === $name) {
150 if (isset($calendar['{http://calendarserver.org/ns/}shared-url'])) {
151 return new SharedCalendar($this->caldavBackend, $calendar);
153 return new ShareableCalendar($this->caldavBackend, $calendar);
156 return new Calendar($this->caldavBackend, $calendar);
199 foreach ($calendars as $calendar) {
201 if (isset($calendar['{http://calendarserver.org/ns/}shared-url'])) {
202 $objs[] = new SharedCalendar($this->caldavBackend, $calendar);
204 $objs[] = new ShareableCalendar($this->caldavBackend, $calendar);
[all …]
/plugin/webdavclient/vendor/sabre/vobject/bin/
Dgenerateicalendardata.php34 $calendar = VObject\Component::create('VCALENDAR'); variable
35 $calendar->version = '2.0';
36 $calendar->calscale = 'GREGORIAN';
73 $calendar->add($event);
79 $result = $calendar->validate();
88 echo $calendar->serialize();
/plugin/davcard/vendor/sabre/vobject/bin/
Dgenerateicalendardata.php34 $calendar = VObject\Component::create('VCALENDAR'); variable
35 $calendar->version = '2.0';
36 $calendar->calscale = 'GREGORIAN';
73 $calendar->add($event);
79 $result = $calendar->validate();
88 echo $calendar->serialize();
/plugin/davcal/vendor/sabre/vobject/bin/
H A Dgenerateicalendardata.php34 $calendar = VObject\Component::create('VCALENDAR'); variable
35 $calendar->version = '2.0';
36 $calendar->calscale = 'GREGORIAN';
73 $calendar->add($event);
79 $result = $calendar->validate();
88 echo $calendar->serialize();
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/ITip/
DBrokerTimezoneInParseEventInfoWithoutMasterTest.php11 $calendar = <<<ICS
68 $calendar = Reader::read($calendar);
73 $data = $reflectionMethod->invoke($broker, $calendar);

1234567891011