You are here

public function Sql::submitOptionsForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/query/Sql.php \Drupal\views\Plugin\views\query\Sql::submitOptionsForm()

Special submit handling.

Overrides QueryPluginBase::submitOptionsForm

File

core/modules/views/src/Plugin/views/query/Sql.php, line 327

Class

Sql
Views query plugin for an SQL query.

Namespace

Drupal\views\Plugin\views\query

Code

public function submitOptionsForm(&$form, FormStateInterface $form_state) {
  $element = [
    '#parents' => [
      'query',
      'options',
      'query_tags',
    ],
  ];
  $value = explode(',', NestedArray::getValue($form_state
    ->getValues(), $element['#parents']));
  $value = array_filter(array_map('trim', $value));
  $form_state
    ->setValueForElement($element, $value);
}