예제 #1
0
파일: band.php 프로젝트: laiello/atm-music
 public function action_index()
 {
     $user = $this->is_logged();
     if ($user === false) {
         return Redirect::to_action('login');
     } else {
         $band = Band::from_id($user->get_id_user_lif());
         return View::make('content.band.index')->with('band', $band);
     }
 }