Jackalope\Transport\TransportInterface::getWeakReferences PHP Method

getWeakReferences() public method

Returns the path of all accessible WEAKREFERENCE properties in the workspace that point to the node
public getWeakReferences ( string $path, string $name = null ) : array
$path string absolute path to the node we need the references to
$name string name of referring WEAKREFERENCE properties to be returned; if null then all referring WEAKREFERENCEs are returned
return array
    public function getWeakReferences($path, $name = null);

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getWeakReferences($path, $name = null)
 {
     $this->logger->startCall(__FUNCTION__, func_get_args());
     $result = $this->transport->getWeakReferences($path, $name);
     $this->logger->stopCall();
     return $result;
 }
All Usage Examples Of Jackalope\Transport\TransportInterface::getWeakReferences