function ForumManager::__construct
Same name in other branches
- 9 core/modules/forum/src/ForumManager.php \Drupal\forum\ForumManager::__construct()
- 8.9.x core/modules/forum/src/ForumManager.php \Drupal\forum\ForumManager::__construct()
- 11.x core/modules/forum/src/ForumManager.php \Drupal\forum\ForumManager::__construct()
Constructs the forum manager service.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory service.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.
\Drupal\Core\Database\Connection $connection: The current database connection.
\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The translation manager service.
\Drupal\comment\CommentManagerInterface $comment_manager: The comment manager service.
\Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager: The entity field manager.
File
-
core/
modules/ forum/ src/ ForumManager.php, line 134
Class
- ForumManager
- Provides forum manager service.
Namespace
Drupal\forumCode
public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager, Connection $connection, TranslationInterface $string_translation, CommentManagerInterface $comment_manager, EntityFieldManagerInterface $entity_field_manager) {
$this->configFactory = $config_factory;
$this->entityTypeManager = $entity_type_manager;
$this->connection = $connection;
$this->stringTranslation = $string_translation;
$this->commentManager = $comment_manager;
$this->entityFieldManager = $entity_field_manager;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.