You are here

function views_plugin_row_sgrid_style::options_submit in Sortable Grid Views Plugin 7

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

./views_plugin_row_sgrid_style.inc, line 58
views_plugin_row_sgrid_style.inc Views row style plugin for Sortable grid module

Class

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