‪TYPO3CMS  ‪main
DateTimeAspect.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
21 
35 {
39  protected ‪$dateTimeObject;
40 
41  public function ‪__construct(\DateTimeImmutable $dateTimeImmutable)
42  {
43  $this->dateTimeObject = $dateTimeImmutable;
44  }
45 
52  public function get(string $name)
53  {
54  switch ($name) {
55  case 'timestamp':
56  return $this->dateTimeObject->getTimestamp();
57  case 'iso':
58  return $this->dateTimeObject->format('c');
59  case 'timezone':
60  return $this->dateTimeObject->format('e');
61  case 'full':
63  case 'accessTime':
64  return $this->dateTimeObject->getTimestamp() - ($this->dateTimeObject->getTimestamp() % 60);
65  }
66  throw new AspectPropertyNotFoundException('Property "' . $name . '" not found in Aspect "' . __CLASS__ . '".', 1527778767);
67  }
68 
72  public function ‪getDateTime(): \DateTimeImmutable
73  {
75  }
76 }
‪TYPO3\CMS\Core\Context
Definition: AspectInterface.php:18
‪TYPO3\CMS\Core\Context\DateTimeAspect\getDateTime
‪getDateTime()
Definition: DateTimeAspect.php:71
‪TYPO3\CMS\Core\Context\DateTimeAspect\$dateTimeObject
‪DateTimeImmutable $dateTimeObject
Definition: DateTimeAspect.php:38
‪TYPO3\CMS\Core\Context\AspectInterface
Definition: AspectInterface.php:27
‪TYPO3\CMS\Core\Context\DateTimeAspect\__construct
‪__construct(\DateTimeImmutable $dateTimeImmutable)
Definition: DateTimeAspect.php:40
‪TYPO3\CMS\Core\Context\DateTimeAspect
Definition: DateTimeAspect.php:35
‪TYPO3\CMS\Core\Context\Exception\AspectPropertyNotFoundException
Definition: AspectPropertyNotFoundException.php:25