EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
HomePageController.php
Go to the documentation of this file.
1 <?php
2 
4 {
5  public function actionIndex()
6  {
7  $this->render('index');
8  }
9 
10  // Uncomment the following methods and override them if needed
11  /*
12  public function filters()
13  {
14  // return the filter configuration for this controller, e.g.:
15  return array(
16  'inlineFilterName',
17  array(
18  'class'=>'path.to.FilterClass',
19  'propertyName'=>'propertyValue',
20  ),
21  );
22  }
23 
24  public function actions()
25  {
26  // return external action classes, e.g.:
27  return array(
28  'action1'=>'path.to.ActionClass',
29  'action2'=>array(
30  'class'=>'path.to.AnotherActionClass',
31  'propertyName'=>'propertyValue',
32  ),
33  );
34  }
35  */
36 }