views_handler_filter_node_tnid_child.inc

Same filename in other branches
  1. 6.x-3.x modules/translation/views_handler_filter_node_tnid_child.inc

Definition of views_handler_filter_node_tnid_child.

File

modules/translation/views_handler_filter_node_tnid_child.inc

View source
<?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 {
    
    /**
     * {@inheritdoc}
     */
    public function admin_summary() {
    }
    
    /**
     * {@inheritdoc}
     */
    public function operator_form(&$form, &$form_state) {
    }
    
    /**
     * {@inheritdoc}
     */
    public function can_expose() {
        return FALSE;
    }
    
    /**
     * {@inheritdoc}
     */
    public function query() {
        $table = $this->ensure_my_table();
        $this->query
            ->add_where_expression($this->options['group'], "{$table}.tnid <> {$table}.nid AND {$table}.tnid > 0");
    }

}

Classes

Title Deprecated Summary
views_handler_filter_node_tnid_child Filter by whether the node is not the original translation.