Home
last modified time | relevance | path

Searched refs:DateTime (Results 326 – 350 of 419) sorted by path

1...<<11121314151617

/plugin/stopforumspam/
H A DSpamLogger.php23 $dt = new DateTime();
26 $dt->format(DateTime::ISO8601),
/plugin/strata/types/
H A Ddate.php19 $date = new DateTime();
/plugin/struct/meta/
H A DRevisionColumn.php5 use dokuwiki\plugin\struct\types\DateTime; alias
20 * @param DateTime $type
23 public function __construct($sort, DateTime $type, $table = '')
H A DSearch.php8 use dokuwiki\plugin\struct\types\DateTime;
608 return new RevisionColumn(0, new DateTime(), $schema_list[0]);
6 use dokuwiki\plugin\struct\types\DateTime; global() alias
/plugin/struct/types/
H A DDateTime.php10 class DateTime extends Date class
20 * DateTime constructor.
H A DLookup.php83 $column = new RevisionColumn(0, new DateTime(), $table);
/plugin/structgantt/meta/
H A DGantt.php11 use dokuwiki\plugin\struct\types\DateTime; alias
37 /** @var \DateTime[] all the days */
86 is_a($column->getType(), DateTime::class)
145 $daynum = (new \DateTime($min))->diff(new \DateTime($max))->days;
280 $today = new \DateTime();
367 * @return \DateTime[]
375 new \DateTime($start),
377 (new \DateTime($end))->modify($this->interval['next']) // Include End Date (flag is only available in PHP8)
380 /** @var \DateTime
[all...]
/plugin/structtasks/meta/
H A DUtilities.php13 use dokuwiki\plugin\struct\types\DateTime; alias
52 'duedate' => [Date::class, DateTime::class],
/plugin/swarmwebhook/_test/
H A DIFTTTparseTime.test.php23 $this->assertEquals('2018-05-24T18:02:00+02:00', $actualDateTime->format(\DateTime::ATOM));
/plugin/swarmwebhook/
H A Dhelper.php29 $dateTime = new DateTime('now', new DateTimeZone($tz));
/plugin/swarmwebhook/webhooks/
H A DIFTTT.php5 use DateTime; alias
128 'time' => $dateTime->format(\DateTime::ATOM),
150 $dateTime = DateTime::createFromFormat(self::IFTTT_TIME_FORMAT, $timestring, $timeZone);
153 return new DateTime('now', $timeZone);
161 …$dateTime = DateTime::createFromFormat(self::IFTTT_TIME_FORMAT, $timestring, new \DateTimeZone('+0…
163 dbglog(DateTime::getLastErrors());
164 $dateTime = new DateTime('now');
H A DZapier.php114 'time' => $dateTime->format(\DateTime::ATOM),
/plugin/timetrack/
H A Dhelper.php571 $start = new DateTime($daterange['start']);
572 $end = new DateTime($daterange['end']);
746 $dateStart = new DateTime($daterange['start']);
747 $dateEnd = new DateTime($daterange['end']);
816 $dateStart = new DateTime($daterange['start']);
817 $dateEnd = new DateTime($daterange['end']);
1015 $dto = new DateTime();
H A Dsyntax.php84 $dateStart = new DateTime($range['min']);
85 $dateEnd = new DateTime($range['max']);
/plugin/tline/timeline_ajax/
H A Dsimile-ajax-bundle.js2386 }return(A=="iso8601"||A=="iso 8601")?SimileAjax.DateTime.parseIso8601DateTime:SimileAjax.DateTime.p…
2388 SimileAjax.NativeDateUnit.parseFromObject=function(A){return SimileAjax.DateTime.parseGregorianDate…
/plugin/tline/timeline_js/scripts/l10n/cs/
H A Dlabellers.js18 var date2 = Timeline.DateTime.removeTimeZoneOffset(date, this._timeZone);
21 case Timeline.DateTime.DAY:
22 case Timeline.DateTime.WEEK:
/plugin/tline/timeline_js/scripts/l10n/de/
H A Dlabellers.js14 var date2 = Timeline.DateTime.removeTimeZoneOffset(date, this._timeZone);
17 case Timeline.DateTime.DAY:
18 case Timeline.DateTime.WEEK:
/plugin/tline/timeline_js/scripts/l10n/vi/
H A Dlabellers.js14 var date2 = Timeline.DateTime.removeTimeZoneOffset(date, this._timeZone);
17 case Timeline.DateTime.DAY:
18 case Timeline.DateTime.WEEK:
/plugin/tline/timeline_js/scripts/l10n/zh/
H A Dlabellers.js14 var date2 = Timeline.DateTime.removeTimeZoneOffset(date, this._timeZone);
17 case Timeline.DateTime.DAY:
18 case Timeline.DateTime.WEEK:
/plugin/tline/timeline_js/
H A Dtimeline-api.js72 window.Timeline.DateTime = window.SimileAjax.DateTime; // for backward compatibility
H A Dtimeline-bundle.js1343 H++){SimileAjax.DateTime.incrementByInterval(G,D._unit);
1404 O++){SimileAjax.DateTime.incrementByInterval(N,M.unit);
1463 H++){SimileAjax.DateTime.incrementByInterval(G,SimileAjax.DateTime.YEAR);
1536 var F=SimileAjax.DateTime.gregorianUnitLengths[SimileAjax.DateTime.DAY];
1544 }if(a==SimileAjax.DateTime.WEEK){var N=C.firstDayOfWeek;
1778 case SimileAjax.DateTime.SECOND:D=B.getUTCSeconds();
1785 case SimileAjax.DateTime.HOUR:D=B.getUTCHours()+"hr";
1791 case SimileAjax.DateTime.MONTH:var A=B.getUTCMonth();
1794 }case SimileAjax.DateTime.YEAR:case SimileAjax.DateTime.DECADE:case SimileAjax.DateTime.CENTURY:cas…
1797 }F=(C==SimileAjax.DateTime.MONTH)||(C==SimileAjax.DateTime.DECADE&&E%100==0)||(C==SimileAjax.DateTi…
[all …]
/plugin/todo/syntax/
H A Dlist.php440 if(isset($data['startbefore'])) { $condition3s = $condition3s && new DateTime($data['startbefore']) > $data['start']; }
441 if(isset($data['startafter'])) { $condition3s = $condition3s && new DateTime($data['startafter']) < $data['start']; }
442 if(isset($data['startat'])) { $condition3s = $condition3s && new DateTime($data['startat']) == $data['start']; }
453 if(isset($data['duebefore'])) { $condition3d = $condition3d && new DateTime($data['duebefore']) > $data['due']; }
454 if(isset($data['dueafter'])) { $condition3d = $condition3d && new DateTime($data['dueafter']) < $data['due']; }
455 if(isset($data['dueat'])) { $condition3d = $condition3d && new DateTime($data['dueat']) == $data['due']; }
468 $condition4 = $condition4 && new DateTime($data['completedbefore']) > $data['completeddate'];
471 $condition4 = $condition4 && new DateTime($data['completedafter']) < $data['completeddate'];
474 $condition4 = $condition4 && new DateTime($data['completedat']) == $data['completeddate'];
H A Dtodo.php211 $data['completeddate'] = new DateTime($completeddate);
234 $data['start'] = new DateTime($value);
239 $data['due'] = new DateTime($value);
299 $now = new DateTime("now");
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md1667 * Added: Helper functions for DateTime-values in Sabre_VObject package.
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DPDO.php677 $maxDate = new \DateTime(self::MAX_DATE);

1...<<11121314151617