Home
last modified time | relevance | path

Searched refs:Iso8601Date (Results 1 – 15 of 15) sorted by relevance

/plugin/combo/ComboStrap/
H A DIso8601Date.php20 class Iso8601Date class
32 * See {@link Iso8601Date::getFormat()} for more information
64 * @return Iso8601Date
67 public static function createFromString(string $dateString): Iso8601Date
132 return new Iso8601Date($dateTime);
136 public static function createFromTimestamp($timestamp): Iso8601Date
140 return new Iso8601Date($dateTime);
164 $dateObject = Iso8601Date::createFromString($value);
180 public static function createFromDateTime(DateTime $dateTime): Iso8601Date
182 return new Iso8601Date(
[all...]
H A DFile.php79 return Iso8601Date::createFromTimestamp(filemtime($this->path))->getDateTime();
142 return Iso8601Date::createFromTimestamp(filectime($this->path))->getDateTime();
H A DDateTag.php71 $timeStamp = Iso8601Date::createFromString($date)->getDateTime()->getTimestamp();
108 $defaultDateTime = Iso8601Date::createFromNow()->toString();
H A DLocalFileSystem.php71 return Iso8601Date::createFromTimestamp($timestamp)->getDateTime();
84 return Iso8601Date::createFromTimestamp($timestamp)->getDateTime();
H A DCacheReportHtmlDataBlockArray.php43 $modifiedDate = $modifiedTime->format(Iso8601Date::getFormat());
H A DPagePublicationDate.php130 return Iso8601Date::createFromString($date)->getDateTime();
H A DEvent.php204 "timestamp" => Iso8601Date::createFromNow()->toString()
H A DPipelineUtility.php279 $dateTime = Iso8601Date::createFromString($value);
H A DMetadataFrontmatterStore.php74 $older = Iso8601Date::createFromDateTime($pageModifiedTime)->olderThan($metaModifiedTime);
H A DFetcherVignette.php202 $lineToPrint = Iso8601Date::createFromDateTime($modifiedTimeOrDefault)->formatLocale(null, $locale);
H A DExecutionContext.php166 $this->creationTime = Iso8601Date::createFromNow()->toIsoStringMs();
H A DMarkupPath.php1107 $array["now"] = Iso8601Date::createFromNow()->toString();
1116 return $this->getPublishedTime() !== null ? $this->getPublishedTime()->format(Iso8601Date::getFormat()) : null;
H A DDatabasePageRow.php514 return Iso8601Date::createFromString($dateString)->getDateTime();
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataDateTime.php14 use ComboStrap\Iso8601Date; alias
123 return Iso8601Date::createFromString($value)->getDateTime();
150 return Iso8601Date::createFromDateTime($value)->toString();
/plugin/combo/action/
H A Dcacheexpiration.php11 use ComboStrap\Iso8601Date; alias
145 LogUtility::msg("The new calculated date cache expiration frequency ({$newDate->format(Iso8601Date::getFormat())}) is lower than the current date ({$actualDate->format(Iso8601Date::getFormat())})");