You are here

public function PrivateContent::fields in Private content 8.2

Same name in this branch
  1. 8.2 src/Plugin/migrate/source/d6/PrivateContent.php \Drupal\private_content\Plugin\migrate\source\d6\PrivateContent::fields()
  2. 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 36

Class

PrivateContent
Imports per node private settings.

Namespace

Drupal\private_content\Plugin\migrate\destination\d6

Code

public function fields(MigrationInterface $migration = NULL) {
  return [
    'nid' => 'The nid',
  ];
}