git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@47 77cfc57b-8ef4-1849-9df6-4a38aa5da120
36 lines
661 B
PHP
36 lines
661 B
PHP
<?php
|
|
|
|
class SistemaController extends Controller
|
|
{
|
|
public function actionIndex()
|
|
{
|
|
$this->render('index');
|
|
}
|
|
|
|
// Uncomment the following methods and override them if needed
|
|
/*
|
|
public function filters()
|
|
{
|
|
// return the filter configuration for this controller, e.g.:
|
|
return array(
|
|
'inlineFilterName',
|
|
array(
|
|
'class'=>'path.to.FilterClass',
|
|
'propertyName'=>'propertyValue',
|
|
),
|
|
);
|
|
}
|
|
|
|
public function actions()
|
|
{
|
|
// return external action classes, e.g.:
|
|
return array(
|
|
'action1'=>'path.to.ActionClass',
|
|
'action2'=>array(
|
|
'class'=>'path.to.AnotherActionClass',
|
|
'propertyName'=>'propertyValue',
|
|
),
|
|
);
|
|
}
|
|
*/
|
|
} |