Home
last modified time | relevance | path

Searched refs:DateTime (Results 1 – 25 of 419) sorted by last modified time

12345678910>>...17

/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/openlayersmap/ol7/
H A Dol.js.map
/plugin/bez/cron/
H A Dfunctions.php43 $now = new DateTime(date('Y-m-d'));
45 $plan_date = new DateTime($task->plan_date);
/plugin/bez/ctl/
H A Dactivity_report.php12 $from = new DateTime($_POST['from']);
13 $to = new DateTime($_POST['to']);
H A Dreport.php11 $from = new DateTime($_POST['from']);
12 $to = new DateTime($_POST['to']);
/plugin/bez/mdl/
H A DTask.php9 use dokuwiki\plugin\struct\types\DateTime; alias
H A DTaskFactory.php79 $from = $period->getStartDate()->format(\DateTime::ISO8601);
80 $to = $period->getEndDate()->format(\DateTime::ISO8601);
107 $from = $period->getStartDate()->format(\DateTime::ISO8601);
108 $to = $period->getEndDate()->format(\DateTime::ISO8601);
H A DThreadFactory.php30 $from = $period->getStartDate()->format(\DateTime::ISO8601);
31 $to = $period->getEndDate()->format(\DateTime::ISO8601);
60 $from = $period->getStartDate()->format(\DateTime::ISO8601);
61 $to = $period->getEndDate()->format(\DateTime::ISO8601);
79 $from = $period->getStartDate()->format(\DateTime::ISO8601);
80 $to = $period->getEndDate()->format(\DateTime::ISO8601);
108 $from = $period->getStartDate()->format(\DateTime::ISO8601);
109 $to = $period->getEndDate()->format(\DateTime::ISO8601);
154 $from = $period->getStartDate()->format(\DateTime::ISO8601);
155 $to = $period->getEndDate()->format(\DateTime
[all...]
H A DThread_commentFactory.php114 $from = $period->getStartDate()->format(\DateTime::ISO8601);
115 $to = $period->getEndDate()->format(\DateTime::ISO8601);
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs18008 case 'DateTime':
19034 …case 'd': t = 'DateTime'; p = new Date(cell.v).toISOString(); if(cell.z == null) cell.z = cell.z |…
/plugin/structtasks/meta/
H A DUtilities.php13 use dokuwiki\plugin\struct\types\DateTime; alias
52 'duedate' => [Date::class, DateTime::class],
/plugin/todo/syntax/
H A Dtodo.php210 $data['completeddate'] = new DateTime($completeddate);
226 $data['start'] = new DateTime($value);
231 $data['due'] = new DateTime($value);
291 $now = new DateTime("now");
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'];
/plugin/dw2pdf/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php115 'object' => new \DateTime,
/plugin/combo/ComboStrap/
H A DLocalFileSystem.php7 use DateTime; alias
62 * @return DateTime
65 public function getModifiedTime($path): DateTime
H A DArrayUtility.php7 use DateTime; alias
H A DMarkupFileSystem.php5 use DateTime; alias
46 function getModifiedTime(Path $path): DateTime
H A DMarkupPath.php22 use DateTime; alias
723 * @return DateTime
727 function getCreatedTime(): ?DateTime
735 * @return DateTime
738 function getModifiedTime(): DateTime
747 function getModifiedTimeOrDefault(): DateTime
861 function getPublishedTime(): DateTime
876 * @return DateTime
880 function getPublishedElseCreationTime(): DateTime
894 return $dateTime > new DateTime('no
[all...]
H A DCacheExpirationDate.php9 use DateTime; alias
37 public function getDefaultValue(): DateTime
82 public function getValue(): DateTime
H A DCreationDate.php10 use DateTime; alias
37 public function getDefaultValue(): DateTime
63 $datetime = new DateTime();
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataDateTime.php16 use DateTime; alias
22 * @var DateTime|null
26 protected ?DateTime $dateTimeValue = null;
51 * @param DateTime|null $value
60 if (!($value instanceof DateTime)) {
129 public function getValue(): DateTime
147 if (!($value instanceof DateTime)) {
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php5 use DateTime; alias
181 * @param string|\DateTime $currentTime Relative calculation date
191 * @return \DateTime
202 * @param string|\DateTime $currentTime Relative calculation date
207 * @return \DateTime
220 * @param string|\DateTime $currentTime Relative calculation date
276 * @param string|\DateTime $currentTime Relative calculation date
285 } elseif ($currentTime instanceof DateTime) {
292 $currentDate = DateTime::createFromFormat('U', $currentTime->format('U'));
297 $currentTime = new DateTime(
[all...]

12345678910>>...17