Home
last modified time | relevance | path

Searched refs:DateTime (Results 351 – 375 of 419) sorted by path

1...<<11121314151617

/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DCalendarQueryValidator.php5 use DateTime; alias
272 * @param DateTime $start
273 * @param DateTime $end
279 $start = new DateTime('1900-01-01');
282 $end = new DateTime('3000-01-01');
H A DICSExportPlugin.php5 use DateTime; alias
112 $start = DateTime::createFromFormat('U', $queryParams['start']);
118 $end = DateTime::createFromFormat('U', $queryParams['end']);
162 * @param DateTime|null $start
163 * @param DateTime|null $end
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Notification/
H A DInvite.php32 * @var DateTime
H A DInviteReply.php29 * @var DateTime
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Request/
H A DFreeBusyQueryReport.php27 * @var DateTime|null
34 * @var DateTime|null
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php133 $ifRangeDate = new \DateTime($ifRange);
139 $modified = new \DateTime($httpHeaders['Last-Modified']);
H A DServer.php1406 $lastMod = new \DateTime('@' . $lastMod);
1429 $lastMod = new \DateTime('@' . $lastMod);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DGetLastModified.php5 use DateTime; alias
27 * @var DateTime
34 * @param int|DateTime $time
38 if ($time instanceof DateTime) {
41 $this->time = new DateTime('@' . $time);
52 * @return DateTime
107 new self(new DateTime($reader->parseInnerTree()));
/plugin/webdav/vendor/sabre/http/lib/Auth/
H A DAWS.php171 $min = new \DateTime('-15 minutes');
172 $max = new \DateTime('+15 minutes');
/plugin/webdav/vendor/sabre/http/lib/
H A DUtil.php51 * @return bool|DateTime
69 static function toHTTPDate(\DateTime $dateTime) {
H A Dfunctions.php5 use DateTime; alias
30 * @return bool|DateTime
64 return new DateTime($dateString, new \DateTimeZone('UTC'));
74 * @param DateTime $dateTime
77 function toDate(DateTime $dateTime) {
/plugin/webdav/vendor/sabre/vobject/
H A DCHANGELOG.md75 * #355: Support `DateTimeInterface` in more places where only `DateTime` was
196 * #139: We now accept `DateTimeInterface` wherever it accepted `DateTime`
197 before in arguments. This means that either `DateTime` or
306 * #217: Initializing vCard `DATE` objects with a PHP DateTime object will now
417 * Changed: It's now possible to pass DateTime objects when using the magic
418 setters on properties. (`$event->DTSTART = new DateTime('now')`).
508 * Fixed: Issue #83. Creating new VALUE=DATE objects using php's DateTime.
616 * Fixed: Recursive loop in ICalendar\DateTime property.
684 * Changed: API for DateTime properties has slightly changed.
690 * Added: When setting date-time properties you can just pass PHP's DateTime
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DBirthdayCalendarGenerator.php147 'DTSTART' => new \DateTime($object->BDAY->getValue()),
/plugin/webdav/vendor/sabre/vobject/lib/Component/
H A DVAlarm.php81 * @param DateTime $start
82 * @param DateTime $end
H A DVCalendar.php297 … if ($componentChild instanceof Property\ICalendar\DateTime && $componentChild->hasTime()) {
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDate.php16 class Date extends DateTime
H A DDateTime.php27 class DateTime extends Property class
H A DRecur.php160 $date = new DateTime($this->root, null, $v);
/plugin/webdav/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php5 use DateTime; alias
119 $now = new DateTime();
H A DDateTime.php14 class DateTime extends DateAndOrTime class
/plugin/webdav/vendor/sabre/vobject/lib/Recur/
H A DRRuleIterator.php833 $checkDate = new \DateTime($startDate->format('Y-m-1'));
/plugin/webdavclient/
H A Dhelper.php259 $startTs = new \DateTime($startDate);
264 $endTs = new \DateTime($endDate);
/plugin/webdavclient/vendor/sabre/vobject/
H A DChangeLog.md80 * #217: Initializing vCard `DATE` objects with a PHP DateTime object will now
191 * Changed: It's now possible to pass DateTime objects when using the magic
192 setters on properties. (`$event->DTSTART = new DateTime('now')`).
280 * Added: Support for DateTime objects in the VCard DATE-AND-OR-TIME property.
282 * Fixed: Issue #83. Creating new VALUE=DATE objects using php's DateTime.
390 * Fixed: Recursive loop in ICalendar\DateTime property.
458 * Changed: API for DateTime properties has slightly changed.
464 * Added: When setting date-time properties you can just pass PHP's DateTime
529 * Added: Property\DateTime::hasTime().
/plugin/webdavclient/vendor/sabre/vobject/bin/
H A Dgenerate_vcards221 $dt = new \DateTime('@' . mt_rand($bdayStart, $bdayEnd));
226 $dt = new \DateTime('@' . mt_rand($bdayStart, $bdayEnd));
H A Dgenerateicalendardata.php32 $currentDate = new DateTime('-' . round($events/2) . ' days');
58 $event->DTSTART->setDateTime($dtStart, VObject\Property\DateTime::DATE);
59 $event->DTEND->setDateTime($dtEnd, VObject\Property\DateTime::DATE);
67 $event->DTSTART->setDateTime($dtStart, VObject\Property\DateTime::UTC);

1...<<11121314151617