Skip to content

Kirby 3.5.7.1

$field->toBool()

Converts the field value into a proper boolean

$field->toBool(bool $default = false): bool

Parameters

Name Type Default Description
$default bool false Default value if the field is empty

Return type

bool

Aliases

You can use the following aliases for this field method in your template:

  • $field->bool(…)

Example

<?php if ($page->hasHeader()->toBool()): ?>
<header>
  <!-- Your code here -->
</header>
<?php endif ?>