You are here

public function Overview::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/forum/src/Form/Overview.php \Drupal\forum\Form\Overview::__construct()

Constructs a \Drupal\forum\Form\OverviewForm object.

Parameters

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler service.

\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager service.

Overrides OverviewTerms::__construct

File

core/modules/forum/src/Form/Overview.php, line 38
Contains \Drupal\forum\Form\Overview.

Class

Overview

Namespace

Drupal\forum\Form

Code

public function __construct(ModuleHandlerInterface $module_handler, EntityManagerInterface $entity_manager) {
  parent::__construct($module_handler, $entity_manager);
  $this->entityManager = $entity_manager;
}