You are here

public function SocialCoreController::__construct in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
  2. 8.7 modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
  3. 10.3.x modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
  4. 10.0.x modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
  5. 10.1.x modules/social_features/social_core/src/Controller/SocialCoreController.php \Drupal\social_core\Controller\SocialCoreController::__construct()
  6. 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 43

Class

SocialCoreController
Returns responses for social_core module routes.

Namespace

Drupal\social_core\Controller

Code

public function __construct(PrivateTempStoreFactory $tempStoreFactory, ViewsBulkOperationsActionProcessorInterface $actionProcessor) {
  $this->tempStoreFactory = $tempStoreFactory;
  $this->actionProcessor = $actionProcessor;
}