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

User Access Manager, version 2.1.3. 31 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.1.3/code/src/View/AdminForm/Input.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.1.3/raw/src/View/AdminForm/Input.php
- Modified: 2017-09-18T18:47:04+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.1.3/code/src/View/AdminForm/Input.php#L10-L20`.

```php
<?php
/**
 * Input.php
 *
 * Input form field.
 *
 * PHP versions 5
 *
 * @author    Alexander Schneider <alexanderschneider85@gmail.com>
 * @copyright 2008-2017 Alexander Schneider
 * @license   http://www.gnu.org/licenses/gpl-2.0.html  GNU General Public License, version 2
 * @version   SVN: $id$
 * @link      http://wordpress.org/extend/plugins/user-access-manager/
 */

/**
 * @var \UserAccessManager\Form\Input $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>
```
