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