public function actionVerifyEmployers()
 {
     $model = new Employer('search');
     $model->unsetAttributes();
     if (isset($_GET['Employer'])) {
         $model->attributes = $_GET['Employer'];
     }
     $dataProvider = $model->searchInactive();
     $this->render('verifyEmployers', array('model' => $model, 'dataProvider' => $dataProvider));
 }
 /**
  * Manages all models.
  */
 public function actionAdmin()
 {
     $model = new Employer('search');
     $model->unsetAttributes();
     // clear any default values
     if (isset($_GET['Employer'])) {
         $model->attributes = $_GET['Employer'];
     }
     $this->render('admin', array('model' => $model));
 }