You are here

public function views_handler_sort::can_expose in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_sort.inc \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
Definition of views_handler_sort.

Class

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

Code

public function can_expose() {
  return TRUE;
}