$files->sortBy()
Alias for Kirby\Toolkit\Collection::sort
$files->sortBy($args = null): Kirby\Cms\Files
Parameters
Name | Type | Default |
---|---|---|
$args | mixed |
null |
Return type
This method does not modify the existing $files
object but returns a new object with the changes applied. Learn more →
Parent class
Kirby\Cms\Files
inherited from Kirby\Toolkit\Collection
<ul>
<?php foreach($page->files()->sortBy('modified', 'desc') as $file): ?>
<li>
<a href="<?= $file->url() ?>">
<?= html($file->filename()) ?>
</a>
</li>
<?php endforeach ?>
</ul>