You are here

public function YamlFormSubmissionExporter::deleteYamlFormOptions in YAML Form 8

Delete export options for the current form and entity.

Overrides YamlFormSubmissionExporterInterface::deleteYamlFormOptions

File

src/YamlFormSubmissionExporter.php, line 175

Class

YamlFormSubmissionExporter
Form submission exporter.

Namespace

Drupal\yamlform

Code

public function deleteYamlFormOptions() {
  $name = $this
    ->getYamlFormOptionsName();
  $this
    ->getYamlForm()
    ->deleteState($name);
}