You are here

public function WebformLikert::buildExportOptionsForm in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/WebformLikert.php \Drupal\webform\Plugin\WebformElement\WebformLikert::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 WebformElementBase::buildExportOptionsForm

File

src/Plugin/WebformElement/WebformLikert.php, line 235

Class

WebformLikert
Provides a 'likert' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public function buildExportOptionsForm(array &$form, FormStateInterface $form_state, array $export_options) {
  parent::buildExportOptionsForm($form, $form_state, $export_options);
  if (isset($form['likert'])) {
    return;
  }
  $form['likert'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Likert questions and answers options'),
    '#open' => TRUE,
    '#weight' => -10,
  ];
  $form['likert']['likert_answers_format'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Answers format'),
    '#options' => [
      'label' => $this
        ->t('Answer labels, the human-readable value (label)'),
      'key' => $this
        ->t('Answer keys, the raw value stored in the database (key)'),
    ],
    '#default_value' => $export_options['likert_answers_format'],
  ];
}