LandingController.php
382 Bytes
<?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');
}
}
}