Cockpit integration

This commit is contained in:
2024-11-07 21:34:32 +01:00
parent d3eccf99f0
commit a4b336b3fd
8 changed files with 153 additions and 41 deletions

View File

@@ -10,8 +10,6 @@ use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Error\SyntaxError;
use Twig\Loader\FilesystemLoader;
use Faker\Factory;
use Faker\Generator;
abstract class MainController
{
@@ -50,13 +48,6 @@ abstract class MainController
*/
private array $route_parameters = array();
/**
* Fake data generator.
*
* @var Generator
*/
protected Generator $faker;
/**
* Breadcrumbs.
*
@@ -73,8 +64,6 @@ abstract class MainController
public function __invoke(array $parameters = array()): void
{
$this->route_parameters = $parameters;
$this->faker = Factory::create();
$this->faker->seed(1234567);
$this->preAction();
$this->action();
$this->postAction();
@@ -150,7 +139,7 @@ abstract class MainController
$this->pushToStash(
'meta',
[
'title' => $this->faker->domainName(),
'title' => 'News Page | Your #1 News Source',
],
self::STASH_GLOBAL
);