director
Heroes with this tag
Resultaat 1-20 van 44 items.
- Woody Allen
- Gerry Anderson
- Michelangelo Antonioni
- Ingmar Bergman
- Bernardo Bertolucci
- Luis Buñuel
- Charles Chaplin
- Francis Ford Coppola
- Michael Crichton
- Claude Faraldo
- Rainer Werner Fassbinder
- Federico Fellini
- Marco Ferreri
- David Fincher
- Terry Gilliam
- Vince Gilligan
- Jean-Luc Godard
- Gene Hackman
- Alfred Hitchcock
- Miklós Jancsó
<?php
use ...
class TagController extends Controller
{
// ...
public function actionView($id)
{
$tag = $this->findModel($id);
$heroes = new ActiveDataProvider([
'query' => $tag->getModels()->orderBy('last_name'),
]);
return $this->render('view', [
'tag' => $tag,
'heroes' => $heroes
]);
}
// ...
}