/**
  * Delete a person.
  */
 public function actionDelete()
 {
     $this->model->deletePerson((int) $_GET['id']);
     header('location: /');
 }