You are here

public function views_plugin_query_default::options_submit in Views (for Drupal 7) 7.3

Special submit handling.

Overrides views_plugin_query::options_submit

File

plugins/views_plugin_query_default.inc, line 308
Definition of views_plugin_query_default.

Class

views_plugin_query_default
Object used to create a SELECT query.

Code

public function options_submit(&$form, &$form_state) {
  $element = array(
    '#parents' => array(
      'query',
      'options',
      'query_tags',
    ),
  );
  $value = explode(',', drupal_array_get_nested_value($form_state['values'], $element['#parents']));
  $value = array_filter(array_map('trim', $value));
  form_set_value($element, $value, $form_state);
}