function views_handler_sort::can_expose

Determine if a sort can be exposed.

Overrides views_handler::can_expose

1 call to views_handler_sort::can_expose()
views_handler_sort::options_form in handlers/views_handler_sort.inc
Basic options for all sort criteria.
1 method overrides views_handler_sort::can_expose()
views_handler_sort_node_language::can_expose in modules/locale/views_handler_sort_node_language.inc
Determine if a sort can be exposed.

File

handlers/views_handler_sort.inc, line 24

Class

views_handler_sort
Base sort handler that has no options and performs a simple sort.

Code

public function can_expose() {
    return TRUE;
}