function EntityDisplayModeListBuilder::__construct
Constructs a new EntityDisplayModeListBuilder object.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.
\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.
\Drupal\Core\Entity\EntityTypeInterface[] $entity_types: List of all entity types.
Overrides EntityListBuilder::__construct
File
- 
              core/modules/ field_ui/ src/ EntityDisplayModeListBuilder.php, line 38 
Class
- EntityDisplayModeListBuilder
- Defines a class to build a listing of view mode entities.
Namespace
Drupal\field_uiCode
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, array $entity_types) {
  parent::__construct($entity_type, $storage);
  // Override the default limit (50) in order to display all view modes.
  $this->limit = FALSE;
  $this->entityTypes = $entity_types;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
