Lines Matching refs:line
39 foreach ($lines as $line) {
40 $line = trim($line);
41 if (empty($line)) {
45 if (str_starts_with($line, 'A>')) {
47 $line = trim(substr($line, 2));
49 $alias = static::cleanPath($line);
52 } elseif (str_starts_with($line, 'W>')) {
54 $line = trim(substr($line, 2));
56 $paths[$lastRoot]['web'] = $line;
59 $line = static::cleanPath($line);
60 $lastRoot = $line;
61 $paths[$line] = [
62 'root' => $line,
63 … 'web' => DOKU_BASE . 'lib/plugins/filelist/file.php?root=' . rawurlencode($line) . '&file=',