setDocumentNode() публичный Метод

Set the document
public setDocumentNode ( TYPO3\TYPO3CR\Domain\Model\NodeInterface $document ) : void
$document TYPO3\TYPO3CR\Domain\Model\NodeInterface
Результат void
Пример #1
0
 /**
  * Inform the client that a node has been created, the client decides if and which tree should react to this change.
  *
  * @return void
  */
 protected function addDocumentNodeCreatedFeedback()
 {
     $nodeService = new NodeService();
     $node = $nodeService->getClosestDocument($this->getSubject());
     if ($nodeService->isDocument($node)) {
         $documentNodeCreated = new DocumentNodeCreated();
         $documentNodeCreated->setDocumentNode($node);
         $this->feedbackCollection->add($documentNodeCreated);
     }
 }