public function FieldOverview::__construct

Constructs a new DisplayOverview.

Parameters

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

\Drupal\field\Plugin\Type\Widget\WidgetPluginManager $widget_manager: The widget plugin manager.

Overrides OverviewBase::__construct

File

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

Class

FieldOverview
Field UI field overview form.

Namespace

Drupal\field_ui

Code

public function __construct(EntityManager $entity_manager, WidgetPluginManager $widget_manager) {
  parent::__construct($entity_manager);
  $this->widgetManager = $widget_manager;
}