public function Node::fields in Drupal 9
Same name in this branch
- 9 core/modules/node/src/Plugin/migrate/source/d6/Node.php \Drupal\node\Plugin\migrate\source\d6\Node::fields()
- 9 core/modules/node/src/Plugin/migrate/source/d7/Node.php \Drupal\node\Plugin\migrate\source\d7\Node::fields()
Same name and namespace in other branches
- 8 core/modules/node/src/Plugin/migrate/source/d7/Node.php \Drupal\node\Plugin\migrate\source\d7\Node::fields()
- 10 core/modules/node/src/Plugin/migrate/source/d7/Node.php \Drupal\node\Plugin\migrate\source\d7\Node::fields()
Returns available fields on the source.
Return value
array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.
Overrides MigrateSourceInterface::fields
1 call to Node::fields()
- NodeRevision::fields in core/modules/ node/ src/ Plugin/ migrate/ source/ d7/ NodeRevision.php 
- Returns available fields on the source.
1 method overrides Node::fields()
- NodeRevision::fields in core/modules/ node/ src/ Plugin/ migrate/ source/ d7/ NodeRevision.php 
- Returns available fields on the source.
File
- core/modules/ node/ src/ Plugin/ migrate/ source/ d7/ Node.php, line 181 
Class
- Node
- Drupal 7 node source from database.
Namespace
Drupal\node\Plugin\migrate\source\d7Code
public function fields() {
  $fields = [
    'nid' => $this
      ->t('Node ID'),
    'type' => $this
      ->t('Type'),
    'title' => $this
      ->t('Title'),
    'node_uid' => $this
      ->t('Node authored by (uid)'),
    'revision_uid' => $this
      ->t('Revision authored by (uid)'),
    'created' => $this
      ->t('Created timestamp'),
    'changed' => $this
      ->t('Modified timestamp'),
    'status' => $this
      ->t('Published'),
    'promote' => $this
      ->t('Promoted to front page'),
    'sticky' => $this
      ->t('Sticky at top of lists'),
    'revision' => $this
      ->t('Create new revision'),
    'language' => $this
      ->t('Language (fr, en, ...)'),
    'tnid' => $this
      ->t('The translation set id for this node'),
    'timestamp' => $this
      ->t('The timestamp the latest revision of this node was created.'),
  ];
  return $fields;
}