public function SocialCoreController::__construct in Open Social 10.1.x
Same name and namespace in other branches
- 8.9 modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
- 8.7 modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
- 8.8 modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
- 10.3.x modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
- 10.0.x modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
- 10.2.x modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
SocialGroupController constructor.
Parameters
\Drupal\Core\TempStore\PrivateTempStoreFactory $tempStoreFactory: Private temporary storage factory.
\Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionProcessorInterface $actionProcessor: Views Bulk Operations action processor.
File
- modules/
social_features/ social_core/ src/ Controller/ SocialCoreController.php, line 44
Class
- SocialCoreController
- Returns responses for social_core module routes.
Namespace
Drupal\social_core\ControllerCode
public function __construct(PrivateTempStoreFactory $tempStoreFactory, ViewsBulkOperationsActionProcessorInterface $actionProcessor) {
$this->tempStoreFactory = $tempStoreFactory;
$this->actionProcessor = $actionProcessor;
}