Logo white

Administrator / test_3

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • test_3
  • frontend
  • controllers
  • LandingController.php
  • firs page
    89758aeb
    Administrator authored
    2016-01-26 14:25:37 +0200  
    Browse Code ยป
LandingController.php 382 Bytes
Edit Raw Blame History
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
<?php
/**
 * Created by PhpStorm.
 * User: vitaliy
 * Date: 26.01.16
 * Time: 13:30
 */

namespace frontend\controllers;


class LandingController {

    public function ViewAction($view)
    {
        die($view);
        try{

            $this->render($view);

        }
        catch(\yii\base\InvalidParamException $e){
            $this->render('site/404');
        }

    }

}