public function DynamicLayoutListBuilder::__construct in Dynamic Layouts 8
Constructs a new LanguageListBuilder object.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.
\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage handler class.
\Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager: The entity type manager.
Overrides EntityListBuilder::__construct
File
- src/
DynamicLayoutListBuilder.php, line 59
Class
- DynamicLayoutListBuilder
- Defines a class to build a listing of user Dynamic Layouts.
Namespace
Drupal\dynamic_layoutsCode
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, EntityTypeManagerInterface $entityTypeManager) {
parent::__construct($entity_type, $storage);
$this->entityTypeManager = $entityTypeManager;
}