You are here

public function Sql::submitOptionsForm in Zircon Profile 8.0

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 242
Contains \Drupal\views\Plugin\views\query\Sql.

Class

Sql
Views query plugin for an SQL query.

Namespace

Drupal\views\Plugin\views\query

Code

public function submitOptionsForm(&$form, FormStateInterface $form_state) {
  $element = array(
    '#parents' => array(
      '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);
}