PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.24.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.24.1
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / frm-fields / back-end / number-range.php

number-range.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.24.1, at classes/views/frm-fields/back-end/number-range.php

31 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 frm-font-semibold frm-text-grey-600 frm-mb-xs" 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="frm6 frm_form_field frm-range-min">
12 <label for="frm_minnum_<?php echo esc_attr( $field['field_key'] ); ?>">
13 <?php esc_html_e( 'Min Value', 'formidable' ); ?>
14 </label>
15 <input type="text" id="frm_minnum_<?php echo esc_attr( $field['field_key'] ); ?>" 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" />
16 </span>
17 <span class="frm6 frm_last frm_form_field">
18 <label for="frm_maxnum_<?php echo esc_attr( $field['field_key'] ); ?>">
19 <?php esc_html_e( 'Max Value', 'formidable' ); ?>
20 </label>
21 <input type="text" id="frm_maxnum_<?php echo esc_attr( $field['field_key'] ); ?>" 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" />
22 </span>
23 </span>
24 </p>
25 <p class="frm4 frm_last frm_form_field frm-step frm-self-end">
26 <label for="frm_step_<?php echo esc_attr( $field['field_key'] ); ?>">
27 <?php esc_html_e( 'Step', 'formidable' ); ?>
28 </label>
29 <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'] ); ?>" />
30 </p>
31