You are here

public function WebformExporterBase::defaultConfiguration in Webform 6.x

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

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConfigurableInterface::defaultConfiguration

5 calls to WebformExporterBase::defaultConfiguration()
DelimitedWebformExporter::defaultConfiguration in src/Plugin/WebformExporter/DelimitedWebformExporter.php
Gets default configuration for this plugin.
DocumentBaseWebformExporter::defaultConfiguration in src/Plugin/WebformExporter/DocumentBaseWebformExporter.php
Gets default configuration for this plugin.
TableWebformExporter::defaultConfiguration in src/Plugin/WebformExporter/TableWebformExporter.php
Gets default configuration for this plugin.
WebformExporterBase::setConfiguration in src/Plugin/WebformExporterBase.php
Sets the configuration for this plugin instance.
WebformSubmissionExportImportWebformExporter::defaultConfiguration in modules/webform_submission_export_import/src/Plugin/WebformExporter/WebformSubmissionExportImportWebformExporter.php
Gets default configuration for this plugin.
4 methods override WebformExporterBase::defaultConfiguration()
DelimitedWebformExporter::defaultConfiguration in src/Plugin/WebformExporter/DelimitedWebformExporter.php
Gets default configuration for this plugin.
DocumentBaseWebformExporter::defaultConfiguration in src/Plugin/WebformExporter/DocumentBaseWebformExporter.php
Gets default configuration for this plugin.
TableWebformExporter::defaultConfiguration in src/Plugin/WebformExporter/TableWebformExporter.php
Gets default configuration for this plugin.
WebformSubmissionExportImportWebformExporter::defaultConfiguration in modules/webform_submission_export_import/src/Plugin/WebformExporter/WebformSubmissionExportImportWebformExporter.php
Gets default configuration for this plugin.

File

src/Plugin/WebformExporterBase.php, line 142

Class

WebformExporterBase
Provides a base class for a results exporter.

Namespace

Drupal\webform\Plugin

Code

public function defaultConfiguration() {
  return [
    'webform' => NULL,
    'source_entity' => NULL,
  ];
}