model = $factory->getDefaultModel(); $this->dashboardID = $dashboardID; $this->filePath = 'data/dashboards/dashboard_'.$this->dashboardID.'.rdf'; } public function loadDashboard() { if(file_exists($this->filePath)) { $this->model->load($this->filePath); return true; } else { return false; } } public function getDashboardInfo() { } } ?>