| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/op3038.dev.safetybis.com/admin/controller/event/ |
| Current File : /home/devsafetybis/op3038.dev.safetybis.com/admin/controller/event/theme.php |
<?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');
}
}
}