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); } } ?>