WorkspaceNegotiatorInterface.php

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

Namespace

Drupal\workspaces\Negotiator

File

core/modules/workspaces/src/Negotiator/WorkspaceNegotiatorInterface.php

View source
<?php

namespace Drupal\workspaces\Negotiator;

use Drupal\workspaces\WorkspaceInterface;
use Symfony\Component\HttpFoundation\Request;

/**
 * Workspace negotiators provide a way to get the active workspace.
 *
 * \Drupal\workspaces\WorkspaceManager acts as the service collector for
 * Workspace negotiators.
 */
interface WorkspaceNegotiatorInterface {
    
    /**
     * Checks whether the negotiator applies to the current request or not.
     *
     * @param \Symfony\Component\HttpFoundation\Request $request
     *   The HTTP request.
     *
     * @return bool
     *   TRUE if the negotiator applies for the current request, FALSE otherwise.
     */
    public function applies(Request $request);
    
    /**
     * Notifies the negotiator that the workspace ID returned has been accepted.
     *
     * @param \Drupal\workspaces\WorkspaceInterface $workspace
     *   The negotiated workspace entity.
     */
    public function setActiveWorkspace(WorkspaceInterface $workspace);
    
    /**
     * Unsets the negotiated workspace.
     */
    public function unsetActiveWorkspace();

}

Interfaces

Title Deprecated Summary
WorkspaceNegotiatorInterface Workspace negotiators provide a way to get the active workspace.

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