You are here

public function views_merge_rows_plugin_display_extender::options_form in Views Merge Rows 7

Provide the form to set the rows merge options.

Overrides views_plugin_display_extender::options_form

File

./views_merge_rows_plugin_display_extender.inc, line 129
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_form(&$form, &$form_state) {
  switch ($form_state['section']) {
    case 'views_merge_rows':
      $this
        ->views_merge_rows_options_form($form, $form_state);
      break;
  }
}