theme.php (318B)
1 <?php 2 class ControllerEventTheme extends Controller { 3 public function index(&$view, &$data) { 4 if (is_file(DIR_TEMPLATE . $view . '.tpl')) { 5 $this->config->set('template_engine', 'php'); 6 } elseif (is_file(DIR_TEMPLATE . $view . '.twig')) { 7 $this->config->set('template_engine', 'twig'); 8 } 9 } 10 }