aboutsummaryrefslogtreecommitdiffstats
path: root/public/install/controller/event/theme.php
blob: 62e31aca7a6cb01cdfb4a1e55aaf8e83feea37b0 (plain)
1
2
3
4
5
6
7
8
9
10
<?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');
		}		
	}
}