コード例 #1
0
 /**
  * The place to check if the data set in the snippet is valid
  * to generate the snippet.
  *
  * When invalid data should result in an error, you can throw it
  * here but you can also perform the check in the
  * checkRegistryRequestsAnswers() function from the
  * {@see \MUtil_Registry_TargetInterface}.
  *
  * @return boolean
  */
 public function hasHtmlOutput()
 {
     if (parent::hasHtmlOutput()) {
         return $this->processForm();
     }
 }
コード例 #2
0
 /**
  * The place to check if the data set in the snippet is valid
  * to generate the snippet.
  *
  * When invalid data should result in an error, you can throw it
  * here but you can also perform the check in the
  * checkRegistryRequestsAnswers() function from the
  * {@see \MUtil_Registry_TargetInterface}.
  *
  * @return boolean
  */
 public function hasHtmlOutput()
 {
     if (parent::hasHtmlOutput()) {
         if ($this->mailer->getDataLoaded()) {
             return $this->processForm();
         } else {
             $this->addMessage($this->mailer->getMessages());
             return true;
         }
     }
 }