You are here

function views_handler_filter_node_tnid::operator_options in Views (for Drupal 7) 6.3

Provide a list of options for the default operator form. Should be overridden by classes that don't override operator_form

Overrides views_handler_filter::operator_options

File

modules/translation/views_handler_filter_node_tnid.inc, line 17

Class

views_handler_filter_node_tnid
Filter by whether the node is the original translation.

Code

function operator_options() {
  return array(
    1 => t('Yes'),
    0 => t('No'),
  );
}