Home
last modified time | relevance | path

Searched refs:PathTreeNode (Results 1 – 3 of 3) sorted by relevance

/plugin/combo/ComboStrap/
H A DPathTreeNode.php5 class PathTreeNode extends TreeNode class
22 public static function buildTreeViaFileSystemChildren(Path $rootSpace = null): PathTreeNode
24 $root = PathTreeNode::createPathTreeNodeFromPath($rootSpace);
33 * @param PathTreeNode $parentPathTreeNode
36 public static function buildTreeFromFileSystemRecursively(PathTreeNode $parentPathTreeNode)
41 $childTreeNode = PathTreeNode::createPathTreeNodeFromPath($childPath);
54 private static function createPathTreeNodeFromPath(Path $path): PathTreeNode
56 return new PathTreeNode($path);
69 * @var PathTreeNode[]
76 $actualNode = PathTreeNode::createPathTreeNodeFromPath($path);
[all …]
H A DPageExplorerTag.php636 $tree = PathTreeNode::buildTreeViaFileSystemChildren($namespacePath);
652 * @param PathTreeNode $pathTreeNode
657 function treeProcessTree(string &$html, PathTreeNode $pathTreeNode, array $data)
677 * @var PathTreeNode[] $children
H A DFileSystems.php288 public static function getTree(Path $path): PathTreeNode
290 return PathTreeNode::buildTreeViaFileSystemChildren($path);