<?
class Main extends MVC_Controller
{
protected $_cont;
protected $_tpl;
protected $_sql;
public function init()
{
set_include_path('./application/models'.PATH_SEPARATOR.get_include_path());
$this->_cont = new MVC_Container;
$this->_tpl = new MVC_Template;
$this->_cont->getConfig('application/config.xml');
$this->_tpl->setDirectory('application/views/');
$this->_sql = new MVC_DB($this->_cont->config);
}
}
?>