Full ELMS Learning Network documentation
function views_handler::use_group_by
cis7 handlers.inc | views_handler::use_group_by() |
cle7 handlers.inc | views_handler::use_group_by() |
elmsmedia7 handlers.inc | views_handler::use_group_by() |
icor7 handlers.inc | views_handler::use_group_by() |
meedjum_blog7 handlers.inc | views_handler::use_group_by() |
mooc7 handlers.inc | views_handler::use_group_by() |
Provides the handler some groupby.
1 method overrides views_handler::use_group_by()
- views_handler_relationship::use_group_by in sites/
all/ modules/ ulmus/ views/ handlers/ views_handler_relationship.inc - You can't groupby a relationship.
File
- sites/
all/ modules/ ulmus/ views/ includes/ handlers.inc, line 422 - Defines the various handler objects to help build and display views.
Class
- views_handler
- Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.
Code
function use_group_by() {
return TRUE;
}