Skip to content

Kirby 4.1.2

$users->has()

Checks if the given object or id is in the collection

$users->has(string|object $key): bool

Parameters

Name Type Default
$key * string|object

Return type

bool

Parent class

Kirby\Cms\Users inherited from Kirby\Cms\Collection

<?php if($kirby->users()->has('someone')): ?>
There exists a user with the username `someone`
<?php endif ?>