You are here

public function WebformElementBase::buildExportOptionsForm in Webform 8.5

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

Get an element's export options webform.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

array $export_options: An associative array of default values.

Return value

array An associative array contain an element's export option webform.

Overrides WebformElementInterface::buildExportOptionsForm

4 calls to WebformElementBase::buildExportOptionsForm()
OptionsBase::buildExportOptionsForm in src/Plugin/WebformElement/OptionsBase.php
Get an element's export options webform.
WebformCompositeBase::buildExportOptionsForm in src/Plugin/WebformElement/WebformCompositeBase.php
Get an element's export options webform.
WebformLikert::buildExportOptionsForm in src/Plugin/WebformElement/WebformLikert.php
Get an element's export options webform.
WebformSignature::buildExportOptionsForm in src/Plugin/WebformElement/WebformSignature.php
Get an element's export options webform.
4 methods override WebformElementBase::buildExportOptionsForm()
OptionsBase::buildExportOptionsForm in src/Plugin/WebformElement/OptionsBase.php
Get an element's export options webform.
WebformCompositeBase::buildExportOptionsForm in src/Plugin/WebformElement/WebformCompositeBase.php
Get an element's export options webform.
WebformLikert::buildExportOptionsForm in src/Plugin/WebformElement/WebformLikert.php
Get an element's export options webform.
WebformSignature::buildExportOptionsForm in src/Plugin/WebformElement/WebformSignature.php
Get an element's export options webform.

File

src/Plugin/WebformElementBase.php, line 1947

Class

WebformElementBase
Provides a base class for a webform element.

Namespace

Drupal\webform\Plugin

Code

public function buildExportOptionsForm(array &$form, FormStateInterface $form_state, array $export_options) {
}