public function NullDestination::fields in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/src/Plugin/migrate/destination/NullDestination.php \Drupal\migrate\Plugin\migrate\destination\NullDestination::fields()
Returns an array of destination fields.
Derived classes must implement fields(), returning a list of available destination fields.
@todo Review the cases where we need the Migration parameter, can we avoid that?
Parameters
\Drupal\migrate\Entity\MigrationInterface $migration: (optional) the migration containing this destination.
Return value
array
- Keys: machine names of the fields
- Values: Human-friendly descriptions of the fields.
Overrides MigrateDestinationInterface::fields
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ destination/ NullDestination.php, line 31 - Contains \Drupal\migrate\Plugin\migrate\destination\NullDestination.
Class
- NullDestination
- Plugin annotation @MigrateDestination( id = "null", requirements_met = false )
Namespace
Drupal\migrate\Plugin\migrate\destinationCode
public function fields(MigrationInterface $migration = NULL) {
return array();
}