You are here

public function WebformExporterBase::getConfiguration in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformExporterBase.php \Drupal\webform\Plugin\WebformExporterBase::getConfiguration()

Gets this plugin's configuration.

Return value

array An array of this plugin's configuration.

Overrides ConfigurableInterface::getConfiguration

7 calls to WebformExporterBase::getConfiguration()
TabularBaseWebformExporter::buildHeader in src/Plugin/WebformExporter/TabularBaseWebformExporter.php
Build export header using webform submission field definitions and webform element columns.
TabularBaseWebformExporter::buildRecord in src/Plugin/WebformExporter/TabularBaseWebformExporter.php
Build export record using a webform submission.
TabularBaseWebformExporter::formatRecordFieldDefinitionValue in src/Plugin/WebformExporter/TabularBaseWebformExporter.php
Get the field definition value from a webform submission entity.
TabularBaseWebformExporter::getElements in src/Plugin/WebformExporter/TabularBaseWebformExporter.php
Get webform elements.
TabularBaseWebformExporter::getFieldDefinitions in src/Plugin/WebformExporter/TabularBaseWebformExporter.php
Get a webform's field definitions.

... See full list

File

src/Plugin/WebformExporterBase.php, line 173

Class

WebformExporterBase
Provides a base class for a results exporter.

Namespace

Drupal\webform\Plugin

Code

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