You are here

public function EntityImportStatusListBuilder::__construct in Entity Share 8.3

Constructs a new UserListBuilder object.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.

\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info: The entity type bundle info.

\Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager.

Overrides EntityListBuilder::__construct

File

modules/entity_share_client/src/EntityImportStatusListBuilder.php, line 75

Class

EntityImportStatusListBuilder
Provides a listing of Import status entities.

Namespace

Drupal\entity_share_client

Code

public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, DateFormatterInterface $date_formatter, EntityTypeManagerInterface $entity_type_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, LanguageManagerInterface $language_manager) {
  parent::__construct($entity_type, $storage);
  $this->dateFormatter = $date_formatter;
  $this->entityTypeManager = $entity_type_manager;
  $this->entityTypeBundleInfo = $entity_type_bundle_info;
  $this->languageManager = $language_manager;
}