| D | Crawler.php | 17 protected $ignore = []; variable in dokuwiki\\plugin\\filelist\\Crawler 31 $this->ignore = $this->loadIgnores(); 163 foreach ($this->ignore as $pattern) { 177 $ignore = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); 178 … $ignore = array_map(static fn($line) => trim(preg_replace('/\s*#.*$/', '', $line)), $ignore); 179 $ignore = array_filter($ignore); 180 return $ignore;
|