You are here

function panels_views_plugin_row_fields::options_submit in Panels 6.3

Same name and namespace in other branches
  1. 7.3 plugins/views/panels_views_plugin_row_fields.inc \panels_views_plugin_row_fields::options_submit()

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

File

plugins/views/panels_views_plugin_row_fields.inc, line 78
Contains the base row style plugin.

Class

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