You are here

function views_limit_grouping_style_plugin::option_definition in Views Grouping Row Limit 6

Add our option definitions.

File

./views_limit_grouping_style_plugin.inc, line 13
views_grouping_limit_style_plugin.inc Our handler.

Class

views_limit_grouping_style_plugin
@file views_grouping_limit_style_plugin.inc Our handler.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['grouping-limit'] = array(
    'default' => 0,
  );
  $options['grouping-offset'] = array(
    'default' => 0,
  );
  return $options;
}