/**
  * @GET
  * @ROUTE/conf/lecture/$id=\d
  */
 public function get($id)
 {
     $this->headerData();
     $lecture = \Repository\Lecture::createInstance()->getLecturesById($id);
     var_dump($lecture);
     $this->view->showView();
 }
Esempio n. 2
0
 public function save()
 {
     \Repository\Lecture::createInstance()->save($this);
 }