public function YamlFormCompositeBase::buildExportOptionsForm in YAML Form 8
Get an element's export options form.
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 form.
Overrides YamlFormElementBase::buildExportOptionsForm
File
- src/Plugin/ YamlFormElement/ YamlFormCompositeBase.php, line 530 
Class
- YamlFormCompositeBase
- Provides a base for composite elements.
Namespace
Drupal\yamlform\Plugin\YamlFormElementCode
public function buildExportOptionsForm(array &$form, FormStateInterface $form_state, array $export_options) {
  $form['composite'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Composite element'),
    '#open' => TRUE,
    '#weight' => -10,
  ];
  $form['composite']['composite_element_item_format'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Composite element item format'),
    '#options' => [
      'label' => $this
        ->t('Option labels, the human-readable value (label)'),
      'key' => $this
        ->t('Option values, the raw value stored in the database (key)'),
    ],
    '#default_value' => $export_options['composite_element_item_format'],
  ];
}