public function SocialTopicController::__construct in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 8.2 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 8.3 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 8.4 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 8.5 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 8.6 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 8.7 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 8.8 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 10.3.x modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 10.0.x modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 10.1.x modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
- 10.2.x modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::__construct()
SocialTopicController constructor.
Parameters
\Symfony\Component\HttpFoundation\RequestStack $requestStack: The request stack.
\Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager: The entity type manager.
\Drupal\Core\Extension\ModuleHandlerInterface $moduleHandler: The module handler.
File
- modules/
social_features/ social_topic/ src/ Controller/ SocialTopicController.php, line 47
Class
- SocialTopicController
- Returns responses for Social Topic routes.
Namespace
Drupal\social_topic\ControllerCode
public function __construct(RequestStack $requestStack, EntityTypeManagerInterface $entityTypeManager, ModuleHandlerInterface $moduleHandler) {
$this->requestStack = $requestStack;
$this->entityTypeManager = $entityTypeManager;
$this->moduleHandler = $moduleHandler;
}