MediaWiki REL1_34
FileBackendStoreShardFileIterator.php
Go to the documentation of this file.
1<?php
26 protected function listFromShard( $container ) {
27 $list = $this->backend->getFileListInternal(
28 $container, $this->directory, $this->params );
29 if ( $list === null ) {
30 return new ArrayIterator( [] );
31 } else {
32 return is_array( $list ) ? new ArrayIterator( $list ) : $list;
33 }
34 }
35}
listFromShard( $container)
Get the list for a given container shard.
FileBackendStore helper function to handle listings that span container shards.