controller_main.php 399 Bytes
<?php
class Controller_Main extends Controller
{
    function __construct()
    {   //$this->controller = new Controller();
        $this->model = new Model_Main();
        $this->view = new View();
    }
	
	
	function action_index()
    {	
	    $data = $this->model->get_data();
		//$lang = $this->lang_on();
        $this->view->generate('main_view.php', 'template_view.php', $data);
    }
	
}

?>