Method |
Description |
|
discardAllNodes ( Workspace $workspace ) : void |
Discards all unpublished nodes of the given workspace. |
|
discardNode ( Neos\ContentRepository\Domain\Model\NodeInterface $node ) : void |
Discards the given node. |
|
discardNodes ( array $nodes ) : void |
Discards the given nodes. |
|
getUnpublishedNodes ( Workspace $workspace ) : array<\Neos\ContentRepository\Domain\Model\NodeInterface> |
Returns a list of nodes contained in the given workspace which are not yet published |
|
getUnpublishedNodesCount ( Workspace $workspace ) : integer |
Returns the number of unpublished nodes contained in the given workspace |
|
publishNode ( Neos\ContentRepository\Domain\Model\NodeInterface $node, Workspace $targetWorkspace = null ) : void |
Publishes the given node to the specified target workspace. If no workspace is specified, "live" is assumed. |
|
publishNodes ( array $nodes, Workspace $targetWorkspace = null ) : void |
Publishes the given nodes to the specified target workspace. If no workspace is specified, "live" is assumed. |
|