Home
last modified time | relevance | path

Searched refs:isoFormat (Results 1 – 7 of 7) sorted by relevance

/webtrees/tests/app/
H A DTimestampTest.php106 self::assertSame('12/17/2023', $timestamp->isoFormat('l'));
107 self::assertSame('Dec 17, 2023', $timestamp->isoFormat('ll'));
108 self::assertSame('Dec 17, 2023 4:21 PM', $timestamp->isoFormat('lll'));
109 self::assertSame('Sun, Dec 17, 2023 4:21 PM', $timestamp->isoFormat('llll'));
111 self::assertSame('12/17/2023', $timestamp->isoFormat('L'));
112 self::assertSame('December 17, 2023', $timestamp->isoFormat('LL'));
113 self::assertSame('December 17, 2023 4:21 PM', $timestamp->isoFormat('LLL'));
114 self::assertSame('Sunday, December 17, 2023 4:21 PM', $timestamp->isoFormat('LLLL'));
/webtrees/app/Statistics/Repository/
H A DGedcomRepository.php148 … return Registry::timestampFactory()->fromString($fact->value(), 'j M Y')->isoFormat('LL');
174 return Registry::timestampFactory()->fromString($row->change_time)->isoFormat('LL');
/webtrees/app/
H A DTimestamp.php61 public function isoFormat(string $format): string function in Fisharebest\\Webtrees\\Timestamp
63 return $this->carbon->isoFormat($format);
/webtrees/resources/views/components/
H A Ddatetime-diff.phtml12 <span class="wt-timestamp" title="<?= e($timestamp->isoFormat('LLLL')) ?>" dir="auto">
H A Ddatetime.phtml19 <?= e($timestamp->isoFormat('LLLL')) ?>
/webtrees/app/Contracts/
H A DTimestampInterface.php51 public function isoFormat(string $format): string; function
/webtrees/app/Report/
H A DReportParserGenerate.php655 $this->current_element->addText(Registry::timestampFactory()->now()->isoFormat('LLLL'));