Home
last modified time | relevance | path

Searched refs:end (Results 251 – 275 of 1305) sorted by last modified time

1...<<11121314151617181920>>...53

/plugin/davcal/vendor/sabre/dav/bin/
H A Dmigrateto17.php264 $end = $it->getDtEnd();
265 while($it->valid() && $end < $maxDate) {
266 $end = $it->getDtEnd();
270 $lastOccurence = $end->getTimeStamp();
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DPDO.php576 $end = $it->getDtEnd();
577 while ($it->valid() && $end < $maxDate) {
578 $end = $it->getDtEnd();
582 $lastOccurence = $end->getTimeStamp();
/plugin/davcal/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php168 $end = clone $this->startDate;
169 $end->add($duration);
170 $this->eventDuration = $end->getTimeStamp() - $this->startDate->getTimeStamp();
242 $end = clone $this->currentDate;
243 $end->modify('+' . $this->eventDuration . ' seconds');
244 return $end;
378 $offset = end($this->overriddenEventsIndex);
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js1735 this.end = end || null;
1771 if (end && !end.hasTime()) {
1775 if (end && (!end.isValid() || !end.isAfter(start))) {
3342 end = eventDateProfile.end.clone();
3352 if (end && !end.hasTime()) {
3360 if (end && end.hasTime()) {
5569 obj.end = dateProfile.end ? dateProfile.end.clone() : null;
6708 return { start: start, end: end };
8682 this.end = end;
10530 var end = range.end;
[all …]
H A Dfullcalendar.print.less128 .fc-time-grid .fc-event.fc-not-end {
132 .fc-time-grid .fc-event.fc-not-end:after {
H A Dfullcalendar.less427 .fc-rtl .fc-h-event.fc-not-end {
435 .fc-ltr .fc-h-event.fc-not-end,
447 .fc-rtl .fc-h-event .fc-end-resizer {
453 .fc-ltr .fc-h-event .fc-end-resizer,
483 .fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
488 .fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
532 .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
537 .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
1073 .fc-v-event.fc-not-end {
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/
H A DVAlarmTest.php14 public function testInTimeRange(VAlarm $valarm,$start,$end,$outcome) { argument
16 $this->assertEquals($outcome, $valarm->isInTimeRange($start, $end));
H A DVCalendarTest.php13 …public function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011… argument
21 new \DateTime($end),
H A DVEventTest.php12 public function testInTimeRange(VEvent $vevent,$start,$end,$outcome) { argument
14 $this->assertEquals($outcome, $vevent->isInTimeRange($start, $end));
H A DVTodoTest.php14 public function testInTimeRange(VTodo $vtodo,$start,$end,$outcome) { argument
16 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php756 …protected function getFreeBusyForEmail($email, \DateTime $start, \DateTime $end, VObject\Component… argument
823 'end' => $end,
846 $generator->setTimeRange($start, $end);
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVJournal.php26 * @param DateTime $end
29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
38 return ($start <= $effectiveEnd && $end > $dtstart);
H A DVTodo.php26 * @param DateTime $end
29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
41 return $start <= $effectiveEnd && $end > $dtstart;
45 ($end > $dtstart || $end >= $due);
47 return $start <= $dtstart && $end > $dtstart;
51 return ($start < $due && $end >= $due);
56 ($end >= $created || $end >= $completed);
59 return ($start <= $completed && $end >= $completed);
62 return ($end > $created);
H A DVAlarm.php82 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
97 if ($start <= $occurrence && $end > $occurrence) {
103 return ($start <= $effectiveTrigger && $end > $effectiveTrigger);
H A DVCalendar.php248 * @param DateTime $end
253 function expand(DateTime $start, DateTime $end, DateTimeZone $timeZone = null) { argument
282 if ($vevent->isInTimeRange($start, $end)) {
303 while($it->valid() && $it->getDTStart() < $end) {
H A DVEvent.php31 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
55 return ($it->getDTStart() < $end && $it->getDTEnd() > $start);
68 $effectiveEnd = $this->DTEND->getDateTime($end->getTimezone());
80 ($start < $effectiveEnd) && ($end > $effectiveStart)
H A DVFreeBusy.php24 * @param Datetime $end
27 public function isFree(\DateTime $start, \Datetime $end) { argument
55 if($start < $busyEnd && $end > $busyStart) {
/plugin/davcal/
H A Dhelper.php585 $user = end($user);
1110 $end = $event->DTEND;
1112 if($end !== null)
1114 $dtEnd = $end->getDateTime();
1116 if($end['VALUE'] == 'DATE')
1123 if($start !== null && $end == null && $duration !== null)
1742 $end = $it->getDtEnd();
1743 while ($it->valid() && $end < $maxDate)
1745 $end = $it->getDtEnd();
1748 $lastOccurence = $end->getTimeStamp();
H A Dics.php17 $icsFile = end($path);
/plugin/davcal/vendor/sabre/xml/
H A DCHANGELOG.md147 * Fixed: The reader now detects when the end of the document is hit before it
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DAbstractPDOTest.php605 'end' => new \DateTime('20120104'),
636 'end' => null,
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DPeriod.php105 list($start, $end) = explode('/', $item, 2);
110 if ($end[0]==='P') {
113 $end
116 $end = DateTimeParser::parseDateTime($end);
119 $end->format('Y-m-d\\TH:i:s'),
/plugin/davcal/vendor/sabre/http/
H A DREADME.md119 end).
298 // If youre $remoteUrl doesn't end with a slash, this one probably shouldn't
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php677 'end' => $report->end,
693 $generator->setTimeRange($report->start, $report->end);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Request/
H A DFreeBusyQueryReport.php36 public $end; variable in Sabre\\CalDAV\\Xml\\Request\\FreeBusyQueryReport
64 $end = null;
71 $end = empty($elem['attributes']['end']) ?: $elem['attributes']['end'];
74 if (!$start && !$end) {
80 if ($end) {
81 $end = DateTimeParser::parseDateTime($end);
85 $result->end = $end;

1...<<11121314151617181920>>...53