You are here

public function PhotosImage::fields in Album Photos 8.5

Same name in this branch
  1. 8.5 src/Plugin/migrate/source/PhotosImage.php \Drupal\photos\Plugin\migrate\source\PhotosImage::fields()
  2. 8.5 src/Plugin/migrate/destination/PhotosImage.php \Drupal\photos\Plugin\migrate\destination\PhotosImage::fields()
Same name and namespace in other branches
  1. 8.4 src/Plugin/migrate/destination/PhotosImage.php \Drupal\photos\Plugin\migrate\destination\PhotosImage::fields()
  2. 6.0.x src/Plugin/migrate/destination/PhotosImage.php \Drupal\photos\Plugin\migrate\destination\PhotosImage::fields()

Returns an array of destination fields.

Derived classes must implement fields(), returning a list of available destination fields.

Parameters

\Drupal\migrate\Plugin\MigrationInterface $migration: Unused, will be removed before Drupal 9.0.x. Defaults to NULL.

Return value

array

  • Keys: machine names of the fields
  • Values: Human-friendly descriptions of the fields.

Overrides MigrateDestinationInterface::fields

File

src/Plugin/migrate/destination/PhotosImage.php, line 197

Class

PhotosImage
Photos image migration destination.

Namespace

Drupal\photos\Plugin\migrate\destination

Code

public function fields(MigrationInterface $migration = NULL) {
  return [
    'target_id' => $this
      ->t('Image file ID'),
    'album_id' => $this
      ->t('Photos Album node ID'),
    'title' => $this
      ->t('Image title'),
    'description' => $this
      ->t('Image description'),
    'weight' => $this
      ->t('Weight'),
    'value' => $this
      ->t('Image views count'),
  ];
}