/**
  * Generate the submit_time and submit_url so they can be added to CF7 mail
  * @param $posted_data array
  * @return array
  */
 public function generateSubmitTimeForCF7($posted_data)
 {
     try {
         $time = $this->plugin->generateSubmitTime();
         $posted_data['submit_time'] = $time;
         // No longer generating submit_url because it seems to cause CF7 to think it is
         // a spam submission and it drops it.
         //            $url = get_admin_url() . sprintf('admin.php?page=%s&submit_time=%s',
         //
         //                    $this->getDBPageSlug(),
         //                    $time);
         //            $posted_data['submit_url'] = $url;
     } catch (Exception $ex) {
         $this->plugin->getErrorLog()->logException($ex);
     }
     return $posted_data;
 }