Exemplo n.º 1
0
 public static function show($id)
 {
     self::check_logged_in();
     $draft = Draft::find($id);
     $kayttajat = Kayttaja::find($draft->laatija_id);
     $heroes = Yhteys::findHero($id);
     View::make('drafts/show.html', array('draft' => $draft, 'heroes' => $heroes, 'kayttajat' => $kayttajat));
 }