PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 3.06.06
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v3.06.06
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 / styles / _field-labels.php

_field-labels.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 3.06.06, at classes/views/styles/_field-labels.php

64 lines 3.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="field-group field-group-background clearfix frm-first-row">
2 <label><?php esc_html_e( 'Color', 'formidable' ) ?></label>
3 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'label_color' ) ); ?>" id="frm_label_color" class="hex" value="<?php echo esc_attr( $style->post_content['label_color'] ); ?>" />
4 </div>
5 <div class="field-group clearfix frm-first-row">
6 <label><?php esc_html_e( 'Weight', 'formidable' ) ?></label>
7 <select name="<?php echo esc_attr( $frm_style->get_field_name( 'weight' ) ); ?>" id="frm_weight">
8 <?php foreach ( FrmStyle::get_bold_options() as $value => $name ) { ?>
9 <option value="<?php echo esc_attr( $value ) ?>" <?php selected( $style->post_content['weight'], $value ) ?>><?php echo esc_html( $name ) ?></option>
10 <?php } ?>
11 </select>
12 </div>
13 <div class="field-group clearfix frm-first-row">
14 <label><?php esc_html_e( 'Size', 'formidable' ) ?></label>
15 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'font_size' ) ); ?>" id="frm_font_size" value="<?php echo esc_attr( $style->post_content['font_size'] ); ?>" size="3" />
16 </div>
17
18 <div class="field-group clearfix frm_clear">
19 <label><?php esc_html_e( 'Position', 'formidable' ) ?></label>
20 <select name="<?php echo esc_attr( $frm_style->get_field_name( 'position' ) ); ?>" id="frm_position">
21 <?php foreach ( FrmStylesHelper::get_css_label_positions() as $pos => $pos_label ) { ?>
22 <option value="<?php echo esc_attr( $pos ); ?>" <?php selected( $style->post_content['position'], $pos ); ?>><?php echo esc_html( $pos_label ); ?></option>
23 <?php } ?>
24 </select>
25 </div>
26
27 <div class="field-group clearfix">
28 <label for="frm_align"><?php esc_html_e( 'Align', 'formidable' ); ?></label>
29 <select name="<?php echo esc_attr( $frm_style->get_field_name( 'align' ) ); ?>" id="frm_align">
30 <option value="left" <?php selected( $style->post_content['align'], 'left' ); ?>>
31 <?php esc_html_e( 'left', 'formidable' ); ?>
32 </option>
33 <option value="right" <?php selected( $style->post_content['align'], 'right' ); ?>>
34 <?php esc_html_e( 'right', 'formidable' ); ?>
35 </option>
36 </select>
37 </div>
38
39 <div class="field-group clearfix">
40 <label><?php esc_html_e( 'Width', 'formidable' ) ?></label>
41 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'width' ) ); ?>" id="frm_width" value="<?php echo esc_attr( $style->post_content['width'] ); ?>" />
42 </div>
43
44 <div class="field-group clearfix frm_clear">
45 <label><?php esc_html_e( 'Padding', 'formidable' ) ?></label>
46 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'label_padding' ) ); ?>" id="frm_label_padding" value="<?php echo esc_attr( $style->post_content['label_padding'] ); ?>" />
47 </div>
48
49 <div class="clear"></div>
50 <h3><?php esc_html_e( 'Required Indicator', 'formidable' ) ?></h3>
51 <div class="field-group field-group-border clearfix after-h3">
52 <label class="background"><?php esc_html_e( 'Color', 'formidable' ) ?></label>
53 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'required_color' ) ); ?>" id="frm_required_color" class="hex" value="<?php echo esc_attr( $style->post_content['required_color'] ); ?>" />
54 </div>
55 <div class="field-group clearfix after-h3">
56 <label><?php esc_html_e( 'Weight', 'formidable' ) ?></label>
57 <select name="<?php echo esc_attr( $frm_style->get_field_name( 'required_weight' ) ); ?>" id="frm_required_weight">
58 <?php foreach ( FrmStyle::get_bold_options() as $value => $name ) { ?>
59 <option value="<?php echo esc_attr( $value ) ?>" <?php selected( $style->post_content['required_weight'], $value ) ?>><?php echo esc_html( $name ) ?></option>
60 <?php } ?>
61 </select>
62 </div>
63 <div class="clear"></div>
64