public function Fields::submitOptionsForm

Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.

Overrides RowPluginBase::submitOptionsForm

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/row/Fields.php, line 105
Definition of Drupal\views\Plugin\views\row\Fields.

Class

Fields
The basic 'fields' row plugin

Namespace

Drupal\views\Plugin\views\row

Code

public function submitOptionsForm(&$form, &$form_state) {
  $form_state['values']['row_options']['inline'] = array_filter($form_state['values']['row_options']['inline']);
}