function views_handler::is_exposed
Same name in other branches
- 6.x-3.x includes/handlers.inc \views_handler::is_exposed()
Determine if this item is 'exposed', meaning it provides form elements to let users modify the view.
Return value
bool
2 calls to views_handler::is_exposed()
- views_handler_filter::can_build_group in handlers/
views_handler_filter.inc - Determine if a filter can be converted into a group.
- views_handler_filter::is_a_group in handlers/
views_handler_filter.inc - Returns TRUE if the exposed filter works like a grouped filter.
File
-
includes/
handlers.inc, line 716
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
public function is_exposed() {
return !empty($this->options['exposed']);
}