Blame view

frontend/controllers/CollectionController.php 383 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
2
3
4
5
6
7
  <?php
      
      namespace frontend\controllers;
      
      use yii\web\Controller;
      
      /**
36d1807a   Yarik   Big commit.
8
       * Article controller
d8c1a2e0   Yarik   Big commit artbox
9
       */
36d1807a   Yarik   Big commit.
10
      class CollectionController extends Controller
d8c1a2e0   Yarik   Big commit artbox
11
12
13
      {
          
          /**
36d1807a   Yarik   Big commit.
14
           * Displays article list.
d8c1a2e0   Yarik   Big commit artbox
15
16
17
18
19
20
           * @return string
           */
          public function actionIndex()
          {
              return $this->render('index');
          }
d8c1a2e0   Yarik   Big commit artbox
21
      }