Blame view

frontend/controllers/ProjectController.php 1.29 KB
4ca21c3e   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  <?php
      
      namespace frontend\controllers;
      
      use common\models\Project;
      use common\models\ProjectSearch;
      use yii\web\Controller;
      use yii\web\NotFoundHttpException;
      
      /**
       * Project controller
       */
      class ProjectController extends Controller
      {
          
          /**
           * Displays project list.
           * @return string
           */
          public function actionIndex()
          {
              $searchModel = new ProjectSearch();
              $dataProvider = $searchModel->search(\Yii::$app->request->queryParams);
              $dataProvider->pagination = [
                  'pageSize' => 10,
              ];
              $dataProvider->query->with('images');
              return $this->render('index', [
                  'searchModel'  => $searchModel,
                  'dataProvider' => $dataProvider,
              ]);
          }
          
          public function actionView($id)
          {
              $model = $this->findModel($id);
              return $this->render('view', [
                  'model' => $model,
              ]);
          }
          
          private function findModel($id)
          {
              $model = Project::findOne($id);
              if(empty( $model )) {
                  throw new NotFoundHttpException();
              }
              return $model;
          }
      }