/**
  * Mark as un-deleted
  * 
  * Method will mark this record as not deleted, restoring it to view.
  * 
  * @return boolean
  */
 function mark_undeleted()
 {
     $result = parent::mark_undeleted($this->id);
     return $result;
 }