You are here

function views_plugin_display::use_group_by in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 plugins/views_plugin_display.inc \views_plugin_display::use_group_by()

Does the display have groupby enabled?

1 call to views_plugin_display::use_group_by()
views_plugin_display::get_handlers in plugins/views_plugin_display.inc
Get a full array of handlers for $type. This caches them.

File

plugins/views_plugin_display.inc, line 298
Contains the base display plugin.

Class

views_plugin_display
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Code

function use_group_by() {
  return $this
    ->get_option('group_by');
}