ConfigTranslationFieldListBuilder::__construct

public ConfigTranslationFieldListBuilder::__construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, EntityManagerInterface $entity_manager)

Constructs a new ConfigTranslationFieldListBuilder object.

Parameters

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

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

\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager.

Overrides EntityListBuilder::__construct

File

core/modules/config_translation/src/Controller/ConfigTranslationFieldListBuilder.php, line 67

Class

ConfigTranslationFieldListBuilder
Defines the config translation list builder for field entities.

Namespace

Drupal\config_translation\Controller

Code

public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, EntityManagerInterface $entity_manager) {
  parent::__construct($entity_type, $storage);
  $this->entityManager = $entity_manager;
}
doc_Drupal
2016-10-29 08:54:55
Comments
Leave a Comment

Please login to continue.