color.php
4 years ago
date.php
4 years ago
hidden.php
4 years ago
radio.php
3 years ago
switch.php
3 years ago
text.php
4 years ago
text.php
14 lines
| 1 | <div class="form-group wslu-admin-input-text wslu-admin-input-text-<?php echo esc_attr(self::strify($name)); ?>"> |
| 2 | <label for="wslu-admin-option-text<?php echo esc_attr(self::strify($name)); ?>"><?php echo esc_html($label); ?></label> |
| 3 | <input |
| 4 | type="text" |
| 5 | class="attr-form-control" |
| 6 | id="wslu-admin-option-text<?php echo esc_attr(self::strify($name)); ?>" |
| 7 | aria-describedby="wslu-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>" |
| 8 | placeholder="<?php echo esc_attr($placeholder); ?>" |
| 9 | name="<?php echo esc_attr($name); ?>" |
| 10 | value="<?php echo esc_attr($value); ?>" |
| 11 | <?php echo esc_attr($disabled) ?> |
| 12 | > |
| 13 | <small id="wslu-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>" class="form-text text-muted"><?php echo esc_html($info); ?></small> |
| 14 | </div> |