function NodeRevision::fields
Overrides Node::fields
File
- 
              core/
modules/ node/ src/ Plugin/ migrate/ source/ d7/ NodeRevision.php, line 28  
Class
- NodeRevision
 - Drupal 7 node revision source from database.
 
Namespace
Drupal\node\Plugin\migrate\source\d7Code
public function fields() {
  // Use all the node fields plus the vid that identifies the version.
  return parent::fields() + [
    'vid' => $this->t('The primary identifier for this version.'),
    'log' => $this->t('Revision Log message'),
    'timestamp' => $this->t('Revision timestamp'),
  ];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.