1 views_plugin_row_fields.inc views_plugin_row_fields::options_submit(&$form, &$form_state)

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

Overrides views_plugin_row::options_submit

File

core/modules/views/plugins/views_plugin_row_fields.inc, line 83
Contains the base row style plugin.

Class

views_plugin_row_fields
The basic 'fields' row plugin

Code

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