MicroFrameWork/kernel/AdminController.php

22 lines
585 B
PHP
Raw Normal View History

2024-09-03 16:29:44 +03:00
<?php
namespace kernel;
use kernel\Controller;
use kernel\services\AdminThemeService;
class AdminController extends Controller
{
protected AdminThemeService $adminThemeService;
protected function init()
{
$this->adminThemeService = new AdminThemeService();
$active_theme = $this->adminThemeService->getActiveAdminThemeInfo();
$this->cgView->layoutPath = getConst($active_theme['layout_path']);
$this->cgView->layout = "/" . $active_theme['layout'];
$this->cgView->addVarToLayout("resources", $active_theme['resource']);
}
}