You are here

public function SessionWorkspaceNegotiator::setActiveWorkspace in Workspace 8.2

Sets the negotiated workspace.

Parameters

\Drupal\workspace\WorkspaceInterface $workspace: The workspace entity.

Overrides WorkspaceNegotiatorInterface::setActiveWorkspace

File

src/Negotiator/SessionWorkspaceNegotiator.php, line 77

Class

SessionWorkspaceNegotiator
Defines the session workspace negotiator.

Namespace

Drupal\workspace\Negotiator

Code

public function setActiveWorkspace(WorkspaceInterface $workspace) {
  $this->session
    ->set('active_workspace_id', $workspace
    ->id());
}