You are here

public function WorkspaceManager::__construct in Drupal 9

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

Constructs a new WorkspaceManager.

Parameters

\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.

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

\Drupal\Core\Cache\MemoryCache\MemoryCacheInterface $entity_memory_cache: The entity memory cache service.

\Drupal\Core\Session\AccountProxyInterface $current_user: The current user.

\Drupal\Core\State\StateInterface $state: The state service.

\Psr\Log\LoggerInterface $logger: A logger instance.

\Drupal\Core\DependencyInjection\ClassResolverInterface $class_resolver: The class resolver.

\Drupal\workspaces\WorkspaceAssociationInterface $workspace_association: The workspace association service.

array $negotiator_ids: The workspace negotiator service IDs.

File

core/modules/workspaces/src/WorkspaceManager.php, line 125

Class

WorkspaceManager
Provides the workspace manager.

Namespace

Drupal\workspaces

Code

public function __construct(RequestStack $request_stack, EntityTypeManagerInterface $entity_type_manager, MemoryCacheInterface $entity_memory_cache, AccountProxyInterface $current_user, StateInterface $state, LoggerInterface $logger, ClassResolverInterface $class_resolver, WorkspaceAssociationInterface $workspace_association, array $negotiator_ids) {
  $this->requestStack = $request_stack;
  $this->entityTypeManager = $entity_type_manager;
  $this->entityMemoryCache = $entity_memory_cache;
  $this->currentUser = $current_user;
  $this->state = $state;
  $this->logger = $logger;
  $this->classResolver = $class_resolver;
  $this->workspaceAssociation = $workspace_association;
  $this->negotiatorIds = $negotiator_ids;
}