You are here

public function GatherContentEntity::__construct in GatherContent 8.5

Constructs a content entity.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\migrate\Plugin\MigrationInterface $migration: The migration entity.

\Drupal\Core\Entity\EntityStorageInterface $storage: The storage for this entity type.

array $bundles: The list of bundles this entity type has.

\Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager: The entity field manager.

\Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_manager: The field type plugin manager service.

Overrides EntityContentBase::__construct

File

src/Plugin/migrate/destination/GatherContentEntity.php, line 42

Class

GatherContentEntity
Custom migrate entity.

Namespace

Drupal\gathercontent\Plugin\migrate\destination

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, EntityStorageInterface $storage, array $bundles, EntityFieldManagerInterface $entity_manager, FieldTypePluginManagerInterface $field_type_manager, TimeInterface $time, AccountProxyInterface $current_user) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $migration, $storage, $bundles, $entity_manager, $field_type_manager);
  $this->time = $time;
  $this->currentUser = $current_user;
}