You are here

public function WebformElementInterface::buildExportOptionsForm in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformElementInterface.php \Drupal\webform\Plugin\WebformElementInterface::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.

1 method overrides WebformElementInterface::buildExportOptionsForm()
WebformElementBase::buildExportOptionsForm in src/Plugin/WebformElementBase.php
Get an element's export options webform.

File

src/Plugin/WebformElementInterface.php, line 706

Class

WebformElementInterface
Defines the interface for webform elements.

Namespace

Drupal\webform\Plugin

Code

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