at path:
ROOT
/
wp-content
/
plugins
/
tutor
/
views
/
options
/
option_field.php
run:
R
W
Run
field-types
DIR
2026-04-14 05:34:27
R
W
Run
template
DIR
2026-04-14 05:34:27
R
W
Run
withdraw
DIR
2026-04-14 05:34:27
R
W
Run
option_blocks.php
3.37 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
option_field.php
590 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
settings.php
5.56 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
tools.php
2.48 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
error_log
up
📄
option_field.php
Save
<?php /** * Filed input row. * * @package Tutor\Views * @subpackage Tutor\Options * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 2.0.0 */ ?> <div class="tutor-option-field-row"> <div class="tutor-option-field-label"> <label><?php echo isset( $field['label'] ) ? esc_attr( $field['label'] ) : ''; ?></label> <p class="desc"><?php echo isset( $field['desc'] ) ? esc_attr( $field['desc'] ) : ''; ?></p> </div> <div class="tutor-option-field-input"> <?php echo $this->field_type( $field ); //phpcs:ignore -- contain safe data ?> </div> </div>