You are here

public function DebugWebformHandler::buildConfigurationForm in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformHandler/DebugWebformHandler.php \Drupal\webform\Plugin\WebformHandler\DebugWebformHandler::buildConfigurationForm()

Form constructor.

Plugin forms are embedded in other forms. In order to know where the plugin form is located in the parent form, #parents and #array_parents must be known, but these are not available during the initial build phase. In order to have these properties available when building the plugin form's elements, let this method return a form element that has a #process callback and build the rest of the form in the callback. By the time the callback is executed, the element's #parents and #array_parents properties will have been set by the form API. For more documentation on #parents and #array_parents, see \Drupal\Core\Render\Element\FormElement.

Parameters

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

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().

Return value

array The form structure.

Overrides WebformHandlerBase::buildConfigurationForm

File

src/Plugin/WebformHandler/DebugWebformHandler.php, line 91

Class

DebugWebformHandler
Webform submission debug handler.

Namespace

Drupal\webform\Plugin\WebformHandler

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $form['debug_settings'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Debug settings'),
  ];
  $form['debug_settings']['format'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Data format'),
    '#options' => [
      static::FORMAT_YAML => $this
        ->t('YAML'),
      static::FORMAT_JSON => $this
        ->t('JSON'),
    ],
    '#default_value' => $this->configuration['format'],
  ];
  $form['debug_settings']['submission'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Include submission properties'),
    '#description' => $this
      ->t('If checked, all submission properties and values  will be included in the displayed debug information. This includes sid, created, updated, completed, and more.'),
    '#return_value' => TRUE,
    '#default_value' => $this->configuration['submission'],
  ];
  return $this
    ->setSettingsParents($form);
}