コード例 #1
0
 /**
  * Manages all models.
  */
 public function actionAdmin()
 {
     $model = new TipoInforme('search');
     $model->unsetAttributes();
     // clear any default values
     if (isset($_GET['TipoInforme'])) {
         $model->attributes = $_GET['TipoInforme'];
     }
     if (count($model->findAll()) > 0) {
         $this->render('admin', array('model' => $model));
     } else {
         $this->render('empty', array('model' => $model));
     }
     /*$this->render('admin', array(
           'model' => $model,
       ));*/
 }