public function PrivateContent::fields in Private 8
Same name in this branch
- 8 src/Plugin/migrate/source/d6/PrivateContent.php \Drupal\private_content\Plugin\migrate\source\d6\PrivateContent::fields()
- 8 src/Plugin/migrate/destination/d6/PrivateContent.php \Drupal\private_content\Plugin\migrate\destination\d6\PrivateContent::fields()
Same name and namespace in other branches
- 8.2 src/Plugin/migrate/destination/d6/PrivateContent.php \Drupal\private_content\Plugin\migrate\destination\d6\PrivateContent::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/ d6/ PrivateContent.php, line 35
Class
- PrivateContent
- Imports per node private settings.
Namespace
Drupal\private_content\Plugin\migrate\destination\d6Code
public function fields(MigrationInterface $migration = NULL) {
return [
'nid' => 'The nid',
];
}