Exemplo n.º 1
0
 /**
  * This is the default 'index' action that is invoked
  * when an action is not explicitly requested by users.
  */
 public function actionIndex()
 {
     $this->pageTitle = "List of Type Confgis";
     $model = new Reference('search');
     $model->unsetAttributes();
     if (isset($_GET['Reference'])) {
         $model->attributes = $_GET['Reference'];
     }
     $this->render($this->view . 'index', array('model' => $model));
 }