Skip to content

Kirby 5.0.4

$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\Filesornull null

Return types

Kirby\Cms\Fileornull

This method does not modify the existing $file object but returns a new object with the changes applied. Learn more →

Parent class

Kirby\Cms\File

Examples

if (($file = $page->file('my-file.pdf')) && $next = $file->next()):
    echo 'Next file: ' . $next->filename();
endif;