You are here

public function FileHandleTraitYamlFormExporter::openExport in YAML Form 8

File

src/Plugin/YamlFormExporter/FileHandleTraitYamlFormExporter.php, line 27

Class

FileHandleTraitYamlFormExporter
Defines file handle exporter trait.

Namespace

Drupal\yamlform\Plugin\YamlFormExporter

Code

public function openExport() {
  $this->fileHandle = fopen($this
    ->getExportFilePath(), 'a');
}