field-types
3 years ago
template
3 years ago
withdraw
3 years ago
option_blocks.php
3 years ago
option_field.php
3 years ago
options_generator.php
3 years ago
settings.php
3 years ago
tools.php
3 years ago
option_field.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Filed input row. |
| 4 | * |
| 5 | * @package Tutor\Views |
| 6 | * @subpackage Tutor\Options |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 2.0.0 |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | <div class="tutor-option-field-row"> |
| 14 | <div class="tutor-option-field-label"> |
| 15 | <label><?php echo isset( $field['label'] ) ? esc_attr( $field['label'] ) : ''; ?></label> |
| 16 | <p class="desc"><?php echo isset( $field['desc'] ) ? esc_attr( $field['desc'] ) : ''; ?></p> |
| 17 | </div> |
| 18 | <div class="tutor-option-field-input"> |
| 19 | <?php echo $this->field_type( $field ); //phpcs:ignore -- contain safe data ?> |
| 20 | </div> |
| 21 | </div> |
| 22 |