function views_plugin_display::use_group_by
Same name in other branches
- 7.x-3.x 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
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');
}