Next major version 2 with PHP 8.1, Symfony 6, Tabler UI, 2FA ... (#2902)

This commit is contained in:
Kevin Papst
2022-12-31 21:19:55 +01:00
committed by GitHub
parent 95e06746bd
commit 90a0fd8a22
2164 changed files with 83700 additions and 86426 deletions

93
src/Utils/PageSetup.php Normal file
View File

@@ -0,0 +1,93 @@
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Utils;
final class PageSetup
{
private ?string $help = null;
private ?string $actionName = null;
private string $actionView = 'index';
private array $actionPayload = [];
private ?DataTable $dataTable = null;
public function __construct(private string $title)
{
}
public function hasDataTable(): bool
{
return $this->dataTable !== null;
}
public function hasSearchForm(): bool
{
return $this->dataTable !== null && $this->dataTable->getSearchForm() !== null;
}
public function getDataTable(): ?DataTable
{
return $this->dataTable;
}
public function setDataTable(?DataTable $dataTable): void
{
$this->dataTable = $dataTable;
}
public function getHelp(): ?string
{
return $this->help;
}
public function setHelp(?string $help): void
{
$this->help = $help;
}
public function getTitle(): string
{
return $this->title;
}
public function getActionName(): ?string
{
return $this->actionName;
}
public function setActionName(?string $actionName): void
{
$this->actionName = $actionName;
}
public function getActionView(): string
{
return $this->actionView;
}
public function setActionView(string $actionView): void
{
$this->actionView = $actionView;
}
public function getActionPayload(): array
{
return $this->actionPayload;
}
public function setActionPayload(array $actionPayload): void
{
$this->actionPayload = $actionPayload;
}
public function isTableAction(): bool
{
return \in_array($this->actionView, ['detail', 'custom', 'table']);
}
}