public function PhotosComment::fields in Album Photos 8.4
Same name in this branch
- 8.4 src/Plugin/migrate/source/PhotosComment.php \Drupal\photos\Plugin\migrate\source\PhotosComment::fields()
- 8.4 src/Plugin/migrate/destination/PhotosComment.php \Drupal\photos\Plugin\migrate\destination\PhotosComment::fields()
Same name and namespace in other branches
- 8.5 src/Plugin/migrate/destination/PhotosComment.php \Drupal\photos\Plugin\migrate\destination\PhotosComment::fields()
- 6.0.x src/Plugin/migrate/destination/PhotosComment.php \Drupal\photos\Plugin\migrate\destination\PhotosComment::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/ PhotosComment.php, line 60
Class
- PhotosComment
- Photos comment migration destination.
Namespace
Drupal\photos\Plugin\migrate\destinationCode
public function fields(MigrationInterface $migration = NULL) {
return [
'fid' => 'File ID',
'cid' => 'Comment ID',
];
}