1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 |
public function tree($path) {
}
private function generateTree($path, $files = false) {
$folder = new Folder();
$tree = $folder->tree($path, true, $files ? 'file' : 'dir');
foreach ($tree as $current_path) {
if ($current_path == $path) continue;
}
return $t;
}
private function nest($paths, $files) {
if ($count > 1) {
} else {
}
} |
