You are here

public function WebformElementBase::getExportDefaultOptions in Webform 8.5

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

Get an element's default export options.

Return value

array An associative array containing an element's default export options.

Overrides WebformElementInterface::getExportDefaultOptions

5 methods override WebformElementBase::getExportDefaultOptions()
EntityAutocomplete::getExportDefaultOptions in src/Plugin/WebformElement/EntityAutocomplete.php
Get an element's default export options.
OptionsBase::getExportDefaultOptions in src/Plugin/WebformElement/OptionsBase.php
Get an element's default export options.
WebformCompositeBase::getExportDefaultOptions in src/Plugin/WebformElement/WebformCompositeBase.php
Get an element's default export options.
WebformLikert::getExportDefaultOptions in src/Plugin/WebformElement/WebformLikert.php
Get an element's default export options.
WebformSignature::getExportDefaultOptions in src/Plugin/WebformElement/WebformSignature.php
Get an element's default export options.

File

src/Plugin/WebformElementBase.php, line 1940

Class

WebformElementBase
Provides a base class for a webform element.

Namespace

Drupal\webform\Plugin

Code

public function getExportDefaultOptions() {
  return [];
}