You are here

public function YamlFormSignature::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/YamlFormSignature.php, line 119

Class

YamlFormSignature
Provides a 'signature' element.

Namespace

Drupal\yamlform\Plugin\YamlFormElement

Code

public function buildExportOptionsForm(array &$form, FormStateInterface $form_state, array $export_options) {
  if (isset($form['options'])) {
    return;
  }
  $form['signature'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Signature options'),
    '#open' => TRUE,
  ];
  $form['signature']['signature_format'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Signature format'),
    '#options' => [
      'image' => $this
        ->t('Image: The signature\'s <a href=":href">Data URI</a>.', [
        ':href' => 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs',
      ]),
      'status' => $this
        ->t("Status: 'signed' or 'no signed'."),
    ],
    '#default_value' => $export_options['signature_format'],
  ];
}