Completed
Push — master ( ab397f...7c7246 )
by Stephanie
03:59
created
classes/views/styles/_sample_form.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <div class="frm_forms with_frm_style frm_style_<?php echo esc_attr( $style->post_name ) ?>">
2 2
 <div class="frm-show-form">
3 3
 <div class="frm_error_style">
4
-    <strong><?php echo __( 'SAMPLE:', 'formidable' ) .'</strong> '. $frm_settings->invalid_msg ?>
4
+    <strong><?php echo __( 'SAMPLE:', 'formidable' ) . '</strong> ' . $frm_settings->invalid_msg ?>
5 5
 </div>
6 6
 
7
-<div id="message" class="frm_message"><strong><?php echo __( 'SAMPLE:', 'formidable' ) .'</strong> '. $frm_settings->success_msg ?></div>
7
+<div id="message" class="frm_message"><strong><?php echo __( 'SAMPLE:', 'formidable' ) . '</strong> ' . $frm_settings->success_msg ?></div>
8 8
 
9 9
 <?php $pos_class = 'frm_pos_container frm_' . ( $style->post_content['position'] == 'none' ? 'top' : ( $style->post_content['position'] == 'no_label' ? 'none' : $style->post_content['position'] ) ) . '_container'; ?>
10 10
 
Please login to merge, or discard this patch.
classes/views/styles/_section-fields.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <div class="posttypediv">
2 2
 	<ul class="posttype-tabs add-menu-item-tabs">
3 3
 		<li <?php echo ( 'default' == $current_tab ? ' class="tabs"' : '' ); ?>>
4
-    		<a href="<?php echo esc_url('?page=formidable-styles&page-tab=default#tabs-panel-headings') ?>" class="nav-tab-link" data-type="tabs-panel-headings" ><?php _e( 'Headings', 'formidable' ) ?></a>
4
+    		<a href="<?php echo esc_url( '?page=formidable-styles&page-tab=default#tabs-panel-headings' ) ?>" class="nav-tab-link" data-type="tabs-panel-headings" ><?php _e( 'Headings', 'formidable' ) ?></a>
5 5
     	</li>
6 6
 		<li <?php echo ( 'collapse' == $current_tab ? ' class="tabs"' : '' ); ?>>
7
-			<a href="<?php echo esc_url('?page=formidable-styles&page-tab=collapse#page-collapse') ?>" class="nav-tab-link" data-type="tabs-panel-collapse" ><?php _e( 'Collapsible', 'formidable' ) ?></a>
7
+			<a href="<?php echo esc_url( '?page=formidable-styles&page-tab=collapse#page-collapse' ) ?>" class="nav-tab-link" data-type="tabs-panel-collapse" ><?php _e( 'Collapsible', 'formidable' ) ?></a>
8 8
 		</li>
9 9
 		<li <?php echo ( 'repeat' == $current_tab ? ' class="tabs"' : '' ); ?>>
10 10
 			<a href="?page=formidable-styles&page-tab=repeat#tabs-panel-repeat" class="nav-tab-link" data-type="tabs-panel-repeat"><?php _e( 'Repeatable', 'formidable' ) ?></a>
@@ -16,12 +16,12 @@  discard block
 block discarded – undo
16 16
 	?>">
17 17
 	    <div class="field-group field-group-background">
18 18
         	<label><?php _e( 'Color', 'formidable' ) ?></label>
19
-        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('section_color') ) ?>" id="frm_section_color" class="hex" value="<?php echo esc_attr( $style->post_content['section_color'] ) ?>" />
19
+        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'section_color' ) ) ?>" id="frm_section_color" class="hex" value="<?php echo esc_attr( $style->post_content['section_color'] ) ?>" />
20 20
         </div>
21 21
 
22 22
         <div class="field-group">
23 23
         	<label><?php _e( 'Weight', 'formidable' ) ?></label>
24
-        	<select name="<?php echo esc_attr( $frm_style->get_field_name('section_weight') ) ?>" id="frm_section_weight">
24
+        	<select name="<?php echo esc_attr( $frm_style->get_field_name( 'section_weight' ) ) ?>" id="frm_section_weight">
25 25
 				<?php foreach ( FrmStyle::get_bold_options() as $value => $name ) { ?>
26 26
 				<option value="<?php echo esc_attr( $value ) ?>" <?php selected( $style->post_content['section_weight'], $value ) ?>><?php echo $name ?></option>
27 27
 				<?php } ?>
@@ -30,54 +30,54 @@  discard block
 block discarded – undo
30 30
 
31 31
         <div class="field-group">
32 32
         	<label><?php _e( 'Size', 'formidable' ) ?></label>
33
-        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('section_font_size') ) ?>" id="frm_section_font_size" value="<?php echo esc_attr( $style->post_content['section_font_size'] ) ?>" />
33
+        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'section_font_size' ) ) ?>" id="frm_section_font_size" value="<?php echo esc_attr( $style->post_content['section_font_size'] ) ?>" />
34 34
         </div>
35 35
 
36 36
         <div class="field-group field-group-border frm-half">
37 37
         	<label><?php _e( 'Padding', 'formidable' ) ?></label>
38
-        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('section_pad') ) ?>" id="frm_section_pad" value="<?php echo esc_attr( $style->post_content['section_pad'] ) ?>" />
38
+        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'section_pad' ) ) ?>" id="frm_section_pad" value="<?php echo esc_attr( $style->post_content['section_pad'] ) ?>" />
39 39
         </div>
40 40
 
41 41
         <div class="field-group frm-half">
42 42
     	    <label class="background"><?php _e( 'BG color', 'formidable' ) ?></label>
43
-    	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('section_bg_color') ) ?>" id="frm_section_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['section_bg_color'] ) ?>" />
43
+    	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'section_bg_color' ) ) ?>" id="frm_section_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['section_bg_color'] ) ?>" />
44 44
         </div>
45 45
 
46 46
         <div class="field-group field-group-border frm-half">
47 47
         	<label><?php _e( 'Top Margin', 'formidable' ) ?></label>
48
-        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('section_mar_top') ) ?>" id="frm_section_mar_top" value="<?php echo esc_attr( $style->post_content['section_mar_top'] ) ?>" />
48
+        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'section_mar_top' ) ) ?>" id="frm_section_mar_top" value="<?php echo esc_attr( $style->post_content['section_mar_top'] ) ?>" />
49 49
         </div>
50 50
         <div class="field-group frm-half">
51 51
         	<label><?php _e( 'Bottom Margin', 'formidable' ) ?></label>
52
-        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('section_mar_bottom') ) ?>" id="frm_section_mar_bottom" value="<?php echo esc_attr( $style->post_content['section_mar_bottom'] ) ?>" />
52
+        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'section_mar_bottom' ) ) ?>" id="frm_section_mar_bottom" value="<?php echo esc_attr( $style->post_content['section_mar_bottom'] ) ?>" />
53 53
         </div>
54 54
 
55 55
         <div class="field-group field-group-border">
56 56
             <label><?php _e( 'Border', 'formidable' ) ?></label>
57
-        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('section_border_color') ) ?>" id="frm_section_border_color" class="hex" value="<?php echo esc_attr( $style->post_content['section_border_color'] ) ?>" />
57
+        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'section_border_color' ) ) ?>" id="frm_section_border_color" class="hex" value="<?php echo esc_attr( $style->post_content['section_border_color'] ) ?>" />
58 58
         </div>
59 59
         <div class="field-group">
60 60
         	<label><?php _e( 'Thickness', 'formidable' ) ?></label>
61
-        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('section_border_width') ) ?>" id="frm_section_border_width" value="<?php echo esc_attr( $style->post_content['section_border_width'] ) ?>" />
61
+        	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'section_border_width' ) ) ?>" id="frm_section_border_width" value="<?php echo esc_attr( $style->post_content['section_border_width'] ) ?>" />
62 62
         </div>
63 63
         <div class="field-group">
64 64
         	<label><?php _e( 'Style', 'formidable' ) ?></label>
65
-        	<select name="<?php echo esc_attr( $frm_style->get_field_name('section_border_style') ) ?>" id="frm_section_border_style">
66
-        	    <option value="solid" <?php selected($style->post_content['section_border_style'], 'solid') ?>><?php _e( 'solid', 'formidable' ) ?></option>
67
-        		<option value="dotted" <?php selected($style->post_content['section_border_style'], 'dotted') ?>><?php _e( 'dotted', 'formidable' ) ?></option>
68
-        		<option value="dashed" <?php selected($style->post_content['section_border_style'], 'dashed') ?>><?php _e( 'dashed', 'formidable' ) ?></option>
69
-        		<option value="double" <?php selected($style->post_content['section_border_style'], 'double') ?>><?php _e( 'double', 'formidable' ) ?></option>
65
+        	<select name="<?php echo esc_attr( $frm_style->get_field_name( 'section_border_style' ) ) ?>" id="frm_section_border_style">
66
+        	    <option value="solid" <?php selected( $style->post_content['section_border_style'], 'solid' ) ?>><?php _e( 'solid', 'formidable' ) ?></option>
67
+        		<option value="dotted" <?php selected( $style->post_content['section_border_style'], 'dotted' ) ?>><?php _e( 'dotted', 'formidable' ) ?></option>
68
+        		<option value="dashed" <?php selected( $style->post_content['section_border_style'], 'dashed' ) ?>><?php _e( 'dashed', 'formidable' ) ?></option>
69
+        		<option value="double" <?php selected( $style->post_content['section_border_style'], 'double' ) ?>><?php _e( 'double', 'formidable' ) ?></option>
70 70
         	</select>
71 71
         </div>
72 72
 
73 73
         <div class="field-group field-group-border frm-half">
74 74
         	<label><?php _e( 'Border Position', 'formidable' ) ?></label>
75
-        	<select name="<?php echo esc_attr( $frm_style->get_field_name('section_border_loc') ) ?>" id="frm_section_border_loc">
76
-        	    <option value="-top" <?php selected($style->post_content['section_border_loc'], '-top') ?>><?php _e( 'top', 'formidable' ) ?></option>
77
-        		<option value="-bottom" <?php selected($style->post_content['section_border_loc'], '-bottom') ?>><?php _e( 'bottom', 'formidable' ) ?></option>
78
-        		<option value="-left" <?php selected($style->post_content['section_border_loc'], '-left') ?>><?php _e( 'left', 'formidable' ) ?></option>
79
-        		<option value="-right" <?php selected($style->post_content['section_border_loc'], '-right') ?>><?php _e( 'right', 'formidable' ) ?></option>
80
-        		<option value="" <?php selected($style->post_content['section_border_loc'], '') ?>><?php _e( 'all', 'formidable' ) ?></option>
75
+        	<select name="<?php echo esc_attr( $frm_style->get_field_name( 'section_border_loc' ) ) ?>" id="frm_section_border_loc">
76
+        	    <option value="-top" <?php selected( $style->post_content['section_border_loc'], '-top' ) ?>><?php _e( 'top', 'formidable' ) ?></option>
77
+        		<option value="-bottom" <?php selected( $style->post_content['section_border_loc'], '-bottom' ) ?>><?php _e( 'bottom', 'formidable' ) ?></option>
78
+        		<option value="-left" <?php selected( $style->post_content['section_border_loc'], '-left' ) ?>><?php _e( 'left', 'formidable' ) ?></option>
79
+        		<option value="-right" <?php selected( $style->post_content['section_border_loc'], '-right' ) ?>><?php _e( 'right', 'formidable' ) ?></option>
80
+        		<option value="" <?php selected( $style->post_content['section_border_loc'], '' ) ?>><?php _e( 'all', 'formidable' ) ?></option>
81 81
         	</select>
82 82
         </div>
83 83
         <div class="clear"></div>
@@ -88,14 +88,14 @@  discard block
 block discarded – undo
88 88
 	?>">
89 89
 	    <div class="field-group frm-half">
90 90
         	<label><?php _e( 'Icons', 'formidable' ) ?></label>
91
-            <?php FrmStylesHelper::bs_icon_select($style, $frm_style, 'arrow'); ?>
91
+            <?php FrmStylesHelper::bs_icon_select( $style, $frm_style, 'arrow' ); ?>
92 92
         </div>
93 93
 
94 94
         <div class="field-group frm-half">
95 95
         	<label><?php _e( 'Icon Position', 'formidable' ) ?></label>
96
-        	<select name="<?php echo esc_attr( $frm_style->get_field_name('collapse_pos') ) ?>" id="frm_collapse_pos">
97
-        	    <option value="after" <?php selected($style->post_content['collapse_pos'], 'after') ?>><?php _e( 'After Heading', 'formidable' ) ?></option>
98
-        	    <option value="before" <?php selected($style->post_content['collapse_pos'], 'before') ?>><?php _e( 'Before Heading', 'formidable' ) ?></option>
96
+        	<select name="<?php echo esc_attr( $frm_style->get_field_name( 'collapse_pos' ) ) ?>" id="frm_collapse_pos">
97
+        	    <option value="after" <?php selected( $style->post_content['collapse_pos'], 'after' ) ?>><?php _e( 'After Heading', 'formidable' ) ?></option>
98
+        	    <option value="before" <?php selected( $style->post_content['collapse_pos'], 'before' ) ?>><?php _e( 'Before Heading', 'formidable' ) ?></option>
99 99
         	</select>
100 100
         </div>
101 101
         <div class="clear"></div>
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	?>">
107 107
 	    <div class="field-group frm-half">
108 108
         	<label><?php _e( 'Icons', 'formidable' ) ?></label>
109
-            <?php FrmStylesHelper::bs_icon_select($style, $frm_style, 'minus'); ?>
109
+            <?php FrmStylesHelper::bs_icon_select( $style, $frm_style, 'minus' ); ?>
110 110
         </div>
111 111
         <div class="clear"></div>
112 112
 	</div><!-- /.tabs-panel -->
Please login to merge, or discard this patch.
classes/views/styles/custom_css.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,14 +17,14 @@
 block discarded – undo
17 17
         <textarea name="<?php echo esc_attr( $frm_style->get_field_name('custom_css') ) ?>" id="frm_custom_css_box" class="hide-if-js"><?php echo FrmAppHelper::esc_textarea($style->post_content['custom_css']) ?></textarea>
18 18
 
19 19
         <?php
20
-        foreach ( $style->post_content as $k => $v ) {
21
-            if ( $k == 'custom_css' ) {
22
-                continue;
23
-            }
24
-        ?>
20
+		foreach ( $style->post_content as $k => $v ) {
21
+			if ( $k == 'custom_css' ) {
22
+				continue;
23
+			}
24
+		?>
25 25
         <input type="hidden" value="<?php echo esc_attr($v) ?>" name="<?php echo esc_attr( $frm_style->get_field_name( $k ) ) ?>" />    
26 26
         <?php
27
-        } ?>
27
+		} ?>
28 28
 		<p class="button-controls"><input type="submit" name="nav-menu-locations" id="nav-menu-locations" class="button button-primary left" value="<?php esc_attr_e( 'Save Changes', 'formidable' ) ?>" /></p>
29 29
 
30 30
     </form>
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,20 +1,20 @@  discard block
 block discarded – undo
1 1
 <div class="nav-menus-php">
2 2
 <div class="wrap">
3
-    <?php FrmStylesHelper::style_menu('custom_css'); ?>
3
+    <?php FrmStylesHelper::style_menu( 'custom_css' ); ?>
4 4
 
5 5
     <p><?php _e( 'You can add custom css here or in your theme style.css', 'formidable' ) ?></p>
6 6
 
7
-    <?php include(FrmAppHelper::plugin_path() .'/classes/views/shared/errors.php'); ?>
7
+    <?php include( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
8 8
 
9 9
 	<form method="post">
10 10
 	    <input type="hidden" name="ID" value="<?php echo esc_attr( $style->ID ) ?>" />
11
-        <input type="hidden" name="<?php echo esc_attr( $frm_style->get_field_name('post_title', '') ); ?>" value="<?php echo esc_attr( $style->post_title ) ?>" />
12
-        <input type="hidden" name="<?php echo esc_attr( $frm_style->get_field_name('menu_order', '') ); ?>" value="<?php echo esc_attr( $style->menu_order ) ?>" />
11
+        <input type="hidden" name="<?php echo esc_attr( $frm_style->get_field_name( 'post_title', '' ) ); ?>" value="<?php echo esc_attr( $style->post_title ) ?>" />
12
+        <input type="hidden" name="<?php echo esc_attr( $frm_style->get_field_name( 'menu_order', '' ) ); ?>" value="<?php echo esc_attr( $style->menu_order ) ?>" />
13 13
         <input type="hidden" name="style_name" value="frm_style_<?php echo esc_attr( $style->post_name ) ?>" />
14 14
 		<input type="hidden" name="frm_action" value="save_css" />
15 15
         <?php wp_nonce_field( 'frm_custom_css_nonce', 'frm_custom_css' ); ?>
16 16
 
17
-        <textarea name="<?php echo esc_attr( $frm_style->get_field_name('custom_css') ) ?>" id="frm_custom_css_box" class="hide-if-js"><?php echo FrmAppHelper::esc_textarea($style->post_content['custom_css']) ?></textarea>
17
+        <textarea name="<?php echo esc_attr( $frm_style->get_field_name( 'custom_css' ) ) ?>" id="frm_custom_css_box" class="hide-if-js"><?php echo FrmAppHelper::esc_textarea( $style->post_content['custom_css'] ) ?></textarea>
18 18
 
19 19
         <?php
20 20
         foreach ( $style->post_content as $k => $v ) {
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
                 continue;
23 23
             }
24 24
         ?>
25
-        <input type="hidden" value="<?php echo esc_attr($v) ?>" name="<?php echo esc_attr( $frm_style->get_field_name( $k ) ) ?>" />    
25
+        <input type="hidden" value="<?php echo esc_attr( $v ) ?>" name="<?php echo esc_attr( $frm_style->get_field_name( $k ) ) ?>" />    
26 26
         <?php
27 27
         } ?>
28 28
 		<p class="button-controls"><input type="submit" name="nav-menu-locations" id="nav-menu-locations" class="button button-primary left" value="<?php esc_attr_e( 'Save Changes', 'formidable' ) ?>" /></p>
Please login to merge, or discard this patch.
classes/views/styles/manage.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@  discard block
 block discarded – undo
19 19
 
20 20
 			<tbody class="menu-locations">
21 21
 			    <?php
22
-			    if ( $forms ) {
23
-			        foreach ( $forms as $form ) {
24
-			            $this_style = isset($form->options['custom_style']) ? (int) $form->options['custom_style'] : 1;
25
-			            if ( 1 == $this_style ) {
26
-			                // use the default style
27
-			                $this_style = $default_style->ID;
28
-			            }
29
-			        ?>
22
+				if ( $forms ) {
23
+					foreach ( $forms as $form ) {
24
+						$this_style = isset($form->options['custom_style']) ? (int) $form->options['custom_style'] : 1;
25
+						if ( 1 == $this_style ) {
26
+							// use the default style
27
+							$this_style = $default_style->ID;
28
+						}
29
+					?>
30 30
 				<tr id="menu-locations-row">
31 31
 					<td class="menu-location-title"><strong><?php echo empty($form->name) ? __( '(no title)') : $form->name ?></strong></td>
32 32
 					<td class="menu-location-menus">
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 					</td><!-- .menu-location-menus -->
42 42
 				</tr><!-- #menu-locations-row -->
43 43
 				<?php
44
-				    }
44
+					}
45 45
 				} else {
46 46
 				?>
47 47
 				<tr>
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <div class="nav-menus-php">
2 2
 <div class="wrap">
3
-    <?php FrmStylesHelper::style_menu('manage'); ?>
3
+    <?php FrmStylesHelper::style_menu( 'manage' ); ?>
4 4
 
5
-	<p><?php printf(__( 'Easily change which template your forms are using by making changes below or %1$screate a new style%2$s.', 'formidable' ), '<a href="?page=formidable-styles&frm_action=new_style">', '</a>'); ?></p>
5
+	<p><?php printf( __( 'Easily change which template your forms are using by making changes below or %1$screate a new style%2$s.', 'formidable' ), '<a href="?page=formidable-styles&frm_action=new_style">', '</a>' ); ?></p>
6 6
 
7
-	<?php include(FrmAppHelper::plugin_path() .'/classes/views/shared/errors.php'); ?>
7
+	<?php include( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
8 8
 
9 9
 	<div id="menu-locations-wrap">
10 10
 	<form method="post">
@@ -21,21 +21,21 @@  discard block
 block discarded – undo
21 21
 			    <?php
22 22
 			    if ( $forms ) {
23 23
 			        foreach ( $forms as $form ) {
24
-			            $this_style = isset($form->options['custom_style']) ? (int) $form->options['custom_style'] : 1;
24
+			            $this_style = isset( $form->options['custom_style'] ) ? (int) $form->options['custom_style'] : 1;
25 25
 			            if ( 1 == $this_style ) {
26 26
 			                // use the default style
27 27
 			                $this_style = $default_style->ID;
28 28
 			            }
29 29
 			        ?>
30 30
 				<tr id="menu-locations-row">
31
-					<td class="menu-location-title"><strong><?php echo empty($form->name) ? __( '(no title)') : $form->name ?></strong></td>
31
+					<td class="menu-location-title"><strong><?php echo empty( $form->name ) ? __( '(no title)' ) : $form->name ?></strong></td>
32 32
 					<td class="menu-location-menus">
33 33
 					    <input type="hidden" name="prev_style[<?php echo esc_attr( $form->id ) ?>]" value="<?php echo esc_attr( $this_style ) ?>" />
34 34
 					    <select name="style[<?php echo esc_attr( $form->id ) ?>]">
35 35
          		            <?php foreach ( $styles as $s ) { ?>
36
-         		            <option value="<?php echo esc_attr( $s->ID ) ?>" <?php selected( $s->ID, $this_style ) ?>><?php echo esc_html( $s->post_title . ( empty($s->menu_order) ? '' : ' ('. __( 'default', 'formidable' ) .')' ) ) ?></option>
36
+         		            <option value="<?php echo esc_attr( $s->ID ) ?>" <?php selected( $s->ID, $this_style ) ?>><?php echo esc_html( $s->post_title . ( empty( $s->menu_order ) ? '' : ' (' . __( 'default', 'formidable' ) . ')' ) ) ?></option>
37 37
          		            <?php } ?>
38
-         		            <option value="" <?php selected(0, $this_style) ?>><?php _e( 'Styling disabled', 'formidable' ) ?></option>
38
+         		            <option value="" <?php selected( 0, $this_style ) ?>><?php _e( 'Styling disabled', 'formidable' ) ?></option>
39 39
          		        </select>
40 40
 
41 41
 					</td><!-- .menu-location-menus -->
Please login to merge, or discard this patch.
classes/views/xml/forms_xml.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if ( ! $item_ids ) {
4
-    return;
4
+	return;
5 5
 }
6 6
 
7 7
 // fetch 20 posts at a time rather than loading the entire table into memory
@@ -45,6 +45,6 @@  discard block
 block discarded – undo
45 45
 <?php	} ?>
46 46
 	</form>
47 47
 <?php
48
-    	unset( $fields );
48
+		unset( $fields );
49 49
 	}
50 50
 }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@  discard block
 block discarded – undo
13 13
 ?>
14 14
 	<form>
15 15
 		<id><?php echo $form->id ?></id>
16
-		<form_key><?php echo FrmXMLHelper::cdata($form->form_key) ?></form_key>
17
-		<name><?php echo FrmXMLHelper::cdata($form->name) ?></name>
18
-		<description><?php echo FrmXMLHelper::cdata($form->description) ?></description>
16
+		<form_key><?php echo FrmXMLHelper::cdata( $form->form_key ) ?></form_key>
17
+		<name><?php echo FrmXMLHelper::cdata( $form->name ) ?></name>
18
+		<description><?php echo FrmXMLHelper::cdata( $form->description ) ?></description>
19 19
 		<created_at><?php echo $form->created_at ?></created_at>
20 20
 		<logged_in><?php echo $form->logged_in ?></logged_in>
21 21
 		<is_template><?php echo $form->is_template ?></is_template>
22 22
 		<default_template><?php echo $form->default_template ?></default_template>
23 23
 		<editable><?php echo $form->editable ?></editable>
24
-		<options><?php echo FrmXMLHelper::cdata($form->options) ?></options>
25
-		<status><?php echo FrmXMLHelper::cdata($form->status) ?></status>
24
+		<options><?php echo FrmXMLHelper::cdata( $form->options ) ?></options>
25
+		<status><?php echo FrmXMLHelper::cdata( $form->status ) ?></status>
26 26
         <parent_form_id><?php echo $form->parent_form_id ?></parent_form_id>
27 27
 <?php
28 28
 
@@ -31,16 +31,16 @@  discard block
 block discarded – undo
31 31
 		foreach ( $fields as $field ) { ?>
32 32
 		<field>
33 33
 		    <id><?php echo $field->id ?></id>
34
-            <field_key><?php echo FrmXMLHelper::cdata($field->field_key) ?></field_key>
35
-            <name><?php echo FrmXMLHelper::cdata($field->name) ?></name>
36
-            <description><?php echo FrmXMLHelper::cdata($field->description) ?></description>
37
-            <type><?php echo FrmXMLHelper::cdata($field->type) ?></type>
38
-            <default_value><?php echo FrmXMLHelper::cdata($field->default_value) ?></default_value>
34
+            <field_key><?php echo FrmXMLHelper::cdata( $field->field_key ) ?></field_key>
35
+            <name><?php echo FrmXMLHelper::cdata( $field->name ) ?></name>
36
+            <description><?php echo FrmXMLHelper::cdata( $field->description ) ?></description>
37
+            <type><?php echo FrmXMLHelper::cdata( $field->type ) ?></type>
38
+            <default_value><?php echo FrmXMLHelper::cdata( $field->default_value ) ?></default_value>
39 39
             <field_order><?php echo $field->field_order ?></field_order>
40 40
             <form_id><?php echo $field->form_id ?></form_id>
41 41
             <required><?php echo (bool) $field->required ?></required>
42
-            <options><?php echo FrmXMLHelper::cdata($field->options) ?></options>
43
-            <field_options><?php echo FrmXMLHelper::cdata($field->field_options) ?></field_options>
42
+            <options><?php echo FrmXMLHelper::cdata( $field->options ) ?></options>
43
+            <field_options><?php echo FrmXMLHelper::cdata( $field->field_options ) ?></field_options>
44 44
 		</field>
45 45
 <?php	} ?>
46 46
 	</form>
Please login to merge, or discard this patch.
classes/views/xml/import_form.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                 </tr>
70 70
 
71 71
 				<?php if ( count( $export_types ) == 1 ) {
72
-                    reset($export_types); ?>
72
+					reset($export_types); ?>
73 73
                 <tr><td colspan="2"><input type="hidden" name="type[]" value="<?php echo key($export_types) ?>" /></td></tr>
74 74
                 <?php } else { ?>
75 75
                 <tr class="form-field">
@@ -97,9 +97,9 @@  discard block
 block discarded – undo
97 97
 								} else if ( $form->is_template ) {
98 98
 									echo ' ' . __( '(template)', 'formidable' );
99 99
 								}
100
-                        ?></option>
100
+						?></option>
101 101
                         <?php
102
-                        } ?>
102
+						} ?>
103 103
                         </select>
104 104
                         <p class="howto"><?php _e( 'Hold down the CTRL/Command button to select multiple forms', 'formidable' ); ?></p>
105 105
                     </td>
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
     <div class="frmicon icon32"><br/></div>
3 3
     <h2><?php _e( 'Import/Export', 'formidable' ); ?></h2>
4 4
 
5
-    <?php include(FrmAppHelper::plugin_path() .'/classes/views/shared/errors.php'); ?>
5
+    <?php include( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
6 6
     <div id="poststuff" class="metabox-holder">
7 7
     <div id="post-body">
8 8
     <div id="post-body-content">
@@ -10,16 +10,16 @@  discard block
 block discarded – undo
10 10
     <div class="postbox ">
11 11
     <h3 class="hndle"><span><?php _e( 'Import', 'formidable' ) ?></span></h3>
12 12
     <div class="inside">
13
-        <p class="howto"><?php echo apply_filters('frm_upload_instructions1', __( 'Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated.', 'formidable' )) ?></p>
13
+        <p class="howto"><?php echo apply_filters( 'frm_upload_instructions1', __( 'Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated.', 'formidable' ) ) ?></p>
14 14
         <br/>
15 15
         <form enctype="multipart/form-data" method="post">
16 16
             <input type="hidden" name="frm_action" value="import_xml" />
17
-            <?php wp_nonce_field('import-xml-nonce', 'import-xml'); ?>
18
-            <p><label><?php echo apply_filters('frm_upload_instructions2', __( 'Choose a Formidable XML file', 'formidable' )) ?> (<?php printf(__( 'Maximum size: %s', 'formidable' ), ini_get('upload_max_filesize')) ?>)</label>
17
+            <?php wp_nonce_field( 'import-xml-nonce', 'import-xml' ); ?>
18
+            <p><label><?php echo apply_filters( 'frm_upload_instructions2', __( 'Choose a Formidable XML file', 'formidable' ) ) ?> (<?php printf( __( 'Maximum size: %s', 'formidable' ), ini_get( 'upload_max_filesize' ) ) ?>)</label>
19 19
             <input type="file" name="frm_import_file" size="25" />
20 20
             </p>
21 21
 
22
-            <?php do_action('frm_csv_opts', $forms) ?>
22
+            <?php do_action( 'frm_csv_opts', $forms ) ?>
23 23
 
24 24
             <p class="submit">
25 25
 				<input type="submit" value="<?php esc_attr_e( 'Upload file and import', 'formidable' ) ?>" class="button-primary" />
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     <div class="inside with_frm_style">
35 35
 		<form method="post" action="<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>" id="frm_export_xml">
36 36
             <input type="hidden" name="action" value="frm_export_xml" />
37
-            <?php wp_nonce_field('export-xml-nonce', 'export-xml'); ?>
37
+            <?php wp_nonce_field( 'export-xml-nonce', 'export-xml' ); ?>
38 38
 
39 39
             <table class="form-table">
40 40
                 <tr class="form-field">
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
                     <td>
43 43
                         <select name="format">
44 44
 						<?php foreach ( $export_format as $t => $type ) { ?>
45
-                            <option value="<?php echo esc_attr( $t ) ?>" data-support="<?php echo esc_attr( $type['support'] ) ?>" <?php echo isset( $type['count'] ) ? 'data-count="'. esc_attr( $type['count'] ) .'"' : ''; ?>><?php echo isset( $type['name'] ) ? $type['name'] : $t ?></option>
45
+                            <option value="<?php echo esc_attr( $t ) ?>" data-support="<?php echo esc_attr( $type['support'] ) ?>" <?php echo isset( $type['count'] ) ? 'data-count="' . esc_attr( $type['count'] ) . '"' : ''; ?>><?php echo isset( $type['name'] ) ? $type['name'] : $t ?></option>
46 46
                         <?php } ?>
47
-                        <?php if ( ! isset($export_format['csv']) ) { ?>
47
+                        <?php if ( ! isset( $export_format['csv'] ) ) { ?>
48 48
                             <option value="csv" disabled="disabled">CSV <?php _e( '(Premium feature)', 'formidable' ); ?></option>
49 49
                         <?php } ?>
50 50
                         </select>
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
                             <label for="csv_format"><?php _e( 'Format', 'formidable' ) ?>:</label>
55 55
 							<span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'If your CSV special characters are not working correctly, try a different formatting option.', 'formidable' ) ?>"></span>
56 56
                             <select name="csv_format">
57
-                            <option value="UTF-8" <?php selected($csv_format, 'UTF-8') ?>>UTF-8</option>
58
-                            <option value="ISO-8859-1" <?php selected($csv_format, 'ISO-8859-1'); ?>>ISO-8859-1</option>
59
-                            <option value="windows-1256" <?php selected($csv_format, 'windows-1256'); ?>>windows-1256</option>
60
-                            <option value="windows-1251" <?php selected($csv_format, 'windows-1251'); ?>>windows-1251</option>
61
-                            <option value="macintosh" <?php selected($csv_format, 'macintosh'); ?>><?php _e( 'Macintosh', 'formidable' ) ?></option>
57
+                            <option value="UTF-8" <?php selected( $csv_format, 'UTF-8' ) ?>>UTF-8</option>
58
+                            <option value="ISO-8859-1" <?php selected( $csv_format, 'ISO-8859-1' ); ?>>ISO-8859-1</option>
59
+                            <option value="windows-1256" <?php selected( $csv_format, 'windows-1256' ); ?>>windows-1256</option>
60
+                            <option value="windows-1251" <?php selected( $csv_format, 'windows-1251' ); ?>>windows-1251</option>
61
+                            <option value="macintosh" <?php selected( $csv_format, 'macintosh' ); ?>><?php _e( 'Macintosh', 'formidable' ) ?></option>
62 62
                             </select>
63 63
                             </li>
64 64
 
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
                 </tr>
70 70
 
71 71
 				<?php if ( count( $export_types ) == 1 ) {
72
-                    reset($export_types); ?>
73
-                <tr><td colspan="2"><input type="hidden" name="type[]" value="<?php echo key($export_types) ?>" /></td></tr>
72
+                    reset( $export_types ); ?>
73
+                <tr><td colspan="2"><input type="hidden" name="type[]" value="<?php echo key( $export_types ) ?>" /></td></tr>
74 74
                 <?php } else { ?>
75 75
                 <tr class="form-field">
76 76
                     <th scope="row"><label><?php _e( 'Data to Export', 'formidable' ); ?></label></th>
Please login to merge, or discard this patch.
classes/views/xml/posts_xml.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if ( ! $item_ids ) {
4
-    return;
4
+	return;
5 5
 }
6 6
 
7 7
 global $wp_query;
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 }
66 66
 
67 67
 if ( empty( $taxonomies ) ) {
68
-    return;
68
+	return;
69 69
 }
70 70
 
71 71
 global $frm_inc_tax;
@@ -75,18 +75,18 @@  discard block
 block discarded – undo
75 75
 
76 76
 foreach ( (array) $terms as $term ) {
77 77
 	if ( in_array( $term->term_id, $frm_inc_tax ) ) {
78
-        return;
78
+		return;
79 79
 	}
80 80
 
81
-    $frm_inc_tax[] = $term->term_id;
82
-    $label = ($term->taxonomy == 'category' || $term->taxonomy == 'tag') ? $term->taxonomy : 'term'; ?>
81
+	$frm_inc_tax[] = $term->term_id;
82
+	$label = ($term->taxonomy == 'category' || $term->taxonomy == 'tag') ? $term->taxonomy : 'term'; ?>
83 83
 	<term><term_id><?php echo $term->term_id ?></term_id><term_taxonomy><?php echo $term->taxonomy; ?></term_taxonomy><?php
84
-    if ( ! empty( $term->name ) ) {
85
-        echo '<term_name>' . FrmXMLHelper::cdata( $term->name ) . '</term_name>';
86
-    }
87
-    if ( ! empty( $term->description ) ) {
88
-    ?><term_description><?php echo FrmXMLHelper::cdata( $term->description ) ?></term_description><?php
89
-    }
90
-    ?><term_slug><?php echo $term->slug; ?></term_slug></term>
84
+	if ( ! empty( $term->name ) ) {
85
+		echo '<term_name>' . FrmXMLHelper::cdata( $term->name ) . '</term_name>';
86
+	}
87
+	if ( ! empty( $term->description ) ) {
88
+	?><term_description><?php echo FrmXMLHelper::cdata( $term->description ) ?></term_description><?php
89
+	}
90
+	?><term_slug><?php echo $term->slug; ?></term_slug></term>
91 91
 <?php
92 92
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 	}
80 80
 
81 81
     $frm_inc_tax[] = $term->term_id;
82
-    $label = ($term->taxonomy == 'category' || $term->taxonomy == 'tag') ? $term->taxonomy : 'term'; ?>
82
+    $label = ( $term->taxonomy == 'category' || $term->taxonomy == 'tag' ) ? $term->taxonomy : 'term'; ?>
83 83
 	<term><term_id><?php echo $term->term_id ?></term_id><term_taxonomy><?php echo $term->taxonomy; ?></term_taxonomy><?php
84 84
     if ( ! empty( $term->name ) ) {
85 85
         echo '<term_name>' . FrmXMLHelper::cdata( $term->name ) . '</term_name>';
Please login to merge, or discard this patch.
classes/views/xml/xml.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -7,24 +7,24 @@
 block discarded – undo
7 7
 <?php
8 8
 foreach ( $type as $tb_type ) {
9 9
 
10
-    if ( ! isset( $tables[ $tb_type ] ) ) {
11
-        do_action('frm_xml_import_'. $tb_type, $args);
12
-        continue;
13
-    }
10
+	if ( ! isset( $tables[ $tb_type ] ) ) {
11
+		do_action('frm_xml_import_'. $tb_type, $args);
12
+		continue;
13
+	}
14 14
 
15
-    //no records
16
-    if ( ! isset( $records[ $tb_type ] ) ) {
17
-        continue;
18
-    }
15
+	//no records
16
+	if ( ! isset( $records[ $tb_type ] ) ) {
17
+		continue;
18
+	}
19 19
 
20 20
 	$item_ids = $records[ $tb_type ];
21 21
 	if ( in_array( $tb_type, array( 'styles', 'actions' ) ) ) {
22
-        include(dirname(__FILE__) .'/posts_xml.php');
23
-    } else if ( file_exists(dirname(__FILE__) .'/'. $tb_type .'_xml.php') ) {
24
-        include(dirname(__FILE__) .'/'. $tb_type .'_xml.php');
22
+		include(dirname(__FILE__) .'/posts_xml.php');
23
+	} else if ( file_exists(dirname(__FILE__) .'/'. $tb_type .'_xml.php') ) {
24
+		include(dirname(__FILE__) .'/'. $tb_type .'_xml.php');
25 25
 	} else if ( file_exists( FrmAppHelper::plugin_path() . '/pro/classes/views/xml/' . $tb_type . '_xml.php' ) ) {
26
-        include( FrmAppHelper::plugin_path() .'/pro/classes/views/xml/'. $tb_type .'_xml.php' );
27
-    }
26
+		include( FrmAppHelper::plugin_path() .'/pro/classes/views/xml/'. $tb_type .'_xml.php' );
27
+	}
28 28
 
29 29
 	unset( $item_ids, $records[ $tb_type ], $tb_type );
30 30
 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -7,26 +7,26 @@
 block discarded – undo
7 7
 <?php
8 8
 foreach ( $type as $tb_type ) {
9 9
 
10
-    if ( ! isset( $tables[ $tb_type ] ) ) {
11
-        do_action('frm_xml_import_'. $tb_type, $args);
10
+    if ( ! isset( $tables[$tb_type] ) ) {
11
+        do_action( 'frm_xml_import_' . $tb_type, $args );
12 12
         continue;
13 13
     }
14 14
 
15 15
     //no records
16
-    if ( ! isset( $records[ $tb_type ] ) ) {
16
+    if ( ! isset( $records[$tb_type] ) ) {
17 17
         continue;
18 18
     }
19 19
 
20
-	$item_ids = $records[ $tb_type ];
20
+	$item_ids = $records[$tb_type];
21 21
 	if ( in_array( $tb_type, array( 'styles', 'actions' ) ) ) {
22
-        include(dirname(__FILE__) .'/posts_xml.php');
23
-    } else if ( file_exists(dirname(__FILE__) .'/'. $tb_type .'_xml.php') ) {
24
-        include(dirname(__FILE__) .'/'. $tb_type .'_xml.php');
22
+        include( dirname( __FILE__ ) . '/posts_xml.php' );
23
+    } else if ( file_exists( dirname( __FILE__ ) . '/' . $tb_type . '_xml.php' ) ) {
24
+        include( dirname( __FILE__ ) . '/' . $tb_type . '_xml.php' );
25 25
 	} else if ( file_exists( FrmAppHelper::plugin_path() . '/pro/classes/views/xml/' . $tb_type . '_xml.php' ) ) {
26
-        include( FrmAppHelper::plugin_path() .'/pro/classes/views/xml/'. $tb_type .'_xml.php' );
26
+        include( FrmAppHelper::plugin_path() . '/pro/classes/views/xml/' . $tb_type . '_xml.php' );
27 27
     }
28 28
 
29
-	unset( $item_ids, $records[ $tb_type ], $tb_type );
29
+	unset( $item_ids, $records[$tb_type], $tb_type );
30 30
 }
31 31
 
32 32
 ?>
Please login to merge, or discard this patch.
classes/widgets/FrmShowForm.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@  discard block
 block discarded – undo
8 8
 	}
9 9
 
10 10
 	public function widget( $args, $instance ) {
11
-        if ( empty($instance['title']) ) {
12
-            $title = FrmForm::getName( $instance['form'] );
13
-        } else {
14
-            $title = $instance['title'];
15
-        }
16
-        $title = apply_filters('widget_title', $title);
11
+		if ( empty($instance['title']) ) {
12
+			$title = FrmForm::getName( $instance['form'] );
13
+		} else {
14
+			$title = $instance['title'];
15
+		}
16
+		$title = apply_filters('widget_title', $title);
17 17
 
18
-        $instance['description'] = isset($instance['description']) ? $instance['description'] : false;
18
+		$instance['description'] = isset($instance['description']) ? $instance['description'] : false;
19 19
 
20 20
 		echo $args['before_widget'];
21 21
 
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 	}
36 36
 
37 37
 	public function form( $instance ) {
38
-	    //Defaults
38
+		//Defaults
39 39
 		$instance = wp_parse_args( (array) $instance, array(
40
-		    'title' => false, 'form' => false, 'description' => false,
40
+			'title' => false, 'form' => false, 'description' => false,
41 41
 		) );
42 42
 ?>
43 43
 	<p><label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>"><?php _e( 'Title', 'formidable' ) ?>:</label><br/>
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
 
46 46
 	<p><label for="<?php echo esc_attr( $this->get_field_id('form') ); ?>"><?php _e( 'Form', 'formidable' ) ?>:</label><br/>
47 47
 <?php
48
-	    FrmFormsHelper::forms_dropdown( $this->get_field_name('form'), $instance['form'], array(
49
-	        'blank' => false, 'field_id' => $this->get_field_id('form'),
50
-            'class' => 'widefat',
51
-	    ) );
48
+		FrmFormsHelper::forms_dropdown( $this->get_field_name('form'), $instance['form'], array(
49
+			'blank' => false, 'field_id' => $this->get_field_id('form'),
50
+			'class' => 'widefat',
51
+		) );
52 52
 ?>
53 53
 	</p>
54 54
 
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -4,27 +4,27 @@  discard block
 block discarded – undo
4 4
 
5 5
 	public function __construct() {
6 6
 		$widget_ops = array( 'description' => __( 'Display a Formidable Form', 'formidable' ) );
7
-		parent::__construct('frm_show_form', __( 'Formidable Form', 'formidable' ), $widget_ops);
7
+		parent::__construct( 'frm_show_form', __( 'Formidable Form', 'formidable' ), $widget_ops );
8 8
 	}
9 9
 
10 10
 	public function widget( $args, $instance ) {
11
-        if ( empty($instance['title']) ) {
11
+        if ( empty( $instance['title'] ) ) {
12 12
             $title = FrmForm::getName( $instance['form'] );
13 13
         } else {
14 14
             $title = $instance['title'];
15 15
         }
16
-        $title = apply_filters('widget_title', $title);
16
+        $title = apply_filters( 'widget_title', $title );
17 17
 
18
-        $instance['description'] = isset($instance['description']) ? $instance['description'] : false;
18
+        $instance['description'] = isset( $instance['description'] ) ? $instance['description'] : false;
19 19
 
20 20
 		echo $args['before_widget'];
21 21
 
22 22
 		echo '<div class="frm_form_widget">';
23 23
 		if ( $title ) {
24
-			echo $args['before_title'] . stripslashes($title) . $args['after_title'];
24
+			echo $args['before_title'] . stripslashes( $title ) . $args['after_title'];
25 25
 		}
26 26
 
27
-		echo FrmFormsController::show_form($instance['form'], '', false, $instance['description']);
27
+		echo FrmFormsController::show_form( $instance['form'], '', false, $instance['description'] );
28 28
 
29 29
 		echo '</div>';
30 30
 		echo $args['after_widget'];
@@ -40,19 +40,19 @@  discard block
 block discarded – undo
40 40
 		    'title' => false, 'form' => false, 'description' => false,
41 41
 		) );
42 42
 ?>
43
-	<p><label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>"><?php _e( 'Title', 'formidable' ) ?>:</label><br/>
44
-	<input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ); ?>" name="<?php echo esc_attr( $this->get_field_name('title') ); ?>" value="<?php echo esc_attr( stripslashes($instance['title']) ); ?>" /></p>
43
+	<p><label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title', 'formidable' ) ?>:</label><br/>
44
+	<input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" value="<?php echo esc_attr( stripslashes( $instance['title'] ) ); ?>" /></p>
45 45
 
46
-	<p><label for="<?php echo esc_attr( $this->get_field_id('form') ); ?>"><?php _e( 'Form', 'formidable' ) ?>:</label><br/>
46
+	<p><label for="<?php echo esc_attr( $this->get_field_id( 'form' ) ); ?>"><?php _e( 'Form', 'formidable' ) ?>:</label><br/>
47 47
 <?php
48
-	    FrmFormsHelper::forms_dropdown( $this->get_field_name('form'), $instance['form'], array(
49
-	        'blank' => false, 'field_id' => $this->get_field_id('form'),
48
+	    FrmFormsHelper::forms_dropdown( $this->get_field_name( 'form' ), $instance['form'], array(
49
+	        'blank' => false, 'field_id' => $this->get_field_id( 'form' ),
50 50
             'class' => 'widefat',
51 51
 	    ) );
52 52
 ?>
53 53
 	</p>
54 54
 
55
-	<p><label for="<?php echo esc_attr( $this->get_field_id('description') ); ?>"><input class="checkbox" type="checkbox" <?php checked($instance['description'], true) ?> id="<?php echo esc_attr( $this->get_field_id('description') ); ?>" name="<?php echo esc_attr( $this->get_field_name('description') ); ?>" value="1" />
55
+	<p><label for="<?php echo esc_attr( $this->get_field_id( 'description' ) ); ?>"><input class="checkbox" type="checkbox" <?php checked( $instance['description'], true ) ?> id="<?php echo esc_attr( $this->get_field_id( 'description' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'description' ) ); ?>" value="1" />
56 56
 	<?php _e( 'Show Description', 'formidable' ) ?></label></p>
57 57
 <?php
58 58
 	}
Please login to merge, or discard this patch.