$file->next()
Returns the next item in the collection if available
$file->next(\Kirby\Cms\Collection|null $collection = null): Kirby\Cms\Model|null
Parameters
Name | Type | Default |
---|---|---|
$collection | Kirby\Cms\Collection |null |
null |
Return type
Kirby\Cms\Model
|null
Parent class
Example
if(($file = $page->file('my-file.pdf')) && $next = $file->next()):
echo 'Next file: ' . $next->filename();
endif;