Example #1
0
 /**
  * Lists all models.
  */
 public function actionIndex()
 {
     $model = new Event('search');
     $model->unsetAttributes();
     // clear any default values
     if (isset($_GET['Event'])) {
         $model->attributes = $_GET['Event'];
     }
     $this->render('index', array('model' => $model, 'indexData' => $model->getIndexData()));
 }