Neos\Neos\Service\Mapping\NodePropertyConverterService::getPropertiesJson PHP Method

getPropertiesJson() public method

Get all properties as JSON encoded string representation
public getPropertiesJson ( Neos\ContentRepository\Domain\Model\NodeInterface $node ) : string
$node Neos\ContentRepository\Domain\Model\NodeInterface
return string
    public function getPropertiesJson(NodeInterface $node)
    {
        return json_encode($this->getPropertiesArray($node));
    }