Full ELMS Learning Network documentation
function views_handler::multiple_exposed_input
cis7 handlers.inc | views_handler::multiple_exposed_input() |
cle7 handlers.inc | views_handler::multiple_exposed_input() |
elmsmedia7 handlers.inc | views_handler::multiple_exposed_input() |
icor7 handlers.inc | views_handler::multiple_exposed_input() |
meedjum_blog7 handlers.inc | views_handler::multiple_exposed_input() |
mooc7 handlers.inc | views_handler::multiple_exposed_input() |
Define if the exposed input has to be submitted multiple times. This is TRUE when exposed filters grouped are using checkboxes as widgets.
1 method overrides views_handler::multiple_exposed_input()
- views_handler_filter::multiple_exposed_input in sites/
all/ modules/ ulmus/ views/ handlers/ views_handler_filter.inc - Returns TRUE if users can select multiple groups items of a grouped exposed filter.
File
- sites/
all/ modules/ ulmus/ views/ includes/ handlers.inc, line 684 - 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 multiple_exposed_input() {
return FALSE;
}