function views_handler::can_expose
Same name in other branches
- 7.x-3.x includes/handlers.inc \views_handler::can_expose()
Determine if a handler can be exposed.
2 methods override views_handler::can_expose()
- views_handler_filter::can_expose in handlers/
views_handler_filter.inc - Determine if a filter can be exposed.
- views_handler_sort::can_expose in handlers/
views_handler_sort.inc - Determine if a sort can be exposed.
File
-
includes/
handlers.inc, line 458
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 can_expose() {
return FALSE;
}