Current Path : /var/www/alh/install/controller/event/ |
Current File : /var/www/alh/install/controller/event/theme.php |
<?php class ControllerEventTheme extends Controller { public function index(&$view, &$data) { if (is_file(DIR_TEMPLATE . $view . '.tpl')) { $this->config->set('template_engine', 'php'); } elseif (is_file(DIR_TEMPLATE . $view . '.twig')) { $this->config->set('template_engine', 'twig'); } } }