Jackalope\Transport\TransportInterface::getNodeByIdentifier PHP Method

getNodeByIdentifier() public method

Get the node from a uuid. Same data format as getNode, but additionally must have the :jcr:path property.
public getNodeByIdentifier ( string $uuid ) : array
$uuid string the id in JCR format
return array associative array for the node (decoded from json with associative = true)
    public function getNodeByIdentifier($uuid);

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getNodeByIdentifier($uuid)
 {
     $this->logger->startCall(__FUNCTION__, func_get_args(), array('fetchDepth' => $this->transport->getFetchDepth()));
     $result = $this->transport->getNodeByIdentifier($uuid);
     $this->logger->stopCall();
     return $result;
 }
All Usage Examples Of Jackalope\Transport\TransportInterface::getNodeByIdentifier