PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.4.4
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 / _check-box-radio-fields.php

_check-box-radio-fields.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.4.4, at classes/views/styles/_check-box-radio-fields.php

48 lines 2.3 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="frm6 frm_first frm_form_field">
7 <label><?php esc_html_e( 'Radio', 'formidable' ); ?></label>
8 <select name="<?php echo esc_attr( $frm_style->get_field_name( 'radio_align' ) ); ?>" id="frm_radio_align">
9 <option value="block" <?php selected( $style->post_content['radio_align'], 'block' ); ?>>
10 <?php esc_html_e( 'Multiple Rows', 'formidable' ); ?>
11 </option>
12 <option value="inline" <?php selected( $style->post_content['radio_align'], 'inline' ); ?>>
13 <?php esc_html_e( 'Single Row', 'formidable' ); ?>
14 </option>
15 </select>
16 </p>
17
18 <p class="frm6 frm_form_field">
19 <label><?php esc_html_e( 'Check Box', 'formidable' ); ?></label>
20 <select name="<?php echo esc_attr( $frm_style->get_field_name( 'check_align' ) ); ?>" id="frm_check_align">
21 <option value="block" <?php selected( $style->post_content['check_align'], 'block' ); ?>>
22 <?php esc_html_e( 'Multiple Rows', 'formidable' ); ?>
23 </option>
24 <option value="inline" <?php selected( $style->post_content['check_align'], 'inline' ); ?>>
25 <?php esc_html_e( 'Single Row', 'formidable' ); ?>
26 </option>
27 </select>
28 </p>
29
30 <p class="frm4 frm_first frm_form_field">
31 <label><?php esc_html_e( 'Color', 'formidable' ); ?></label>
32 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'check_label_color' ) ); ?>" id="frm_check_label_color" class="hex" value="<?php echo esc_attr( $style->post_content['check_label_color'] ); ?>" <?php do_action( 'frm_style_settings_input_atts', 'check_label_color' ); ?> />
33 </p>
34 <p class="frm4 frm_form_field">
35 <label><?php esc_html_e( 'Weight', 'formidable' ); ?></label>
36 <select name="<?php echo esc_attr( $frm_style->get_field_name( 'check_weight' ) ); ?>" id="frm_check_weight">
37 <?php foreach ( FrmStyle::get_bold_options() as $value => $name ) { ?>
38 <option value="<?php echo esc_attr( $value ); ?>" <?php selected( $style->post_content['check_weight'], $value ); ?>>
39 <?php echo esc_html( $name ); ?>
40 </option>
41 <?php } ?>
42 </select>
43 </p>
44 <p class="frm4 frm_form_field">
45 <label><?php esc_html_e( 'Size', 'formidable' ); ?></label>
46 <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'check_font_size' ) ); ?>" id="frm_check_font_size" value="<?php echo esc_attr( $style->post_content['check_font_size'] ); ?>" size="3" />
47 </p>
48