You are here

NodeTnidChild.php in Views (for Drupal 7) 8.3

File

lib/Views/translation/Plugin/views/filter/NodeTnidChild.php
View source
<?php

/**
 * @file
 * Definition of Views\translation\Plugin\views\filter\NodeTnidChild.
 */
namespace Views\translation\Plugin\views\filter;

use Drupal\views\Plugin\views\filter\FilterPluginBase;
use Drupal\Core\Annotation\Plugin;

/**
 * Filter by whether the node is not the original translation.
 *
 * @ingroup views_filter_handlers
 *
 * @Plugin(
 *   id = "node_tnid_child",
 *   module = "translation"
 * )
 */
class NodeTnidChild extends FilterPluginBase {
  public function adminSummary() {
  }
  function operator_form(&$form, &$form_state) {
  }
  public function canExpose() {
    return FALSE;
  }
  public function query() {
    $table = $this
      ->ensureMyTable();
    $this->query
      ->add_where_expression($this->options['group'], "{$table}.tnid <> {$table}.nid AND {$table}.tnid > 0");
  }

}

Classes

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