# e2pdf/1.32.17/classes/view/field/textarea.php

E2Pdf – Export Pdf Tool for WordPress, version 1.32.17. 7 lines.

- Page: https://pluginprobe.com/plugins/e2pdf/1.32.17/code/classes/view/field/textarea.php
- Raw: https://pluginprobe.com/plugins/e2pdf/1.32.17/raw/classes/view/field/textarea.php
- Modified: 2026-04-28T00:54: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/e2pdf/1.32.17/code/classes/view/field/textarea.php#L10-L20`.

```php
<?php
if (!defined('ABSPATH')) {
    die('Access denied.');
}
?>
<textarea <?php foreach ($this->tpl_args->get('field') as $key => $value) { ?><?php if (($key === 'disabled' && $value != false) || $key != 'disabled') { ?><?php echo esc_attr($key); ?>="<?php echo esc_attr($value); ?>" <?php } ?><?php } ?>><?php echo esc_textarea($this->tpl_args->get('value')); ?></textarea>

```
