$file->next()
Returns the next item in the collection if available
$file->next(Kirby\Cms\Files|null $collection = null): Kirby\Cms\File|null
Parameters
Name | Type | Default |
---|---|---|
$collection | Kirby\Cms\Files ornull |
null
|
Return types
Kirby\Cms\File
ornull
This method does not modify the existing $file
object but returns a new object with the changes applied. Learn more →
Parent class
Examples
if (($file = $page->file('my-file.pdf')) && $next = $file->next()):
echo 'Next file: ' . $next->filename();
endif;