Home
last modified time | relevance | path

Searched refs:dateTime (Results 1 – 4 of 4) sorted by relevance

/template/strap/ComboStrap/
H A DIso8601Date.php28 private $dateTime; variable in ComboStrap\\Iso8601Date
47 public function __construct($dateTime = null) argument
50 if ($dateTime == null) {
52 $this->dateTime = new DateTime();
56 $this->dateTime = $dateTime;
127 $dateTime = DateTime::createFromFormat(self::getFormat(), $dateString);
128 if ($dateTime === false) {
132 return new Iso8601Date($dateTime);
138 $dateTime = new DateTime();
139 $dateTime->setTimestamp($timestamp);
[all …]
H A DDataType.php209 public static function toMilliSeconds(\DateTime $dateTime) argument
212 $secs = $dateTime->getTimestamp(); // Gets the seconds
214 $millisecs += $dateTime->format("u") / 1000; // Microseconds converted to seconds
H A DPipelineUtility.php279 $dateTime = Iso8601Date::createFromString($value);
323 return $dateTime->formatLocale($pattern, $derivedLocale);
H A DMarkupPath.php890 $dateTime = $this->getPublishedElseCreationTime();
894 return $dateTime > new DateTime('now');