You are here

protected function TableRowSpan::defineOptions in Views Table Rowspan 8

@inheritdoc

Overrides Table::defineOptions

File

src/Plugin/views/style/TableRowSpan.php, line 25

Class

TableRowSpan
Style plugin to merge duplicate row in table.

Namespace

Drupal\views_table_rowspan\Plugin\views\style

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['rowspan'] = [
    'default' => TRUE,
  ];
  return $options;
}