1
0
www.mikescher.com/www/protected/controllers/SiteController.php
2014-05-14 11:29:42 +02:00

27 lines
410 B
PHP

<?php
class SiteController extends Controller
{
public $selectedNav = '';
public function actionIndex()
{
$this->render('index');
}
public function actionError()
{
if($error=Yii::app()->errorHandler->error)
{
if(Yii::app()->request->isAjaxRequest)
echo $error['message'];
else
$this->render('error', $error);
}
}
public function actionAbout()
{
$this->render('about');
}
}