Jackalope\Transport\TransportInterface::getWeakReferences PHP 메소드

getWeakReferences() 공개 메소드

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
리턴 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