Neos\ContentRepository\Domain\Service\Cache\FirstLevelNodeCache::getChildNodesByPathAndNodeTypeFilter PHP Метод

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

Returns the cached child nodes for the given path and node type filter.
public getChildNodesByPathAndNodeTypeFilter ( string $path, string $nodeTypeFilter ) : boolean
$path string
$nodeTypeFilter string
Результат boolean
    public function getChildNodesByPathAndNodeTypeFilter($path, $nodeTypeFilter)
    {
        if (isset($this->childNodesByPathAndNodeTypeFilter[$path][$nodeTypeFilter])) {
            return $this->childNodesByPathAndNodeTypeFilter[$path][$nodeTypeFilter];
        }
        return false;
    }