public Overview::__construct(ModuleHandlerInterface $module_handler, EntityManagerInterface $entity_manager)
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 33
Class
- Overview
- Provides forum overview form for the forum vocabulary.
Namespace
Drupal\forum\Form
Code
1 2 3 4 | public function __construct(ModuleHandlerInterface $module_handler , EntityManagerInterface $entity_manager ) { parent::__construct( $module_handler , $entity_manager ); $this ->entityManager = $entity_manager ; } |
Please login to continue.