You are here

public function TableYamlFormExporter::defaultConfiguration in YAML Form 8

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides YamlFormExporterBase::defaultConfiguration

File

src/Plugin/YamlFormExporter/TableYamlFormExporter.php, line 22

Class

TableYamlFormExporter
Defines a HTML table exporter.

Namespace

Drupal\yamlform\Plugin\YamlFormExporter

Code

public function defaultConfiguration() {
  return parent::defaultConfiguration() + [
    'excel' => FALSE,
  ];
}