Neos\ContentRepository\Domain\Service\ImportExport\NodeImportService::getCurrentPath PHP Méthode

getCurrentPath() protected méthode

Provides the path for a NodeData according to the current stacks
protected getCurrentPath ( ) : string
Résultat string
    protected function getCurrentPath()
    {
        $path = implode('/', $this->nodeNameStack);
        return $path === '' ? '/' : $path;
    }