Jackalope\ObjectManager::isNodeMoved PHP Метод

isNodeMoved() публичный Метод

This is a simplistic check to be used by the Node to determine if it should not show one of the children the backend told it would exist.
См. также: Node::__construct
public isNodeMoved ( string $absPath ) : boolean
$absPath string The absolute path of the node
Результат boolean true if the node has an unsaved move operation, false otherwise
    public function isNodeMoved($absPath)
    {
        return array_key_exists($absPath, $this->nodesMove);
    }