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
date.php
17 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)); ?>"> |
| 3 | <?php echo esc_html($label); ?> |
| 4 | </label> |
| 5 | <input |
| 6 | type="date" |
| 7 | class="attr-form-control" |
| 8 | id="wslu-admin-option-text<?php echo esc_attr(self::strify($name)); ?>" |
| 9 | aria-describedby="wslu-admin-option-text-help<?php echo esc_attr(self::strify($name)); ?>" |
| 10 | placeholder="<?php echo esc_attr($placeholder); ?>" |
| 11 | name="<?php echo esc_attr($name); ?>" |
| 12 | value="<?php echo esc_attr($value); ?>" |
| 13 | <?php echo esc_attr($disabled) ?> |
| 14 | > |
| 15 | <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> |
| 16 | </div> |
| 17 |