WorkspacePublisherInterface.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\workspacesFile
core/modules/workspaces/src/WorkspacePublisherInterface.phpView source
<?php
namespace Drupal\workspaces;
/**
* Defines an interface for the workspace publisher.
*
* @internal
*/
interface WorkspacePublisherInterface extends WorkspaceOperationInterface {
/**
* Publishes the contents of a workspace to the default (Live) workspace.
*/
public function publish();
}
Interfaces
Name | Description |
---|---|
WorkspacePublisherInterface | Defines an interface for the workspace publisher. |