| 1 |
<?php |
| 2 |
/** |
| 3 |
* @var Input $input |
| 4 |
*/ |
| 5 |
|
| 6 |
use UserAccessManager\Form\Element\Input; |
| 7 |
|
| 8 |
?> |
| 9 |
<th scope="row"> |
| 10 |
<label for="uam_<?php echo $input->getId(); ?>"> |
| 11 |
<?php echo $input->getLabel(); ?> |
| 12 |
</label> |
| 13 |
</th> |
| 14 |
<td> |
| 15 |
<input id="uam_<?php echo $input->getId(); ?>" |
| 16 |
type="text" |
| 17 |
name="config_parameters[<?php echo $input->getId(); ?>]" |
| 18 |
value="<?php echo $input->getValue(); ?>"/> |
| 19 |
<br/> |
| 20 |
<p class="description"><?php echo $input->getDescription(); ?></p> |
| 21 |
</td> |