/**
  * Manages all models.
  */
 public function actionIndex()
 {
     $model = new GeoCountry('search');
     $model->attachBehavior('dateComparator', array('class' => 'DateComparator'));
     $model->unsetAttributes();
     // clear any default values
     // set attributes from get
     if (isset($_GET['GeoCountry'])) {
         $model->attributes = $_GET['GeoCountry'];
     }
     $this->render('list', array('model' => $model));
 }
 /**
  * Manages all models.
  */
 public function actionAdmin()
 {
     $model = new GeoCountry('search');
     $model->unsetAttributes();
     // clear any default values
     if (isset($_GET['GeoCountry'])) {
         $model->attributes = $_GET['GeoCountry'];
     }
     $this->render('admin', array('model' => $model));
 }