You are here

public function YamlFormExporterBase::getConfiguration in YAML Form 8

Gets this plugin's configuration.

Return value

array An array of this plugin's configuration.

Overrides ConfigurablePluginInterface::getConfiguration

6 calls to YamlFormExporterBase::getConfiguration()
TabularBaseYamlFormExporter::buildHeader in src/Plugin/YamlFormExporter/TabularBaseYamlFormExporter.php
Build export header using form submission field definitions and form element columns.
TabularBaseYamlFormExporter::buildRecord in src/Plugin/YamlFormExporter/TabularBaseYamlFormExporter.php
Build export record using a form submission.
TabularBaseYamlFormExporter::formatRecordFieldDefinitionValue in src/Plugin/YamlFormExporter/TabularBaseYamlFormExporter.php
Get the field definition value from a form submission entity.
TabularBaseYamlFormExporter::getElements in src/Plugin/YamlFormExporter/TabularBaseYamlFormExporter.php
Get form elements.
TabularBaseYamlFormExporter::getFieldDefinitions in src/Plugin/YamlFormExporter/TabularBaseYamlFormExporter.php
Get a form's field definitions.

... See full list

File

src/YamlFormExporterBase.php, line 127

Class

YamlFormExporterBase
Provides a base class for a results exporter.

Namespace

Drupal\yamlform

Code

public function getConfiguration() {
  return $this->configuration;
}