You are here

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

Same name and namespace in other branches
  1. 6.2 modules/translation/views_handler_filter_node_tnid.inc \views_handler_filter_node_tnid::operator_form()
  2. 7.3 modules/translation/views_handler_filter_node_tnid.inc \views_handler_filter_node_tnid::operator_form()

Provide simple boolean operator

Overrides views_handler_filter::operator_form

File

modules/translation/views_handler_filter_node_tnid.inc, line 27

Class

views_handler_filter_node_tnid
Filter by whether the node is the original translation.

Code

function operator_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['operator']['#title'] = t('Include untranslated nodes');
}