Jackalope\ObjectManager::getWeakReferences PHP 메소드

getWeakReferences() 공개 메소드

Returns all accessible WEAKREFERENCE properties in the workspace that point to the node
또한 보기: Node::getWeakReferences()
public getWeakReferences ( string $path, string $name = null ) : ArrayIterato\ArrayIterator
$path string the path of the referenced node
$name string name of referring WEAKREFERENCE properties to be returned; if null then all referring WEAKREFERENCEs are returned
리턴 ArrayIterato\ArrayIterator
    public function getWeakReferences($path, $name = null)
    {
        $references = $this->transport->getWeakReferences($this->getFetchPath($path, 'Node'), $name);
        return $this->pathArrayToPropertiesIterator($references);
    }