# e2pdf/1.05.03/classes/view/field/text.php

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

- Page: https://pluginprobe.com/plugins/e2pdf/1.05.03/code/classes/view/field/text.php
- Raw: https://pluginprobe.com/plugins/e2pdf/1.05.03/raw/classes/view/field/text.php
- Modified: 2019-03-12T13:29:06+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.05.03/code/classes/view/field/text.php#L10-L20`.

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

```
