function Upload::fields

Same name in other branches
  1. 9 core/modules/file/src/Plugin/migrate/source/d6/Upload.php \Drupal\file\Plugin\migrate\source\d6\Upload::fields()
  2. 8.9.x core/modules/file/src/Plugin/migrate/source/d6/Upload.php \Drupal\file\Plugin\migrate\source\d6\Upload::fields()
  3. 10 core/modules/file/src/Plugin/migrate/source/d6/Upload.php \Drupal\file\Plugin\migrate\source\d6\Upload::fields()

Overrides MigrateSourceInterface::fields

File

core/modules/file/src/Plugin/migrate/source/d6/Upload.php, line 57

Class

Upload
Drupal 6 upload source from database.

Namespace

Drupal\file\Plugin\migrate\source\d6

Code

public function fields() {
    return [
        'fid' => $this->t('The file Id.'),
        'nid' => $this->t('The node Id.'),
        'vid' => $this->t('The version Id.'),
        'type' => $this->t('The node type'),
        'language' => $this->t('The node language.'),
        'description' => $this->t('The file description.'),
        'list' => $this->t('Whether the list should be visible on the node page.'),
        'weight' => $this->t('The file weight.'),
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.