Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / taxonomy / src / Plugin / migrate / source / d6 / TermNodeRevision.php
1 <?php
2
3 namespace Drupal\taxonomy\Plugin\migrate\source\d6;
4
5 /**
6  * Source returning tids from the term_node table for the non-current revision.
7  *
8  * @MigrateSource(
9  *   id = "d6_term_node_revision"
10  * )
11  */
12 class TermNodeRevision extends TermNode {
13
14   /**
15    * {@inheritdoc}
16    */
17   const JOIN = 'tn.nid = n.nid AND tn.vid != n.vid';
18
19 }