getPublishableNodeInfo() 공개 메소드

Get all publishable node context paths for a workspace
public getPublishableNodeInfo ( TYPO3\TYPO3CR\Domain\Model\Workspace $workspace ) : array
$workspace TYPO3\TYPO3CR\Domain\Model\Workspace
리턴 array
예제 #1
0
 /**
  * Serialize the payload for this feedback
  *
  * @return mixed
  */
 public function serializePayload(ControllerContext $controllerContext)
 {
     return ['documentContextPath' => $this->getDocument()->getContextPath(), 'workspaceName' => $this->getDocument()->getContext()->getWorkspace()->getName(), 'workspaceInfo' => $this->workspaceService->getPublishableNodeInfo($this->getDocument()->getContext()->getWorkspace())];
 }
예제 #2
0
 public function getPublishableNodeInfo(Workspace $workspace)
 {
     return $this->workspaceService->getPublishableNodeInfo($workspace);
 }