$files->has()
Checks if the given object or id is in the collection
$files->has(string|object $id): bool
Parameters
Name | Type | Default |
---|---|---|
$id * | string |object |
– |
Return type
bool
Parent class
Kirby\Cms\Files
inherited from Kirby\Cms\Collection
<?php if($page->files()->has('myimage.jpg')): ?>
There exists a file with the filename `myimage.jpg`
<?php endif ?>