# age-gate/3.7.3/src/Resources/views/admin/partials/fields/checkbox.php

Age Gate, version 3.7.3. 9 lines.

- Page: https://pluginprobe.com/plugins/age-gate/3.7.3/code/src/Resources/views/admin/partials/fields/checkbox.php
- Raw: https://pluginprobe.com/plugins/age-gate/3.7.3/raw/src/Resources/views/admin/partials/fields/checkbox.php
- Modified: 2025-03-27T08:14:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/age-gate/3.7.3/code/src/Resources/views/admin/partials/fields/checkbox.php#L10-L20`.

```php
<?php $this->layout('partials/fields/wrapper', ['field' => $field, 'lang' => $lang ?? false]) ?>

<?php $this->start('input') ?>
    <label class="ag-switch">
        <input type="checkbox" name="<?php echo esc_attr($this->form_key($field_prefix . '.' . $name)) ?>" id="<?php echo esc_attr(sanitize_title('wp_age_gate_' . $name)) ?>" <?php echo (($data[$name] ?? false) ? 'checked' : '') ?> <?php echo html_build_attributes($field['attributes'] ?? []); ?> value="1" /><?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
        <span class="ag-switch__slider"></span>
    </label>
<?php $this->stop(); ?>

```
