function Sql::submitOptionsForm

Special submit handling.

Overrides QueryPluginBase::submitOptionsForm

File

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

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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.