Lines Matching refs:paths
7 protected $paths = []; variable in dokuwiki\\plugin\\filelist\\Path
14 $this->paths = $this->parsePathConfig($pathConfig);
24 return $this->paths;
36 $paths = [];
48 if (!isset($paths[$lastRoot])) continue; // no last root, no alias
50 $paths[$lastRoot]['alias'] = $alias;
51 $paths[$alias] = &$paths[$lastRoot]; // alias references the original
55 if (!isset($paths[$lastRoot])) continue; // no last path, no web path
56 $paths[$lastRoot]['web'] = $line;
61 $paths[$line] = [
68 return $paths;
83 $paths = $this->paths;
84 if ($paths === []) {
88 $allowed = array_keys($paths);
98 $pathInfo = $paths[$match];