/**
  * Handle adding the record verify form to the person page view page.
  * @param iHRIS_PageView $page
  * @return boolean
  */
 public function action_record_verify($page)
 {
     if (!$page instanceof iHRIS_PageView) {
         return false;
     }
     return $page->addLastChildForm('record_verify', 'verify_date');
 }