| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<p class="frm8 frm_first frm_form_field frm-number-range"> |
| 7 |
<label for="frm_format_<?php echo esc_attr( $field['field_key'] ); ?>" class="frm_help" title="<?php esc_attr_e( 'Set the number range the field validation should allow. Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field.', 'formidable' ); ?>"> |
| 8 |
<?php esc_html_e( 'Number Range', 'formidable' ); ?> |
| 9 |
</label> |
| 10 |
<span class="frm_grid_container"> |
| 11 |
<span class="frm5 frm_form_field frm-range-min"> |
| 12 |
<input type="text" name="field_options[minnum_<?php echo absint( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['minnum'] ); ?>" data-changeme="field_<?php echo esc_attr( $field['field_key'] ); ?>" data-changeatt="min" /> |
| 13 |
</span> |
| 14 |
<span class="frm5 frm_last frm_form_field"> |
| 15 |
<input type="text" name="field_options[maxnum_<?php echo absint( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['maxnum'] ); ?>" data-changeme="field_<?php echo esc_attr( $field['field_key'] ); ?>" data-changeatt="max" /> |
| 16 |
</span> |
| 17 |
</span> |
| 18 |
</p> |
| 19 |
<p class="frm3 frm_last frm_form_field frm-step"> |
| 20 |
<label for="frm_step_<?php echo esc_attr( $field['field_key'] ); ?>"> |
| 21 |
<?php esc_html_e( 'Step', 'formidable' ); ?> |
| 22 |
</label> |
| 23 |
<input type="text" name="field_options[step_<?php echo absint( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['step'] ); ?>" id="frm_step_<?php echo esc_attr( $field['field_key'] ); ?>" /> |
| 24 |
</p> |
| 25 |
|