‪TYPO3CMS  10.4
EndTimeRestriction.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 
22 
27 {
31  protected ‪$accessTimeStamp;
32 
36  public function ‪__construct(int ‪$accessTimeStamp = null)
37  {
38  $this->accessTimeStamp = ‪$accessTimeStamp ?: (‪$GLOBALS['SIM_ACCESS_TIME'] ?? null);
39  }
40 
50  public function ‪buildExpression(array $queriedTables, ‪ExpressionBuilder $expressionBuilder): ‪CompositeExpression
51  {
52  $constraints = [];
53  foreach ($queriedTables as $tableAlias => $tableName) {
54  $endTimeFieldName = ‪$GLOBALS['TCA'][$tableName]['ctrl']['enablecolumns']['endtime'] ?? null;
55  if (!empty($endTimeFieldName)) {
56  if (empty($this->accessTimeStamp)) {
57  throw new \RuntimeException(
58  'accessTimeStamp needs to be set to an integer value, but is empty! Maybe $GLOBALS[\'SIM_ACCESS_TIME\'] has been overridden somewhere?',
59  1462821084
60  );
61  }
62  $fieldName = $tableAlias . '.' . $endTimeFieldName;
63  $constraints[] = $expressionBuilder->‪orX(
64  $expressionBuilder->‪eq($fieldName, 0),
65  $expressionBuilder->‪gt($fieldName, (int)$this->accessTimeStamp)
66  );
67  }
68  }
69  return $expressionBuilder->‪andX(...$constraints);
70  }
71 }
‪TYPO3\CMS\Core\Database\Query\Expression\ExpressionBuilder\gt
‪string gt(string $fieldName, $value)
Definition: ExpressionBuilder.php:167
‪TYPO3\CMS\Core\Database\Query\Expression\ExpressionBuilder
Definition: ExpressionBuilder.php:35
‪TYPO3\CMS\Core\Database\Query\Restriction\EndTimeRestriction
Definition: EndTimeRestriction.php:27
‪TYPO3\CMS\Core\Database\Query\Restriction\QueryRestrictionInterface
Definition: QueryRestrictionInterface.php:27
‪TYPO3\CMS\Core\Database\Query\Expression\ExpressionBuilder\eq
‪string eq(string $fieldName, $value)
Definition: ExpressionBuilder.php:109
‪TYPO3\CMS\Core\Database\Query\Restriction\EndTimeRestriction\__construct
‪__construct(int $accessTimeStamp=null)
Definition: EndTimeRestriction.php:35
‪TYPO3\CMS\Core\Database\Query\Expression\CompositeExpression
Definition: CompositeExpression.php:25
‪TYPO3\CMS\Core\Database\Query\Expression\ExpressionBuilder\andX
‪CompositeExpression andX(... $expressions)
Definition: ExpressionBuilder.php:70
‪TYPO3\CMS\Core\Database\Query\Restriction
Definition: AbstractRestrictionContainer.php:18
‪TYPO3\CMS\Core\Database\Query\Expression\ExpressionBuilder\orX
‪CompositeExpression orX(... $expressions)
Definition: ExpressionBuilder.php:82
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Core\Database\Query\Restriction\EndTimeRestriction\buildExpression
‪CompositeExpression buildExpression(array $queriedTables, ExpressionBuilder $expressionBuilder)
Definition: EndTimeRestriction.php:49
‪TYPO3\CMS\Core\Database\Query\Restriction\EndTimeRestriction\$accessTimeStamp
‪int $accessTimeStamp
Definition: EndTimeRestriction.php:30