Your IP : 216.73.216.95


Current Path : /var/www/alh/install/controller/event/
Upload File :
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');
		}		
	}
}