entity_taxonomy-1.0.2/src/Plugin/migrate/source/d6/TermNodeRevision.php
src/Plugin/migrate/source/d6/TermNodeRevision.php
<?php
namespace Drupal\entity_taxonomy\Plugin\migrate\source\d6;
/**
* Source returning tids from the term_node table for the non-current revision.
*
* @MigrateSource(
* id = "d6_term_node_revision",
* source_module = "entity_taxonomy"
* )
*/
class TermNodeRevision extends TermNode {
/**
* {@inheritdoc}
*/
const JOIN = 'tn.nid = n.nid AND tn.vid != n.vid';
}
