/
ouke
/
amk
Обзор
Документация
Войти
/
ouke
/
amk
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
admin/controller/event/theme.php
15 строк
454 B
Руслан
first_commit
09 июл 2025, 07:27
09 июл 2025, 07:27
24f61ee
Код
Авторство
О чём код?
<?php class ControllerEventTheme extends Controller { public function index(&$route, &$args) { // This is only here for compatibility with old templates if (substr($route, -3) == 'tpl') { $view = substr($route, 0, -3); } if (is_file(DIR_TEMPLATE . $route . '.twig')) { $this->config->set('template_engine', 'twig'); } elseif (is_file(DIR_TEMPLATE . $route . '.tpl')) { $this->config->set('template_engine', 'template'); } } }