Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

TermNodeRevision.php

Namespace

Drupal\taxonomy\Plugin\migrate\source\d6

File

core/modules/taxonomy/src/Plugin/migrate/source/d6/TermNodeRevision.php

View source
<?php

namespace Drupal\taxonomy\Plugin\migrate\source\d6;


/**
 * Drupal 6 term/node relationships (non-current revision) source from database.
 *
 * For available configuration keys, refer to the parent classes.
 *
 * @see \Drupal\taxonomy\Plugin\migrate\source\d6\TermNode
 * @see \Drupal\migrate\Plugin\migrate\source\SqlBase
 * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
 *
 * @MigrateSource(
 *   id = "d6_term_node_revision",
 *   source_module = "taxonomy"
 * )
 */
class TermNodeRevision extends TermNode {
    
    /**
     * {@inheritdoc}
     */
    const JOIN = 'tn.nid = n.nid AND tn.vid != n.vid';

}

Classes

Title Deprecated Summary
TermNodeRevision Drupal 6 term/node relationships (non-current revision) source from database.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal