You are here

public function WorkspaceManagerInterface::executeOutsideWorkspace in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/workspaces/src/WorkspaceManagerInterface.php \Drupal\workspaces\WorkspaceManagerInterface::executeOutsideWorkspace()

Executes the given callback function without any workspace context.

Parameters

callable $function: The callback to be executed.

Return value

mixed The callable's return value.

1 method overrides WorkspaceManagerInterface::executeOutsideWorkspace()
WorkspaceManager::executeOutsideWorkspace in core/modules/workspaces/src/WorkspaceManager.php
Executes the given callback function without any workspace context.

File

core/modules/workspaces/src/WorkspaceManagerInterface.php, line 89

Class

WorkspaceManagerInterface
Provides an interface for managing Workspaces.

Namespace

Drupal\workspaces

Code

public function executeOutsideWorkspace(callable $function);