You are here

public function views_merge_rows_plugin_display_extender::options_submit in Views Merge Rows 7

Saves the row merge options.

Overrides views_plugin_display_extender::options_submit

File

./views_merge_rows_plugin_display_extender.inc, line 140
Contains the class to extend views display with rows merge functionality.

Class

views_merge_rows_plugin_display_extender
The plugin that merges rows with the same content in the specified fields.

Code

public function options_submit(&$form, &$form_state) {
  switch ($form_state['section']) {
    case 'views_merge_rows':
      $this
        ->views_merge_rows_options_form_submit($form, $form_state);
      break;
  }
}