data[$key] = $value; } function display($file = '') { $this->template_dir = Application::getInstance()->base_dir.'/Views'; if (empty($file)) { $file = strtolower($this->controller_name).'/'.$this->view_name.'.php'; } $path = $this->template_dir.'/'.$file; extract($this->data); include $path; } }