# user-access-manager/2.3.1/src/View/AdminForm/Input.php

User Access Manager, version 2.3.1. 20 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.1/code/src/View/AdminForm/Input.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.1/raw/src/View/AdminForm/Input.php
- Modified: 2025-12-09T13:30:18+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.1/code/src/View/AdminForm/Input.php#L10-L20`.

```php
<?php
/**
 * @var Input $input
 */

use UserAccessManager\Form\Input;

?>
<th scope="row">
    <label for="uam_<?php echo $input->getId(); ?>">
        <?php echo $input->getLabel(); ?>
    </label>
</th>
<td>
    <input id="uam_<?php echo $input->getId(); ?>"
           name="config_parameters[<?php echo $input->getId(); ?>]"
           value="<?php echo $input->getValue(); ?>"/>
    <br/>
    <p><?php echo $input->getDescription(); ?></p>
</td>
```
