$files->has()
Checks if the given object or id is in the collection
$files->has(string|Kirby\Cms\File $key): bool
Parameters
Name | Type | Default |
---|---|---|
$keyrequired | string orKirby\Cms\File |
no default value |
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 ?>