| 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 |
|