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