You are here

views_handler_filter_node_tnid_child.inc in Views (for Drupal 7) 6.2

File

modules/translation/views_handler_filter_node_tnid_child.inc
View source
<?php

/**
 * Filter by whether the node is not the original translation.
 */
class views_handler_filter_node_tnid_child extends views_handler_filter {
  function admin_summary() {
  }
  function operator_form(&$form, &$form_state) {
  }
  function can_expose() {
    return FALSE;
  }
  function query() {
    $table = $this
      ->ensure_my_table();
    $this->query
      ->add_where($this->options['group'], "{$table}.tnid <> {$table}.nid AND {$table}.tnid > 0");
  }

}

Classes

Namesort descending Description
views_handler_filter_node_tnid_child Filter by whether the node is not the original translation.