function views_handler::can_expose

3.x handlers.inc views_handler::can_expose()
2.x 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 495
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 can_expose() {
  return FALSE;
}