Searched refs:isoFormat (Results 1 – 7 of 7) sorted by relevance
/webtrees/tests/app/ |
H A D | TimestampTest.php | 106 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 D | GedcomRepository.php | 148 … 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 D | Timestamp.php | 61 public function isoFormat(string $format): string function in Fisharebest\\Webtrees\\Timestamp 63 return $this->carbon->isoFormat($format);
|
/webtrees/resources/views/components/ |
H A D | datetime-diff.phtml | 12 <span class="wt-timestamp" title="<?= e($timestamp->isoFormat('LLLL')) ?>" dir="auto">
|
H A D | datetime.phtml | 19 <?= e($timestamp->isoFormat('LLLL')) ?>
|
/webtrees/app/Contracts/ |
H A D | TimestampInterface.php | 51 public function isoFormat(string $format): string; function
|
/webtrees/app/Report/ |
H A D | ReportParserGenerate.php | 655 $this->current_element->addText(Registry::timestampFactory()->now()->isoFormat('LLLL'));
|