engelsystem/includes/helper/legacy_helper.php

28 lines
438 B
PHP
Raw Normal View History

2021-07-24 20:25:13 +02:00
<?php
declare(strict_types=1);
use Engelsystem\Renderer\Twig\Extensions\Globals;
function theme_id(): int
{
/** @var Globals $globals */
$globals = app(Globals::class);
$globals = $globals->getGlobals();
return $globals['themeId'];
}
/**
* @return array
*/
function theme(): array
{
$theme_id = theme_id();
return config('themes')[$theme_id];
}
function theme_type(): string
{
return theme()['type'];
}