This commit is contained in:
2024-07-12 11:31:04 +03:00
parent 6d38f62e8d
commit 91dc9194e0
13 changed files with 38 additions and 32 deletions

15
kernel/Controller.php Normal file
View File

@ -0,0 +1,15 @@
<?php
namespace kernel;
class Controller
{
protected \Twig\Loader\FilesystemLoader $loader;
protected \Twig\Environment $twig;
public function __construct()
{
$this->loader = new \Twig\Loader\FilesystemLoader(ROOT_DIR . $_ENV['VIEWS_PATH']);
$this->twig = new \Twig\Environment($this->loader, ['cache' => ROOT_DIR . $_ENV['VIEWS_CACHE_PATH']]);
}
}