Neos\Neos\Service\Controller\NodeController::processNodeForEditorPlugins PHP Метод

processNodeForEditorPlugins() защищенный Метод

Returns an array with the data needed by for example the Hallo and Aloha link plugins to represent the passed Node instance.
protected processNodeForEditorPlugins ( Neos\ContentRepository\Domain\Model\NodeInterface $node ) : array
$node Neos\ContentRepository\Domain\Model\NodeInterface
Результат array
    protected function processNodeForEditorPlugins(NodeInterface $node)
    {
        return array('id' => $node->getPath(), 'name' => $node->getLabel(), 'url' => $this->uriBuilder->uriFor('show', array('node' => $node), 'Frontend\\Node', 'Neos.Neos'), 'type' => 'neos/internal-link');
    }