WorkspaceManagerInterface.php

Same filename and directory in other branches
  1. 9 core/modules/workspaces/src/WorkspaceManagerInterface.php
  2. 8.9.x core/modules/workspaces/src/WorkspaceManagerInterface.php
  3. 10 core/modules/workspaces/src/WorkspaceManagerInterface.php

Namespace

Drupal\workspaces

File

core/modules/workspaces/src/WorkspaceManagerInterface.php

View source
<?php

namespace Drupal\workspaces;


/**
 * Provides an interface for managing Workspaces.
 */
interface WorkspaceManagerInterface {
  
  /**
   * Determines whether a workspace is active in the current request.
   *
   * @return bool
   *   TRUE if a workspace is active, FALSE otherwise.
   */
  public function hasActiveWorkspace();
  
  /**
   * Gets the active workspace.
   *
   * @return \Drupal\workspaces\WorkspaceInterface
   *   The active workspace entity object.
   */
  public function getActiveWorkspace();
  
  /**
   * Sets the active workspace.
   *
   * @param \Drupal\workspaces\WorkspaceInterface $workspace
   *   The workspace to set as active.
   * phpcs:ignore
   * @param bool $persist
   *   (optional) Whether to persist this workspace in the first applicable
   *   negotiator. Defaults to TRUE.
   *
   * @return $this
   *
   * @throws \Drupal\workspaces\WorkspaceAccessException
   *   Thrown when the current user doesn't have access to view the workspace.
   */
  public function setActiveWorkspace(WorkspaceInterface $workspace);
  
  /**
   * Unsets the active workspace.
   *
   * @return $this
   */
  public function switchToLive();
  
  /**
   * Executes the given callback function in the context of a workspace.
   *
   * @param string $workspace_id
   *   The ID of a workspace.
   * @param callable $function
   *   The callback to be executed.
   *
   * @return mixed
   *   The callable's return value.
   */
  public function executeInWorkspace($workspace_id, callable $function);
  
  /**
   * Executes the given callback function without any workspace context.
   *
   * @param callable $function
   *   The callback to be executed.
   *
   * @return mixed
   *   The callable's return value.
   */
  public function executeOutsideWorkspace(callable $function);
  
  /**
   * Deletes the revisions associated with deleted workspaces.
   */
  public function purgeDeletedWorkspacesBatch();

}

Interfaces

Title Deprecated Summary
WorkspaceManagerInterface Provides an interface for managing Workspaces.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.