You are here

public static function EntityDisplayRebuilder::create in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/field/src/EntityDisplayRebuilder.php \Drupal\field\EntityDisplayRebuilder::create()
  2. 9 core/modules/field/src/EntityDisplayRebuilder.php \Drupal\field\EntityDisplayRebuilder::create()

File

core/modules/field/src/EntityDisplayRebuilder.php, line 60

Class

EntityDisplayRebuilder
Rebuilds all form and view modes for a passed entity bundle.

Namespace

Drupal\field

Code

public static function create(ContainerInterface $container) {
  return new static($container
    ->get('entity_type.manager'), $container
    ->get('entity_display.repository'), $container
    ->get('entity_type.bundle.info'));
}