| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/elementor-pro-off/modules/atomic-form/textarea/ |
Upload File : |
{% 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>