MediaWiki  1.34.0
FSFileBackendDirList.php
Go to the documentation of this file.
1 <?php
23  protected function filterViaNext() {
24  while ( $this->iter->valid() ) {
25  if ( $this->iter->current()->isDot() || !$this->iter->current()->isDir() ) {
26  $this->iter->next(); // skip non-directories and dot files
27  } else {
28  break;
29  }
30  }
31  }
32 }
FSFileBackendDirList\filterViaNext
filterViaNext()
Filter out items by advancing to the next ones.
Definition: FSFileBackendDirList.php:23
FSFileBackendDirList
Definition: FSFileBackendDirList.php:22
FSFileBackendList
Wrapper around RecursiveDirectoryIterator/DirectoryIterator that catches exception or does any custom...
Definition: FSFileBackendList.php:29