summaryrefslogtreecommitdiff
path: root/sites/all/modules/views/modules/translation/views_handler_filter_node_tnid_child.inc
blob: 51316eb332bec48ff0a21672be60442f6834d26f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

/**
 * @file
 * Definition of views_handler_filter_node_tnid_child.
 */

/**
 * Filter by whether the node is not the original translation.
 *
 * @ingroup views_filter_handlers
 */
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_expression($this->options['group'], "$table.tnid <> $table.nid AND $table.tnid > 0");
  }
}