# user-access-manager/2.3.3/src/View/AdminForm/Textarea.php

User Access Manager, version 2.3.3. 22 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.3/code/src/View/AdminForm/Textarea.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.3/raw/src/View/AdminForm/Textarea.php
- Modified: 2025-12-09T15:06:40+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/user-access-manager/2.3.3/code/src/View/AdminForm/Textarea.php#L10-L20`.

```php
<?php
/**
 * @var Textarea $textarea
 */

use UserAccessManager\Form\Textarea;

?>
<th scope="row">
    <label for="uam_<?php echo $textarea->getId(); ?>">
        <?php echo $textarea->getLabel(); ?>
    </label>
</th>
<td>
    <textarea id="uam_<?php echo $textarea->getId(); ?>"
              style="width:100%;min-height:120px;"
              name="config_parameters[<?php echo $textarea->getId(); ?>]"><?php
                echo $textarea->getValue();
                ?></textarea>
    <br/>
    <p><?php echo $textarea->getDescription(); ?></p>
</td>
```
