You are here

public function Serializer::submitOptionsForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/rest/src/Plugin/views/style/Serializer.php \Drupal\rest\Plugin\views\style\Serializer::submitOptionsForm()
  2. 9 core/modules/rest/src/Plugin/views/style/Serializer.php \Drupal\rest\Plugin\views\style\Serializer::submitOptionsForm()

Handle any special handling on the validate form.

Overrides PluginBase::submitOptionsForm

File

core/modules/rest/src/Plugin/views/style/Serializer.php, line 111

Class

Serializer
The style plugin for serialized output formats.

Namespace

Drupal\rest\Plugin\views\style

Code

public function submitOptionsForm(&$form, FormStateInterface $form_state) {
  parent::submitOptionsForm($form, $form_state);
  $formats = $form_state
    ->getValue([
    'style_options',
    'formats',
  ]);
  $form_state
    ->setValue([
    'style_options',
    'formats',
  ], array_filter($formats));
}