# easy-elements/1.3.4/includes/Admin/settings-framework/fields/checkbox.php

Easy Elements for Elementor – Addons &amp; Website Templates, version 1.3.4. 4 lines.

- Page: https://pluginprobe.com/plugins/easy-elements/1.3.4/code/includes/Admin/settings-framework/fields/checkbox.php
- Raw: https://pluginprobe.com/plugins/easy-elements/1.3.4/raw/includes/Admin/settings-framework/fields/checkbox.php
- Modified: 2026-02-09T12:35:00+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/easy-elements/1.3.4/code/includes/Admin/settings-framework/fields/checkbox.php#L10-L20`.

```php
<?php
function easyel_field_checkbox($sub_field, $value){
    echo '<label><input type="checkbox" name="'.esc_attr($sub_field['full_name']).'" '.checked($value, 'on', false).' /> '.esc_html($sub_field['label']).'</label>';
}
```
