You are here

protected function YamlFormSubmissionForm::isFormNoValidate in YAML Form 8

Is client side validation disabled (using the form novalidate attribute).

Return value

bool TRUE if the client side validation disabled.

File

src/YamlFormSubmissionForm.php, line 1368

Class

YamlFormSubmissionForm
Provides a form to collect and edit submissions.

Namespace

Drupal\yamlform

Code

protected function isFormNoValidate() {
  return $this
    ->getYamlFormSetting('form_novalidate', FALSE);
}