Exemplo n.º 1
0
 public function view()
 {
     $song_id = $this->request_params['song_id'];
     $model = new \Mini\models\Songs($this->app->config('database'));
     $song = $model->getSong($song_id);
     $this->template_data['song'] = $song;
     if (!$song) {
         $this->app->redirect('/songs');
     }
 }