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