ArticleController.php 575 Bytes
<?php
    
    namespace frontend\controllers;
    
    use yii\web\Controller;
    
    /**
     * Article controller
     */
    class ArticleController extends Controller
    {
        
        /**
         * Displays article list.
         * @return string
         */
        public function actionIndex()
        {
            return $this->render('index');
        }
        
        /**
         * Display one article page.
         * @return string
         */
        public function actionView()
        {
            return $this->render('view');
        }
    }