You are here

public function PrivateContentSettings::fields in Private content 8.2

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

Class

PrivateContentSettings
Imports private content type settings.

Namespace

Drupal\private_content\Plugin\migrate\destination\d6

Code

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