You are here

public function views_handler_filter::operator_options in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_filter.inc \views_handler_filter::operator_options()
  2. 6.2 handlers/views_handler_filter.inc \views_handler_filter::operator_options()

Provide a list of options for the default operator form.

Should be overridden by classes that don't override operator_form.

3 calls to views_handler_filter::operator_options()
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::expose_form in handlers/views_handler_filter.inc
Options form subform for exposed filter options.
views_handler_filter::operator_form in handlers/views_handler_filter.inc
Options form subform for setting the operator.
4 methods override views_handler_filter::operator_options()
views_handler_filter_equality::operator_options in handlers/views_handler_filter_equality.inc
Provide simple equality operator.
views_handler_filter_in_operator::operator_options in handlers/views_handler_filter_in_operator.inc
Build strings from the operators() for 'select' options.
views_handler_filter_numeric::operator_options in handlers/views_handler_filter_numeric.inc
Provide a list of all the numeric operators
views_handler_filter_string::operator_options in handlers/views_handler_filter_string.inc
Build strings from the operators() for 'select' options.

File

handlers/views_handler_filter.inc, line 339
Definitions of views_handler_filter and views_handler_filter_broken.

Class

views_handler_filter
Base class for filters.

Code

public function operator_options() {
  return array();
}