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