Beispiel #1
0
 public function index()
 {
     $project_data = Model_Project::findAll();
     $this->response = new Monty_Response_HTML();
     $this->response->assign('projects', $project_data);
     $this->response->render('projects/index.php');
     return $this->response;
 }