Completed
Push — master ( 7ea892...f08bb3 )
by Jamie
03:56
created
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.
css/_single_theme.css.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -3,23 +3,23 @@  discard block
 block discarded – undo
3 3
 if ( isset($_GET['frm_style_setting']) || isset($_GET['flat']) ) {
4 4
 	if ( isset( $_GET['frm_style_setting'] ) ) {
5 5
 		extract( $_GET['frm_style_setting']['post_content'] );
6
-    } else {
7
-        extract($_GET);
8
-    }
6
+	} else {
7
+		extract($_GET);
8
+	}
9 9
 
10
-    $important_style = isset($important_style) ? $important_style : 0;
11
-    $auto_width = isset($auto_width) ? $auto_width : 0;
12
-    $submit_style = isset($submit_style) ? $submit_style : 0;
10
+	$important_style = isset($important_style) ? $important_style : 0;
11
+	$auto_width = isset($auto_width) ? $auto_width : 0;
12
+	$submit_style = isset($submit_style) ? $submit_style : 0;
13 13
 
14 14
 	$style_name = FrmAppHelper::simple_get( 'style_name', 'sanitize_title' );
15 15
 	if ( ! empty( $style_name ) ) {
16 16
 		$style_class = $style_name . '.with_frm_style';
17
-    } else {
18
-        $style_class = 'with_frm_style';
19
-    }
17
+	} else {
18
+		$style_class = 'with_frm_style';
19
+	}
20 20
 } else {
21
-    $style_class = 'frm_style_'. $style->post_name .'.with_frm_style';
22
-    extract($style->post_content);
21
+	$style_class = 'frm_style_'. $style->post_name .'.with_frm_style';
22
+	extract($style->post_content);
23 23
 }
24 24
 
25 25
 $important = empty($important_style) ? '' : ' !important';
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 }
41 41
 
42 42
 if ( ! isset($collapse_icon) ) {
43
-    $collapse_icon = 0;
43
+	$collapse_icon = 0;
44 44
 }
45 45
 
46 46
 if ( ! isset( $center_form ) ) {
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
     color:#<?php echo esc_html( $text_color . $important ) ?>;
324 324
     background-color:#<?php echo esc_html( $bg_color . $important ); ?>;
325 325
 <?php if ( ! empty($important) ) {
326
-    echo esc_html( 'background-image:none' . $important . ';' );
326
+	echo esc_html( 'background-image:none' . $important . ';' );
327 327
 }
328 328
 ?>
329 329
     border-color:#<?php echo esc_html( $border_color . $important ) ?>;
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
     color:#<?php echo esc_html( $submit_active_color . $important ) ?>;
531 531
 }
532 532
 <?php
533
-    }
533
+	}
534 534
 }
535 535
 ?>
536 536
 
@@ -832,11 +832,11 @@  discard block
 block discarded – undo
832 832
 
833 833
 .<?php echo esc_html( $style_class ) ?> .chosen-container-single .chosen-single div{
834 834
 <?php
835
-    // calculate the top position based on field padding
836
-    $top_pad = explode(' ', $field_pad);
837
-    $top_pad = reset($top_pad); // the top padding is listed first
838
-    $pad_unit = preg_replace('/[0-9]+/', '', $top_pad); //px, em, rem...
839
-    $top_margin = (int) str_replace($pad_unit, '', $top_pad) / 2;
835
+	// calculate the top position based on field padding
836
+	$top_pad = explode(' ', $field_pad);
837
+	$top_pad = reset($top_pad); // the top padding is listed first
838
+	$pad_unit = preg_replace('/[0-9]+/', '', $top_pad); //px, em, rem...
839
+	$top_margin = (int) str_replace($pad_unit, '', $top_pad) / 2;
840 840
 ?>
841 841
     top:<?php echo esc_html( $top_margin . $pad_unit . $important ) ?>;
842 842
 }
Please login to merge, or discard this patch.
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if ( isset($_GET['frm_style_setting']) || isset($_GET['flat']) ) {
3
+if ( isset( $_GET['frm_style_setting'] ) || isset( $_GET['flat'] ) ) {
4 4
 	if ( isset( $_GET['frm_style_setting'] ) ) {
5 5
 		extract( $_GET['frm_style_setting']['post_content'] );
6 6
     } else {
7
-        extract($_GET);
7
+        extract( $_GET );
8 8
     }
9 9
 
10
-    $important_style = isset($important_style) ? $important_style : 0;
11
-    $auto_width = isset($auto_width) ? $auto_width : 0;
12
-    $submit_style = isset($submit_style) ? $submit_style : 0;
10
+    $important_style = isset( $important_style ) ? $important_style : 0;
11
+    $auto_width = isset( $auto_width ) ? $auto_width : 0;
12
+    $submit_style = isset( $submit_style ) ? $submit_style : 0;
13 13
 
14 14
 	$style_name = FrmAppHelper::simple_get( 'style_name', 'sanitize_title' );
15 15
 	if ( ! empty( $style_name ) ) {
@@ -18,11 +18,11 @@  discard block
 block discarded – undo
18 18
         $style_class = 'with_frm_style';
19 19
     }
20 20
 } else {
21
-    $style_class = 'frm_style_'. $style->post_name .'.with_frm_style';
22
-    extract($style->post_content);
21
+    $style_class = 'frm_style_' . $style->post_name . '.with_frm_style';
22
+    extract( $style->post_content );
23 23
 }
24 24
 
25
-$important = empty($important_style) ? '' : ' !important';
25
+$important = empty( $important_style ) ? '' : ' !important';
26 26
 $label_margin = (int) $width + 10;
27 27
 
28 28
 $minus_icons = FrmStylesHelper::minus_icons();
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	$change_margin = 650 . 'px';
40 40
 }
41 41
 
42
-if ( ! isset($collapse_icon) ) {
42
+if ( ! isset( $collapse_icon ) ) {
43 43
     $collapse_icon = 0;
44 44
 }
45 45
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     border:<?php echo esc_html( $fieldset ) ?> solid #<?php echo esc_html( $fieldset_color . $important ) ?>;
76 76
     margin:0;
77 77
     padding:<?php echo esc_html( $fieldset_padding . $important ) ?>;
78
-    background-color:<?php echo esc_html( empty($fieldset_bg_color) ? 'transparent' : '#'. $fieldset_bg_color ); ?>;
78
+    background-color:<?php echo esc_html( empty( $fieldset_bg_color ) ? 'transparent' : '#' . $fieldset_bg_color ); ?>;
79 79
 }
80 80
 
81 81
 .<?php echo esc_html( $style_class ) ?> .frm-show-form  > h3{
@@ -115,8 +115,8 @@  discard block
 block discarded – undo
115 115
 }
116 116
 
117 117
 .<?php echo esc_html( $style_class ) ?> .frm_repeat_sec{
118
-    margin-bottom:<?php echo esc_html( $field_margin. $important ) ?>;
119
-    margin-top:<?php echo esc_html( $field_margin. $important ) ?>;
118
+    margin-bottom:<?php echo esc_html( $field_margin . $important ) ?>;
119
+    margin-top:<?php echo esc_html( $field_margin . $important ) ?>;
120 120
 }
121 121
 
122 122
 .<?php echo esc_html( $style_class ) ?> label.frm_primary_label,
@@ -137,11 +137,11 @@  discard block
 block discarded – undo
137 137
 }
138 138
 
139 139
 .<?php echo esc_html( $style_class ) ?> .frm_icon_font.frm_minus_icon:before{
140
-	content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['-'] : $minus_icons[1]['-'] ) ?>";
140
+	content:"\e<?php echo esc_html( isset( $minus_icons[$repeat_icon] ) ? $minus_icons[$repeat_icon]['-'] : $minus_icons[1]['-'] ) ?>";
141 141
 }
142 142
 
143 143
 .<?php echo esc_html( $style_class ) ?> .frm_icon_font.frm_plus_icon:before{
144
-	content:"\e<?php echo esc_html( isset( $minus_icons[ $repeat_icon ] ) ? $minus_icons[ $repeat_icon ]['+'] : $minus_icons[1]['+'] ) ?>";
144
+	content:"\e<?php echo esc_html( isset( $minus_icons[$repeat_icon] ) ? $minus_icons[$repeat_icon]['+'] : $minus_icons[1]['+'] ) ?>";
145 145
 }
146 146
 
147 147
 .<?php echo esc_html( $style_class ) ?> .frm_icon_font.frm_minus_icon:before,
@@ -150,15 +150,15 @@  discard block
 block discarded – undo
150 150
 }
151 151
 
152 152
 .<?php echo esc_html( $style_class ) ?> .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{
153
-	content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['-'] : $arrow_icons[1]['-'] ) ?>";
153
+	content:"\e<?php echo esc_html( isset( $arrow_icons[$collapse_icon] ) ? $arrow_icons[$collapse_icon]['-'] : $arrow_icons[1]['-'] ) ?>";
154 154
 }
155 155
 
156 156
 .<?php echo esc_html( $style_class ) ?> .frm_trigger .frm_icon_font.frm_arrow_icon:before{
157
-	content:"\e<?php echo esc_html( isset( $arrow_icons[ $collapse_icon ] ) ? $arrow_icons[ $collapse_icon ]['+'] : $arrow_icons[1]['+'] ) ?>";
157
+	content:"\e<?php echo esc_html( isset( $arrow_icons[$collapse_icon] ) ? $arrow_icons[$collapse_icon]['+'] : $arrow_icons[1]['+'] ) ?>";
158 158
 }
159 159
 
160 160
 .<?php echo esc_html( $style_class ) ?> .form-field{
161
-    margin-bottom:<?php echo esc_html( $field_margin. $important ) ?>;
161
+    margin-bottom:<?php echo esc_html( $field_margin . $important ) ?>;
162 162
 }
163 163
 .<?php echo esc_html( $style_class ) ?> .frm_grid,
164 164
 .<?php echo esc_html( $style_class ) ?> .frm_grid_first,
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 .<?php echo esc_html( $style_class ) ?> .frm_error{
177 177
     margin:0;
178 178
     padding:0;
179
-    font-family:<?php echo FrmAppHelper::kses( stripslashes($font) . $important ) ?>;
179
+    font-family:<?php echo FrmAppHelper::kses( stripslashes( $font ) . $important ) ?>;
180 180
     font-size:<?php echo esc_html( $description_font_size . $important ) ?>;
181 181
     color:#<?php echo esc_html( $description_color . $important ) ?>;
182 182
     font-weight:<?php echo esc_html( $description_weight . $important ) ?>;
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 }
255 255
 
256 256
 .<?php echo esc_html( $style_class ) ?> .form-field.frm_col_field div.frm_description{
257
-    width:<?php echo esc_html( ( $field_width == '' ? 'auto' : $field_width )  . $important ) ?>;
257
+    width:<?php echo esc_html( ( $field_width == '' ? 'auto' : $field_width ) . $important ) ?>;
258 258
     max-width:100%;
259 259
 }
260 260
 
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 
280 280
 .<?php echo esc_html( $style_class ) ?> .frm_scale label{
281 281
     font-weight:<?php echo esc_html( $check_weight . $important ) ?>;
282
-    font-family:<?php echo FrmAppHelper::kses( stripslashes($font) . $important ) ?>;
282
+    font-family:<?php echo FrmAppHelper::kses( stripslashes( $font ) . $important ) ?>;
283 283
     font-size:<?php echo esc_html( $check_font_size . $important ) ?>;
284 284
     color:#<?php echo esc_html( $check_label_color . $important ) ?>;
285 285
 }
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
 .<?php echo esc_html( $style_class ) ?> select,
300 300
 .<?php echo esc_html( $style_class ) ?> textarea,
301 301
 .<?php echo esc_html( $style_class ) ?> .chosen-container{
302
-    font-family:<?php echo FrmAppHelper::kses( stripslashes($font)  . $important ) ?>;
302
+    font-family:<?php echo FrmAppHelper::kses( stripslashes( $font ) . $important ) ?>;
303 303
     font-size:<?php echo esc_html( $field_font_size ) ?>;
304 304
     margin-bottom:0<?php echo esc_html( $important ) ?>;
305 305
 }
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
 .<?php echo esc_html( $style_class ) ?> .chosen-container-single .chosen-single{
323 323
     color:#<?php echo esc_html( $text_color . $important ) ?>;
324 324
     background-color:#<?php echo esc_html( $bg_color . $important ); ?>;
325
-<?php if ( ! empty($important) ) {
325
+<?php if ( ! empty( $important ) ) {
326 326
     echo esc_html( 'background-image:none' . $important . ';' );
327 327
 }
328 328
 ?>
@@ -476,8 +476,8 @@  discard block
 block discarded – undo
476 476
     line-height:normal<?php echo esc_html( $important ) ?>;
477 477
     text-align:center;
478 478
     background:#<?php echo esc_html( $submit_bg_color );
479
-	if ( ! empty($submit_bg_img) ) {
480
-		echo esc_html( ' url('. $submit_bg_img .')' );
479
+	if ( ! empty( $submit_bg_img ) ) {
480
+		echo esc_html( ' url(' . $submit_bg_img . ')' );
481 481
 	}
482 482
 	echo esc_html( $important ); ?>;
483 483
     border-width:<?php echo esc_html( $submit_border_width ) ?>;
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
 
575 575
 .<?php echo esc_html( $style_class ) ?> .frm_radio label,
576 576
 .<?php echo esc_html( $style_class ) ?> .frm_checkbox label{
577
-    font-family:<?php echo FrmAppHelper::kses( stripslashes($font) . $important ) ?>;
577
+    font-family:<?php echo FrmAppHelper::kses( stripslashes( $font ) . $important ) ?>;
578 578
     font-size:<?php echo esc_html( $check_font_size . $important ) ?>;
579 579
     color:#<?php echo esc_html( $check_label_color . $important ) ?>;
580 580
     font-weight:<?php echo esc_html( $check_weight . $important ) ?>;
@@ -714,7 +714,7 @@  discard block
 block discarded – undo
714 714
     -webkit-border-radius:<?php echo esc_html( $border_radius . $important ) ?>;
715 715
     border-radius:<?php echo esc_html( $border_radius . $important ) ?>;
716 716
     font-size:<?php echo esc_html( $submit_font_size . $important ) ?>;
717
-    font-family:<?php echo FrmAppHelper::kses( stripslashes($font) . $important ) ?>;
717
+    font-family:<?php echo FrmAppHelper::kses( stripslashes( $font ) . $important ) ?>;
718 718
     font-weight:<?php echo esc_html( $submit_weight . $important ) ?>;
719 719
     color:#<?php echo esc_html( $submit_text_color . $important ) ?>;
720 720
     background:#<?php echo esc_html( $submit_bg_color . $important ) ?>;
@@ -833,10 +833,10 @@  discard block
 block discarded – undo
833 833
 .<?php echo esc_html( $style_class ) ?> .chosen-container-single .chosen-single div{
834 834
 <?php
835 835
     // calculate the top position based on field padding
836
-    $top_pad = explode(' ', $field_pad);
837
-    $top_pad = reset($top_pad); // the top padding is listed first
838
-    $pad_unit = preg_replace('/[0-9]+/', '', $top_pad); //px, em, rem...
839
-    $top_margin = (int) str_replace($pad_unit, '', $top_pad) / 2;
836
+    $top_pad = explode( ' ', $field_pad );
837
+    $top_pad = reset( $top_pad ); // the top padding is listed first
838
+    $pad_unit = preg_replace( '/[0-9]+/', '', $top_pad ); //px, em, rem...
839
+    $top_margin = (int) str_replace( $pad_unit, '', $top_pad ) / 2;
840 840
 ?>
841 841
     top:<?php echo esc_html( $top_margin . $pad_unit . $important ) ?>;
842 842
 }
Please login to merge, or discard this patch.
css/custom_theme.css.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 if ( ! isset($saving) ) {
3
-    header( 'Content-type: text/css' );
3
+	header( 'Content-type: text/css' );
4 4
 
5
-    if ( isset($css) && $css ) {
6
-        echo $css;
7
-        die();
8
-    }
5
+	if ( isset($css) && $css ) {
6
+		echo $css;
7
+		die();
8
+	}
9 9
 }
10 10
 
11 11
 if ( ! isset($frm_style) ) {
12
-    $frm_style = new FrmStyle();
12
+	$frm_style = new FrmStyle();
13 13
 }
14 14
 
15 15
 $styles = $frm_style->get_all();
@@ -178,8 +178,8 @@  discard block
 block discarded – undo
178 178
 
179 179
 <?php
180 180
 foreach ( $styles as $style ) {
181
-    include(dirname(__FILE__) .'/_single_theme.css.php');
182
-    unset($style);
181
+	include(dirname(__FILE__) .'/_single_theme.css.php');
182
+	unset($style);
183 183
 }
184 184
 ?>
185 185
 
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! isset($saving) ) {
2
+if ( ! isset( $saving ) ) {
3 3
     header( 'Content-type: text/css' );
4 4
 
5
-    if ( isset($css) && $css ) {
5
+    if ( isset( $css ) && $css ) {
6 6
         echo $css;
7 7
         die();
8 8
     }
9 9
 }
10 10
 
11
-if ( ! isset($frm_style) ) {
11
+if ( ! isset( $frm_style ) ) {
12 12
     $frm_style = new FrmStyle();
13 13
 }
14 14
 
15 15
 $styles = $frm_style->get_all();
16
-$default_style = $frm_style->get_default_style($styles);
16
+$default_style = $frm_style->get_default_style( $styles );
17 17
 $defaults = $default_style->post_content;
18 18
 ?>
19 19
 
@@ -178,8 +178,8 @@  discard block
 block discarded – undo
178 178
 
179 179
 <?php
180 180
 foreach ( $styles as $style ) {
181
-    include(dirname(__FILE__) .'/_single_theme.css.php');
182
-    unset($style);
181
+    include( dirname( __FILE__ ) . '/_single_theme.css.php' );
182
+    unset( $style );
183 183
 }
184 184
 ?>
185 185
 
@@ -1162,7 +1162,7 @@  discard block
 block discarded – undo
1162 1162
     -moz-border-radius:<?php echo $defaults['border_radius'] ?>;
1163 1163
     -webkit-border-radius:<?php echo $defaults['border_radius'] ?>;
1164 1164
     border-radius:<?php echo $defaults['border_radius'] ?>;
1165
-    width:<?php echo ($defaults['field_width'] == '' ? 'auto' : $defaults['field_width']) ?>;
1165
+    width:<?php echo ( $defaults['field_width'] == '' ? 'auto' : $defaults['field_width'] ) ?>;
1166 1166
     max-width:100%;
1167 1167
     font-size:<?php echo $defaults['field_font_size'] ?>;
1168 1168
     padding:<?php echo $defaults['field_pad'] ?>;
@@ -1735,7 +1735,7 @@  discard block
 block discarded – undo
1735 1735
 	font-style:normal;
1736 1736
 }
1737 1737
 
1738
-<?php include(FrmAppHelper::plugin_path() .'/css/font_icons.css'); ?>
1738
+<?php include( FrmAppHelper::plugin_path() . '/css/font_icons.css' ); ?>
1739 1739
 
1740 1740
 /* Responsive */
1741 1741
 @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){
Please login to merge, or discard this patch.
deprecated.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 // 2.0
4 4
 if ( ! isset($frm_vars['pro_is_installed']) ) {
5
-    $frm_vars['pro_is_installed'] = false;
5
+	$frm_vars['pro_is_installed'] = false;
6 6
 }
7 7
 
8 8
 // Instansiate Models
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // 2.0
4
-if ( ! isset($frm_vars['pro_is_installed']) ) {
4
+if ( ! isset( $frm_vars['pro_is_installed'] ) ) {
5 5
     $frm_vars['pro_is_installed'] = false;
6 6
 }
7 7
 
Please login to merge, or discard this patch.
formidable.php 2 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -23,41 +23,41 @@  discard block
 block discarded – undo
23 23
 
24 24
 global $frm_vars;
25 25
 $frm_vars = array(
26
-    'load_css' => false, 'forms_loaded' => array(),
27
-    'created_entries'   => array(),
28
-    'pro_is_authorized' => false,
26
+	'load_css' => false, 'forms_loaded' => array(),
27
+	'created_entries'   => array(),
28
+	'pro_is_authorized' => false,
29 29
 );
30 30
 
31 31
 function frm_forms_autoloader( $class_name ) {
32
-    // Only load Frm classes here
32
+	// Only load Frm classes here
33 33
 	if ( ! preg_match( '/^Frm.+$/', $class_name ) ) {
34
-        return;
35
-    }
34
+		return;
35
+	}
36 36
 
37
-    $filepath = dirname(__FILE__);
37
+	$filepath = dirname(__FILE__);
38 38
 	if ( preg_match( '/^FrmPro.+$/', $class_name ) || 'FrmUpdatesController' == $class_name ) {
39
-        $filepath .= '/pro';
40
-    }
41
-    $filepath .= '/classes';
39
+		$filepath .= '/pro';
40
+	}
41
+	$filepath .= '/classes';
42 42
 
43 43
 	if ( preg_match( '/^.+Helper$/', $class_name ) ) {
44
-        $filepath .= '/helpers/';
44
+		$filepath .= '/helpers/';
45 45
 	} else if ( preg_match( '/^.+Controller$/', $class_name ) ) {
46
-        $filepath .= '/controllers/';
47
-    } else {
48
-        $filepath .= '/models/';
49
-    }
46
+		$filepath .= '/controllers/';
47
+	} else {
48
+		$filepath .= '/models/';
49
+	}
50 50
 
51
-    $filepath .= $class_name .'.php';
51
+	$filepath .= $class_name .'.php';
52 52
 
53
-    if ( file_exists($filepath) ) {
54
-        include($filepath);
55
-    }
53
+	if ( file_exists($filepath) ) {
54
+		include($filepath);
55
+	}
56 56
 }
57 57
 
58 58
 // if __autoload is active, put it on the spl_autoload stack
59 59
 if ( is_array(spl_autoload_functions()) && in_array( '__autoload', spl_autoload_functions()) ) {
60
-    spl_autoload_register('__autoload');
60
+	spl_autoload_register('__autoload');
61 61
 }
62 62
 
63 63
 // Add the autoloader
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
 $frm_path = dirname(__FILE__);
67 67
 if ( file_exists($frm_path . '/pro/formidable-pro.php') ) {
68
-    include($frm_path .'/pro/formidable-pro.php');
68
+	include($frm_path .'/pro/formidable-pro.php');
69 69
 }
70 70
 
71 71
 FrmHooksController::trigger_load_hook();
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         return;
35 35
     }
36 36
 
37
-    $filepath = dirname(__FILE__);
37
+    $filepath = dirname( __FILE__ );
38 38
 	if ( preg_match( '/^FrmPro.+$/', $class_name ) || 'FrmUpdatesController' == $class_name ) {
39 39
         $filepath .= '/pro';
40 40
     }
@@ -48,27 +48,27 @@  discard block
 block discarded – undo
48 48
         $filepath .= '/models/';
49 49
     }
50 50
 
51
-    $filepath .= $class_name .'.php';
51
+    $filepath .= $class_name . '.php';
52 52
 
53
-    if ( file_exists($filepath) ) {
54
-        include($filepath);
53
+    if ( file_exists( $filepath ) ) {
54
+        include( $filepath );
55 55
     }
56 56
 }
57 57
 
58 58
 // if __autoload is active, put it on the spl_autoload stack
59
-if ( is_array(spl_autoload_functions()) && in_array( '__autoload', spl_autoload_functions()) ) {
60
-    spl_autoload_register('__autoload');
59
+if ( is_array( spl_autoload_functions() ) && in_array( '__autoload', spl_autoload_functions() ) ) {
60
+    spl_autoload_register( '__autoload' );
61 61
 }
62 62
 
63 63
 // Add the autoloader
64
-spl_autoload_register('frm_forms_autoloader');
64
+spl_autoload_register( 'frm_forms_autoloader' );
65 65
 
66
-$frm_path = dirname(__FILE__);
67
-if ( file_exists($frm_path . '/pro/formidable-pro.php') ) {
68
-    include($frm_path .'/pro/formidable-pro.php');
66
+$frm_path = dirname( __FILE__ );
67
+if ( file_exists( $frm_path . '/pro/formidable-pro.php' ) ) {
68
+    include( $frm_path . '/pro/formidable-pro.php' );
69 69
 }
70 70
 
71 71
 FrmHooksController::trigger_load_hook();
72 72
 
73
-include_once($frm_path .'/deprecated.php');
74
-unset($frm_path);
73
+include_once( $frm_path . '/deprecated.php' );
74
+unset( $frm_path );
Please login to merge, or discard this patch.
classes/helpers/FrmFormActionsHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined('ABSPATH') ) {
2
+if ( ! defined( 'ABSPATH' ) ) {
3 3
 	die( 'You are not allowed to call this page directly.' );
4 4
 }
5 5
 
Please login to merge, or discard this patch.
classes/controllers/FrmFormsController.php 2 patches
Indentation   +629 added lines, -629 removed lines patch added patch discarded remove patch
@@ -2,136 +2,136 @@  discard block
 block discarded – undo
2 2
 
3 3
 class FrmFormsController {
4 4
 
5
-    public static function menu() {
6
-        add_submenu_page('formidable', 'Formidable | '. __( 'Forms', 'formidable' ), __( 'Forms', 'formidable' ), 'frm_view_forms', 'formidable', 'FrmFormsController::route' );
5
+	public static function menu() {
6
+		add_submenu_page('formidable', 'Formidable | '. __( 'Forms', 'formidable' ), __( 'Forms', 'formidable' ), 'frm_view_forms', 'formidable', 'FrmFormsController::route' );
7 7
 
8
-	    add_filter('get_user_option_managetoplevel_page_formidablecolumnshidden', 'FrmFormsController::hidden_columns' );
8
+		add_filter('get_user_option_managetoplevel_page_formidablecolumnshidden', 'FrmFormsController::hidden_columns' );
9 9
 
10
-	    add_filter('manage_toplevel_page_formidable_columns', 'FrmFormsController::get_columns', 0 );
10
+		add_filter('manage_toplevel_page_formidable_columns', 'FrmFormsController::get_columns', 0 );
11 11
 		add_filter('manage_toplevel_page_formidable_sortable_columns', 'FrmFormsController::get_sortable_columns' );
12
-    }
12
+	}
13 13
 
14
-    public static function head() {
15
-        wp_enqueue_script('formidable-editinplace');
14
+	public static function head() {
15
+		wp_enqueue_script('formidable-editinplace');
16 16
 
17
-        if ( wp_is_mobile() ) {
18
-    		wp_enqueue_script( 'jquery-touch-punch' );
19
-    	}
20
-    }
17
+		if ( wp_is_mobile() ) {
18
+			wp_enqueue_script( 'jquery-touch-punch' );
19
+		}
20
+	}
21 21
 
22
-    public static function register_widgets() {
23
-        require_once(FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php');
24
-        register_widget('FrmShowForm');
25
-    }
22
+	public static function register_widgets() {
23
+		require_once(FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php');
24
+		register_widget('FrmShowForm');
25
+	}
26 26
 
27
-    public static function list_form() {
28
-        FrmAppHelper::permission_check('frm_view_forms');
27
+	public static function list_form() {
28
+		FrmAppHelper::permission_check('frm_view_forms');
29 29
 
30 30
 		$params = FrmForm::list_page_params();
31
-        $errors = self::process_bulk_form_actions( array());
32
-        $errors = apply_filters('frm_admin_list_form_action', $errors);
31
+		$errors = self::process_bulk_form_actions( array());
32
+		$errors = apply_filters('frm_admin_list_form_action', $errors);
33 33
 
34 34
 		return self::display_forms_list( $params, '', $errors );
35
-    }
35
+	}
36 36
 
37 37
 	public static function new_form( $values = array() ) {
38
-        FrmAppHelper::permission_check('frm_edit_forms');
38
+		FrmAppHelper::permission_check('frm_edit_forms');
39 39
 
40
-        global $frm_vars;
40
+		global $frm_vars;
41 41
 
42
-        $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action';
42
+		$action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action';
43 43
 		$action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[ $action ];
44 44
 
45 45
 		if ( $action == 'create' ) {
46
-            return self::create($values);
46
+			return self::create($values);
47 47
 		} else if ( $action == 'new' ) {
48 48
 			$frm_field_selection = FrmField::field_selection();
49
-            $values = FrmFormsHelper::setup_new_vars($values);
50
-            $id = FrmForm::create( $values );
51
-            $form = FrmForm::getOne($id);
49
+			$values = FrmFormsHelper::setup_new_vars($values);
50
+			$id = FrmForm::create( $values );
51
+			$form = FrmForm::getOne($id);
52 52
 
53
-            // add default email notification
54
-            $action_control = FrmFormActionsController::get_form_actions( 'email' );
55
-            $action_control->create($form->id);
53
+			// add default email notification
54
+			$action_control = FrmFormActionsController::get_form_actions( 'email' );
55
+			$action_control->create($form->id);
56 56
 
57 57
 			$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
58 58
 
59
-            $values['id'] = $id;
60
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
61
-        }
62
-    }
59
+			$values['id'] = $id;
60
+			require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
61
+		}
62
+	}
63 63
 
64 64
 	public static function create( $values = array() ) {
65
-        FrmAppHelper::permission_check('frm_edit_forms');
65
+		FrmAppHelper::permission_check('frm_edit_forms');
66 66
 
67
-        global $frm_vars;
68
-        if ( empty( $values ) ) {
69
-            $values = $_POST;
70
-        }
67
+		global $frm_vars;
68
+		if ( empty( $values ) ) {
69
+			$values = $_POST;
70
+		}
71 71
 
72
-        //Set radio button and checkbox meta equal to "other" value
73
-        if ( FrmAppHelper::pro_is_installed() ) {
74
-            $values = FrmProEntry::mod_other_vals( $values, 'back' );
75
-        }
72
+		//Set radio button and checkbox meta equal to "other" value
73
+		if ( FrmAppHelper::pro_is_installed() ) {
74
+			$values = FrmProEntry::mod_other_vals( $values, 'back' );
75
+		}
76 76
 
77 77
 		$id = isset($values['id']) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
78 78
 
79
-        if ( ! current_user_can( 'frm_edit_forms' ) || ( $_POST && ( ! isset( $values['frm_save_form'] ) || ! wp_verify_nonce( $values['frm_save_form'], 'frm_save_form_nonce' ) ) ) ) {
80
-            $frm_settings = FrmAppHelper::get_settings();
81
-            $errors = array( 'form' => $frm_settings->admin_permission );
82
-        } else {
83
-            $errors = FrmForm::validate($values);
84
-        }
79
+		if ( ! current_user_can( 'frm_edit_forms' ) || ( $_POST && ( ! isset( $values['frm_save_form'] ) || ! wp_verify_nonce( $values['frm_save_form'], 'frm_save_form_nonce' ) ) ) ) {
80
+			$frm_settings = FrmAppHelper::get_settings();
81
+			$errors = array( 'form' => $frm_settings->admin_permission );
82
+		} else {
83
+			$errors = FrmForm::validate($values);
84
+		}
85 85
 
86
-        if ( count($errors) > 0 ) {
87
-            $hide_preview = true;
86
+		if ( count($errors) > 0 ) {
87
+			$hide_preview = true;
88 88
 			$frm_field_selection = FrmField::field_selection();
89
-            $form = FrmForm::getOne( $id );
90
-            $fields = FrmField::get_all_for_form($id);
89
+			$form = FrmForm::getOne( $id );
90
+			$fields = FrmField::get_all_for_form($id);
91 91
 
92
-            $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
92
+			$values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
93 93
 			$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
94 94
 
95
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
96
-        } else {
97
-            FrmForm::update( $id, $values, true );
98
-            die(FrmAppHelper::js_redirect(admin_url('admin.php?page=formidable&frm_action=settings&id='. $id)));
99
-        }
100
-    }
95
+			require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
96
+		} else {
97
+			FrmForm::update( $id, $values, true );
98
+			die(FrmAppHelper::js_redirect(admin_url('admin.php?page=formidable&frm_action=settings&id='. $id)));
99
+		}
100
+	}
101 101
 
102
-    public static function edit( $values = false ) {
103
-        FrmAppHelper::permission_check('frm_edit_forms');
102
+	public static function edit( $values = false ) {
103
+		FrmAppHelper::permission_check('frm_edit_forms');
104 104
 
105 105
 		$id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
106
-        return self::get_edit_vars($id);
107
-    }
106
+		return self::get_edit_vars($id);
107
+	}
108 108
 
109
-    public static function settings( $id = false, $message = '' ) {
110
-        FrmAppHelper::permission_check('frm_edit_forms');
109
+	public static function settings( $id = false, $message = '' ) {
110
+		FrmAppHelper::permission_check('frm_edit_forms');
111 111
 
112
-        if ( ! $id || ! is_numeric($id) ) {
112
+		if ( ! $id || ! is_numeric($id) ) {
113 113
 			$id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
114
-        }
114
+		}
115 115
 		return self::get_settings_vars( $id, array(), $message );
116
-    }
116
+	}
117 117
 
118
-    public static function update_settings() {
119
-        FrmAppHelper::permission_check('frm_edit_forms');
118
+	public static function update_settings() {
119
+		FrmAppHelper::permission_check('frm_edit_forms');
120 120
 
121 121
 		$id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
122 122
 
123
-        $errors = FrmForm::validate($_POST);
124
-        if ( count($errors) > 0 ) {
125
-            return self::get_settings_vars($id, $errors);
126
-        }
123
+		$errors = FrmForm::validate($_POST);
124
+		if ( count($errors) > 0 ) {
125
+			return self::get_settings_vars($id, $errors);
126
+		}
127 127
 
128
-        do_action('frm_before_update_form_settings', $id);
128
+		do_action('frm_before_update_form_settings', $id);
129 129
 
130 130
 		FrmForm::update( $id, $_POST );
131 131
 
132
-        $message = __( 'Settings Successfully Updated', 'formidable' );
132
+		$message = __( 'Settings Successfully Updated', 'formidable' );
133 133
 		return self::get_settings_vars( $id, array(), $message );
134
-    }
134
+	}
135 135
 
136 136
 	public static function edit_key() {
137 137
 		$values = self::edit_in_place_value( 'form_key' );
@@ -161,43 +161,43 @@  discard block
 block discarded – undo
161 161
 
162 162
 	public static function update( $values = array() ) {
163 163
 		if ( empty( $values ) ) {
164
-            $values = $_POST;
165
-        }
164
+			$values = $_POST;
165
+		}
166 166
 
167
-        //Set radio button and checkbox meta equal to "other" value
168
-        if ( FrmAppHelper::pro_is_installed() ) {
169
-            $values = FrmProEntry::mod_other_vals( $values, 'back' );
170
-        }
167
+		//Set radio button and checkbox meta equal to "other" value
168
+		if ( FrmAppHelper::pro_is_installed() ) {
169
+			$values = FrmProEntry::mod_other_vals( $values, 'back' );
170
+		}
171 171
 
172
-        $errors = FrmForm::validate( $values );
173
-        $permission_error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'frm_save_form', 'frm_save_form_nonce' );
174
-        if ( $permission_error !== false ) {
175
-            $errors['form'] = $permission_error;
176
-        }
172
+		$errors = FrmForm::validate( $values );
173
+		$permission_error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'frm_save_form', 'frm_save_form_nonce' );
174
+		if ( $permission_error !== false ) {
175
+			$errors['form'] = $permission_error;
176
+		}
177 177
 
178 178
 		$id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
179 179
 
180 180
 		if ( count( $errors ) > 0 ) {
181
-            return self::get_edit_vars( $id, $errors );
181
+			return self::get_edit_vars( $id, $errors );
182 182
 		} else {
183
-            FrmForm::update( $id, $values );
184
-            $message = __( 'Form was Successfully Updated', 'formidable' );
185
-            if ( defined( 'DOING_AJAX' ) ) {
183
+			FrmForm::update( $id, $values );
184
+			$message = __( 'Form was Successfully Updated', 'formidable' );
185
+			if ( defined( 'DOING_AJAX' ) ) {
186 186
 				wp_die( $message );
187
-            }
187
+			}
188 188
 			return self::get_edit_vars( $id, array(), $message );
189
-        }
190
-    }
189
+		}
190
+	}
191 191
 
192
-    public static function bulk_create_template( $ids ) {
193
-        FrmAppHelper::permission_check( 'frm_edit_forms' );
192
+	public static function bulk_create_template( $ids ) {
193
+		FrmAppHelper::permission_check( 'frm_edit_forms' );
194 194
 
195
-        foreach ( $ids as $id ) {
196
-            FrmForm::duplicate( $id, true, true );
197
-        }
195
+		foreach ( $ids as $id ) {
196
+			FrmForm::duplicate( $id, true, true );
197
+		}
198 198
 
199
-        return __( 'Form template was Successfully Created', 'formidable' );
200
-    }
199
+		return __( 'Form template was Successfully Created', 'formidable' );
200
+	}
201 201
 
202 202
 	/**
203 203
 	 * Redirect to the url for creating from a template
@@ -218,45 +218,45 @@  discard block
 block discarded – undo
218 218
 		wp_die();
219 219
 	}
220 220
 
221
-    public static function duplicate() {
222
-        FrmAppHelper::permission_check('frm_edit_forms');
221
+	public static function duplicate() {
222
+		FrmAppHelper::permission_check('frm_edit_forms');
223 223
 
224 224
 		$params = FrmForm::list_page_params();
225
-        $form = FrmForm::duplicate( $params['id'], $params['template'], true );
226
-        $message = ($params['template']) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' );
227
-        if ( $form ) {
225
+		$form = FrmForm::duplicate( $params['id'], $params['template'], true );
226
+		$message = ($params['template']) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' );
227
+		if ( $form ) {
228 228
 			return self::get_edit_vars( $form, array(), $message, true );
229
-        } else {
230
-            return self::display_forms_list($params, __( 'There was a problem creating the new template.', 'formidable' ));
231
-        }
232
-    }
229
+		} else {
230
+			return self::display_forms_list($params, __( 'There was a problem creating the new template.', 'formidable' ));
231
+		}
232
+	}
233 233
 
234
-    public static function page_preview() {
234
+	public static function page_preview() {
235 235
 		$params = FrmForm::list_page_params();
236
-        if ( ! $params['form'] ) {
237
-            return;
238
-        }
239
-
240
-        $form = FrmForm::getOne( $params['form'] );
241
-        if ( ! $form ) {
242
-            return;
243
-        }
244
-        return self::show_form( $form->id, '', true, true );
245
-    }
246
-
247
-    public static function preview() {
248
-        do_action( 'frm_wp' );
249
-
250
-        global $frm_vars;
251
-        $frm_vars['preview'] = true;
252
-
253
-        if ( ! defined( 'ABSPATH' ) && ! defined( 'XMLRPC_REQUEST' ) ) {
254
-            global $wp;
255
-            $root = dirname( dirname( dirname( dirname( __FILE__ ) ) ) );
256
-            include_once( $root.'/wp-config.php' );
257
-            $wp->init();
258
-            $wp->register_globals();
259
-        }
236
+		if ( ! $params['form'] ) {
237
+			return;
238
+		}
239
+
240
+		$form = FrmForm::getOne( $params['form'] );
241
+		if ( ! $form ) {
242
+			return;
243
+		}
244
+		return self::show_form( $form->id, '', true, true );
245
+	}
246
+
247
+	public static function preview() {
248
+		do_action( 'frm_wp' );
249
+
250
+		global $frm_vars;
251
+		$frm_vars['preview'] = true;
252
+
253
+		if ( ! defined( 'ABSPATH' ) && ! defined( 'XMLRPC_REQUEST' ) ) {
254
+			global $wp;
255
+			$root = dirname( dirname( dirname( dirname( __FILE__ ) ) ) );
256
+			include_once( $root.'/wp-config.php' );
257
+			$wp->init();
258
+			$wp->register_globals();
259
+		}
260 260
 
261 261
 		self::register_pro_scripts();
262 262
 
@@ -270,11 +270,11 @@  discard block
 block discarded – undo
270 270
 		$form = FrmForm::getAll( array( 'form_key' => $key ), '', 1 );
271 271
 		if ( empty( $form ) ) {
272 272
 			$form = FrmForm::getAll( array(), '', 1 );
273
-        }
273
+		}
274 274
 
275
-        require(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/direct.php');
276
-        wp_die();
277
-    }
275
+		require(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/direct.php');
276
+		wp_die();
277
+	}
278 278
 
279 279
 	public static function register_pro_scripts() {
280 280
 		if ( FrmAppHelper::pro_is_installed() ) {
@@ -284,22 +284,22 @@  discard block
 block discarded – undo
284 284
 		}
285 285
 	}
286 286
 
287
-    public static function untrash() {
287
+	public static function untrash() {
288 288
 		self::change_form_status( 'untrash' );
289
-    }
289
+	}
290 290
 
291 291
 	public static function bulk_untrash( $ids ) {
292
-        FrmAppHelper::permission_check('frm_edit_forms');
292
+		FrmAppHelper::permission_check('frm_edit_forms');
293 293
 
294
-        $count = FrmForm::set_status( $ids, 'published' );
294
+		$count = FrmForm::set_status( $ids, 'published' );
295 295
 
296
-        $message = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 );
297
-        return $message;
298
-    }
296
+		$message = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 );
297
+		return $message;
298
+	}
299 299
 
300
-    public static function trash() {
300
+	public static function trash() {
301 301
 		self::change_form_status( 'trash' );
302
-    }
302
+	}
303 303
 
304 304
 	/**
305 305
 	 * @param string $status
@@ -337,68 +337,68 @@  discard block
 block discarded – undo
337 337
 	}
338 338
 
339 339
 	public static function bulk_trash( $ids ) {
340
-        FrmAppHelper::permission_check('frm_delete_forms');
340
+		FrmAppHelper::permission_check('frm_delete_forms');
341 341
 
342
-        $count = 0;
343
-        foreach ( $ids as $id ) {
344
-            if ( FrmForm::trash( $id ) ) {
345
-                $count++;
346
-            }
347
-        }
342
+		$count = 0;
343
+		foreach ( $ids as $id ) {
344
+			if ( FrmForm::trash( $id ) ) {
345
+				$count++;
346
+			}
347
+		}
348 348
 
349
-        $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
350
-        $message = sprintf(_n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="'. esc_url(wp_nonce_url( '?page=formidable&frm_action=list&action=bulk_untrash&form_type='. $current_page .'&item-action[]='. implode('item-action[]=', $ids), 'bulk-toplevel_page_formidable' )) .'">', '</a>' );
349
+		$current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
350
+		$message = sprintf(_n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="'. esc_url(wp_nonce_url( '?page=formidable&frm_action=list&action=bulk_untrash&form_type='. $current_page .'&item-action[]='. implode('item-action[]=', $ids), 'bulk-toplevel_page_formidable' )) .'">', '</a>' );
351 351
 
352
-        return $message;
353
-    }
352
+		return $message;
353
+	}
354 354
 
355
-    public static function destroy() {
356
-        FrmAppHelper::permission_check('frm_delete_forms');
355
+	public static function destroy() {
356
+		FrmAppHelper::permission_check('frm_delete_forms');
357 357
 
358 358
 		$params = FrmForm::list_page_params();
359 359
 
360
-        //check nonce url
361
-        check_admin_referer('destroy_form_' . $params['id']);
360
+		//check nonce url
361
+		check_admin_referer('destroy_form_' . $params['id']);
362 362
 
363
-        $count = 0;
364
-        if ( FrmForm::destroy( $params['id'] ) ) {
365
-            $count++;
366
-        }
363
+		$count = 0;
364
+		if ( FrmForm::destroy( $params['id'] ) ) {
365
+			$count++;
366
+		}
367 367
 
368
-        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
368
+		$message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
369 369
 
370 370
 		self::display_forms_list( $params, $message );
371
-    }
371
+	}
372 372
 
373 373
 	public static function bulk_destroy( $ids ) {
374
-        FrmAppHelper::permission_check('frm_delete_forms');
374
+		FrmAppHelper::permission_check('frm_delete_forms');
375 375
 
376
-        $count = 0;
377
-        foreach ( $ids as $id ) {
378
-            $d = FrmForm::destroy( $id );
379
-            if ( $d ) {
380
-                $count++;
381
-            }
382
-        }
376
+		$count = 0;
377
+		foreach ( $ids as $id ) {
378
+			$d = FrmForm::destroy( $id );
379
+			if ( $d ) {
380
+				$count++;
381
+			}
382
+		}
383 383
 
384
-        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
384
+		$message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
385 385
 
386
-        return $message;
387
-    }
386
+		return $message;
387
+	}
388 388
 
389
-    private static function delete_all() {
390
-        //check nonce url
391
-        $permission_error = FrmAppHelper::permission_nonce_error('frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable');
392
-        if ( $permission_error !== false ) {
389
+	private static function delete_all() {
390
+		//check nonce url
391
+		$permission_error = FrmAppHelper::permission_nonce_error('frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable');
392
+		if ( $permission_error !== false ) {
393 393
 			self::display_forms_list( array(), '', array( $permission_error ) );
394
-            return;
395
-        }
394
+			return;
395
+		}
396 396
 
397 397
 		$count = FrmForm::scheduled_delete( time() );
398
-        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
398
+		$message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
399 399
 
400 400
 		self::display_forms_list( array(), $message );
401
-    }
401
+	}
402 402
 
403 403
 	public static function scheduled_delete( $delete_timestamp = '' ) {
404 404
 		_deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::scheduled_delete' );
@@ -406,11 +406,11 @@  discard block
 block discarded – undo
406 406
 	}
407 407
 
408 408
 	/**
409
-	* Inserts Formidable button
410
-	* Hook exists since 2.5.0
411
-	*
412
-	* @since 2.0.15
413
-	*/
409
+	 * Inserts Formidable button
410
+	 * Hook exists since 2.5.0
411
+	 *
412
+	 * @since 2.0.15
413
+	 */
414 414
 	public static function insert_form_button() {
415 415
 		if ( current_user_can('frm_view_forms') ) {
416 416
 			$content = '<a href="#TB_inline?width=50&height=50&inlineId=frm_insert_form" class="thickbox button add_media frm_insert_form" title="' . esc_attr__( 'Add forms and content', 'formidable' ) . '"><span class="frm-buttons-icon wp-media-buttons-icon"></span> Formidable</a>';
@@ -418,48 +418,48 @@  discard block
 block discarded – undo
418 418
 		}
419 419
 	}
420 420
 
421
-    public static function insert_form_popup() {
421
+	public static function insert_form_popup() {
422 422
 		$page = basename( FrmAppHelper::get_server_value( 'PHP_SELF' ) );
423 423
 		if ( ! in_array( $page, array( 'post.php', 'page.php', 'page-new.php', 'post-new.php' ) ) ) {
424
-            return;
425
-        }
424
+			return;
425
+		}
426 426
 
427
-        FrmAppHelper::load_admin_wide_js();
427
+		FrmAppHelper::load_admin_wide_js();
428 428
 
429
-        $shortcodes = array(
429
+		$shortcodes = array(
430 430
 			'formidable' => array( 'name' => __( 'Form', 'formidable' ), 'label' => __( 'Insert a Form', 'formidable' ) ),
431
-        );
431
+		);
432 432
 
433
-        $shortcodes = apply_filters('frm_popup_shortcodes', $shortcodes);
433
+		$shortcodes = apply_filters('frm_popup_shortcodes', $shortcodes);
434 434
 
435
-        include(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/insert_form_popup.php');
436
-    }
435
+		include(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/insert_form_popup.php');
436
+	}
437 437
 
438
-    public static function get_shortcode_opts() {
439
-        check_ajax_referer( 'frm_ajax', 'nonce' );
438
+	public static function get_shortcode_opts() {
439
+		check_ajax_referer( 'frm_ajax', 'nonce' );
440 440
 
441 441
 		$shortcode = FrmAppHelper::get_post_param( 'shortcode', '', 'sanitize_text_field' );
442
-        if ( empty($shortcode) ) {
443
-            wp_die();
444
-        }
442
+		if ( empty($shortcode) ) {
443
+			wp_die();
444
+		}
445 445
 
446
-        echo '<div id="sc-opts-'. esc_attr( $shortcode ) .'" class="frm_shortcode_option">';
447
-        echo '<input type="radio" name="frmsc" value="'. esc_attr($shortcode) .'" id="sc-'. esc_attr($shortcode) .'" class="frm_hidden" />';
446
+		echo '<div id="sc-opts-'. esc_attr( $shortcode ) .'" class="frm_shortcode_option">';
447
+		echo '<input type="radio" name="frmsc" value="'. esc_attr($shortcode) .'" id="sc-'. esc_attr($shortcode) .'" class="frm_hidden" />';
448 448
 
449
-        $form_id = '';
450
-        $opts = array();
449
+		$form_id = '';
450
+		$opts = array();
451 451
 		switch ( $shortcode ) {
452
-            case 'formidable':
453
-                $opts = array(
452
+			case 'formidable':
453
+				$opts = array(
454 454
 					'form_id'       => 'id',
455
-                    //'key' => ',
455
+					//'key' => ',
456 456
 					'title'         => array( 'val' => 1, 'label' => __( 'Display form title', 'formidable' ) ),
457 457
 					'description'   => array( 'val' => 1, 'label' => __( 'Display form description', 'formidable' ) ),
458 458
 					'minimize'      => array( 'val' => 1, 'label' => __( 'Minimize form HTML', 'formidable' ) ),
459
-                );
460
-            break;
461
-        }
462
-        $opts = apply_filters('frm_sc_popup_opts', $opts, $shortcode);
459
+				);
460
+			break;
461
+		}
462
+		$opts = apply_filters('frm_sc_popup_opts', $opts, $shortcode);
463 463
 
464 464
 		if ( isset( $opts['form_id'] ) && is_string( $opts['form_id'] ) ) {
465 465
 			// allow other shortcodes to use the required form id option
@@ -467,63 +467,63 @@  discard block
 block discarded – undo
467 467
 			unset( $opts['form_id'] );
468 468
 		}
469 469
 
470
-        include(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/shortcode_opts.php');
470
+		include(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/shortcode_opts.php');
471 471
 
472
-        echo '</div>';
472
+		echo '</div>';
473 473
 
474
-        wp_die();
475
-    }
474
+		wp_die();
475
+	}
476 476
 
477 477
 	public static function display_forms_list( $params = array(), $message = '', $errors = array(), $deprecated_errors = array() ) {
478
-        FrmAppHelper::permission_check( 'frm_view_forms' );
478
+		FrmAppHelper::permission_check( 'frm_view_forms' );
479 479
 		if ( ! empty( $deprecated_errors ) ) {
480 480
 			$errors = $deprecated_errors;
481 481
 			_deprecated_argument( 'errors', '2.0.8' );
482 482
 		}
483 483
 
484
-        global $wpdb, $frm_vars;
484
+		global $wpdb, $frm_vars;
485 485
 
486 486
 		if ( empty( $params ) ) {
487 487
 			$params = FrmForm::list_page_params();
488
-        }
488
+		}
489 489
 
490
-        $wp_list_table = new FrmFormsListHelper( compact( 'params' ) );
490
+		$wp_list_table = new FrmFormsListHelper( compact( 'params' ) );
491 491
 
492
-        $pagenum = $wp_list_table->get_pagenum();
492
+		$pagenum = $wp_list_table->get_pagenum();
493 493
 
494
-        $wp_list_table->prepare_items();
494
+		$wp_list_table->prepare_items();
495 495
 
496
-        $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
497
-        if ( $pagenum > $total_pages && $total_pages > 0 ) {
496
+		$total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
497
+		if ( $pagenum > $total_pages && $total_pages > 0 ) {
498 498
 			wp_redirect( esc_url_raw( add_query_arg( 'paged', $total_pages ) ) );
499
-            die();
500
-        }
499
+			die();
500
+		}
501 501
 
502
-        require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/list.php');
503
-    }
502
+		require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/list.php');
503
+	}
504 504
 
505 505
 	public static function get_columns( $columns ) {
506
-	    $columns['cb'] = '<input type="checkbox" />';
507
-	    $columns['id'] = 'ID';
506
+		$columns['cb'] = '<input type="checkbox" />';
507
+		$columns['id'] = 'ID';
508 508
 
509
-        $type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : 'published';
509
+		$type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : 'published';
510 510
 
511
-        if ( 'template' == $type ) {
512
-            $columns['name']        = __( 'Template Name', 'formidable' );
513
-            $columns['type']        = __( 'Type', 'formidable' );
514
-            $columns['form_key']    = __( 'Key', 'formidable' );
515
-        } else {
516
-            $columns['name']        = __( 'Form Title', 'formidable' );
517
-            $columns['entries']     = __( 'Entries', 'formidable' );
518
-            $columns['form_key']    = __( 'Key', 'formidable' );
519
-            $columns['shortcode']   = __( 'Shortcodes', 'formidable' );
520
-        }
511
+		if ( 'template' == $type ) {
512
+			$columns['name']        = __( 'Template Name', 'formidable' );
513
+			$columns['type']        = __( 'Type', 'formidable' );
514
+			$columns['form_key']    = __( 'Key', 'formidable' );
515
+		} else {
516
+			$columns['name']        = __( 'Form Title', 'formidable' );
517
+			$columns['entries']     = __( 'Entries', 'formidable' );
518
+			$columns['form_key']    = __( 'Key', 'formidable' );
519
+			$columns['shortcode']   = __( 'Shortcodes', 'formidable' );
520
+		}
521 521
 
522
-        $columns['created_at'] = __( 'Date', 'formidable' );
522
+		$columns['created_at'] = __( 'Date', 'formidable' );
523 523
 
524 524
 		add_screen_option( 'per_page', array( 'label' => __( 'Forms', 'formidable' ), 'default' => 20, 'option' => 'formidable_page_formidable_per_page' ) );
525 525
 
526
-        return $columns;
526
+		return $columns;
527 527
 	}
528 528
 
529 529
 	public static function get_sortable_columns() {
@@ -537,110 +537,110 @@  discard block
 block discarded – undo
537 537
 	}
538 538
 
539 539
 	public static function hidden_columns( $result ) {
540
-        $return = false;
541
-        foreach ( (array) $result as $r ) {
542
-            if ( ! empty( $r ) ) {
543
-                $return = true;
544
-                break;
545
-            }
546
-        }
540
+		$return = false;
541
+		foreach ( (array) $result as $r ) {
542
+			if ( ! empty( $r ) ) {
543
+				$return = true;
544
+				break;
545
+			}
546
+		}
547 547
 
548
-        if ( $return ) {
549
-            return $result;
548
+		if ( $return ) {
549
+			return $result;
550 550
 		}
551 551
 
552
-        $type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
552
+		$type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
553 553
 
554
-        $result[] = 'created_at';
555
-        if ( $type == 'template' ) {
556
-            $result[] = 'id';
557
-            $result[] = 'form_key';
558
-        }
554
+		$result[] = 'created_at';
555
+		if ( $type == 'template' ) {
556
+			$result[] = 'id';
557
+			$result[] = 'form_key';
558
+		}
559 559
 
560
-        return $result;
561
-    }
560
+		return $result;
561
+	}
562 562
 
563 563
 	public static function save_per_page( $save, $option, $value ) {
564
-        if ( $option == 'formidable_page_formidable_per_page' ) {
565
-            $save = (int) $value;
566
-        }
567
-        return $save;
568
-    }
564
+		if ( $option == 'formidable_page_formidable_per_page' ) {
565
+			$save = (int) $value;
566
+		}
567
+		return $save;
568
+	}
569 569
 
570 570
 	private static function get_edit_vars( $id, $errors = array(), $message = '', $create_link = false ) {
571
-        global $frm_vars;
571
+		global $frm_vars;
572 572
 
573
-        $form = FrmForm::getOne( $id );
574
-        if ( ! $form ) {
575
-            wp_die( __( 'You are trying to edit a form that does not exist.', 'formidable' ) );
576
-        }
573
+		$form = FrmForm::getOne( $id );
574
+		if ( ! $form ) {
575
+			wp_die( __( 'You are trying to edit a form that does not exist.', 'formidable' ) );
576
+		}
577 577
 
578
-        if ( $form->parent_form_id ) {
579
-            wp_die( sprintf(__( 'You are trying to edit a child form. Please edit from %1$shere%2$s', 'formidable' ), '<a href="'. esc_url(admin_url('admin.php') .'?page=formidable&frm_action=edit&id='. $form->parent_form_id) .'">', '</a>' ));
580
-        }
578
+		if ( $form->parent_form_id ) {
579
+			wp_die( sprintf(__( 'You are trying to edit a child form. Please edit from %1$shere%2$s', 'formidable' ), '<a href="'. esc_url(admin_url('admin.php') .'?page=formidable&frm_action=edit&id='. $form->parent_form_id) .'">', '</a>' ));
580
+		}
581 581
 
582 582
 		$frm_field_selection = FrmField::field_selection();
583
-        $fields = FrmField::get_all_for_form($form->id);
583
+		$fields = FrmField::get_all_for_form($form->id);
584 584
 
585
-        // Automatically add end section fields if they don't exist (2.0 migration)
586
-        $reset_fields = false;
587
-        FrmFormsHelper::auto_add_end_section_fields( $form, $fields, $reset_fields );
585
+		// Automatically add end section fields if they don't exist (2.0 migration)
586
+		$reset_fields = false;
587
+		FrmFormsHelper::auto_add_end_section_fields( $form, $fields, $reset_fields );
588 588
 
589
-        if ( $reset_fields ) {
590
-            $fields = FrmField::get_all_for_form( $form->id, '', 'exclude' );
591
-        }
589
+		if ( $reset_fields ) {
590
+			$fields = FrmField::get_all_for_form( $form->id, '', 'exclude' );
591
+		}
592 592
 
593
-        unset($end_section_values, $last_order, $open, $reset_fields);
593
+		unset($end_section_values, $last_order, $open, $reset_fields);
594 594
 
595
-        $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
595
+		$values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
596 596
 
597
-        $edit_message = __( 'Form was Successfully Updated', 'formidable' );
598
-        if ( $form->is_template && $message == $edit_message ) {
599
-            $message = __( 'Template was Successfully Updated', 'formidable' );
600
-        }
597
+		$edit_message = __( 'Form was Successfully Updated', 'formidable' );
598
+		if ( $form->is_template && $message == $edit_message ) {
599
+			$message = __( 'Template was Successfully Updated', 'formidable' );
600
+		}
601 601
 
602 602
 		$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
603 603
 
604
-        if ( $form->default_template ) {
605
-            wp_die(__( 'That template cannot be edited', 'formidable' ));
606
-        } else if ( defined('DOING_AJAX') ) {
607
-            wp_die();
608
-        } else if ( $create_link ) {
609
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
610
-        } else {
611
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/edit.php');
612
-        }
613
-    }
604
+		if ( $form->default_template ) {
605
+			wp_die(__( 'That template cannot be edited', 'formidable' ));
606
+		} else if ( defined('DOING_AJAX') ) {
607
+			wp_die();
608
+		} else if ( $create_link ) {
609
+			require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
610
+		} else {
611
+			require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/edit.php');
612
+		}
613
+	}
614 614
 
615 615
 	public static function get_settings_vars( $id, $errors = array(), $message = '' ) {
616 616
 		FrmAppHelper::permission_check( 'frm_edit_forms' );
617 617
 
618
-        global $frm_vars;
618
+		global $frm_vars;
619 619
 
620
-        $form = FrmForm::getOne( $id );
620
+		$form = FrmForm::getOne( $id );
621 621
 
622
-        $fields = FrmField::get_all_for_form($id);
623
-        $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
622
+		$fields = FrmField::get_all_for_form($id);
623
+		$values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
624 624
 
625
-        if ( isset($values['default_template']) && $values['default_template'] ) {
626
-            wp_die(__( 'That template cannot be edited', 'formidable' ));
627
-        }
625
+		if ( isset($values['default_template']) && $values['default_template'] ) {
626
+			wp_die(__( 'That template cannot be edited', 'formidable' ));
627
+		}
628 628
 
629
-        $action_controls = FrmFormActionsController::get_form_actions();
629
+		$action_controls = FrmFormActionsController::get_form_actions();
630 630
 
631
-        $sections = apply_filters('frm_add_form_settings_section', array(), $values);
632
-        $pro_feature = FrmAppHelper::pro_is_installed() ? '' : ' class="pro_feature"';
631
+		$sections = apply_filters('frm_add_form_settings_section', array(), $values);
632
+		$pro_feature = FrmAppHelper::pro_is_installed() ? '' : ' class="pro_feature"';
633 633
 
634
-        $styles = apply_filters('frm_get_style_opts', array());
634
+		$styles = apply_filters('frm_get_style_opts', array());
635 635
 
636
-        require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/settings.php');
637
-    }
636
+		require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/settings.php');
637
+	}
638 638
 
639
-    public static function mb_tags_box( $form_id, $class = '' ) {
640
-        $fields = FrmField::get_all_for_form($form_id, '', 'include');
641
-        $linked_forms = array();
642
-        $col = 'one';
643
-        $settings_tab = FrmAppHelper::is_admin_page('formidable' ) ? true : false;
639
+	public static function mb_tags_box( $form_id, $class = '' ) {
640
+		$fields = FrmField::get_all_for_form($form_id, '', 'include');
641
+		$linked_forms = array();
642
+		$col = 'one';
643
+		$settings_tab = FrmAppHelper::is_admin_page('formidable' ) ? true : false;
644 644
 
645 645
 		$cond_shortcodes = apply_filters( 'frm_conditional_shortcodes', array() );
646 646
 		$adv_shortcodes = self::get_advanced_shortcodes();
@@ -648,7 +648,7 @@  discard block
 block discarded – undo
648 648
 		$entry_shortcodes = self::get_shortcode_helpers( $settings_tab );
649 649
 
650 650
 		include( FrmAppHelper::plugin_path() . '/classes/views/shared/mb_adv_info.php' );
651
-    }
651
+	}
652 652
 
653 653
 	/**
654 654
 	 * Get an array of the options to display in the advanced tab
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
 			''          => '',
690 690
 			'siteurl'   => __( 'Site URL', 'formidable' ),
691 691
 			'sitename'  => __( 'Site Name', 'formidable' ),
692
-        );
692
+		);
693 693
 
694 694
 		if ( ! FrmAppHelper::pro_is_installed() ) {
695 695
 			unset( $entry_shortcodes['post_id'] );
@@ -716,38 +716,38 @@  discard block
 block discarded – undo
716 716
 		return $entry_shortcodes;
717 717
 	}
718 718
 
719
-    // Insert the form class setting into the form
719
+	// Insert the form class setting into the form
720 720
 	public static function form_classes( $form ) {
721
-        if ( isset($form->options['form_class']) ) {
721
+		if ( isset($form->options['form_class']) ) {
722 722
 			echo esc_attr( sanitize_text_field( $form->options['form_class'] ) );
723
-        }
724
-    }
723
+		}
724
+	}
725 725
 
726
-    public static function get_email_html() {
727
-        check_ajax_referer( 'frm_ajax', 'nonce' );
726
+	public static function get_email_html() {
727
+		check_ajax_referer( 'frm_ajax', 'nonce' );
728 728
 		echo FrmEntryFormat::show_entry( array(
729 729
 			'form_id'       => FrmAppHelper::get_post_param( 'form_id', '', 'absint' ),
730
-	        'default_email' => true,
730
+			'default_email' => true,
731 731
 			'plain_text'    => FrmAppHelper::get_post_param( 'plain_text', '', 'absint' ),
732
-	    ) );
733
-	    wp_die();
732
+		) );
733
+		wp_die();
734 734
 	}
735 735
 
736
-    public static function filter_content( $content, $form, $entry = false ) {
736
+	public static function filter_content( $content, $form, $entry = false ) {
737 737
 		self::get_entry_by_param( $entry );
738
-        if ( ! $entry ) {
739
-            return $content;
740
-        }
738
+		if ( ! $entry ) {
739
+			return $content;
740
+		}
741 741
 
742
-        if ( is_object( $form ) ) {
743
-            $form = $form->id;
744
-        }
742
+		if ( is_object( $form ) ) {
743
+			$form = $form->id;
744
+		}
745 745
 
746
-        $shortcodes = FrmFieldsHelper::get_shortcodes( $content, $form );
747
-        $content = apply_filters( 'frm_replace_content_shortcodes', $content, $entry, $shortcodes );
746
+		$shortcodes = FrmFieldsHelper::get_shortcodes( $content, $form );
747
+		$content = apply_filters( 'frm_replace_content_shortcodes', $content, $entry, $shortcodes );
748 748
 
749
-        return $content;
750
-    }
749
+		return $content;
750
+	}
751 751
 
752 752
 	private static function get_entry_by_param( &$entry ) {
753 753
 		if ( ! $entry || ! is_object( $entry ) ) {
@@ -759,287 +759,287 @@  discard block
 block discarded – undo
759 759
 		}
760 760
 	}
761 761
 
762
-    public static function replace_content_shortcodes( $content, $entry, $shortcodes ) {
763
-        return FrmFieldsHelper::replace_content_shortcodes( $content, $entry, $shortcodes );
764
-    }
762
+	public static function replace_content_shortcodes( $content, $entry, $shortcodes ) {
763
+		return FrmFieldsHelper::replace_content_shortcodes( $content, $entry, $shortcodes );
764
+	}
765 765
 
766
-    public static function process_bulk_form_actions( $errors ) {
767
-        if ( ! $_REQUEST ) {
768
-            return $errors;
769
-        }
766
+	public static function process_bulk_form_actions( $errors ) {
767
+		if ( ! $_REQUEST ) {
768
+			return $errors;
769
+		}
770 770
 
771 771
 		$bulkaction = FrmAppHelper::get_param( 'action', '', 'get', 'sanitize_text_field' );
772
-        if ( $bulkaction == -1 ) {
772
+		if ( $bulkaction == -1 ) {
773 773
 			$bulkaction = FrmAppHelper::get_param( 'action2', '', 'get', 'sanitize_title' );
774
-        }
775
-
776
-        if ( ! empty( $bulkaction ) && strpos( $bulkaction, 'bulk_' ) === 0 ) {
777
-            FrmAppHelper::remove_get_action();
778
-
779
-            $bulkaction = str_replace( 'bulk_', '', $bulkaction );
780
-        }
781
-
782
-        $ids = FrmAppHelper::get_param( 'item-action', '' );
783
-        if ( empty( $ids ) ) {
784
-            $errors[] = __( 'No forms were specified', 'formidable' );
785
-            return $errors;
786
-        }
787
-
788
-        $permission_error = FrmAppHelper::permission_nonce_error( '', '_wpnonce', 'bulk-toplevel_page_formidable' );
789
-        if ( $permission_error !== false ) {
790
-            $errors[] = $permission_error;
791
-            return $errors;
792
-        }
793
-
794
-        if ( ! is_array( $ids ) ) {
795
-            $ids = explode( ',', $ids );
796
-        }
797
-
798
-        switch ( $bulkaction ) {
799
-            case 'delete':
800
-                $message = self::bulk_destroy( $ids );
801
-            break;
802
-            case 'trash':
803
-                $message = self::bulk_trash( $ids );
804
-            break;
805
-            case 'untrash':
806
-                $message = self::bulk_untrash( $ids );
807
-            break;
808
-            case 'create_template':
809
-                $message = self::bulk_create_template( $ids );
810
-            break;
811
-        }
812
-
813
-        if ( isset( $message ) && ! empty( $message ) ) {
774
+		}
775
+
776
+		if ( ! empty( $bulkaction ) && strpos( $bulkaction, 'bulk_' ) === 0 ) {
777
+			FrmAppHelper::remove_get_action();
778
+
779
+			$bulkaction = str_replace( 'bulk_', '', $bulkaction );
780
+		}
781
+
782
+		$ids = FrmAppHelper::get_param( 'item-action', '' );
783
+		if ( empty( $ids ) ) {
784
+			$errors[] = __( 'No forms were specified', 'formidable' );
785
+			return $errors;
786
+		}
787
+
788
+		$permission_error = FrmAppHelper::permission_nonce_error( '', '_wpnonce', 'bulk-toplevel_page_formidable' );
789
+		if ( $permission_error !== false ) {
790
+			$errors[] = $permission_error;
791
+			return $errors;
792
+		}
793
+
794
+		if ( ! is_array( $ids ) ) {
795
+			$ids = explode( ',', $ids );
796
+		}
797
+
798
+		switch ( $bulkaction ) {
799
+			case 'delete':
800
+				$message = self::bulk_destroy( $ids );
801
+			break;
802
+			case 'trash':
803
+				$message = self::bulk_trash( $ids );
804
+			break;
805
+			case 'untrash':
806
+				$message = self::bulk_untrash( $ids );
807
+			break;
808
+			case 'create_template':
809
+				$message = self::bulk_create_template( $ids );
810
+			break;
811
+		}
812
+
813
+		if ( isset( $message ) && ! empty( $message ) ) {
814 814
 			echo '<div id="message" class="updated frm_msg_padding">' . FrmAppHelper::kses( $message ) . '</div>';
815
-        }
815
+		}
816 816
 
817
-        return $errors;
818
-    }
817
+		return $errors;
818
+	}
819 819
 
820
-    public static function add_default_templates( $path, $default = true, $template = true ) {
821
-        _deprecated_function( __FUNCTION__, '1.07.05', 'FrmXMLController::add_default_templates()' );
820
+	public static function add_default_templates( $path, $default = true, $template = true ) {
821
+		_deprecated_function( __FUNCTION__, '1.07.05', 'FrmXMLController::add_default_templates()' );
822 822
 
823
-        $path = untrailingslashit(trim($path));
824
-        $templates = glob( $path .'/*.php' );
823
+		$path = untrailingslashit(trim($path));
824
+		$templates = glob( $path .'/*.php' );
825 825
 
826 826
 		for ( $i = count( $templates ) - 1; $i >= 0; $i-- ) {
827
-            $filename = str_replace( '.php', '', str_replace( $path.'/', '', $templates[ $i ] ) );
827
+			$filename = str_replace( '.php', '', str_replace( $path.'/', '', $templates[ $i ] ) );
828 828
 			$template_query = array( 'form_key' => $filename );
829
-            if ( $template ) {
830
-                $template_query['is_template'] = 1;
831
-            }
832
-            if ( $default ) {
833
-                $template_query['default_template'] = 1;
834
-            }
829
+			if ( $template ) {
830
+				$template_query['is_template'] = 1;
831
+			}
832
+			if ( $default ) {
833
+				$template_query['default_template'] = 1;
834
+			}
835 835
 			$form = FrmForm::getAll( $template_query, '', 1 );
836 836
 
837
-            $values = FrmFormsHelper::setup_new_vars();
838
-            $values['form_key'] = $filename;
839
-            $values['is_template'] = $template;
840
-            $values['status'] = 'published';
841
-            if ( $default ) {
842
-                $values['default_template'] = 1;
843
-            }
844
-
845
-            include( $templates[ $i ] );
846
-
847
-            //get updated form
848
-            if ( isset($form) && ! empty($form) ) {
849
-                $old_id = $form->id;
850
-                $form = FrmForm::getOne($form->id);
851
-            } else {
852
-                $old_id = false;
837
+			$values = FrmFormsHelper::setup_new_vars();
838
+			$values['form_key'] = $filename;
839
+			$values['is_template'] = $template;
840
+			$values['status'] = 'published';
841
+			if ( $default ) {
842
+				$values['default_template'] = 1;
843
+			}
844
+
845
+			include( $templates[ $i ] );
846
+
847
+			//get updated form
848
+			if ( isset($form) && ! empty($form) ) {
849
+				$old_id = $form->id;
850
+				$form = FrmForm::getOne($form->id);
851
+			} else {
852
+				$old_id = false;
853 853
 				$form = FrmForm::getAll( $template_query, '', 1 );
854
-            }
854
+			}
855 855
 
856
-            if ( $form ) {
856
+			if ( $form ) {
857 857
 				do_action( 'frm_after_duplicate_form', $form->id, (array) $form, array( 'old_id' => $old_id ) );
858
-            }
859
-        }
860
-    }
858
+			}
859
+		}
860
+	}
861 861
 
862
-    public static function route() {
863
-        $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action';
864
-        $vars = array();
862
+	public static function route() {
863
+		$action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action';
864
+		$vars = array();
865 865
 		if ( isset( $_POST['frm_compact_fields'] ) ) {
866 866
 			FrmAppHelper::permission_check( 'frm_edit_forms' );
867 867
 
868
-            $json_vars = htmlspecialchars_decode(nl2br(stripslashes(str_replace('&quot;', '\\\"', $_POST['frm_compact_fields'] ))));
869
-            $json_vars = json_decode($json_vars, true);
870
-            if ( empty($json_vars) ) {
871
-                // json decoding failed so we should return an error message
868
+			$json_vars = htmlspecialchars_decode(nl2br(stripslashes(str_replace('&quot;', '\\\"', $_POST['frm_compact_fields'] ))));
869
+			$json_vars = json_decode($json_vars, true);
870
+			if ( empty($json_vars) ) {
871
+				// json decoding failed so we should return an error message
872 872
 				$action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
873
-                if ( 'edit' == $action ) {
874
-                    $action = 'update';
875
-                }
876
-
877
-                add_filter('frm_validate_form', 'FrmFormsController::json_error');
878
-            } else {
879
-                $vars = FrmAppHelper::json_to_array($json_vars);
880
-                $action = $vars[ $action ];
873
+				if ( 'edit' == $action ) {
874
+					$action = 'update';
875
+				}
876
+
877
+				add_filter('frm_validate_form', 'FrmFormsController::json_error');
878
+			} else {
879
+				$vars = FrmAppHelper::json_to_array($json_vars);
880
+				$action = $vars[ $action ];
881 881
 				unset( $_REQUEST['frm_compact_fields'], $_POST['frm_compact_fields'] );
882 882
 				$_REQUEST = array_merge( $_REQUEST, $vars );
883 883
 				$_POST = array_merge( $_POST, $_REQUEST );
884
-            }
885
-        } else {
884
+			}
885
+		} else {
886 886
 			$action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
887
-    		if ( isset( $_REQUEST['delete_all'] ) ) {
888
-                // override the action for this page
889
-    			$action = 'delete_all';
890
-            }
891
-        }
887
+			if ( isset( $_REQUEST['delete_all'] ) ) {
888
+				// override the action for this page
889
+				$action = 'delete_all';
890
+			}
891
+		}
892 892
 
893 893
 		add_action( 'frm_load_form_hooks', 'FrmHooksController::trigger_load_form_hooks' );
894
-        FrmAppHelper::trigger_hook_load( 'form' );
895
-
896
-        switch ( $action ) {
897
-            case 'new':
898
-                return self::new_form($vars);
899
-            case 'create':
900
-            case 'edit':
901
-            case 'update':
902
-            case 'duplicate':
903
-            case 'trash':
904
-            case 'untrash':
905
-            case 'destroy':
906
-            case 'delete_all':
907
-            case 'settings':
908
-            case 'update_settings':
894
+		FrmAppHelper::trigger_hook_load( 'form' );
895
+
896
+		switch ( $action ) {
897
+			case 'new':
898
+				return self::new_form($vars);
899
+			case 'create':
900
+			case 'edit':
901
+			case 'update':
902
+			case 'duplicate':
903
+			case 'trash':
904
+			case 'untrash':
905
+			case 'destroy':
906
+			case 'delete_all':
907
+			case 'settings':
908
+			case 'update_settings':
909 909
 				return self::$action( $vars );
910
-            default:
911
-                do_action('frm_form_action_'. $action);
912
-                if ( apply_filters('frm_form_stop_action_'. $action, false) ) {
913
-                    return;
914
-                }
910
+			default:
911
+				do_action('frm_form_action_'. $action);
912
+				if ( apply_filters('frm_form_stop_action_'. $action, false) ) {
913
+					return;
914
+				}
915 915
 
916 916
 				$action = FrmAppHelper::get_param( 'action', '', 'get', 'sanitize_text_field' );
917
-                if ( $action == -1 ) {
917
+				if ( $action == -1 ) {
918 918
 					$action = FrmAppHelper::get_param( 'action2', '', 'get', 'sanitize_title' );
919
-                }
919
+				}
920 920
 
921
-                if ( strpos($action, 'bulk_') === 0 ) {
922
-                    FrmAppHelper::remove_get_action();
923
-                    return self::list_form();
924
-                }
921
+				if ( strpos($action, 'bulk_') === 0 ) {
922
+					FrmAppHelper::remove_get_action();
923
+					return self::list_form();
924
+				}
925 925
 
926
-                return self::display_forms_list();
927
-        }
928
-    }
926
+				return self::display_forms_list();
927
+		}
928
+	}
929 929
 
930
-    public static function json_error( $errors ) {
931
-        $errors['json'] = __( 'Abnormal HTML characters prevented your form from saving correctly', 'formidable' );
932
-        return $errors;
933
-    }
930
+	public static function json_error( $errors ) {
931
+		$errors['json'] = __( 'Abnormal HTML characters prevented your form from saving correctly', 'formidable' );
932
+		return $errors;
933
+	}
934 934
 
935 935
 
936
-    /* FRONT-END FORMS */
937
-    public static function admin_bar_css() {
936
+	/* FRONT-END FORMS */
937
+	public static function admin_bar_css() {
938 938
 		if ( is_admin() || ! current_user_can( 'frm_edit_forms' ) ) {
939
-            return;
940
-        }
939
+			return;
940
+		}
941 941
 
942 942
 		add_action( 'wp_before_admin_bar_render', 'FrmFormsController::admin_bar_configure' );
943 943
 		FrmAppHelper::load_font_style();
944 944
 	}
945 945
 
946 946
 	public static function admin_bar_configure() {
947
-        global $frm_vars;
948
-        if ( empty($frm_vars['forms_loaded']) ) {
949
-            return;
950
-        }
951
-
952
-        $actions = array();
953
-        foreach ( $frm_vars['forms_loaded'] as $form ) {
954
-            if ( is_object($form) ) {
955
-                $actions[ $form->id ] = $form->name;
956
-            }
957
-            unset($form);
958
-        }
959
-
960
-        if ( empty($actions) ) {
961
-            return;
962
-        }
963
-
964
-        asort($actions);
965
-
966
-        global $wp_admin_bar;
967
-
968
-        if ( count($actions) == 1 ) {
969
-            $wp_admin_bar->add_menu( array(
970
-                'title' => 'Edit Form',
971
-                'href'  => admin_url('admin.php?page=formidable&frm_action=edit&id='. current( array_keys( $actions ) )),
972
-                'id'    => 'frm-forms',
973
-            ) );
974
-        } else {
975
-            $wp_admin_bar->add_menu( array(
976
-        		'id'    => 'frm-forms',
977
-        		'title' => '<span class="ab-icon"></span><span class="ab-label">' . __( 'Edit Forms', 'formidable' ) . '</span>',
978
-        		'href'  => admin_url( 'admin.php?page=formidable&frm_action=edit&id='. current( array_keys( $actions ) ) ),
979
-        		'meta'  => array(
947
+		global $frm_vars;
948
+		if ( empty($frm_vars['forms_loaded']) ) {
949
+			return;
950
+		}
951
+
952
+		$actions = array();
953
+		foreach ( $frm_vars['forms_loaded'] as $form ) {
954
+			if ( is_object($form) ) {
955
+				$actions[ $form->id ] = $form->name;
956
+			}
957
+			unset($form);
958
+		}
959
+
960
+		if ( empty($actions) ) {
961
+			return;
962
+		}
963
+
964
+		asort($actions);
965
+
966
+		global $wp_admin_bar;
967
+
968
+		if ( count($actions) == 1 ) {
969
+			$wp_admin_bar->add_menu( array(
970
+				'title' => 'Edit Form',
971
+				'href'  => admin_url('admin.php?page=formidable&frm_action=edit&id='. current( array_keys( $actions ) )),
972
+				'id'    => 'frm-forms',
973
+			) );
974
+		} else {
975
+			$wp_admin_bar->add_menu( array(
976
+				'id'    => 'frm-forms',
977
+				'title' => '<span class="ab-icon"></span><span class="ab-label">' . __( 'Edit Forms', 'formidable' ) . '</span>',
978
+				'href'  => admin_url( 'admin.php?page=formidable&frm_action=edit&id='. current( array_keys( $actions ) ) ),
979
+				'meta'  => array(
980 980
 					'title' => __( 'Edit Forms', 'formidable' ),
981
-        		),
982
-        	) );
981
+				),
982
+			) );
983 983
 
984
-        	foreach ( $actions as $form_id => $name ) {
984
+			foreach ( $actions as $form_id => $name ) {
985 985
 
986
-        		$wp_admin_bar->add_menu( array(
987
-        			'parent'    => 'frm-forms',
988
-        			'id'        => 'edit_form_'. $form_id,
989
-        			'title'     => empty($name) ? __( '(no title)') : $name,
986
+				$wp_admin_bar->add_menu( array(
987
+					'parent'    => 'frm-forms',
988
+					'id'        => 'edit_form_'. $form_id,
989
+					'title'     => empty($name) ? __( '(no title)') : $name,
990 990
 					'href'      => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ),
991
-        		) );
992
-        	}
993
-        }
994
-    }
991
+				) );
992
+			}
993
+		}
994
+	}
995 995
 
996
-    //formidable shortcode
996
+	//formidable shortcode
997 997
 	public static function get_form_shortcode( $atts ) {
998
-        global $frm_vars;
999
-        if ( isset($frm_vars['skip_shortcode']) && $frm_vars['skip_shortcode'] ) {
1000
-            $sc = '[formidable';
998
+		global $frm_vars;
999
+		if ( isset($frm_vars['skip_shortcode']) && $frm_vars['skip_shortcode'] ) {
1000
+			$sc = '[formidable';
1001 1001
 			if ( ! empty( $atts ) ) {
1002 1002
 				foreach ( $atts as $k => $v ) {
1003 1003
 					$sc .= ' ' . $k . '="' . esc_attr( $v ) . '"';
1004 1004
 				}
1005 1005
 			}
1006
-            return $sc .']';
1007
-        }
1008
-
1009
-        $shortcode_atts = shortcode_atts( array(
1010
-            'id' => '', 'key' => '', 'title' => false, 'description' => false,
1011
-            'readonly' => false, 'entry_id' => false, 'fields' => array(),
1012
-            'exclude_fields' => array(), 'minimize' => false,
1013
-        ), $atts);
1014
-        do_action('formidable_shortcode_atts', $shortcode_atts, $atts);
1015
-
1016
-        return self::show_form(
1017
-            $shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'],
1018
-            $shortcode_atts['description'], $atts
1019
-        );
1020
-    }
1021
-
1022
-    public static function show_form( $id = '', $key = '', $title = false, $description = false, $atts = array() ) {
1023
-        if ( empty( $id ) ) {
1024
-            $id = $key;
1025
-        }
1026
-
1027
-        // no form id or key set
1028
-        if ( empty( $id ) ) {
1029
-            return __( 'Please select a valid form', 'formidable' );
1030
-        }
1031
-
1032
-        $form = FrmForm::getOne( $id );
1033
-        if ( ! $form || $form->parent_form_id ) {
1034
-            return __( 'Please select a valid form', 'formidable' );
1035
-        }
1006
+			return $sc .']';
1007
+		}
1008
+
1009
+		$shortcode_atts = shortcode_atts( array(
1010
+			'id' => '', 'key' => '', 'title' => false, 'description' => false,
1011
+			'readonly' => false, 'entry_id' => false, 'fields' => array(),
1012
+			'exclude_fields' => array(), 'minimize' => false,
1013
+		), $atts);
1014
+		do_action('formidable_shortcode_atts', $shortcode_atts, $atts);
1015
+
1016
+		return self::show_form(
1017
+			$shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'],
1018
+			$shortcode_atts['description'], $atts
1019
+		);
1020
+	}
1021
+
1022
+	public static function show_form( $id = '', $key = '', $title = false, $description = false, $atts = array() ) {
1023
+		if ( empty( $id ) ) {
1024
+			$id = $key;
1025
+		}
1026
+
1027
+		// no form id or key set
1028
+		if ( empty( $id ) ) {
1029
+			return __( 'Please select a valid form', 'formidable' );
1030
+		}
1031
+
1032
+		$form = FrmForm::getOne( $id );
1033
+		if ( ! $form || $form->parent_form_id ) {
1034
+			return __( 'Please select a valid form', 'formidable' );
1035
+		}
1036 1036
 
1037 1037
 		add_action( 'frm_load_form_hooks', 'FrmHooksController::trigger_load_form_hooks' );
1038
-        FrmAppHelper::trigger_hook_load( 'form', $form );
1038
+		FrmAppHelper::trigger_hook_load( 'form', $form );
1039 1039
 
1040
-        $form = apply_filters( 'frm_pre_display_form', $form );
1040
+		$form = apply_filters( 'frm_pre_display_form', $form );
1041 1041
 
1042
-        $frm_settings = FrmAppHelper::get_settings();
1042
+		$frm_settings = FrmAppHelper::get_settings();
1043 1043
 
1044 1044
 		if ( self::is_viewable_draft_form( $form ) ) {
1045 1045
 			// don't show a draft form on a page
@@ -1060,7 +1060,7 @@  discard block
 block discarded – undo
1060 1060
 		}
1061 1061
 
1062 1062
 		return $form;
1063
-    }
1063
+	}
1064 1064
 
1065 1065
 	private static function is_viewable_draft_form( $form ) {
1066 1066
 		global $post;
@@ -1076,98 +1076,98 @@  discard block
 block discarded – undo
1076 1076
 		return $form->logged_in && get_current_user_id() && isset( $form->options['logged_in_role'] ) && $form->options['logged_in_role'] != '' && ! FrmAppHelper::user_has_permission( $form->options['logged_in_role'] );
1077 1077
 	}
1078 1078
 
1079
-    public static function get_form( $form, $title, $description, $atts = array() ) {
1080
-        ob_start();
1079
+	public static function get_form( $form, $title, $description, $atts = array() ) {
1080
+		ob_start();
1081 1081
 
1082
-        self::get_form_contents( $form, $title, $description, $atts );
1082
+		self::get_form_contents( $form, $title, $description, $atts );
1083 1083
 		self::enqueue_scripts( FrmForm::get_params( $form ) );
1084 1084
 
1085
-        $contents = ob_get_contents();
1086
-        ob_end_clean();
1085
+		$contents = ob_get_contents();
1086
+		ob_end_clean();
1087 1087
 
1088 1088
 		self::maybe_minimize_form( $atts, $contents );
1089 1089
 
1090
-        return $contents;
1091
-    }
1090
+		return $contents;
1091
+	}
1092 1092
 
1093 1093
 	public static function enqueue_scripts( $params ) {
1094 1094
 		do_action( 'frm_enqueue_form_scripts', $params );
1095 1095
 	}
1096 1096
 
1097 1097
 	public static function get_form_contents( $form, $title, $description, $atts ) {
1098
-        global $frm_vars;
1098
+		global $frm_vars;
1099 1099
 
1100
-        $frm_settings = FrmAppHelper::get_settings();
1100
+		$frm_settings = FrmAppHelper::get_settings();
1101 1101
 
1102
-        $submit = isset($form->options['submit_value']) ? $form->options['submit_value'] : $frm_settings->submit_value;
1102
+		$submit = isset($form->options['submit_value']) ? $form->options['submit_value'] : $frm_settings->submit_value;
1103 1103
 
1104
-        $user_ID = get_current_user_id();
1104
+		$user_ID = get_current_user_id();
1105 1105
 		$params = FrmForm::get_params( $form );
1106
-        $message = $errors = '';
1106
+		$message = $errors = '';
1107 1107
 
1108
-        if ( $params['posted_form_id'] == $form->id && $_POST ) {
1109
-            $errors = isset( $frm_vars['created_entries'][ $form->id ] ) ? $frm_vars['created_entries'][ $form->id ]['errors'] : array();
1110
-        }
1108
+		if ( $params['posted_form_id'] == $form->id && $_POST ) {
1109
+			$errors = isset( $frm_vars['created_entries'][ $form->id ] ) ? $frm_vars['created_entries'][ $form->id ]['errors'] : array();
1110
+		}
1111 1111
 
1112 1112
 		$include_form_tag = apply_filters( 'frm_include_form_tag', true, $form );
1113
-        $fields = FrmFieldsHelper::get_form_fields( $form->id, ( isset( $errors ) && ! empty( $errors ) ) );
1114
-
1115
-        if ( $params['action'] != 'create' || $params['posted_form_id'] != $form->id || ! $_POST ) {
1116
-            do_action('frm_display_form_action', $params, $fields, $form, $title, $description);
1117
-            if ( apply_filters('frm_continue_to_new', true, $form->id, $params['action']) ) {
1118
-                $values = FrmEntriesHelper::setup_new_vars($fields, $form);
1119
-                include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1120
-            }
1121
-            return;
1122
-        }
1123
-
1124
-        if ( ! empty($errors) ) {
1125
-            $values = $fields ? FrmEntriesHelper::setup_new_vars($fields, $form) : array();
1126
-            include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1127
-            return;
1128
-        }
1129
-
1130
-        do_action('frm_validate_form_creation', $params, $fields, $form, $title, $description);
1131
-        if ( ! apply_filters('frm_continue_to_create', true, $form->id) ) {
1132
-            return;
1133
-        }
1134
-
1135
-        $values = FrmEntriesHelper::setup_new_vars($fields, $form, true);
1136
-        $created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][ $form->id ] ) ) ? $frm_vars['created_entries'][ $form->id ]['entry_id'] : 0;
1137
-        $conf_method = apply_filters('frm_success_filter', 'message', $form, $form->options, 'create');
1138
-
1139
-        if ( $created && is_numeric($created) && $conf_method != 'message' ) {
1140
-            do_action('frm_success_action', $conf_method, $form, $form->options, $created);
1113
+		$fields = FrmFieldsHelper::get_form_fields( $form->id, ( isset( $errors ) && ! empty( $errors ) ) );
1114
+
1115
+		if ( $params['action'] != 'create' || $params['posted_form_id'] != $form->id || ! $_POST ) {
1116
+			do_action('frm_display_form_action', $params, $fields, $form, $title, $description);
1117
+			if ( apply_filters('frm_continue_to_new', true, $form->id, $params['action']) ) {
1118
+				$values = FrmEntriesHelper::setup_new_vars($fields, $form);
1119
+				include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1120
+			}
1121
+			return;
1122
+		}
1123
+
1124
+		if ( ! empty($errors) ) {
1125
+			$values = $fields ? FrmEntriesHelper::setup_new_vars($fields, $form) : array();
1126
+			include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1127
+			return;
1128
+		}
1129
+
1130
+		do_action('frm_validate_form_creation', $params, $fields, $form, $title, $description);
1131
+		if ( ! apply_filters('frm_continue_to_create', true, $form->id) ) {
1132
+			return;
1133
+		}
1134
+
1135
+		$values = FrmEntriesHelper::setup_new_vars($fields, $form, true);
1136
+		$created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][ $form->id ] ) ) ? $frm_vars['created_entries'][ $form->id ]['entry_id'] : 0;
1137
+		$conf_method = apply_filters('frm_success_filter', 'message', $form, $form->options, 'create');
1138
+
1139
+		if ( $created && is_numeric($created) && $conf_method != 'message' ) {
1140
+			do_action('frm_success_action', $conf_method, $form, $form->options, $created);
1141 1141
 			do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) );
1142
-            return;
1143
-        }
1142
+			return;
1143
+		}
1144 1144
 
1145
-        if ( $created && is_numeric($created) ) {
1146
-            $message = isset($form->options['success_msg']) ? $form->options['success_msg'] : $frm_settings->success_msg;
1147
-            $class = 'frm_message';
1148
-        } else {
1149
-            $message = $frm_settings->failed_msg;
1150
-            $class = 'frm_error_style';
1151
-        }
1145
+		if ( $created && is_numeric($created) ) {
1146
+			$message = isset($form->options['success_msg']) ? $form->options['success_msg'] : $frm_settings->success_msg;
1147
+			$class = 'frm_message';
1148
+		} else {
1149
+			$message = $frm_settings->failed_msg;
1150
+			$class = 'frm_error_style';
1151
+		}
1152 1152
 
1153 1153
 		$message = FrmFormsHelper::get_success_message( array(
1154 1154
 			'message' => $message, 'form' => $form,
1155 1155
 			'entry_id' => $created, 'class' => $class,
1156 1156
 		) );
1157
-        $message = apply_filters('frm_main_feedback', $message, $form, $created);
1157
+		$message = apply_filters('frm_main_feedback', $message, $form, $created);
1158 1158
 
1159
-        if ( ! isset($form->options['show_form']) || $form->options['show_form'] ) {
1160
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1161
-        } else {
1162
-            global $frm_vars;
1159
+		if ( ! isset($form->options['show_form']) || $form->options['show_form'] ) {
1160
+			require(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1161
+		} else {
1162
+			global $frm_vars;
1163 1163
 			self::maybe_load_css( $form, $values['custom_style'], $frm_vars['load_css'] );
1164 1164
 
1165
-            $include_extra_container = 'frm_forms'. FrmFormsHelper::get_form_style_class($values);
1166
-            include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/errors.php');
1167
-        }
1165
+			$include_extra_container = 'frm_forms'. FrmFormsHelper::get_form_style_class($values);
1166
+			include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/errors.php');
1167
+		}
1168 1168
 
1169 1169
 		do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) );
1170
-    }
1170
+	}
1171 1171
 
1172 1172
 	public static function front_head() {
1173 1173
 		$version = FrmAppHelper::plugin_version();
Please login to merge, or discard this patch.
Spacing   +148 added lines, -148 removed lines patch added patch discarded remove patch
@@ -3,16 +3,16 @@  discard block
 block discarded – undo
3 3
 class FrmFormsController {
4 4
 
5 5
     public static function menu() {
6
-        add_submenu_page('formidable', 'Formidable | '. __( 'Forms', 'formidable' ), __( 'Forms', 'formidable' ), 'frm_view_forms', 'formidable', 'FrmFormsController::route' );
6
+        add_submenu_page( 'formidable', 'Formidable | ' . __( 'Forms', 'formidable' ), __( 'Forms', 'formidable' ), 'frm_view_forms', 'formidable', 'FrmFormsController::route' );
7 7
 
8
-	    add_filter('get_user_option_managetoplevel_page_formidablecolumnshidden', 'FrmFormsController::hidden_columns' );
8
+	    add_filter( 'get_user_option_managetoplevel_page_formidablecolumnshidden', 'FrmFormsController::hidden_columns' );
9 9
 
10
-	    add_filter('manage_toplevel_page_formidable_columns', 'FrmFormsController::get_columns', 0 );
11
-		add_filter('manage_toplevel_page_formidable_sortable_columns', 'FrmFormsController::get_sortable_columns' );
10
+	    add_filter( 'manage_toplevel_page_formidable_columns', 'FrmFormsController::get_columns', 0 );
11
+		add_filter( 'manage_toplevel_page_formidable_sortable_columns', 'FrmFormsController::get_sortable_columns' );
12 12
     }
13 13
 
14 14
     public static function head() {
15
-        wp_enqueue_script('formidable-editinplace');
15
+        wp_enqueue_script( 'formidable-editinplace' );
16 16
 
17 17
         if ( wp_is_mobile() ) {
18 18
     		wp_enqueue_script( 'jquery-touch-punch' );
@@ -20,49 +20,49 @@  discard block
 block discarded – undo
20 20
     }
21 21
 
22 22
     public static function register_widgets() {
23
-        require_once(FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php');
24
-        register_widget('FrmShowForm');
23
+        require_once( FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php' );
24
+        register_widget( 'FrmShowForm' );
25 25
     }
26 26
 
27 27
     public static function list_form() {
28
-        FrmAppHelper::permission_check('frm_view_forms');
28
+        FrmAppHelper::permission_check( 'frm_view_forms' );
29 29
 
30 30
 		$params = FrmForm::list_page_params();
31
-        $errors = self::process_bulk_form_actions( array());
32
-        $errors = apply_filters('frm_admin_list_form_action', $errors);
31
+        $errors = self::process_bulk_form_actions( array() );
32
+        $errors = apply_filters( 'frm_admin_list_form_action', $errors );
33 33
 
34 34
 		return self::display_forms_list( $params, '', $errors );
35 35
     }
36 36
 
37 37
 	public static function new_form( $values = array() ) {
38
-        FrmAppHelper::permission_check('frm_edit_forms');
38
+        FrmAppHelper::permission_check( 'frm_edit_forms' );
39 39
 
40 40
         global $frm_vars;
41 41
 
42
-        $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action';
43
-		$action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[ $action ];
42
+        $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
43
+		$action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[$action];
44 44
 
45 45
 		if ( $action == 'create' ) {
46
-            return self::create($values);
46
+            return self::create( $values );
47 47
 		} else if ( $action == 'new' ) {
48 48
 			$frm_field_selection = FrmField::field_selection();
49
-            $values = FrmFormsHelper::setup_new_vars($values);
49
+            $values = FrmFormsHelper::setup_new_vars( $values );
50 50
             $id = FrmForm::create( $values );
51
-            $form = FrmForm::getOne($id);
51
+            $form = FrmForm::getOne( $id );
52 52
 
53 53
             // add default email notification
54 54
             $action_control = FrmFormActionsController::get_form_actions( 'email' );
55
-            $action_control->create($form->id);
55
+            $action_control->create( $form->id );
56 56
 
57 57
 			$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
58 58
 
59 59
             $values['id'] = $id;
60
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
60
+            require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' );
61 61
         }
62 62
     }
63 63
 
64 64
 	public static function create( $values = array() ) {
65
-        FrmAppHelper::permission_check('frm_edit_forms');
65
+        FrmAppHelper::permission_check( 'frm_edit_forms' );
66 66
 
67 67
         global $frm_vars;
68 68
         if ( empty( $values ) ) {
@@ -74,58 +74,58 @@  discard block
 block discarded – undo
74 74
             $values = FrmProEntry::mod_other_vals( $values, 'back' );
75 75
         }
76 76
 
77
-		$id = isset($values['id']) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
77
+		$id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
78 78
 
79 79
         if ( ! current_user_can( 'frm_edit_forms' ) || ( $_POST && ( ! isset( $values['frm_save_form'] ) || ! wp_verify_nonce( $values['frm_save_form'], 'frm_save_form_nonce' ) ) ) ) {
80 80
             $frm_settings = FrmAppHelper::get_settings();
81 81
             $errors = array( 'form' => $frm_settings->admin_permission );
82 82
         } else {
83
-            $errors = FrmForm::validate($values);
83
+            $errors = FrmForm::validate( $values );
84 84
         }
85 85
 
86
-        if ( count($errors) > 0 ) {
86
+        if ( count( $errors ) > 0 ) {
87 87
             $hide_preview = true;
88 88
 			$frm_field_selection = FrmField::field_selection();
89 89
             $form = FrmForm::getOne( $id );
90
-            $fields = FrmField::get_all_for_form($id);
90
+            $fields = FrmField::get_all_for_form( $id );
91 91
 
92
-            $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
92
+            $values = FrmAppHelper::setup_edit_vars( $form, 'forms', $fields, true );
93 93
 			$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
94 94
 
95
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
95
+            require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' );
96 96
         } else {
97 97
             FrmForm::update( $id, $values, true );
98
-            die(FrmAppHelper::js_redirect(admin_url('admin.php?page=formidable&frm_action=settings&id='. $id)));
98
+            die( FrmAppHelper::js_redirect( admin_url( 'admin.php?page=formidable&frm_action=settings&id=' . $id ) ) );
99 99
         }
100 100
     }
101 101
 
102 102
     public static function edit( $values = false ) {
103
-        FrmAppHelper::permission_check('frm_edit_forms');
103
+        FrmAppHelper::permission_check( 'frm_edit_forms' );
104 104
 
105 105
 		$id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
106
-        return self::get_edit_vars($id);
106
+        return self::get_edit_vars( $id );
107 107
     }
108 108
 
109 109
     public static function settings( $id = false, $message = '' ) {
110
-        FrmAppHelper::permission_check('frm_edit_forms');
110
+        FrmAppHelper::permission_check( 'frm_edit_forms' );
111 111
 
112
-        if ( ! $id || ! is_numeric($id) ) {
112
+        if ( ! $id || ! is_numeric( $id ) ) {
113 113
 			$id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
114 114
         }
115 115
 		return self::get_settings_vars( $id, array(), $message );
116 116
     }
117 117
 
118 118
     public static function update_settings() {
119
-        FrmAppHelper::permission_check('frm_edit_forms');
119
+        FrmAppHelper::permission_check( 'frm_edit_forms' );
120 120
 
121 121
 		$id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' );
122 122
 
123
-        $errors = FrmForm::validate($_POST);
124
-        if ( count($errors) > 0 ) {
125
-            return self::get_settings_vars($id, $errors);
123
+        $errors = FrmForm::validate( $_POST );
124
+        if ( count( $errors ) > 0 ) {
125
+            return self::get_settings_vars( $id, $errors );
126 126
         }
127 127
 
128
-        do_action('frm_before_update_form_settings', $id);
128
+        do_action( 'frm_before_update_form_settings', $id );
129 129
 
130 130
 		FrmForm::update( $id, $_POST );
131 131
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 
148 148
 	private static function edit_in_place_value( $field ) {
149 149
 		check_ajax_referer( 'frm_ajax', 'nonce' );
150
-		FrmAppHelper::permission_check('frm_edit_forms', 'hide');
150
+		FrmAppHelper::permission_check( 'frm_edit_forms', 'hide' );
151 151
 
152 152
 		$form_id = FrmAppHelper::get_post_param( 'form_id', '', 'absint' );
153 153
 		$value = FrmAppHelper::get_post_param( 'update_value', '', 'wp_filter_post_kses' );
@@ -219,15 +219,15 @@  discard block
 block discarded – undo
219 219
 	}
220 220
 
221 221
     public static function duplicate() {
222
-        FrmAppHelper::permission_check('frm_edit_forms');
222
+        FrmAppHelper::permission_check( 'frm_edit_forms' );
223 223
 
224 224
 		$params = FrmForm::list_page_params();
225 225
         $form = FrmForm::duplicate( $params['id'], $params['template'], true );
226
-        $message = ($params['template']) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' );
226
+        $message = ( $params['template'] ) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' );
227 227
         if ( $form ) {
228 228
 			return self::get_edit_vars( $form, array(), $message, true );
229 229
         } else {
230
-            return self::display_forms_list($params, __( 'There was a problem creating the new template.', 'formidable' ));
230
+            return self::display_forms_list( $params, __( 'There was a problem creating the new template.', 'formidable' ) );
231 231
         }
232 232
     }
233 233
 
@@ -253,14 +253,14 @@  discard block
 block discarded – undo
253 253
         if ( ! defined( 'ABSPATH' ) && ! defined( 'XMLRPC_REQUEST' ) ) {
254 254
             global $wp;
255 255
             $root = dirname( dirname( dirname( dirname( __FILE__ ) ) ) );
256
-            include_once( $root.'/wp-config.php' );
256
+            include_once( $root . '/wp-config.php' );
257 257
             $wp->init();
258 258
             $wp->register_globals();
259 259
         }
260 260
 
261 261
 		self::register_pro_scripts();
262 262
 
263
-		header( 'Content-Type: text/html; charset='. get_option( 'blog_charset' ) );
263
+		header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) );
264 264
 
265 265
 		$key = FrmAppHelper::simple_get( 'form', 'sanitize_title' );
266 266
 		if ( $key == '' ) {
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 			$form = FrmForm::getAll( array(), '', 1 );
273 273
         }
274 274
 
275
-        require(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/direct.php');
275
+        require( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/direct.php' );
276 276
         wp_die();
277 277
     }
278 278
 
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 		if ( FrmAppHelper::pro_is_installed() ) {
281 281
 			wp_register_script( 'jquery-frm-rating', FrmAppHelper::plugin_url() . '/pro/js/jquery.rating.min.js', array( 'jquery' ), '4.11', true );
282 282
 			wp_register_script( 'jquery-maskedinput', FrmAppHelper::plugin_url() . '/pro/js/jquery.maskedinput.min.js', array( 'jquery' ), '1.4', true );
283
-			wp_register_script( 'jquery-chosen', FrmAppHelper::plugin_url() .'/pro/js/chosen.jquery.min.js', array( 'jquery' ), '1.2.0', true );
283
+			wp_register_script( 'jquery-chosen', FrmAppHelper::plugin_url() . '/pro/js/chosen.jquery.min.js', array( 'jquery' ), '1.2.0', true );
284 284
 		}
285 285
 	}
286 286
 
@@ -289,11 +289,11 @@  discard block
 block discarded – undo
289 289
     }
290 290
 
291 291
 	public static function bulk_untrash( $ids ) {
292
-        FrmAppHelper::permission_check('frm_edit_forms');
292
+        FrmAppHelper::permission_check( 'frm_edit_forms' );
293 293
 
294 294
         $count = FrmForm::set_status( $ids, 'published' );
295 295
 
296
-        $message = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 );
296
+        $message = sprintf( _n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 );
297 297
         return $message;
298 298
     }
299 299
 
@@ -312,90 +312,90 @@  discard block
 block discarded – undo
312 312
 			'trash'   => array( 'permission' => 'frm_delete_forms', 'new_status' => 'trash' ),
313 313
 		);
314 314
 
315
-		if ( ! isset( $available_status[ $status ] ) ) {
315
+		if ( ! isset( $available_status[$status] ) ) {
316 316
 			return;
317 317
 		}
318 318
 
319
-		FrmAppHelper::permission_check( $available_status[ $status ]['permission'] );
319
+		FrmAppHelper::permission_check( $available_status[$status]['permission'] );
320 320
 
321 321
 		$params = FrmForm::list_page_params();
322 322
 
323 323
 		//check nonce url
324
-		check_admin_referer($status .'_form_' . $params['id']);
324
+		check_admin_referer( $status . '_form_' . $params['id'] );
325 325
 
326 326
 		$count = 0;
327
-		if ( FrmForm::set_status( $params['id'], $available_status[ $status ]['new_status'] ) ) {
328
-			$count++;
327
+		if ( FrmForm::set_status( $params['id'], $available_status[$status]['new_status'] ) ) {
328
+			$count ++;
329 329
 		}
330 330
 
331
-		$available_status['untrash']['message'] = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), $count );
332
-		$available_status['trash']['message'] = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=untrash&form_type='. ( isset( $_REQUEST['form_type'] ) ? sanitize_title( $_REQUEST['form_type'] ) : '' ) . '&id=' . $params['id'], 'untrash_form_' . $params['id'] ) ) . '">', '</a>' );
331
+		$available_status['untrash']['message'] = sprintf( _n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), $count );
332
+		$available_status['trash']['message'] = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=untrash&form_type=' . ( isset( $_REQUEST['form_type'] ) ? sanitize_title( $_REQUEST['form_type'] ) : '' ) . '&id=' . $params['id'], 'untrash_form_' . $params['id'] ) ) . '">', '</a>' );
333 333
 
334
-		$message = $available_status[ $status ]['message'];
334
+		$message = $available_status[$status]['message'];
335 335
 
336 336
 		self::display_forms_list( $params, $message );
337 337
 	}
338 338
 
339 339
 	public static function bulk_trash( $ids ) {
340
-        FrmAppHelper::permission_check('frm_delete_forms');
340
+        FrmAppHelper::permission_check( 'frm_delete_forms' );
341 341
 
342 342
         $count = 0;
343 343
         foreach ( $ids as $id ) {
344 344
             if ( FrmForm::trash( $id ) ) {
345
-                $count++;
345
+                $count ++;
346 346
             }
347 347
         }
348 348
 
349 349
         $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
350
-        $message = sprintf(_n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="'. esc_url(wp_nonce_url( '?page=formidable&frm_action=list&action=bulk_untrash&form_type='. $current_page .'&item-action[]='. implode('item-action[]=', $ids), 'bulk-toplevel_page_formidable' )) .'">', '</a>' );
350
+        $message = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=list&action=bulk_untrash&form_type=' . $current_page . '&item-action[]=' . implode( 'item-action[]=', $ids ), 'bulk-toplevel_page_formidable' ) ) . '">', '</a>' );
351 351
 
352 352
         return $message;
353 353
     }
354 354
 
355 355
     public static function destroy() {
356
-        FrmAppHelper::permission_check('frm_delete_forms');
356
+        FrmAppHelper::permission_check( 'frm_delete_forms' );
357 357
 
358 358
 		$params = FrmForm::list_page_params();
359 359
 
360 360
         //check nonce url
361
-        check_admin_referer('destroy_form_' . $params['id']);
361
+        check_admin_referer( 'destroy_form_' . $params['id'] );
362 362
 
363 363
         $count = 0;
364 364
         if ( FrmForm::destroy( $params['id'] ) ) {
365
-            $count++;
365
+            $count ++;
366 366
         }
367 367
 
368
-        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
368
+        $message = sprintf( _n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count );
369 369
 
370 370
 		self::display_forms_list( $params, $message );
371 371
     }
372 372
 
373 373
 	public static function bulk_destroy( $ids ) {
374
-        FrmAppHelper::permission_check('frm_delete_forms');
374
+        FrmAppHelper::permission_check( 'frm_delete_forms' );
375 375
 
376 376
         $count = 0;
377 377
         foreach ( $ids as $id ) {
378 378
             $d = FrmForm::destroy( $id );
379 379
             if ( $d ) {
380
-                $count++;
380
+                $count ++;
381 381
             }
382 382
         }
383 383
 
384
-        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
384
+        $message = sprintf( _n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count );
385 385
 
386 386
         return $message;
387 387
     }
388 388
 
389 389
     private static function delete_all() {
390 390
         //check nonce url
391
-        $permission_error = FrmAppHelper::permission_nonce_error('frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable');
391
+        $permission_error = FrmAppHelper::permission_nonce_error( 'frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable' );
392 392
         if ( $permission_error !== false ) {
393 393
 			self::display_forms_list( array(), '', array( $permission_error ) );
394 394
             return;
395 395
         }
396 396
 
397 397
 		$count = FrmForm::scheduled_delete( time() );
398
-        $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count);
398
+        $message = sprintf( _n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count );
399 399
 
400 400
 		self::display_forms_list( array(), $message );
401 401
     }
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
 	* @since 2.0.15
413 413
 	*/
414 414
 	public static function insert_form_button() {
415
-		if ( current_user_can('frm_view_forms') ) {
415
+		if ( current_user_can( 'frm_view_forms' ) ) {
416 416
 			$content = '<a href="#TB_inline?width=50&height=50&inlineId=frm_insert_form" class="thickbox button add_media frm_insert_form" title="' . esc_attr__( 'Add forms and content', 'formidable' ) . '"><span class="frm-buttons-icon wp-media-buttons-icon"></span> Formidable</a>';
417 417
 			echo wp_kses_post( $content );
418 418
 		}
@@ -430,21 +430,21 @@  discard block
 block discarded – undo
430 430
 			'formidable' => array( 'name' => __( 'Form', 'formidable' ), 'label' => __( 'Insert a Form', 'formidable' ) ),
431 431
         );
432 432
 
433
-        $shortcodes = apply_filters('frm_popup_shortcodes', $shortcodes);
433
+        $shortcodes = apply_filters( 'frm_popup_shortcodes', $shortcodes );
434 434
 
435
-        include(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/insert_form_popup.php');
435
+        include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/insert_form_popup.php' );
436 436
     }
437 437
 
438 438
     public static function get_shortcode_opts() {
439 439
         check_ajax_referer( 'frm_ajax', 'nonce' );
440 440
 
441 441
 		$shortcode = FrmAppHelper::get_post_param( 'shortcode', '', 'sanitize_text_field' );
442
-        if ( empty($shortcode) ) {
442
+        if ( empty( $shortcode ) ) {
443 443
             wp_die();
444 444
         }
445 445
 
446
-        echo '<div id="sc-opts-'. esc_attr( $shortcode ) .'" class="frm_shortcode_option">';
447
-        echo '<input type="radio" name="frmsc" value="'. esc_attr($shortcode) .'" id="sc-'. esc_attr($shortcode) .'" class="frm_hidden" />';
446
+        echo '<div id="sc-opts-' . esc_attr( $shortcode ) . '" class="frm_shortcode_option">';
447
+        echo '<input type="radio" name="frmsc" value="' . esc_attr( $shortcode ) . '" id="sc-' . esc_attr( $shortcode ) . '" class="frm_hidden" />';
448 448
 
449 449
         $form_id = '';
450 450
         $opts = array();
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
                 );
460 460
             break;
461 461
         }
462
-        $opts = apply_filters('frm_sc_popup_opts', $opts, $shortcode);
462
+        $opts = apply_filters( 'frm_sc_popup_opts', $opts, $shortcode );
463 463
 
464 464
 		if ( isset( $opts['form_id'] ) && is_string( $opts['form_id'] ) ) {
465 465
 			// allow other shortcodes to use the required form id option
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
 			unset( $opts['form_id'] );
468 468
 		}
469 469
 
470
-        include(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/shortcode_opts.php');
470
+        include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/shortcode_opts.php' );
471 471
 
472 472
         echo '</div>';
473 473
 
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
             die();
500 500
         }
501 501
 
502
-        require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/list.php');
502
+        require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/list.php' );
503 503
     }
504 504
 
505 505
 	public static function get_columns( $columns ) {
@@ -576,11 +576,11 @@  discard block
 block discarded – undo
576 576
         }
577 577
 
578 578
         if ( $form->parent_form_id ) {
579
-            wp_die( sprintf(__( 'You are trying to edit a child form. Please edit from %1$shere%2$s', 'formidable' ), '<a href="'. esc_url(admin_url('admin.php') .'?page=formidable&frm_action=edit&id='. $form->parent_form_id) .'">', '</a>' ));
579
+            wp_die( sprintf( __( 'You are trying to edit a child form. Please edit from %1$shere%2$s', 'formidable' ), '<a href="' . esc_url( admin_url( 'admin.php' ) . '?page=formidable&frm_action=edit&id=' . $form->parent_form_id ) . '">', '</a>' ) );
580 580
         }
581 581
 
582 582
 		$frm_field_selection = FrmField::field_selection();
583
-        $fields = FrmField::get_all_for_form($form->id);
583
+        $fields = FrmField::get_all_for_form( $form->id );
584 584
 
585 585
         // Automatically add end section fields if they don't exist (2.0 migration)
586 586
         $reset_fields = false;
@@ -590,9 +590,9 @@  discard block
 block discarded – undo
590 590
             $fields = FrmField::get_all_for_form( $form->id, '', 'exclude' );
591 591
         }
592 592
 
593
-        unset($end_section_values, $last_order, $open, $reset_fields);
593
+        unset( $end_section_values, $last_order, $open, $reset_fields );
594 594
 
595
-        $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
595
+        $values = FrmAppHelper::setup_edit_vars( $form, 'forms', $fields, true );
596 596
 
597 597
         $edit_message = __( 'Form was Successfully Updated', 'formidable' );
598 598
         if ( $form->is_template && $message == $edit_message ) {
@@ -602,13 +602,13 @@  discard block
 block discarded – undo
602 602
 		$all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
603 603
 
604 604
         if ( $form->default_template ) {
605
-            wp_die(__( 'That template cannot be edited', 'formidable' ));
606
-        } else if ( defined('DOING_AJAX') ) {
605
+            wp_die( __( 'That template cannot be edited', 'formidable' ) );
606
+        } else if ( defined( 'DOING_AJAX' ) ) {
607 607
             wp_die();
608 608
         } else if ( $create_link ) {
609
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/new.php');
609
+            require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' );
610 610
         } else {
611
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/edit.php');
611
+            require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/edit.php' );
612 612
         }
613 613
     }
614 614
 
@@ -619,28 +619,28 @@  discard block
 block discarded – undo
619 619
 
620 620
         $form = FrmForm::getOne( $id );
621 621
 
622
-        $fields = FrmField::get_all_for_form($id);
623
-        $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true);
622
+        $fields = FrmField::get_all_for_form( $id );
623
+        $values = FrmAppHelper::setup_edit_vars( $form, 'forms', $fields, true );
624 624
 
625
-        if ( isset($values['default_template']) && $values['default_template'] ) {
626
-            wp_die(__( 'That template cannot be edited', 'formidable' ));
625
+        if ( isset( $values['default_template'] ) && $values['default_template'] ) {
626
+            wp_die( __( 'That template cannot be edited', 'formidable' ) );
627 627
         }
628 628
 
629 629
         $action_controls = FrmFormActionsController::get_form_actions();
630 630
 
631
-        $sections = apply_filters('frm_add_form_settings_section', array(), $values);
631
+        $sections = apply_filters( 'frm_add_form_settings_section', array(), $values );
632 632
         $pro_feature = FrmAppHelper::pro_is_installed() ? '' : ' class="pro_feature"';
633 633
 
634
-        $styles = apply_filters('frm_get_style_opts', array());
634
+        $styles = apply_filters( 'frm_get_style_opts', array() );
635 635
 
636
-        require(FrmAppHelper::plugin_path() .'/classes/views/frm-forms/settings.php');
636
+        require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/settings.php' );
637 637
     }
638 638
 
639 639
     public static function mb_tags_box( $form_id, $class = '' ) {
640
-        $fields = FrmField::get_all_for_form($form_id, '', 'include');
640
+        $fields = FrmField::get_all_for_form( $form_id, '', 'include' );
641 641
         $linked_forms = array();
642 642
         $col = 'one';
643
-        $settings_tab = FrmAppHelper::is_admin_page('formidable' ) ? true : false;
643
+        $settings_tab = FrmAppHelper::is_admin_page( 'formidable' ) ? true : false;
644 644
 
645 645
 		$cond_shortcodes = apply_filters( 'frm_conditional_shortcodes', array() );
646 646
 		$adv_shortcodes = self::get_advanced_shortcodes();
@@ -718,7 +718,7 @@  discard block
 block discarded – undo
718 718
 
719 719
     // Insert the form class setting into the form
720 720
 	public static function form_classes( $form ) {
721
-        if ( isset($form->options['form_class']) ) {
721
+        if ( isset( $form->options['form_class'] ) ) {
722 722
 			echo esc_attr( sanitize_text_field( $form->options['form_class'] ) );
723 723
         }
724 724
     }
@@ -820,11 +820,11 @@  discard block
 block discarded – undo
820 820
     public static function add_default_templates( $path, $default = true, $template = true ) {
821 821
         _deprecated_function( __FUNCTION__, '1.07.05', 'FrmXMLController::add_default_templates()' );
822 822
 
823
-        $path = untrailingslashit(trim($path));
824
-        $templates = glob( $path .'/*.php' );
823
+        $path = untrailingslashit( trim( $path ) );
824
+        $templates = glob( $path . '/*.php' );
825 825
 
826
-		for ( $i = count( $templates ) - 1; $i >= 0; $i-- ) {
827
-            $filename = str_replace( '.php', '', str_replace( $path.'/', '', $templates[ $i ] ) );
826
+		for ( $i = count( $templates ) - 1; $i >= 0; $i -- ) {
827
+            $filename = str_replace( '.php', '', str_replace( $path . '/', '', $templates[$i] ) );
828 828
 			$template_query = array( 'form_key' => $filename );
829 829
             if ( $template ) {
830 830
                 $template_query['is_template'] = 1;
@@ -842,12 +842,12 @@  discard block
 block discarded – undo
842 842
                 $values['default_template'] = 1;
843 843
             }
844 844
 
845
-            include( $templates[ $i ] );
845
+            include( $templates[$i] );
846 846
 
847 847
             //get updated form
848
-            if ( isset($form) && ! empty($form) ) {
848
+            if ( isset( $form ) && ! empty( $form ) ) {
849 849
                 $old_id = $form->id;
850
-                $form = FrmForm::getOne($form->id);
850
+                $form = FrmForm::getOne( $form->id );
851 851
             } else {
852 852
                 $old_id = false;
853 853
 				$form = FrmForm::getAll( $template_query, '', 1 );
@@ -860,24 +860,24 @@  discard block
 block discarded – undo
860 860
     }
861 861
 
862 862
     public static function route() {
863
-        $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action';
863
+        $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
864 864
         $vars = array();
865 865
 		if ( isset( $_POST['frm_compact_fields'] ) ) {
866 866
 			FrmAppHelper::permission_check( 'frm_edit_forms' );
867 867
 
868
-            $json_vars = htmlspecialchars_decode(nl2br(stripslashes(str_replace('&quot;', '\\\"', $_POST['frm_compact_fields'] ))));
869
-            $json_vars = json_decode($json_vars, true);
870
-            if ( empty($json_vars) ) {
868
+            $json_vars = htmlspecialchars_decode( nl2br( stripslashes( str_replace( '&quot;', '\\\"', $_POST['frm_compact_fields'] ) ) ) );
869
+            $json_vars = json_decode( $json_vars, true );
870
+            if ( empty( $json_vars ) ) {
871 871
                 // json decoding failed so we should return an error message
872 872
 				$action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
873 873
                 if ( 'edit' == $action ) {
874 874
                     $action = 'update';
875 875
                 }
876 876
 
877
-                add_filter('frm_validate_form', 'FrmFormsController::json_error');
877
+                add_filter( 'frm_validate_form', 'FrmFormsController::json_error' );
878 878
             } else {
879
-                $vars = FrmAppHelper::json_to_array($json_vars);
880
-                $action = $vars[ $action ];
879
+                $vars = FrmAppHelper::json_to_array( $json_vars );
880
+                $action = $vars[$action];
881 881
 				unset( $_REQUEST['frm_compact_fields'], $_POST['frm_compact_fields'] );
882 882
 				$_REQUEST = array_merge( $_REQUEST, $vars );
883 883
 				$_POST = array_merge( $_POST, $_REQUEST );
@@ -895,7 +895,7 @@  discard block
 block discarded – undo
895 895
 
896 896
         switch ( $action ) {
897 897
             case 'new':
898
-                return self::new_form($vars);
898
+                return self::new_form( $vars );
899 899
             case 'create':
900 900
             case 'edit':
901 901
             case 'update':
@@ -908,8 +908,8 @@  discard block
 block discarded – undo
908 908
             case 'update_settings':
909 909
 				return self::$action( $vars );
910 910
             default:
911
-                do_action('frm_form_action_'. $action);
912
-                if ( apply_filters('frm_form_stop_action_'. $action, false) ) {
911
+                do_action( 'frm_form_action_' . $action );
912
+                if ( apply_filters( 'frm_form_stop_action_' . $action, false ) ) {
913 913
                     return;
914 914
                 }
915 915
 
@@ -918,7 +918,7 @@  discard block
 block discarded – undo
918 918
 					$action = FrmAppHelper::get_param( 'action2', '', 'get', 'sanitize_title' );
919 919
                 }
920 920
 
921
-                if ( strpos($action, 'bulk_') === 0 ) {
921
+                if ( strpos( $action, 'bulk_' ) === 0 ) {
922 922
                     FrmAppHelper::remove_get_action();
923 923
                     return self::list_form();
924 924
                 }
@@ -945,37 +945,37 @@  discard block
 block discarded – undo
945 945
 
946 946
 	public static function admin_bar_configure() {
947 947
         global $frm_vars;
948
-        if ( empty($frm_vars['forms_loaded']) ) {
948
+        if ( empty( $frm_vars['forms_loaded'] ) ) {
949 949
             return;
950 950
         }
951 951
 
952 952
         $actions = array();
953 953
         foreach ( $frm_vars['forms_loaded'] as $form ) {
954
-            if ( is_object($form) ) {
955
-                $actions[ $form->id ] = $form->name;
954
+            if ( is_object( $form ) ) {
955
+                $actions[$form->id] = $form->name;
956 956
             }
957
-            unset($form);
957
+            unset( $form );
958 958
         }
959 959
 
960
-        if ( empty($actions) ) {
960
+        if ( empty( $actions ) ) {
961 961
             return;
962 962
         }
963 963
 
964
-        asort($actions);
964
+        asort( $actions );
965 965
 
966 966
         global $wp_admin_bar;
967 967
 
968
-        if ( count($actions) == 1 ) {
968
+        if ( count( $actions ) == 1 ) {
969 969
             $wp_admin_bar->add_menu( array(
970 970
                 'title' => 'Edit Form',
971
-                'href'  => admin_url('admin.php?page=formidable&frm_action=edit&id='. current( array_keys( $actions ) )),
971
+                'href'  => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . current( array_keys( $actions ) ) ),
972 972
                 'id'    => 'frm-forms',
973 973
             ) );
974 974
         } else {
975 975
             $wp_admin_bar->add_menu( array(
976 976
         		'id'    => 'frm-forms',
977 977
         		'title' => '<span class="ab-icon"></span><span class="ab-label">' . __( 'Edit Forms', 'formidable' ) . '</span>',
978
-        		'href'  => admin_url( 'admin.php?page=formidable&frm_action=edit&id='. current( array_keys( $actions ) ) ),
978
+        		'href'  => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . current( array_keys( $actions ) ) ),
979 979
         		'meta'  => array(
980 980
 					'title' => __( 'Edit Forms', 'formidable' ),
981 981
         		),
@@ -985,8 +985,8 @@  discard block
 block discarded – undo
985 985
 
986 986
         		$wp_admin_bar->add_menu( array(
987 987
         			'parent'    => 'frm-forms',
988
-        			'id'        => 'edit_form_'. $form_id,
989
-        			'title'     => empty($name) ? __( '(no title)') : $name,
988
+        			'id'        => 'edit_form_' . $form_id,
989
+        			'title'     => empty( $name ) ? __( '(no title)' ) : $name,
990 990
 					'href'      => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ),
991 991
         		) );
992 992
         	}
@@ -996,22 +996,22 @@  discard block
 block discarded – undo
996 996
     //formidable shortcode
997 997
 	public static function get_form_shortcode( $atts ) {
998 998
         global $frm_vars;
999
-        if ( isset($frm_vars['skip_shortcode']) && $frm_vars['skip_shortcode'] ) {
999
+        if ( isset( $frm_vars['skip_shortcode'] ) && $frm_vars['skip_shortcode'] ) {
1000 1000
             $sc = '[formidable';
1001 1001
 			if ( ! empty( $atts ) ) {
1002 1002
 				foreach ( $atts as $k => $v ) {
1003 1003
 					$sc .= ' ' . $k . '="' . esc_attr( $v ) . '"';
1004 1004
 				}
1005 1005
 			}
1006
-            return $sc .']';
1006
+            return $sc . ']';
1007 1007
         }
1008 1008
 
1009 1009
         $shortcode_atts = shortcode_atts( array(
1010 1010
             'id' => '', 'key' => '', 'title' => false, 'description' => false,
1011 1011
             'readonly' => false, 'entry_id' => false, 'fields' => array(),
1012 1012
             'exclude_fields' => array(), 'minimize' => false,
1013
-        ), $atts);
1014
-        do_action('formidable_shortcode_atts', $shortcode_atts, $atts);
1013
+        ), $atts );
1014
+        do_action( 'formidable_shortcode_atts', $shortcode_atts, $atts );
1015 1015
 
1016 1016
         return self::show_form(
1017 1017
             $shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'],
@@ -1099,51 +1099,51 @@  discard block
 block discarded – undo
1099 1099
 
1100 1100
         $frm_settings = FrmAppHelper::get_settings();
1101 1101
 
1102
-        $submit = isset($form->options['submit_value']) ? $form->options['submit_value'] : $frm_settings->submit_value;
1102
+        $submit = isset( $form->options['submit_value'] ) ? $form->options['submit_value'] : $frm_settings->submit_value;
1103 1103
 
1104 1104
         $user_ID = get_current_user_id();
1105 1105
 		$params = FrmForm::get_params( $form );
1106 1106
         $message = $errors = '';
1107 1107
 
1108 1108
         if ( $params['posted_form_id'] == $form->id && $_POST ) {
1109
-            $errors = isset( $frm_vars['created_entries'][ $form->id ] ) ? $frm_vars['created_entries'][ $form->id ]['errors'] : array();
1109
+            $errors = isset( $frm_vars['created_entries'][$form->id] ) ? $frm_vars['created_entries'][$form->id]['errors'] : array();
1110 1110
         }
1111 1111
 
1112 1112
 		$include_form_tag = apply_filters( 'frm_include_form_tag', true, $form );
1113 1113
         $fields = FrmFieldsHelper::get_form_fields( $form->id, ( isset( $errors ) && ! empty( $errors ) ) );
1114 1114
 
1115 1115
         if ( $params['action'] != 'create' || $params['posted_form_id'] != $form->id || ! $_POST ) {
1116
-            do_action('frm_display_form_action', $params, $fields, $form, $title, $description);
1117
-            if ( apply_filters('frm_continue_to_new', true, $form->id, $params['action']) ) {
1118
-                $values = FrmEntriesHelper::setup_new_vars($fields, $form);
1119
-                include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1116
+            do_action( 'frm_display_form_action', $params, $fields, $form, $title, $description );
1117
+            if ( apply_filters( 'frm_continue_to_new', true, $form->id, $params['action'] ) ) {
1118
+                $values = FrmEntriesHelper::setup_new_vars( $fields, $form );
1119
+                include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' );
1120 1120
             }
1121 1121
             return;
1122 1122
         }
1123 1123
 
1124
-        if ( ! empty($errors) ) {
1125
-            $values = $fields ? FrmEntriesHelper::setup_new_vars($fields, $form) : array();
1126
-            include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1124
+        if ( ! empty( $errors ) ) {
1125
+            $values = $fields ? FrmEntriesHelper::setup_new_vars( $fields, $form ) : array();
1126
+            include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' );
1127 1127
             return;
1128 1128
         }
1129 1129
 
1130
-        do_action('frm_validate_form_creation', $params, $fields, $form, $title, $description);
1131
-        if ( ! apply_filters('frm_continue_to_create', true, $form->id) ) {
1130
+        do_action( 'frm_validate_form_creation', $params, $fields, $form, $title, $description );
1131
+        if ( ! apply_filters( 'frm_continue_to_create', true, $form->id ) ) {
1132 1132
             return;
1133 1133
         }
1134 1134
 
1135
-        $values = FrmEntriesHelper::setup_new_vars($fields, $form, true);
1136
-        $created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][ $form->id ] ) ) ? $frm_vars['created_entries'][ $form->id ]['entry_id'] : 0;
1137
-        $conf_method = apply_filters('frm_success_filter', 'message', $form, $form->options, 'create');
1135
+        $values = FrmEntriesHelper::setup_new_vars( $fields, $form, true );
1136
+        $created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][$form->id] ) ) ? $frm_vars['created_entries'][$form->id]['entry_id'] : 0;
1137
+        $conf_method = apply_filters( 'frm_success_filter', 'message', $form, $form->options, 'create' );
1138 1138
 
1139
-        if ( $created && is_numeric($created) && $conf_method != 'message' ) {
1140
-            do_action('frm_success_action', $conf_method, $form, $form->options, $created);
1139
+        if ( $created && is_numeric( $created ) && $conf_method != 'message' ) {
1140
+            do_action( 'frm_success_action', $conf_method, $form, $form->options, $created );
1141 1141
 			do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) );
1142 1142
             return;
1143 1143
         }
1144 1144
 
1145
-        if ( $created && is_numeric($created) ) {
1146
-            $message = isset($form->options['success_msg']) ? $form->options['success_msg'] : $frm_settings->success_msg;
1145
+        if ( $created && is_numeric( $created ) ) {
1146
+            $message = isset( $form->options['success_msg'] ) ? $form->options['success_msg'] : $frm_settings->success_msg;
1147 1147
             $class = 'frm_message';
1148 1148
         } else {
1149 1149
             $message = $frm_settings->failed_msg;
@@ -1154,16 +1154,16 @@  discard block
 block discarded – undo
1154 1154
 			'message' => $message, 'form' => $form,
1155 1155
 			'entry_id' => $created, 'class' => $class,
1156 1156
 		) );
1157
-        $message = apply_filters('frm_main_feedback', $message, $form, $created);
1157
+        $message = apply_filters( 'frm_main_feedback', $message, $form, $created );
1158 1158
 
1159
-        if ( ! isset($form->options['show_form']) || $form->options['show_form'] ) {
1160
-            require(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/new.php');
1159
+        if ( ! isset( $form->options['show_form'] ) || $form->options['show_form'] ) {
1160
+            require( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' );
1161 1161
         } else {
1162 1162
             global $frm_vars;
1163 1163
 			self::maybe_load_css( $form, $values['custom_style'], $frm_vars['load_css'] );
1164 1164
 
1165
-            $include_extra_container = 'frm_forms'. FrmFormsHelper::get_form_style_class($values);
1166
-            include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/errors.php');
1165
+            $include_extra_container = 'frm_forms' . FrmFormsHelper::get_form_style_class( $values );
1166
+            include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/errors.php' );
1167 1167
         }
1168 1168
 
1169 1169
 		do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) );
Please login to merge, or discard this patch.