You are here

public function CommentAdminOverview::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Form/CommentAdminOverview.php \Drupal\comment\Form\CommentAdminOverview::__construct()
  2. 10 core/modules/comment/src/Form/CommentAdminOverview.php \Drupal\comment\Form\CommentAdminOverview::__construct()

Creates a CommentAdminOverview form.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager service.

\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service.

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

\Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory: The tempstore factory.

File

core/modules/comment/src/Form/CommentAdminOverview.php, line 69

Class

CommentAdminOverview
Provides the comments overview administration form.

Namespace

Drupal\comment\Form

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, DateFormatterInterface $date_formatter, ModuleHandlerInterface $module_handler, PrivateTempStoreFactory $temp_store_factory) {
  $this->entityTypeManager = $entity_type_manager;
  $this->commentStorage = $entity_type_manager
    ->getStorage('comment');
  $this->dateFormatter = $date_formatter;
  $this->moduleHandler = $module_handler;
  $this->tempStoreFactory = $temp_store_factory;
}