Skip to content

Kirby 5.0.4

$field->toFiles()

Returns a file collection from a yaml list of filenames in the field

$field->toFiles(string $separator = 'yaml'): Kirby\Cms\Files

Parameters

Name Type Default
$separator string 'yaml'

Return type

Kirby\Cms\Files

This method modifies the existing $field object it is applied to and returns it again.

Examples

<?php foreach ($page->gallery()->toFiles() as $image): ?>
  <img src="<?= $image->url() ?>" alt="<?= $image->alt() ?>">
<?php endif ?>