public function DisplayOverview::__construct

Constructs a new DisplayOverview.

Parameters

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

\Drupal\field\Plugin\Type\Formatter\FormatterPluginManager $formatter_manager: The formatter plugin manager.

Overrides OverviewBase::__construct

File

drupal/core/modules/field_ui/lib/Drupal/field_ui/DisplayOverview.php, line 35
Contains \Drupal\field_ui\DisplayOverview.

Class

DisplayOverview
Field UI display overview form.

Namespace

Drupal\field_ui

Code

public function __construct(EntityManager $entity_manager, FormatterPluginManager $formatter_manager) {
  parent::__construct($entity_manager);
  $this->formatterManager = $formatter_manager;
}