You are here

public function Fields::submitOptionsForm in Views (for Drupal 7) 8.3

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

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