mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 06:36:10 +01:00
85 lines
1.6 KiB
PHP
85 lines
1.6 KiB
PHP
<?php
|
|
|
|
|
|
namespace Wrm\Events\Events\Controller;
|
|
|
|
use TYPO3\CMS\Core\Pagination\PaginationInterface;
|
|
use TYPO3\CMS\Extbase\Persistence\Generic\QueryResult;
|
|
use Wrm\Events\Domain\Model\Date;
|
|
use Wrm\Events\Domain\Model\Dto\DateDemand;
|
|
|
|
final class DateListVariables
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $search;
|
|
|
|
/**
|
|
* @var DateDemand
|
|
*/
|
|
private $demand;
|
|
|
|
/**
|
|
* @var QueryResult<Date>
|
|
*/
|
|
private $dates;
|
|
|
|
/**
|
|
* @var PaginationInterface
|
|
*/
|
|
private $pagination;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $variables = [];
|
|
|
|
public function __construct(
|
|
array $search,
|
|
DateDemand $demand,
|
|
QueryResult $dates,
|
|
PaginationInterface $pagination
|
|
) {
|
|
$this->search = $search;
|
|
$this->demand = $demand;
|
|
$this->dates = $dates;
|
|
$this->pagination = $pagination;
|
|
}
|
|
|
|
public function getSearch(): array
|
|
{
|
|
return $this->search;
|
|
}
|
|
|
|
public function getDemand(): DateDemand
|
|
{
|
|
return $this->demand;
|
|
}
|
|
|
|
/**
|
|
* @return QueryResult<Date>
|
|
*/
|
|
public function getDates(): QueryResult
|
|
{
|
|
return $this->dates;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $value
|
|
*/
|
|
public function addVariable(string $key, $value): void
|
|
{
|
|
$this->variables[$key] = $value;
|
|
}
|
|
|
|
public function getVariablesForView(): array
|
|
{
|
|
return array_merge([
|
|
'search' => $this->search,
|
|
'demand' => $this->demand,
|
|
'dates' => $this->dates,
|
|
'pagination' => $this->pagination,
|
|
], $this->variables);
|
|
}
|
|
}
|