Jarves\Model\Node::getLinks PHP Method

    public function getLinks($pWithFolders = false)
    {
        if ($this->collNestedGetLinks === null) {
            if (0 < $this->getRgt()) {
                $types = $pWithFolders ? array(0, 1, 2) : array(0, 1);
                $this->collNestedGetLinks = NodeQuery::create()->childrenOf($this)->filterByVisible(1)->filterByType($types)->orderByBranch()->find();
            }
        }
        return $this->collNestedGetLinks;
    }