Completed
Branch uploads (d47ab8)
by Stephanie
05:54 queued 01:03
created
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.
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/helpers/FrmFormsHelper.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -375,6 +375,9 @@
 block discarded – undo
375 375
         $reset_fields = true;
376 376
     }
377 377
 
378
+    /**
379
+     * @return string
380
+     */
378 381
     public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) {
379 382
 		foreach ( array( 'form_name' => $title, 'form_description' => $description, 'entry_key' => true ) as $code => $show ) {
380 383
             if ( $code == 'form_name' ) {
Please login to merge, or discard this patch.
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 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
 
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 	public static function get_direct_link( $key, $form = false ) {
14 14
 		$target_url = esc_url( admin_url( 'admin-ajax.php?action=frm_forms_preview&form=' . $key ) );
15
-        $target_url = apply_filters('frm_direct_link', $target_url, $key, $form);
15
+        $target_url = apply_filters( 'frm_direct_link', $target_url, $key, $form );
16 16
 
17 17
         return $target_url;
18 18
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 			$query['id !'] = $args['exclude'];
38 38
         }
39 39
 
40
-        $where = apply_filters('frm_forms_dropdown', $query, $field_name);
40
+        $where = apply_filters( 'frm_forms_dropdown', $query, $field_name );
41 41
 		$forms = FrmForm::get_published_forms( $where, 999, $args['inc_children'] );
42 42
 		$add_html = array();
43 43
 		self::add_html_attr( $args['onchange'], 'onchange', $add_html );
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 		<?php } ?>
51 51
 		<?php foreach ( $forms as $form ) { ?>
52 52
 			<option value="<?php echo esc_attr( $form->id ); ?>" <?php selected( $field_value, $form->id ); ?>><?php
53
-				echo ( '' == $form->name ) ? esc_html__( '(no title)', 'formidable' ) : esc_html( FrmAppHelper::truncate( $form->name, 50 ) ) . ( $form->parent_form_id ? esc_html__( ' (child)', 'formidable' ) : '' ) ;
53
+				echo ( '' == $form->name ) ? esc_html__( '(no title)', 'formidable' ) : esc_html( FrmAppHelper::truncate( $form->name, 50 ) ) . ( $form->parent_form_id ? esc_html__( ' (child)', 'formidable' ) : '' );
54 54
 			?></option>
55 55
 		<?php } ?>
56 56
         </select>
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 */
67 67
 	public static function add_html_attr( $class, $param, &$add_html ) {
68 68
 		if ( ! empty( $class ) ) {
69
-			$add_html[ $param ] = sanitize_title( $param ) . '="' . esc_attr( trim( sanitize_text_field( $class ) ) ) . '"';
69
+			$add_html[$param] = sanitize_title( $param ) . '="' . esc_attr( trim( sanitize_text_field( $class ) ) ) . '"';
70 70
 		}
71 71
 	}
72 72
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 		$args = array( 'id' => 0, 'form' => 0 );
78 78
 		if ( isset( $_GET['id'] ) && ! isset( $_GET['form'] ) ) {
79 79
 			unset( $args['form'] );
80
-		} else if ( isset( $_GET['form']) && ! isset( $_GET['id'] ) ) {
80
+		} else if ( isset( $_GET['form'] ) && ! isset( $_GET['id'] ) ) {
81 81
 			unset( $args['id'] );
82 82
         }
83 83
 
@@ -85,11 +85,11 @@  discard block
 block discarded – undo
85 85
 		if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $frm_action, array( 'edit', 'show', 'destroy_all' ) ) ) {
86 86
             $args['frm_action'] = 'list';
87 87
             $args['form'] = 0;
88
-		} else if ( FrmAppHelper::is_admin_page('formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ) ) ) {
88
+		} else if ( FrmAppHelper::is_admin_page( 'formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ) ) ) {
89 89
             $args['frm_action'] = 'edit';
90 90
 		} else if ( isset( $_GET['post'] ) ) {
91 91
             $args['form'] = 0;
92
-            $base = admin_url('edit.php?post_type=frm_display');
92
+            $base = admin_url( 'edit.php?post_type=frm_display' );
93 93
         }
94 94
 
95 95
         ?>
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 			        $args['form'] = $form->id;
106 106
 				}
107 107
                 ?>
108
-				<li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)') : FrmAppHelper::truncate( $form->name, 60 ) ); ?></a></li>
108
+				<li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)' ) : FrmAppHelper::truncate( $form->name, 60 ) ); ?></a></li>
109 109
 			<?php
110 110
 				unset( $form );
111 111
 			} ?>
@@ -115,8 +115,8 @@  discard block
 block discarded – undo
115 115
     }
116 116
 
117 117
 	public static function get_sortable_classes( $col, $sort_col, $sort_dir ) {
118
-        echo ($sort_col == $col) ? 'sorted' : 'sortable';
119
-        echo ($sort_col == $col && $sort_dir == 'desc') ? ' asc' : ' desc';
118
+        echo ( $sort_col == $col ) ? 'sorted' : 'sortable';
119
+        echo ( $sort_col == $col && $sort_dir == 'desc' ) ? ' asc' : ' desc';
120 120
     }
121 121
 
122 122
 	public static function get_success_message( $atts ) {
@@ -136,20 +136,20 @@  discard block
 block discarded – undo
136 136
             $post_values = $values;
137 137
         } else {
138 138
             $values = array();
139
-            $post_values = isset($_POST) ? $_POST : array();
139
+            $post_values = isset( $_POST ) ? $_POST : array();
140 140
         }
141 141
 
142 142
 		foreach ( array( 'name' => '', 'description' => '' ) as $var => $default ) {
143
-			if ( ! isset( $values[ $var ] ) ) {
144
-				$values[ $var ] = FrmAppHelper::get_param( $var, $default );
143
+			if ( ! isset( $values[$var] ) ) {
144
+				$values[$var] = FrmAppHelper::get_param( $var, $default );
145 145
             }
146 146
         }
147 147
 
148
-        $values['description'] = FrmAppHelper::use_wpautop($values['description']);
148
+        $values['description'] = FrmAppHelper::use_wpautop( $values['description'] );
149 149
 
150 150
 		foreach ( array( 'form_id' => '', 'logged_in' => '', 'editable' => '', 'default_template' => 0, 'is_template' => 0, 'status' => 'draft', 'parent_form_id' => 0 ) as $var => $default ) {
151
-            if ( ! isset( $values[ $var ] ) ) {
152
-				$values[ $var ] = FrmAppHelper::get_param( $var, $default );
151
+            if ( ! isset( $values[$var] ) ) {
152
+				$values[$var] = FrmAppHelper::get_param( $var, $default );
153 153
             }
154 154
         }
155 155
 
@@ -157,16 +157,16 @@  discard block
 block discarded – undo
157 157
 			$values['form_key'] = ( $post_values && isset( $post_values['form_key'] ) ) ? $post_values['form_key'] : FrmAppHelper::get_unique_key( '', $wpdb->prefix . 'frm_forms', 'form_key' );
158 158
         }
159 159
 
160
-        $values = self::fill_default_opts($values, false, $post_values);
160
+        $values = self::fill_default_opts( $values, false, $post_values );
161 161
 
162
-        if ( $post_values && isset($post_values['options']['custom_style']) ) {
162
+        if ( $post_values && isset( $post_values['options']['custom_style'] ) ) {
163 163
             $values['custom_style'] = $post_values['options']['custom_style'];
164 164
         } else {
165 165
             $frm_settings = FrmAppHelper::get_settings();
166 166
             $values['custom_style'] = ( $frm_settings->load_style != 'none' );
167 167
         }
168 168
 
169
-        return apply_filters('frm_setup_new_form_vars', $values);
169
+        return apply_filters( 'frm_setup_new_form_vars', $values );
170 170
     }
171 171
 
172 172
     /**
@@ -177,42 +177,42 @@  discard block
 block discarded – undo
177 177
 			$post_values = stripslashes_deep( $_POST );
178 178
 		}
179 179
 
180
-        $values['form_key'] = isset($post_values['form_key']) ? $post_values['form_key'] : $record->form_key;
181
-        $values['default_template'] = isset($post_values['default_template']) ? $post_values['default_template'] : $record->default_template;
182
-        $values['is_template'] = isset($post_values['is_template']) ? $post_values['is_template'] : $record->is_template;
180
+        $values['form_key'] = isset( $post_values['form_key'] ) ? $post_values['form_key'] : $record->form_key;
181
+        $values['default_template'] = isset( $post_values['default_template'] ) ? $post_values['default_template'] : $record->default_template;
182
+        $values['is_template'] = isset( $post_values['is_template'] ) ? $post_values['is_template'] : $record->is_template;
183 183
         $values['status'] = $record->status;
184 184
 
185
-        $values = self::fill_default_opts($values, $record, $post_values);
185
+        $values = self::fill_default_opts( $values, $record, $post_values );
186 186
 
187
-        return apply_filters('frm_setup_edit_form_vars', $values);
187
+        return apply_filters( 'frm_setup_edit_form_vars', $values );
188 188
     }
189 189
 
190 190
 	public static function fill_default_opts( $values, $record, $post_values ) {
191 191
 
192 192
         $defaults = self::get_default_opts();
193 193
 		foreach ( $defaults as $var => $default ) {
194
-            if ( is_array($default) ) {
195
-                if ( ! isset( $values[ $var ] ) ) {
196
-					$values[ $var ] = ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : array();
194
+            if ( is_array( $default ) ) {
195
+                if ( ! isset( $values[$var] ) ) {
196
+					$values[$var] = ( $record && isset( $record->options[$var] ) ) ? $record->options[$var] : array();
197 197
                 }
198 198
 
199 199
                 foreach ( $default as $k => $v ) {
200
-					$values[ $var ][ $k ] = ( $post_values && isset( $post_values[ $var ][ $k ] ) ) ? $post_values[ $var ][ $k ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) ) ? $record->options[ $var ][ $k ] : $v);
200
+					$values[$var][$k] = ( $post_values && isset( $post_values[$var][$k] ) ) ? $post_values[$var][$k] : ( ( $record && isset( $record->options[$var] ) && isset( $record->options[$var][$k] ) ) ? $record->options[$var][$k] : $v );
201 201
 
202 202
                     if ( is_array( $v ) ) {
203 203
                         foreach ( $v as $k1 => $v1 ) {
204
-							$values[ $var ][ $k ][ $k1 ] = ( $post_values && isset( $post_values[ $var ][ $k ][ $k1 ] ) ) ? $post_values[ $var ][ $k ][ $k1 ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) && isset( $record->options[ $var ][ $k ][ $k1 ] ) ) ? $record->options[ $var ][ $k ][ $k1 ] : $v1 );
204
+							$values[$var][$k][$k1] = ( $post_values && isset( $post_values[$var][$k][$k1] ) ) ? $post_values[$var][$k][$k1] : ( ( $record && isset( $record->options[$var] ) && isset( $record->options[$var][$k] ) && isset( $record->options[$var][$k][$k1] ) ) ? $record->options[$var][$k][$k1] : $v1 );
205 205
                             unset( $k1, $v1 );
206 206
                         }
207 207
                     }
208 208
 
209
-                    unset($k, $v);
209
+                    unset( $k, $v );
210 210
                 }
211 211
             } else {
212
-				$values[ $var ] = ( $post_values && isset( $post_values['options'][ $var ] ) ) ? $post_values['options'][ $var ] : ( ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : $default );
212
+				$values[$var] = ( $post_values && isset( $post_values['options'][$var] ) ) ? $post_values['options'][$var] : ( ( $record && isset( $record->options[$var] ) ) ? $record->options[$var] : $default );
213 213
             }
214 214
 
215
-            unset($var, $default);
215
+            unset( $var, $default );
216 216
         }
217 217
 
218 218
         return $values;
@@ -225,9 +225,9 @@  discard block
 block discarded – undo
225 225
             'submit_value' => $frm_settings->submit_value, 'success_action' => 'message',
226 226
             'success_msg' => $frm_settings->success_msg, 'show_form' => 0, 'akismet' => '',
227 227
             'no_save' => 0, 'ajax_load' => 0, 'form_class' => '', 'custom_style' => 1,
228
-            'before_html' => self::get_default_html('before'),
228
+            'before_html' => self::get_default_html( 'before' ),
229 229
             'after_html' => '',
230
-            'submit_html' => self::get_default_html('submit'),
230
+            'submit_html' => self::get_default_html( 'submit' ),
231 231
         );
232 232
     }
233 233
 
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 	public static function fill_form_options( &$options, $values ) {
240 240
 		$defaults = self::get_default_opts();
241 241
 		foreach ( $defaults as $var => $default ) {
242
-			$options[ $var ] = isset( $values['options'][ $var ] ) ? $values['options'][ $var ] : $default;
242
+			$options[$var] = isset( $values['options'][$var] ) ? $values['options'][$var] : $default;
243 243
 			unset( $var, $default );
244 244
 		}
245 245
 	}
@@ -279,21 +279,21 @@  discard block
 block discarded – undo
279 279
     }
280 280
 
281 281
 	public static function get_custom_submit( $html, $form, $submit, $form_action, $values ) {
282
-        $button = self::replace_shortcodes($html, $form, $submit, $form_action, $values);
283
-        if ( ! strpos($button, '[button_action]') ) {
282
+        $button = self::replace_shortcodes( $html, $form, $submit, $form_action, $values );
283
+        if ( ! strpos( $button, '[button_action]' ) ) {
284 284
             return;
285 285
         }
286 286
 
287
-        $button_parts = explode('[button_action]', $button);
287
+        $button_parts = explode( '[button_action]', $button );
288 288
         echo $button_parts[0];
289 289
         //echo ' id="frm_submit_"';
290 290
 
291
-        $classes = apply_filters('frm_submit_button_class', array(), $form);
292
-        if ( ! empty($classes) ) {
291
+        $classes = apply_filters( 'frm_submit_button_class', array(), $form );
292
+        if ( ! empty( $classes ) ) {
293 293
 			echo ' class="' . esc_attr( implode( ' ', $classes ) ) . '"';
294 294
         }
295 295
 
296
-        do_action('frm_submit_button_action', $form, $form_action);
296
+        do_action( 'frm_submit_button_action', $form, $form_action );
297 297
         echo $button_parts[1];
298 298
     }
299 299
 
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 		$last_field = false;
315 315
         foreach ( $fields as $field ) {
316 316
 			if ( $prev_order === $field->field_order ) {
317
-				$add_order++;
317
+				$add_order ++;
318 318
 			}
319 319
 
320 320
 			if ( $add_order ) {
@@ -381,21 +381,21 @@  discard block
 block discarded – undo
381 381
             if ( $code == 'form_name' ) {
382 382
                 $replace_with = $form->name;
383 383
             } else if ( $code == 'form_description' ) {
384
-                $replace_with = FrmAppHelper::use_wpautop($form->description);
385
-            } else if ( $code == 'entry_key' && isset($_GET) && isset($_GET['entry']) ) {
384
+                $replace_with = FrmAppHelper::use_wpautop( $form->description );
385
+            } else if ( $code == 'entry_key' && isset( $_GET ) && isset( $_GET['entry'] ) ) {
386 386
                 $replace_with = FrmAppHelper::simple_get( 'entry' );
387 387
             } else {
388 388
                 $replace_with = '';
389 389
             }
390 390
 
391
-            FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true($show) && $replace_with != '' ), $code, $replace_with, $html );
391
+            FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true( $show ) && $replace_with != '' ), $code, $replace_with, $html );
392 392
         }
393 393
 
394 394
         //replace [form_key]
395
-        $html = str_replace('[form_key]', $form->form_key, $html);
395
+        $html = str_replace( '[form_key]', $form->form_key, $html );
396 396
 
397 397
         //replace [frmurl]
398
-        $html = str_replace('[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html);
398
+        $html = str_replace( '[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html );
399 399
 
400 400
 		if ( strpos( $html, '[button_label]' ) ) {
401 401
 			add_filter( 'frm_submit_button', 'FrmFormsHelper::submit_button_label', 1 );
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
 			$html = str_replace( '[button_label]', $replace_with, $html );
404 404
         }
405 405
 
406
-        $html = apply_filters('frm_form_replace_shortcodes', $html, $form, $values);
406
+        $html = apply_filters( 'frm_form_replace_shortcodes', $html, $form, $values );
407 407
 
408 408
 		if ( strpos( $html, '[if back_button]' ) ) {
409 409
 			$html = preg_replace( '/(\[if\s+back_button\])(.*?)(\[\/if\s+back_button\])/mis', '', $html );
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
     }
422 422
 
423 423
 	public static function submit_button_label( $submit ) {
424
-        if ( ! $submit || empty($submit) ) {
424
+        if ( ! $submit || empty( $submit ) ) {
425 425
             $frm_settings = FrmAppHelper::get_settings();
426 426
             $submit = $frm_settings->submit_value;
427 427
         }
@@ -430,11 +430,11 @@  discard block
 block discarded – undo
430 430
     }
431 431
 
432 432
 	public static function get_form_style_class( $form = false ) {
433
-        $style = self::get_form_style($form);
433
+        $style = self::get_form_style( $form );
434 434
         $class = ' with_frm_style';
435 435
 
436
-        if ( empty($style) ) {
437
-            if ( FrmAppHelper::is_admin_page('formidable-entries') ) {
436
+        if ( empty( $style ) ) {
437
+            if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) ) {
438 438
                 return $class;
439 439
             } else {
440 440
                 return;
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
         }
443 443
 
444 444
         //If submit button needs to be inline or centered
445
-        if ( is_object($form) ) {
445
+        if ( is_object( $form ) ) {
446 446
 			$form = $form->options;
447 447
 		}
448 448
 
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
 			$class .= ' frm_center_submit';
455 455
 		}
456 456
 
457
-        $class = apply_filters('frm_add_form_style_class', $class, $style);
457
+        $class = apply_filters( 'frm_add_form_style_class', $class, $style );
458 458
 
459 459
         return $class;
460 460
     }
@@ -542,12 +542,12 @@  discard block
 block discarded – undo
542 542
     }
543 543
 
544 544
 	public static function edit_form_link( $form_id ) {
545
-        if ( is_object($form_id) ) {
545
+        if ( is_object( $form_id ) ) {
546 546
             $form = $form_id;
547 547
             $name = $form->name;
548 548
             $form_id = $form->id;
549 549
         } else {
550
-            $name = FrmForm::getName($form_id);
550
+            $name = FrmForm::getName( $form_id );
551 551
         }
552 552
 
553 553
         if ( $form_id ) {
@@ -579,12 +579,12 @@  discard block
 block discarded – undo
579 579
         $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
580 580
 		$base_url = '?page=formidable&form_type=' . $current_page . '&id=' . $id;
581 581
         if ( 'trash' == $status ) {
582
-			$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][ $length ] . '</a>';
583
-        } else if ( current_user_can('frm_delete_forms') ) {
582
+			$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][$length] . '</a>';
583
+        } else if ( current_user_can( 'frm_delete_forms' ) ) {
584 584
             if ( EMPTY_TRASH_DAYS ) {
585
-				$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['trash'][ $length ] . '</a>';
585
+				$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['trash'][$length] . '</a>';
586 586
             } else {
587
-				$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . $id ) ) . '" class="submitdelete deletion" onclick="return confirm(\'' . esc_attr( __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ) ) . '\')">' . $labels['delete'][ $length ] . '</a>';
587
+				$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . $id ) ) . '" class="submitdelete deletion" onclick="return confirm(\'' . esc_attr( __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ) ) . '\')">' . $labels['delete'][$length] . '</a>';
588 588
             }
589 589
         }
590 590
 
@@ -598,11 +598,11 @@  discard block
 block discarded – undo
598 598
             'publish'   => __( 'Published', 'formidable' ),
599 599
         );
600 600
 
601
-        if ( ! in_array($status, array_keys($nice_names)) ) {
601
+        if ( ! in_array( $status, array_keys( $nice_names ) ) ) {
602 602
             $status = 'publish';
603 603
         }
604 604
 
605
-		$name = $nice_names[ $status ];
605
+		$name = $nice_names[$status];
606 606
 
607 607
         return $name;
608 608
     }
Please login to merge, or discard this patch.
Indentation   +273 added lines, -273 removed lines patch added patch discarded remove patch
@@ -12,38 +12,38 @@  discard block
 block discarded – undo
12 12
 
13 13
 	public static function get_direct_link( $key, $form = false ) {
14 14
 		$target_url = esc_url( admin_url( 'admin-ajax.php?action=frm_forms_preview&form=' . $key ) );
15
-        $target_url = apply_filters('frm_direct_link', $target_url, $key, $form);
16
-
17
-        return $target_url;
18
-    }
19
-
20
-    public static function forms_dropdown( $field_name, $field_value = '', $args = array() ) {
21
-        $defaults = array(
22
-            'blank'     => true,
23
-            'field_id'  => false,
24
-            'onchange'  => false,
25
-            'exclude'   => false,
26
-            'class'     => '',
15
+		$target_url = apply_filters('frm_direct_link', $target_url, $key, $form);
16
+
17
+		return $target_url;
18
+	}
19
+
20
+	public static function forms_dropdown( $field_name, $field_value = '', $args = array() ) {
21
+		$defaults = array(
22
+			'blank'     => true,
23
+			'field_id'  => false,
24
+			'onchange'  => false,
25
+			'exclude'   => false,
26
+			'class'     => '',
27 27
 			'inc_children' => 'exclude',
28
-        );
29
-        $args = wp_parse_args( $args, $defaults );
28
+		);
29
+		$args = wp_parse_args( $args, $defaults );
30 30
 
31
-        if ( ! $args['field_id'] ) {
32
-            $args['field_id'] = $field_name;
33
-        }
31
+		if ( ! $args['field_id'] ) {
32
+			$args['field_id'] = $field_name;
33
+		}
34 34
 
35 35
 		$query = array();
36
-        if ( $args['exclude'] ) {
36
+		if ( $args['exclude'] ) {
37 37
 			$query['id !'] = $args['exclude'];
38
-        }
38
+		}
39 39
 
40
-        $where = apply_filters('frm_forms_dropdown', $query, $field_name);
40
+		$where = apply_filters('frm_forms_dropdown', $query, $field_name);
41 41
 		$forms = FrmForm::get_published_forms( $where, 999, $args['inc_children'] );
42 42
 		$add_html = array();
43 43
 		self::add_html_attr( $args['onchange'], 'onchange', $add_html );
44 44
 		self::add_html_attr( $args['class'], 'class', $add_html );
45 45
 
46
-        ?>
46
+		?>
47 47
 		<select name="<?php echo esc_attr( $field_name ); ?>" id="<?php echo esc_attr( $args['field_id'] ) ?>" <?php echo implode( ' ', $add_html ); ?>>
48 48
 		<?php if ( $args['blank'] ) { ?>
49 49
 			<option value=""><?php echo ( $args['blank'] == 1 ) ? ' ' : '- ' . esc_attr( $args['blank'] ) . ' -'; ?></option>
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 		<?php } ?>
56 56
         </select>
57 57
         <?php
58
-    }
58
+	}
59 59
 
60 60
 	/**
61 61
 	 * @param string $class
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 		}
71 71
 	}
72 72
 
73
-    public static function form_switcher() {
73
+	public static function form_switcher() {
74 74
 		$where = apply_filters( 'frm_forms_dropdown', array(), '' );
75 75
 		$forms = FrmForm::get_published_forms( $where );
76 76
 
@@ -79,32 +79,32 @@  discard block
 block discarded – undo
79 79
 			unset( $args['form'] );
80 80
 		} else if ( isset( $_GET['form']) && ! isset( $_GET['id'] ) ) {
81 81
 			unset( $args['id'] );
82
-        }
82
+		}
83 83
 
84 84
 		$frm_action = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
85 85
 		if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $frm_action, array( 'edit', 'show', 'destroy_all' ) ) ) {
86
-            $args['frm_action'] = 'list';
87
-            $args['form'] = 0;
86
+			$args['frm_action'] = 'list';
87
+			$args['form'] = 0;
88 88
 		} else if ( FrmAppHelper::is_admin_page('formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ) ) ) {
89
-            $args['frm_action'] = 'edit';
89
+			$args['frm_action'] = 'edit';
90 90
 		} else if ( isset( $_GET['post'] ) ) {
91
-            $args['form'] = 0;
92
-            $base = admin_url('edit.php?post_type=frm_display');
93
-        }
91
+			$args['form'] = 0;
92
+			$base = admin_url('edit.php?post_type=frm_display');
93
+		}
94 94
 
95
-        ?>
95
+		?>
96 96
 		<li class="dropdown last" id="frm_bs_dropdown">
97 97
 			<a href="#" id="frm-navbarDrop" class="frm-dropdown-toggle" data-toggle="dropdown"><?php _e( 'Switch Form', 'formidable' ) ?> <b class="caret"></b></a>
98 98
 		    <ul class="frm-dropdown-menu frm-on-top" role="menu" aria-labelledby="frm-navbarDrop">
99 99
 			<?php
100 100
 			foreach ( $forms as $form ) {
101 101
 				if ( isset( $args['id'] ) ) {
102
-			        $args['id'] = $form->id;
102
+					$args['id'] = $form->id;
103 103
 				}
104
-			    if ( isset( $args['form'] ) ) {
105
-			        $args['form'] = $form->id;
104
+				if ( isset( $args['form'] ) ) {
105
+					$args['form'] = $form->id;
106 106
 				}
107
-                ?>
107
+				?>
108 108
 				<li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)') : FrmAppHelper::truncate( $form->name, 60 ) ); ?></a></li>
109 109
 			<?php
110 110
 				unset( $form );
@@ -112,12 +112,12 @@  discard block
 block discarded – undo
112 112
 			</ul>
113 113
 		</li>
114 114
         <?php
115
-    }
115
+	}
116 116
 
117 117
 	public static function get_sortable_classes( $col, $sort_col, $sort_dir ) {
118
-        echo ($sort_col == $col) ? 'sorted' : 'sortable';
119
-        echo ($sort_col == $col && $sort_dir == 'desc') ? ' asc' : ' desc';
120
-    }
118
+		echo ($sort_col == $col) ? 'sorted' : 'sortable';
119
+		echo ($sort_col == $col && $sort_dir == 'desc') ? ' asc' : ' desc';
120
+	}
121 121
 
122 122
 	public static function get_success_message( $atts ) {
123 123
 		$message = apply_filters( 'frm_content', $atts['message'], $atts['form'], $atts['entry_id'] );
@@ -126,110 +126,110 @@  discard block
 block discarded – undo
126 126
 		return $message;
127 127
 	}
128 128
 
129
-    /**
130
-     * Used when a form is created
131
-     */
132
-    public static function setup_new_vars( $values = array() ) {
133
-        global $wpdb;
129
+	/**
130
+	 * Used when a form is created
131
+	 */
132
+	public static function setup_new_vars( $values = array() ) {
133
+		global $wpdb;
134 134
 
135
-        if ( ! empty( $values ) ) {
136
-            $post_values = $values;
137
-        } else {
138
-            $values = array();
139
-            $post_values = isset($_POST) ? $_POST : array();
140
-        }
135
+		if ( ! empty( $values ) ) {
136
+			$post_values = $values;
137
+		} else {
138
+			$values = array();
139
+			$post_values = isset($_POST) ? $_POST : array();
140
+		}
141 141
 
142 142
 		foreach ( array( 'name' => '', 'description' => '' ) as $var => $default ) {
143 143
 			if ( ! isset( $values[ $var ] ) ) {
144 144
 				$values[ $var ] = FrmAppHelper::get_param( $var, $default );
145
-            }
146
-        }
145
+			}
146
+		}
147 147
 
148
-        $values['description'] = FrmAppHelper::use_wpautop($values['description']);
148
+		$values['description'] = FrmAppHelper::use_wpautop($values['description']);
149 149
 
150 150
 		foreach ( array( 'form_id' => '', 'logged_in' => '', 'editable' => '', 'default_template' => 0, 'is_template' => 0, 'status' => 'draft', 'parent_form_id' => 0 ) as $var => $default ) {
151
-            if ( ! isset( $values[ $var ] ) ) {
151
+			if ( ! isset( $values[ $var ] ) ) {
152 152
 				$values[ $var ] = FrmAppHelper::get_param( $var, $default );
153
-            }
154
-        }
153
+			}
154
+		}
155 155
 
156
-        if ( ! isset( $values['form_key'] ) ) {
156
+		if ( ! isset( $values['form_key'] ) ) {
157 157
 			$values['form_key'] = ( $post_values && isset( $post_values['form_key'] ) ) ? $post_values['form_key'] : FrmAppHelper::get_unique_key( '', $wpdb->prefix . 'frm_forms', 'form_key' );
158
-        }
158
+		}
159 159
 
160
-        $values = self::fill_default_opts($values, false, $post_values);
160
+		$values = self::fill_default_opts($values, false, $post_values);
161 161
 
162
-        if ( $post_values && isset($post_values['options']['custom_style']) ) {
163
-            $values['custom_style'] = $post_values['options']['custom_style'];
164
-        } else {
165
-            $frm_settings = FrmAppHelper::get_settings();
166
-            $values['custom_style'] = ( $frm_settings->load_style != 'none' );
167
-        }
162
+		if ( $post_values && isset($post_values['options']['custom_style']) ) {
163
+			$values['custom_style'] = $post_values['options']['custom_style'];
164
+		} else {
165
+			$frm_settings = FrmAppHelper::get_settings();
166
+			$values['custom_style'] = ( $frm_settings->load_style != 'none' );
167
+		}
168 168
 
169
-        return apply_filters('frm_setup_new_form_vars', $values);
170
-    }
169
+		return apply_filters('frm_setup_new_form_vars', $values);
170
+	}
171 171
 
172
-    /**
173
-     * Used when editing a form
174
-     */
175
-    public static function setup_edit_vars( $values, $record, $post_values = array() ) {
172
+	/**
173
+	 * Used when editing a form
174
+	 */
175
+	public static function setup_edit_vars( $values, $record, $post_values = array() ) {
176 176
 		if ( empty( $post_values ) ) {
177 177
 			$post_values = stripslashes_deep( $_POST );
178 178
 		}
179 179
 
180
-        $values['form_key'] = isset($post_values['form_key']) ? $post_values['form_key'] : $record->form_key;
181
-        $values['default_template'] = isset($post_values['default_template']) ? $post_values['default_template'] : $record->default_template;
182
-        $values['is_template'] = isset($post_values['is_template']) ? $post_values['is_template'] : $record->is_template;
183
-        $values['status'] = $record->status;
180
+		$values['form_key'] = isset($post_values['form_key']) ? $post_values['form_key'] : $record->form_key;
181
+		$values['default_template'] = isset($post_values['default_template']) ? $post_values['default_template'] : $record->default_template;
182
+		$values['is_template'] = isset($post_values['is_template']) ? $post_values['is_template'] : $record->is_template;
183
+		$values['status'] = $record->status;
184 184
 
185
-        $values = self::fill_default_opts($values, $record, $post_values);
185
+		$values = self::fill_default_opts($values, $record, $post_values);
186 186
 
187
-        return apply_filters('frm_setup_edit_form_vars', $values);
188
-    }
187
+		return apply_filters('frm_setup_edit_form_vars', $values);
188
+	}
189 189
 
190 190
 	public static function fill_default_opts( $values, $record, $post_values ) {
191 191
 
192
-        $defaults = self::get_default_opts();
192
+		$defaults = self::get_default_opts();
193 193
 		foreach ( $defaults as $var => $default ) {
194
-            if ( is_array($default) ) {
195
-                if ( ! isset( $values[ $var ] ) ) {
194
+			if ( is_array($default) ) {
195
+				if ( ! isset( $values[ $var ] ) ) {
196 196
 					$values[ $var ] = ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : array();
197
-                }
197
+				}
198 198
 
199
-                foreach ( $default as $k => $v ) {
199
+				foreach ( $default as $k => $v ) {
200 200
 					$values[ $var ][ $k ] = ( $post_values && isset( $post_values[ $var ][ $k ] ) ) ? $post_values[ $var ][ $k ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) ) ? $record->options[ $var ][ $k ] : $v);
201 201
 
202
-                    if ( is_array( $v ) ) {
203
-                        foreach ( $v as $k1 => $v1 ) {
202
+					if ( is_array( $v ) ) {
203
+						foreach ( $v as $k1 => $v1 ) {
204 204
 							$values[ $var ][ $k ][ $k1 ] = ( $post_values && isset( $post_values[ $var ][ $k ][ $k1 ] ) ) ? $post_values[ $var ][ $k ][ $k1 ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) && isset( $record->options[ $var ][ $k ][ $k1 ] ) ) ? $record->options[ $var ][ $k ][ $k1 ] : $v1 );
205
-                            unset( $k1, $v1 );
206
-                        }
207
-                    }
205
+							unset( $k1, $v1 );
206
+						}
207
+					}
208 208
 
209
-                    unset($k, $v);
210
-                }
211
-            } else {
209
+					unset($k, $v);
210
+				}
211
+			} else {
212 212
 				$values[ $var ] = ( $post_values && isset( $post_values['options'][ $var ] ) ) ? $post_values['options'][ $var ] : ( ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : $default );
213
-            }
213
+			}
214 214
 
215
-            unset($var, $default);
216
-        }
215
+			unset($var, $default);
216
+		}
217 217
 
218
-        return $values;
219
-    }
218
+		return $values;
219
+	}
220 220
 
221
-    public static function get_default_opts() {
222
-        $frm_settings = FrmAppHelper::get_settings();
221
+	public static function get_default_opts() {
222
+		$frm_settings = FrmAppHelper::get_settings();
223 223
 
224
-        return array(
225
-            'submit_value' => $frm_settings->submit_value, 'success_action' => 'message',
226
-            'success_msg' => $frm_settings->success_msg, 'show_form' => 0, 'akismet' => '',
227
-            'no_save' => 0, 'ajax_load' => 0, 'form_class' => '', 'custom_style' => 1,
228
-            'before_html' => self::get_default_html('before'),
229
-            'after_html' => '',
230
-            'submit_html' => self::get_default_html('submit'),
231
-        );
232
-    }
224
+		return array(
225
+			'submit_value' => $frm_settings->submit_value, 'success_action' => 'message',
226
+			'success_msg' => $frm_settings->success_msg, 'show_form' => 0, 'akismet' => '',
227
+			'no_save' => 0, 'ajax_load' => 0, 'form_class' => '', 'custom_style' => 1,
228
+			'before_html' => self::get_default_html('before'),
229
+			'after_html' => '',
230
+			'submit_html' => self::get_default_html('submit'),
231
+		);
232
+	}
233 233
 
234 234
 	/**
235 235
 	 * @param array $options
@@ -244,15 +244,15 @@  discard block
 block discarded – undo
244 244
 		}
245 245
 	}
246 246
 
247
-    /**
248
-     * @param string $loc
249
-     */
247
+	/**
248
+	 * @param string $loc
249
+	 */
250 250
 	public static function get_default_html( $loc ) {
251 251
 		if ( $loc == 'submit' ) {
252
-            $sending = __( 'Sending', 'formidable' );
253
-            $draft_link = self::get_draft_link();
254
-            $img = '[frmurl]/images/ajax_loader.gif';
255
-            $default_html = <<<SUBMIT_HTML
252
+			$sending = __( 'Sending', 'formidable' );
253
+			$draft_link = self::get_draft_link();
254
+			$img = '[frmurl]/images/ajax_loader.gif';
255
+			$default_html = <<<SUBMIT_HTML
256 256
 <div class="frm_submit">
257 257
 [if back_button]<input type="button" value="[back_label]" name="frm_prev_page" formnovalidate="formnovalidate" class="frm_prev_page" [back_hook] />[/if back_button]
258 258
 <input type="submit" value="[button_label]" [button_action] />
@@ -261,49 +261,49 @@  discard block
 block discarded – undo
261 261
 </div>
262 262
 SUBMIT_HTML;
263 263
 		} else if ( $loc == 'before' ) {
264
-            $default_html = <<<BEFORE_HTML
264
+			$default_html = <<<BEFORE_HTML
265 265
 <legend class="frm_hidden">[form_name]</legend>
266 266
 [if form_name]<h3 class="frm_form_title">[form_name]</h3>[/if form_name]
267 267
 [if form_description]<div class="frm_description">[form_description]</div>[/if form_description]
268 268
 BEFORE_HTML;
269 269
 		} else {
270
-            $default_html = '';
271
-        }
270
+			$default_html = '';
271
+		}
272 272
 
273
-        return $default_html;
274
-    }
273
+		return $default_html;
274
+	}
275 275
 
276
-    public static function get_draft_link() {
277
-        $link = '[if save_draft]<a href="#" class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]';
278
-        return $link;
279
-    }
276
+	public static function get_draft_link() {
277
+		$link = '[if save_draft]<a href="#" class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]';
278
+		return $link;
279
+	}
280 280
 
281 281
 	public static function get_custom_submit( $html, $form, $submit, $form_action, $values ) {
282
-        $button = self::replace_shortcodes($html, $form, $submit, $form_action, $values);
283
-        if ( ! strpos($button, '[button_action]') ) {
284
-            return;
285
-        }
282
+		$button = self::replace_shortcodes($html, $form, $submit, $form_action, $values);
283
+		if ( ! strpos($button, '[button_action]') ) {
284
+			return;
285
+		}
286 286
 
287
-        $button_parts = explode('[button_action]', $button);
288
-        echo $button_parts[0];
289
-        //echo ' id="frm_submit_"';
287
+		$button_parts = explode('[button_action]', $button);
288
+		echo $button_parts[0];
289
+		//echo ' id="frm_submit_"';
290 290
 
291
-        $classes = apply_filters('frm_submit_button_class', array(), $form);
292
-        if ( ! empty($classes) ) {
291
+		$classes = apply_filters('frm_submit_button_class', array(), $form);
292
+		if ( ! empty($classes) ) {
293 293
 			echo ' class="' . esc_attr( implode( ' ', $classes ) ) . '"';
294
-        }
295
-
296
-        do_action('frm_submit_button_action', $form, $form_action);
297
-        echo $button_parts[1];
298
-    }
299
-
300
-    /**
301
-     * Automatically add end section fields if they don't exist (2.0 migration)
302
-     * @since 2.0
303
-     *
304
-     * @param boolean $reset_fields
305
-     */
306
-    public static function auto_add_end_section_fields( $form, $fields, &$reset_fields ) {
294
+		}
295
+
296
+		do_action('frm_submit_button_action', $form, $form_action);
297
+		echo $button_parts[1];
298
+	}
299
+
300
+	/**
301
+	 * Automatically add end section fields if they don't exist (2.0 migration)
302
+	 * @since 2.0
303
+	 *
304
+	 * @param boolean $reset_fields
305
+	 */
306
+	public static function auto_add_end_section_fields( $form, $fields, &$reset_fields ) {
307 307
 		if ( empty( $fields ) ) {
308 308
 			return;
309 309
 		}
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 		$open = $prev_order = false;
313 313
 		$add_order = 0;
314 314
 		$last_field = false;
315
-        foreach ( $fields as $field ) {
315
+		foreach ( $fields as $field ) {
316 316
 			if ( $prev_order === $field->field_order ) {
317 317
 				$add_order++;
318 318
 			}
@@ -323,48 +323,48 @@  discard block
 block discarded – undo
323 323
 				FrmField::update( $field->id, array( 'field_order' => $field->field_order ) );
324 324
 			}
325 325
 
326
-            switch ( $field->type ) {
327
-                case 'divider':
328
-                    // create an end section if open
326
+			switch ( $field->type ) {
327
+				case 'divider':
328
+					// create an end section if open
329 329
 					self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $field, 'move' );
330 330
 
331
-                    // mark it open for the next end section
332
-                    $open = true;
333
-                break;
334
-                case 'break';
331
+					// mark it open for the next end section
332
+					$open = true;
333
+				break;
334
+				case 'break';
335 335
 					self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $field, 'move' );
336
-                break;
337
-                case 'end_divider':
338
-                    if ( ! $open ) {
339
-                        // the section isn't open, so this is an extra field that needs to be removed
340
-                        FrmField::destroy( $field->id );
341
-                        $reset_fields = true;
342
-                    }
343
-
344
-                    // There is already an end section here, so there is no need to create one
345
-                    $open = false;
346
-            }
336
+				break;
337
+				case 'end_divider':
338
+					if ( ! $open ) {
339
+						// the section isn't open, so this is an extra field that needs to be removed
340
+						FrmField::destroy( $field->id );
341
+						$reset_fields = true;
342
+					}
343
+
344
+					// There is already an end section here, so there is no need to create one
345
+					$open = false;
346
+			}
347 347
 			$prev_order = $field->field_order;
348 348
 
349 349
 			$last_field = $field;
350 350
 			unset( $field );
351
-        }
351
+		}
352 352
 
353 353
 		self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $last_field );
354
-    }
354
+	}
355 355
 
356 356
 	/**
357 357
 	 * Create end section field if it doesn't exist. This is for migration from < 2.0
358 358
 	 * Fix any ordering that may be messed up
359 359
 	 */
360 360
 	public static function maybe_create_end_section( &$open, &$reset_fields, &$add_order, $end_section_values, $field, $move = 'no' ) {
361
-        if ( ! $open ) {
362
-            return;
363
-        }
361
+		if ( ! $open ) {
362
+			return;
363
+		}
364 364
 
365 365
 		$end_section_values['field_order'] = $field->field_order + 1;
366 366
 
367
-        FrmField::create( $end_section_values );
367
+		FrmField::create( $end_section_values );
368 368
 
369 369
 		if ( $move == 'move' ) {
370 370
 			// bump the order of current field unless we're at the end of the form
@@ -372,39 +372,39 @@  discard block
 block discarded – undo
372 372
 		}
373 373
 
374 374
 		$add_order += 2;
375
-        $open = false;
376
-        $reset_fields = true;
377
-    }
375
+		$open = false;
376
+		$reset_fields = true;
377
+	}
378 378
 
379
-    public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) {
379
+	public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) {
380 380
 		foreach ( array( 'form_name' => $title, 'form_description' => $description, 'entry_key' => true ) as $code => $show ) {
381
-            if ( $code == 'form_name' ) {
382
-                $replace_with = $form->name;
383
-            } else if ( $code == 'form_description' ) {
384
-                $replace_with = FrmAppHelper::use_wpautop($form->description);
385
-            } else if ( $code == 'entry_key' && isset($_GET) && isset($_GET['entry']) ) {
386
-                $replace_with = FrmAppHelper::simple_get( 'entry' );
387
-            } else {
388
-                $replace_with = '';
389
-            }
381
+			if ( $code == 'form_name' ) {
382
+				$replace_with = $form->name;
383
+			} else if ( $code == 'form_description' ) {
384
+				$replace_with = FrmAppHelper::use_wpautop($form->description);
385
+			} else if ( $code == 'entry_key' && isset($_GET) && isset($_GET['entry']) ) {
386
+				$replace_with = FrmAppHelper::simple_get( 'entry' );
387
+			} else {
388
+				$replace_with = '';
389
+			}
390 390
 
391
-            FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true($show) && $replace_with != '' ), $code, $replace_with, $html );
392
-        }
391
+			FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true($show) && $replace_with != '' ), $code, $replace_with, $html );
392
+		}
393 393
 
394
-        //replace [form_key]
395
-        $html = str_replace('[form_key]', $form->form_key, $html);
394
+		//replace [form_key]
395
+		$html = str_replace('[form_key]', $form->form_key, $html);
396 396
 
397
-        //replace [frmurl]
398
-        $html = str_replace('[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html);
397
+		//replace [frmurl]
398
+		$html = str_replace('[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html);
399 399
 
400 400
 		if ( strpos( $html, '[button_label]' ) ) {
401 401
 			add_filter( 'frm_submit_button', 'FrmFormsHelper::submit_button_label', 1 );
402 402
 			$submit_label = apply_filters( 'frm_submit_button', $title, $form );
403 403
 			$submit_label = esc_attr( do_shortcode( $submit_label ) );
404 404
 			$html = str_replace( '[button_label]', $submit_label, $html );
405
-        }
405
+		}
406 406
 
407
-        $html = apply_filters('frm_form_replace_shortcodes', $html, $form, $values);
407
+		$html = apply_filters('frm_form_replace_shortcodes', $html, $form, $values);
408 408
 
409 409
 		if ( strpos( $html, '[if back_button]' ) ) {
410 410
 			$html = preg_replace( '/(\[if\s+back_button\])(.*?)(\[\/if\s+back_button\])/mis', '', $html );
@@ -418,32 +418,32 @@  discard block
 block discarded – undo
418 418
 			$html = do_shortcode( $html );
419 419
 		}
420 420
 
421
-        return $html;
422
-    }
421
+		return $html;
422
+	}
423 423
 
424 424
 	public static function submit_button_label( $submit ) {
425
-        if ( ! $submit || empty($submit) ) {
426
-            $frm_settings = FrmAppHelper::get_settings();
427
-            $submit = $frm_settings->submit_value;
428
-        }
425
+		if ( ! $submit || empty($submit) ) {
426
+			$frm_settings = FrmAppHelper::get_settings();
427
+			$submit = $frm_settings->submit_value;
428
+		}
429 429
 
430
-        return $submit;
431
-    }
430
+		return $submit;
431
+	}
432 432
 
433 433
 	public static function get_form_style_class( $form = false ) {
434
-        $style = self::get_form_style($form);
435
-        $class = ' with_frm_style';
436
-
437
-        if ( empty($style) ) {
438
-            if ( FrmAppHelper::is_admin_page('formidable-entries') ) {
439
-                return $class;
440
-            } else {
441
-                return;
442
-            }
443
-        }
444
-
445
-        //If submit button needs to be inline or centered
446
-        if ( is_object($form) ) {
434
+		$style = self::get_form_style($form);
435
+		$class = ' with_frm_style';
436
+
437
+		if ( empty($style) ) {
438
+			if ( FrmAppHelper::is_admin_page('formidable-entries') ) {
439
+				return $class;
440
+			} else {
441
+				return;
442
+			}
443
+		}
444
+
445
+		//If submit button needs to be inline or centered
446
+		if ( is_object($form) ) {
447 447
 			$form = $form->options;
448 448
 		}
449 449
 
@@ -455,17 +455,17 @@  discard block
 block discarded – undo
455 455
 			$class .= ' frm_center_submit';
456 456
 		}
457 457
 
458
-        $class = apply_filters('frm_add_form_style_class', $class, $style);
458
+		$class = apply_filters('frm_add_form_style_class', $class, $style);
459 459
 
460
-        return $class;
461
-    }
460
+		return $class;
461
+	}
462 462
 
463
-    /**
464
-     * @param string|boolean $form
465
-     *
466
-     * @return string
467
-     */
468
-    public static function get_form_style( $form ) {
463
+	/**
464
+	 * @param string|boolean $form
465
+	 *
466
+	 * @return string
467
+	 */
468
+	public static function get_form_style( $form ) {
469 469
 		$style = 1;
470 470
 		if ( empty( $form ) || 'default' == 'form' ) {
471 471
 			return $style;
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
 		$style = ( $form && is_object( $form ) && isset( $form->options['custom_style'] ) ) ? $form->options['custom_style'] : $style;
486 486
 
487 487
 		return $style;
488
-    }
488
+	}
489 489
 
490 490
 	/**
491 491
 	 * Display the validation error messages when an entry is submitted
@@ -539,74 +539,74 @@  discard block
 block discarded – undo
539 539
 	}
540 540
 
541 541
 	public static function get_scroll_js( $form_id ) {
542
-        ?><script type="text/javascript">document.addEventListener('DOMContentLoaded',function(){frmFrontForm.scrollMsg(<?php echo (int) $form_id ?>);})</script><?php
543
-    }
542
+		?><script type="text/javascript">document.addEventListener('DOMContentLoaded',function(){frmFrontForm.scrollMsg(<?php echo (int) $form_id ?>);})</script><?php
543
+	}
544 544
 
545 545
 	public static function edit_form_link( $form_id ) {
546
-        if ( is_object($form_id) ) {
547
-            $form = $form_id;
548
-            $name = $form->name;
549
-            $form_id = $form->id;
550
-        } else {
551
-            $name = FrmForm::getName($form_id);
552
-        }
553
-
554
-        if ( $form_id ) {
546
+		if ( is_object($form_id) ) {
547
+			$form = $form_id;
548
+			$name = $form->name;
549
+			$form_id = $form->id;
550
+		} else {
551
+			$name = FrmForm::getName($form_id);
552
+		}
553
+
554
+		if ( $form_id ) {
555 555
 			$val = '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ) ) . '">' . ( '' == $name ? __( '(no title)' ) : FrmAppHelper::truncate( $name, 40 ) ) . '</a>';
556
-	    } else {
557
-	        $val = '';
558
-	    }
556
+		} else {
557
+			$val = '';
558
+		}
559 559
 
560
-	    return $val;
560
+		return $val;
561 561
 	}
562 562
 
563 563
 	public static function delete_trash_link( $id, $status, $length = 'long' ) {
564
-        $link = '';
565
-        $labels = array(
566
-            'restore' => array(
567
-                'long'  => __( 'Restore from Trash', 'formidable' ),
568
-                'short' => __( 'Restore', 'formidable' ),
569
-            ),
570
-            'trash' => array(
571
-                'long'  => __( 'Move to Trash', 'formidable' ),
572
-                'short' => __( 'Trash', 'formidable' ),
573
-            ),
574
-            'delete' => array(
575
-                'long'  => __( 'Delete Permanently', 'formidable' ),
576
-                'short' => __( 'Delete', 'formidable' ),
577
-            ),
578
-        );
579
-
580
-        $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
564
+		$link = '';
565
+		$labels = array(
566
+			'restore' => array(
567
+				'long'  => __( 'Restore from Trash', 'formidable' ),
568
+				'short' => __( 'Restore', 'formidable' ),
569
+			),
570
+			'trash' => array(
571
+				'long'  => __( 'Move to Trash', 'formidable' ),
572
+				'short' => __( 'Trash', 'formidable' ),
573
+			),
574
+			'delete' => array(
575
+				'long'  => __( 'Delete Permanently', 'formidable' ),
576
+				'short' => __( 'Delete', 'formidable' ),
577
+			),
578
+		);
579
+
580
+		$current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : '';
581 581
 		$base_url = '?page=formidable&form_type=' . $current_page . '&id=' . $id;
582
-        if ( 'trash' == $status ) {
582
+		if ( 'trash' == $status ) {
583 583
 			$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][ $length ] . '</a>';
584
-        } else if ( current_user_can('frm_delete_forms') ) {
585
-            if ( EMPTY_TRASH_DAYS ) {
584
+		} else if ( current_user_can('frm_delete_forms') ) {
585
+			if ( EMPTY_TRASH_DAYS ) {
586 586
 				$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['trash'][ $length ] . '</a>';
587
-            } else {
587
+			} else {
588 588
 				$link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=destroy', 'destroy_form_' . $id ) ) . '" class="submitdelete deletion" onclick="return confirm(\'' . esc_attr( __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ) ) . '\')">' . $labels['delete'][ $length ] . '</a>';
589
-            }
590
-        }
589
+			}
590
+		}
591 591
 
592
-        return $link;
593
-    }
592
+		return $link;
593
+	}
594 594
 
595 595
 	public static function status_nice_name( $status ) {
596
-        $nice_names = array(
597
-            'draft'     => __( 'Draft', 'formidable' ),
598
-            'trash'     => __( 'Trash', 'formidable' ),
599
-            'publish'   => __( 'Published', 'formidable' ),
600
-        );
601
-
602
-        if ( ! in_array($status, array_keys($nice_names)) ) {
603
-            $status = 'publish';
604
-        }
596
+		$nice_names = array(
597
+			'draft'     => __( 'Draft', 'formidable' ),
598
+			'trash'     => __( 'Trash', 'formidable' ),
599
+			'publish'   => __( 'Published', 'formidable' ),
600
+		);
601
+
602
+		if ( ! in_array($status, array_keys($nice_names)) ) {
603
+			$status = 'publish';
604
+		}
605 605
 
606 606
 		$name = $nice_names[ $status ];
607 607
 
608
-        return $name;
609
-    }
608
+		return $name;
609
+	}
610 610
 
611 611
 	public static function get_params() {
612 612
 		_deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::list_page_params' );
Please login to merge, or discard this patch.
classes/helpers/FrmListHelper.php 3 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -67,10 +67,10 @@  discard block
 block discarded – undo
67 67
 	protected $modes = array();
68 68
 
69 69
 	/**
70
-	*
71
-	* @var array
72
-	*/
73
-    protected $params;
70
+	 *
71
+	 * @var array
72
+	 */
73
+	protected $params;
74 74
 
75 75
 	/**
76 76
 	 * Stores the value returned by ->get_column_info()
@@ -87,10 +87,10 @@  discard block
 block discarded – undo
87 87
 		'single_row_columns' );
88 88
 
89 89
 	/**
90
-	* Construct the table object
91
-	*/
90
+	 * Construct the table object
91
+	 */
92 92
 	public function __construct( $args ) {
93
-	    $args = wp_parse_args( $args, array(
93
+		$args = wp_parse_args( $args, array(
94 94
 			'params' => array(),
95 95
 			'plural' => '',
96 96
 			'singular' => '',
Please login to merge, or discard this patch.
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -253,6 +253,9 @@  discard block
 block discarded – undo
253 253
 <?php
254 254
 	}
255 255
 
256
+	/**
257
+	 * @param string $param_name
258
+	 */
256 259
 	private function hidden_search_inputs( $param_name ) {
257 260
 		if ( ! empty( $_REQUEST[ $param_name ] ) ) {
258 261
 			echo '<input type="hidden" name="' . esc_attr( $param_name ) . '" value="' . esc_attr( $_REQUEST[ $param_name ] ) . '" />';
@@ -389,6 +392,9 @@  discard block
 block discarded – undo
389 392
 		return $action;
390 393
 	}
391 394
 
395
+	/**
396
+	 * @param string $action_name
397
+	 */
392 398
 	private static function get_bulk_action( $action_name ) {
393 399
 		$action = false;
394 400
 		if ( isset( $_REQUEST[ $action_name ] ) && -1 != sanitize_text_field( $_REQUEST[ $action_name ] ) ) {
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 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
 
@@ -197,8 +197,8 @@  discard block
 block discarded – undo
197 197
 			return $this->get_pagenum();
198 198
 		}
199 199
 
200
-		if ( isset( $this->_pagination_args[ $key ] ) ) {
201
-			return $this->_pagination_args[ $key ];
200
+		if ( isset( $this->_pagination_args[$key] ) ) {
201
+			return $this->_pagination_args[$key];
202 202
 		}
203 203
 	}
204 204
 
@@ -253,8 +253,8 @@  discard block
 block discarded – undo
253 253
 	}
254 254
 
255 255
 	private function hidden_search_inputs( $param_name ) {
256
-		if ( ! empty( $_REQUEST[ $param_name ] ) ) {
257
-			echo '<input type="hidden" name="' . esc_attr( $param_name ) . '" value="' . esc_attr( $_REQUEST[ $param_name ] ) . '" />';
256
+		if ( ! empty( $_REQUEST[$param_name] ) ) {
257
+			echo '<input type="hidden" name="' . esc_attr( $param_name ) . '" value="' . esc_attr( $_REQUEST[$param_name] ) . '" />';
258 258
 		}
259 259
 	}
260 260
 
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 
298 298
 		echo "<ul class='subsubsub'>\n";
299 299
 		foreach ( $views as $class => $view ) {
300
-			$views[ $class ] = "\t<li class='$class'>$view";
300
+			$views[$class] = "\t<li class='$class'>$view";
301 301
 		}
302 302
 		echo implode( " |</li>\n", $views ) . "</li>\n";
303 303
 		echo '</ul>';
@@ -390,8 +390,8 @@  discard block
 block discarded – undo
390 390
 
391 391
 	private static function get_bulk_action( $action_name ) {
392 392
 		$action = false;
393
-		if ( isset( $_REQUEST[ $action_name ] ) && -1 != sanitize_text_field( $_REQUEST[ $action_name ] ) ) {
394
-			$action = sanitize_text_field( $_REQUEST[ $action_name ] );
393
+		if ( isset( $_REQUEST[$action_name] ) && -1 != sanitize_text_field( $_REQUEST[$action_name] ) ) {
394
+			$action = sanitize_text_field( $_REQUEST[$action_name] );
395 395
 		}
396 396
 		return $action;
397 397
 	}
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
 
417 417
 		$out = '<div class="' . ( $always_visible ? 'row-actions visible' : 'row-actions' ) . '">';
418 418
 		foreach ( $actions as $action => $link ) {
419
-			++$i;
419
+			++ $i;
420 420
 			( $i == $action_count ) ? $sep = '' : $sep = ' | ';
421 421
 			$out .= "<span class='$action'>$link$sep</span>";
422 422
 		}
@@ -684,7 +684,7 @@  discard block
 block discarded – undo
684 684
 
685 685
 		// If the primary column doesn't exist fall back to the
686 686
 		// first non-checkbox column.
687
-		if ( ! isset( $columns[ $default ] ) ) {
687
+		if ( ! isset( $columns[$default] ) ) {
688 688
 			$default = FrmListHelper::get_default_primary_column_name();
689 689
 		}
690 690
 
@@ -698,7 +698,7 @@  discard block
 block discarded – undo
698 698
 		 */
699 699
 		$column  = apply_filters( 'list_table_primary_column', $default, $this->screen->id );
700 700
 
701
-		if ( empty( $column ) || ! isset( $columns[ $column ] ) ) {
701
+		if ( empty( $column ) || ! isset( $columns[$column] ) ) {
702 702
 			$column = $default;
703 703
 		}
704 704
 
@@ -720,7 +720,7 @@  discard block
 block discarded – undo
720 720
 			// In 4.3, we added a fourth argument for primary column.
721 721
 			$column_headers = array( array(), array(), array(), $this->get_primary_column_name() );
722 722
 			foreach ( $this->_column_headers as $key => $value ) {
723
-				$column_headers[ $key ] = $value;
723
+				$column_headers[$key] = $value;
724 724
 			}
725 725
 
726 726
 			return $column_headers;
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
 				$data[1] = false;
754 754
 			}
755 755
 
756
-			$sortable[ $id ] = $data;
756
+			$sortable[$id] = $data;
757 757
 		}
758 758
 
759 759
 		$primary = $this->get_primary_column_name();
@@ -808,7 +808,7 @@  discard block
 block discarded – undo
808 808
 			static $cb_counter = 1;
809 809
 			$columns['cb'] = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select All' ) . '</label>'
810 810
 				. '<input id="cb-select-all-' . esc_attr( $cb_counter ) . '" type="checkbox" />';
811
-			$cb_counter++;
811
+			$cb_counter ++;
812 812
 		}
813 813
 
814 814
 		foreach ( $columns as $column_key => $column_display_name ) {
@@ -828,8 +828,8 @@  discard block
 block discarded – undo
828 828
 				$class[] = 'column-primary';
829 829
 			}
830 830
 
831
-			if ( isset( $sortable[ $column_key ] ) ) {
832
-				list( $orderby, $desc_first ) = $sortable[ $column_key ];
831
+			if ( isset( $sortable[$column_key] ) ) {
832
+				list( $orderby, $desc_first ) = $sortable[$column_key];
833 833
 
834 834
 				if ( $current_orderby == $orderby ) {
835 835
 					$order = 'asc' == $current_order ? 'desc' : 'asc';
Please login to merge, or discard this patch.
classes/views/shared/form-nav.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
 </ul>
18 18
 
19 19
 <?php if ( $form && $title == 'show' ) { ?>
20
-    <input id="title" type="text" value="<?php echo esc_attr( $form->name == '' ? __( '(no title)') : $form->name ) ?>" readonly="readonly" disabled="disabled" />
20
+    <input id="title" type="text" value="<?php echo esc_attr( $form->name == '' ? __( '(no title)' ) : $form->name ) ?>" readonly="readonly" disabled="disabled" />
21 21
 <?php } ?>
22 22
 </div>
Please login to merge, or discard this patch.
classes/views/xml/import_form.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,9 +87,9 @@
 block discarded – undo
87 87
 								} else if ( $form->is_template ) {
88 88
 									echo ' ' . __( '(template)', 'formidable' );
89 89
 								}
90
-                        ?></option>
90
+						?></option>
91 91
                         <?php
92
-                        } ?>
92
+						} ?>
93 93
                         </select>
94 94
                         <p class="howto"><?php _e( 'Hold down the CTRL/Command button to select multiple forms', 'formidable' ); ?></p>
95 95
                     </td>
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,16 +10,16 @@  discard block
 block discarded – undo
10 10
     <div class="postbox ">
11 11
     <h3 class="hndle"><span><?php _e( 'Import', 'formidable' ) ?></span></h3>
12 12
     <div class="inside">
13
-        <p class="howto"><?php echo apply_filters('frm_upload_instructions1', __( 'Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated.', 'formidable' )) ?></p>
13
+        <p class="howto"><?php echo apply_filters( 'frm_upload_instructions1', __( 'Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated.', 'formidable' ) ) ?></p>
14 14
         <br/>
15 15
         <form enctype="multipart/form-data" method="post">
16 16
             <input type="hidden" name="frm_action" value="import_xml" />
17
-            <?php wp_nonce_field('import-xml-nonce', 'import-xml'); ?>
18
-            <p><label><?php echo apply_filters('frm_upload_instructions2', __( 'Choose a Formidable XML file', 'formidable' )) ?> (<?php printf(__( 'Maximum size: %s', 'formidable' ), ini_get('upload_max_filesize')) ?>)</label>
17
+            <?php wp_nonce_field( 'import-xml-nonce', 'import-xml' ); ?>
18
+            <p><label><?php echo apply_filters( 'frm_upload_instructions2', __( 'Choose a Formidable XML file', 'formidable' ) ) ?> (<?php printf( __( 'Maximum size: %s', 'formidable' ), ini_get( 'upload_max_filesize' ) ) ?>)</label>
19 19
             <input type="file" name="frm_import_file" size="25" />
20 20
             </p>
21 21
 
22
-            <?php do_action('frm_csv_opts', $forms) ?>
22
+            <?php do_action( 'frm_csv_opts', $forms ) ?>
23 23
 
24 24
             <p class="submit">
25 25
 				<input type="submit" value="<?php esc_attr_e( 'Upload file and import', 'formidable' ) ?>" class="button-primary" />
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     <div class="inside with_frm_style">
36 36
 		<form method="post" action="<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>" id="frm_export_xml">
37 37
             <input type="hidden" name="action" value="frm_export_xml" />
38
-            <?php wp_nonce_field('export-xml-nonce', 'export-xml'); ?>
38
+            <?php wp_nonce_field( 'export-xml-nonce', 'export-xml' ); ?>
39 39
 
40 40
             <table class="form-table">
41 41
                 <tr class="form-field">
Please login to merge, or discard this patch.
classes/helpers/FrmCSVExportHelper.php 2 patches
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -235,50 +235,50 @@  discard block
 block discarded – undo
235 235
 			return $line;
236 236
 		}
237 237
 
238
-        $convmap = false;
238
+		$convmap = false;
239 239
 
240 240
 		switch ( self::$to_encoding ) {
241
-            case 'macintosh':
241
+			case 'macintosh':
242 242
 				// this map was derived from the differences between the MacRoman and UTF-8 Charsets
243 243
 				// Reference:
244 244
 				//   - http://www.alanwood.net/demos/macroman.html
245
-                $convmap = array(
246
-                    256, 304, 0, 0xffff,
247
-                    306, 337, 0, 0xffff,
248
-                    340, 375, 0, 0xffff,
249
-                    377, 401, 0, 0xffff,
250
-                    403, 709, 0, 0xffff,
251
-                    712, 727, 0, 0xffff,
252
-                    734, 936, 0, 0xffff,
253
-                    938, 959, 0, 0xffff,
254
-                    961, 8210, 0, 0xffff,
255
-                    8213, 8215, 0, 0xffff,
256
-                    8219, 8219, 0, 0xffff,
257
-                    8227, 8229, 0, 0xffff,
258
-                    8231, 8239, 0, 0xffff,
259
-                    8241, 8248, 0, 0xffff,
260
-                    8251, 8259, 0, 0xffff,
261
-                    8261, 8363, 0, 0xffff,
262
-                    8365, 8481, 0, 0xffff,
263
-                    8483, 8705, 0, 0xffff,
264
-                    8707, 8709, 0, 0xffff,
265
-                    8711, 8718, 0, 0xffff,
266
-                    8720, 8720, 0, 0xffff,
267
-                    8722, 8729, 0, 0xffff,
268
-                    8731, 8733, 0, 0xffff,
269
-                    8735, 8746, 0, 0xffff,
270
-                    8748, 8775, 0, 0xffff,
271
-                    8777, 8799, 0, 0xffff,
272
-                    8801, 8803, 0, 0xffff,
273
-                    8806, 9673, 0, 0xffff,
274
-                    9675, 63742, 0, 0xffff,
275
-                    63744, 64256, 0, 0xffff,
276
-                );
277
-            break;
278
-            case 'ISO-8859-1':
279
-                $convmap = array( 256, 10000, 0, 0xffff );
280
-            break;
281
-        }
245
+				$convmap = array(
246
+					256, 304, 0, 0xffff,
247
+					306, 337, 0, 0xffff,
248
+					340, 375, 0, 0xffff,
249
+					377, 401, 0, 0xffff,
250
+					403, 709, 0, 0xffff,
251
+					712, 727, 0, 0xffff,
252
+					734, 936, 0, 0xffff,
253
+					938, 959, 0, 0xffff,
254
+					961, 8210, 0, 0xffff,
255
+					8213, 8215, 0, 0xffff,
256
+					8219, 8219, 0, 0xffff,
257
+					8227, 8229, 0, 0xffff,
258
+					8231, 8239, 0, 0xffff,
259
+					8241, 8248, 0, 0xffff,
260
+					8251, 8259, 0, 0xffff,
261
+					8261, 8363, 0, 0xffff,
262
+					8365, 8481, 0, 0xffff,
263
+					8483, 8705, 0, 0xffff,
264
+					8707, 8709, 0, 0xffff,
265
+					8711, 8718, 0, 0xffff,
266
+					8720, 8720, 0, 0xffff,
267
+					8722, 8729, 0, 0xffff,
268
+					8731, 8733, 0, 0xffff,
269
+					8735, 8746, 0, 0xffff,
270
+					8748, 8775, 0, 0xffff,
271
+					8777, 8799, 0, 0xffff,
272
+					8801, 8803, 0, 0xffff,
273
+					8806, 9673, 0, 0xffff,
274
+					9675, 63742, 0, 0xffff,
275
+					63744, 64256, 0, 0xffff,
276
+				);
277
+			break;
278
+			case 'ISO-8859-1':
279
+				$convmap = array( 256, 10000, 0, 0xffff );
280
+			break;
281
+		}
282 282
 
283 283
 		if ( is_array( $convmap ) ) {
284 284
 			$line = mb_encode_numericentity( $line, $convmap, self::$charset );
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 		}
290 290
 
291 291
 		return self::escape_csv( $line );
292
-    }
292
+	}
293 293
 
294 294
 	/**
295 295
 	 * Escape a " in a csv with another "
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 		header( 'Content-Description: File Transfer' );
65 65
 		header( 'Content-Disposition: attachment; filename="' . esc_attr( $filename ) . '"' );
66 66
 		header( 'Content-Type: text/csv; charset=' . self::$charset, true );
67
-		header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', mktime( date( 'H' ) + 2, date( 'i' ), date( 's' ), date( 'm' ), date( 'd' ), date('Y' ) ) ) . ' GMT' );
67
+		header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', mktime( date( 'H' ) + 2, date( 'i' ), date( 's' ), date( 'm' ), date( 'd' ), date( 'Y' ) ) ) . ' GMT' );
68 68
 		header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
69 69
 		header( 'Cache-Control: no-cache, must-revalidate' );
70 70
 		header( 'Pragma: no-cache' );
@@ -91,21 +91,21 @@  discard block
 block discarded – undo
91 91
 		foreach ( self::$fields as $col ) {
92 92
 			$field_headings = array();
93 93
 			if ( isset( $col->field_options['separate_value'] ) && $col->field_options['separate_value'] && ! in_array( $col->type, array( 'user_id', 'file', 'data', 'date' ) ) ) {
94
-				$field_headings[ $col->id . '_label' ] = strip_tags( $col->name . ' ' . __( '(label)', 'formidable' ) );
94
+				$field_headings[$col->id . '_label'] = strip_tags( $col->name . ' ' . __( '(label)', 'formidable' ) );
95 95
 			}
96 96
 
97
-			$field_headings[ $col->id ] = strip_tags( $col->name );
97
+			$field_headings[$col->id] = strip_tags( $col->name );
98 98
 			$field_headings = apply_filters( 'frm_csv_field_columns', $field_headings, array( 'field' => $col ) );
99 99
 			$headings += $field_headings;
100 100
 		}
101 101
 
102 102
 		if ( self::$comment_count ) {
103
-			for ( $i = 0; $i < self::$comment_count; $i++ ) {
104
-				$headings[ 'comment' . $i ] = __( 'Comment', 'formidable' );
105
-				$headings[ 'comment_user_id' . $i ] = __( 'Comment User', 'formidable' );
106
-				$headings[ 'comment_created_at' . $i ] = __( 'Comment Date', 'formidable' );
103
+			for ( $i = 0; $i < self::$comment_count; $i ++ ) {
104
+				$headings['comment' . $i] = __( 'Comment', 'formidable' );
105
+				$headings['comment_user_id' . $i] = __( 'Comment User', 'formidable' );
106
+				$headings['comment_created_at' . $i] = __( 'Comment Date', 'formidable' );
107 107
 			}
108
-			unset($i);
108
+			unset( $i );
109 109
 		}
110 110
 
111 111
 		$headings['created_at'] = __( 'Timestamp', 'formidable' );
@@ -152,30 +152,30 @@  discard block
 block discarded – undo
152 152
 					continue;
153 153
 				}
154 154
 
155
-				if ( ! isset( $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ] ) ) {
156
-					$entries[ self::$entry->parent_item_id ]->metas[ $meta_id ] = array();
157
-				} else if ( ! is_array( $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ] ) ) {
155
+				if ( ! isset( $entries[self::$entry->parent_item_id]->metas[$meta_id] ) ) {
156
+					$entries[self::$entry->parent_item_id]->metas[$meta_id] = array();
157
+				} else if ( ! is_array( $entries[self::$entry->parent_item_id]->metas[$meta_id] ) ) {
158 158
 					// if the data is here, it should be an array but if this field has collected data
159 159
 					// both while inside and outside of the repeating section, it's possible this is a string
160
-					$entries[ self::$entry->parent_item_id ]->metas[ $meta_id ] = (array) $entries[ self::$entry->parent_item_id ]->metas[ $meta_id ];
160
+					$entries[self::$entry->parent_item_id]->metas[$meta_id] = (array) $entries[self::$entry->parent_item_id]->metas[$meta_id];
161 161
 				}
162 162
 
163 163
 				//add the repeated values
164
-				$entries[ self::$entry->parent_item_id ]->metas[ $meta_id ][] = $meta_value;
164
+				$entries[self::$entry->parent_item_id]->metas[$meta_id][] = $meta_value;
165 165
 			}
166
-			$entries[ self::$entry->parent_item_id ]->metas += self::$entry->metas;
166
+			$entries[self::$entry->parent_item_id]->metas += self::$entry->metas;
167 167
 		}
168 168
 
169 169
 		// add the embedded form id
170
-		if ( ! isset( $entries[ self::$entry->parent_item_id ]->embedded_fields ) ) {
171
-			$entries[ self::$entry->parent_item_id ]->embedded_fields = array();
170
+		if ( ! isset( $entries[self::$entry->parent_item_id]->embedded_fields ) ) {
171
+			$entries[self::$entry->parent_item_id]->embedded_fields = array();
172 172
 		}
173
-		$entries[ self::$entry->parent_item_id ]->embedded_fields[ self::$entry->id ] = self::$entry->form_id;
173
+		$entries[self::$entry->parent_item_id]->embedded_fields[self::$entry->id] = self::$entry->form_id;
174 174
 	}
175 175
 
176 176
 	private static function add_field_values_to_csv( &$row ) {
177 177
 		foreach ( self::$fields as $col ) {
178
-			$field_value = isset( self::$entry->metas[ $col->id ] ) ? self::$entry->metas[ $col->id ] : false;
178
+			$field_value = isset( self::$entry->metas[$col->id] ) ? self::$entry->metas[$col->id] : false;
179 179
 
180 180
 			$field_value = maybe_unserialize( $field_value );
181 181
 			self::add_array_values_to_columns( $row, compact( 'col', 'field_value' ) );
@@ -186,13 +186,13 @@  discard block
 block discarded – undo
186 186
 				$sep_value = FrmEntriesHelper::display_value( $field_value, $col, array(
187 187
 					'type' => $col->type, 'post_id' => self::$entry->post_id, 'show_icon' => false,
188 188
 					'entry_id' => self::$entry->id, 'sep' => self::$separator,
189
-					'embedded_field_id' => ( isset( self::$entry->embedded_fields ) && isset( self::$entry->embedded_fields[ self::$entry->id ] ) ) ? 'form' . self::$entry->embedded_fields[ self::$entry->id ] : 0,
189
+					'embedded_field_id' => ( isset( self::$entry->embedded_fields ) && isset( self::$entry->embedded_fields[self::$entry->id] ) ) ? 'form' . self::$entry->embedded_fields[self::$entry->id] : 0,
190 190
 					) );
191
-				$row[ $col->id . '_label' ] = $sep_value;
191
+				$row[$col->id . '_label'] = $sep_value;
192 192
 				unset( $sep_value );
193 193
 			}
194 194
 
195
-			$row[ $col->id ] = $field_value;
195
+			$row[$col->id] = $field_value;
196 196
 
197 197
 			unset( $col, $field_value );
198 198
 		}
@@ -205,8 +205,8 @@  discard block
 block discarded – undo
205 205
 		if ( is_array( $atts['field_value'] ) ) {
206 206
 			foreach ( $atts['field_value'] as $key => $sub_value ) {
207 207
 				$column_key = $atts['col']->id . '_' . $key;
208
-				if ( ! is_numeric( $key ) && isset( self::$headings[ $column_key ] ) ) {
209
-					$row[ $column_key ] = $sub_value;
208
+				if ( ! is_numeric( $key ) && isset( self::$headings[$column_key] ) ) {
209
+					$row[$column_key] = $sub_value;
210 210
 				}
211 211
 			}
212 212
 		}
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 		$sep = '';
228 228
 
229 229
 		foreach ( self::$headings as $k => $heading ) {
230
-			$row = isset( $rows[ $k ] ) ? $rows[ $k ] : '';
230
+			$row = isset( $rows[$k] ) ? $rows[$k] : '';
231 231
 			if ( is_array( $row ) ) {
232 232
 				// implode the repeated field values
233 233
 				$row = implode( self::$separator, FrmAppHelper::array_flatten( $row, 'reset' ) );
Please login to merge, or discard this patch.
classes/models/FrmPointers.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 	/**
46 46
 	 * Get the singleton instance of this class
47 47
 	 *
48
-	 * @return object
48
+	 * @return FrmPointers
49 49
 	 */
50 50
 	public static function get_instance() {
51 51
 		if ( ! ( self::$instance instanceof self ) ) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
 	private function do_page_pointer( $page ) {
185 185
 		$selector = 'h2';
186 186
 
187
-		$pointer = call_user_func( array( $this, $this->admin_pages[ $page ] ) );
187
+		$pointer = call_user_func( array( $this, $this->admin_pages[$page] ) );
188 188
 
189 189
 		$opt_arr = array(
190 190
 			'content'      => $pointer['content'],
Please login to merge, or discard this patch.
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -239,16 +239,16 @@  discard block
 block discarded – undo
239 239
 
240 240
 		return array(
241 241
 			'content'   => '<h3>' . __( 'Forms', 'formidable' ) . '</h3>'
242
-			               . '<p>' . __( 'All your forms will be listed on this page. Create your first form by clicking on the "Add New" button.', 'formidable' ) . '</p>'
243
-			               . '<p><strong>' . __( 'Subscribe to our Newsletter', 'formidable' ) . '</strong><br/>'
244
-			               . sprintf( __( 'If you would like to hear about new features and updates for %1$s, subscribe to our newsletter:', 'formidable' ), 'Formidable' ) . '</p>'
245
-			               . '<form target="_blank" action="//formidablepro.us1.list-manage.com/subscribe/post?u=a4a913790ffb892daacc6f271&amp;id=7e7df15967" method="post" selector="newsletter-form" accept-charset="' . esc_attr( get_bloginfo( 'charset' ) ) . '">'
246
-			               . '<p>'
247
-			               . '<input style="margin: 5px; color:#666" name="EMAIL" value="' . esc_attr( $current_user->user_email ) . '" selector="newsletter-email" placeholder="' . esc_attr__( 'Email', 'formidable' ) . '"/>'
242
+						   . '<p>' . __( 'All your forms will be listed on this page. Create your first form by clicking on the "Add New" button.', 'formidable' ) . '</p>'
243
+						   . '<p><strong>' . __( 'Subscribe to our Newsletter', 'formidable' ) . '</strong><br/>'
244
+						   . sprintf( __( 'If you would like to hear about new features and updates for %1$s, subscribe to our newsletter:', 'formidable' ), 'Formidable' ) . '</p>'
245
+						   . '<form target="_blank" action="//formidablepro.us1.list-manage.com/subscribe/post?u=a4a913790ffb892daacc6f271&amp;id=7e7df15967" method="post" selector="newsletter-form" accept-charset="' . esc_attr( get_bloginfo( 'charset' ) ) . '">'
246
+						   . '<p>'
247
+						   . '<input style="margin: 5px; color:#666" name="EMAIL" value="' . esc_attr( $current_user->user_email ) . '" selector="newsletter-email" placeholder="' . esc_attr__( 'Email', 'formidable' ) . '"/>'
248 248
 						   . '<input type="hidden" name="group[4505]" value="4" />'
249
-			               . '<button type="submit" class="button-primary">' . esc_html__( 'Subscribe', 'formidable' ) . '</button>'
250
-			               . '</p>'
251
-			               . '</form>',
249
+						   . '<button type="submit" class="button-primary">' . esc_html__( 'Subscribe', 'formidable' ) . '</button>'
250
+						   . '</p>'
251
+						   . '</form>',
252 252
 			'next_page' => 'entries',
253 253
 		);
254 254
 	}
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
 	private function entries_pointer() {
262 262
 		return array(
263 263
 			'content'   => '<h3>' . __( 'Entries', 'formidable' ) . '</h3>'
264
-			               . '<p>' . __( 'Each time one of your forms is submitted, an entry is created. You will find every form submission listed here so you will always have a backup if an email fails.', 'formidable' ) . '</p>',
264
+						   . '<p>' . __( 'Each time one of your forms is submitted, an entry is created. You will find every form submission listed here so you will always have a backup if an email fails.', 'formidable' ) . '</p>',
265 265
 			'prev_page' => '',
266 266
 			'next_page' => 'styles',
267 267
 			'selector'  => '.wp-list-table',
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 	private function styles_pointer() {
278 278
 		return array(
279 279
 			'content'   => '<h3>' . __( 'Styles', 'formidable' ) . '</h3>'
280
-			               . '<p>' . __( 'Want to make changes to the way your forms look? Make all the changes you would like right here, and watch the sample form change before your eyes.', 'formidable' ) . '</p>',
280
+						   . '<p>' . __( 'Want to make changes to the way your forms look? Make all the changes you would like right here, and watch the sample form change before your eyes.', 'formidable' ) . '</p>',
281 281
 			'prev_page' => 'entries',
282 282
 			'next_page' => 'import',
283 283
 			'selector'  => '.general-style',
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
 	private function import_pointer() {
294 294
 		return array(
295 295
 			'content'   => '<h3>' . __( 'Import/Export', 'formidable' ) . '</h3>'
296
-			               . '<p>' . __( 'Import and export forms and styles when copying from one site to another or sharing with someone else. Your entries can be exported to a CSV as well. The Premium version also includes the option to import entries to your site from a CSV.', 'formidable' ) . '</p>',
296
+						   . '<p>' . __( 'Import and export forms and styles when copying from one site to another or sharing with someone else. Your entries can be exported to a CSV as well. The Premium version also includes the option to import entries to your site from a CSV.', 'formidable' ) . '</p>',
297 297
 			'prev_page' => 'styles',
298 298
 			'next_page' => 'settings',
299 299
 			'selector'  => '.inside.with_frm_style',
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
 				. __( 'Turn stylesheets and scripts off, set which user roles have access to change and create forms, setup your reCaptcha, and set default messages for new forms and fields.', 'formidable' )
314 314
 				. '<p><strong>' . __( 'Plugin Licenses', 'formidable' ) . '</strong><br/>'
315 315
 				. sprintf( __( 'Once you&#8217;ve purchased %1$s or any addons, you&#8217;ll have to enter a license key to get access to all of their powerful features. A Plugin Licenses tab will appear here for you to enter your license key.', 'formidable' ), 'Formidable Pro' )
316
-           	    . '</p>',
316
+		   		. '</p>',
317 317
 			'prev_page' => 'import',
318 318
 			'next_page' => 'addons',
319 319
 		);
@@ -327,10 +327,10 @@  discard block
 block discarded – undo
327 327
 	private function addons_pointer() {
328 328
 		return array(
329 329
 			'content'   => '<h3>' . __( 'Addons', 'formidable' ) . '</h3>'
330
-			               . '<p>' . sprintf( __( 'The powerful functions of %1$s can be extended with %2$spremium plugins%3$s. You can read all about the Formidable Premium Plugins %2$shere%3$s.', 'formidable' ), 'Formidable', '<a target="_blank" href="' . esc_url( FrmAppHelper::make_affiliate_url( 'https://formidablepro.com/' ) ) . '">', '</a>' )
330
+						   . '<p>' . sprintf( __( 'The powerful functions of %1$s can be extended with %2$spremium plugins%3$s. You can read all about the Formidable Premium Plugins %2$shere%3$s.', 'formidable' ), 'Formidable', '<a target="_blank" href="' . esc_url( FrmAppHelper::make_affiliate_url( 'https://formidablepro.com/' ) ) . '">', '</a>' )
331 331
 						   . '</p>'
332
-			               . '<p><strong>' . __( 'Like this plugin?', 'formidable' ) . '</strong><br/>' . sprintf( __( 'So, we&#8217;ve come to the end of the tour. If you like the plugin, please %1$srate it 5 stars on WordPress.org%2$s!', 'formidable' ), '<a target="_blank" href="https://wordpress.org/plugins/formidable/">', '</a>' ) . '</p>'
333
-			               . '<p>' . sprintf( __( 'Thank you for using our plugin and good luck with your forms!<br/><br/>Best,<br/>Team Formidable - %1$sformidablepro.com%2$s', 'formidable' ), '<a target="_blank" href="' . esc_url( FrmAppHelper::make_affiliate_url( 'https://formidablepro.com/' ) ) . '">', '</a>' ) . '</p>',
332
+						   . '<p><strong>' . __( 'Like this plugin?', 'formidable' ) . '</strong><br/>' . sprintf( __( 'So, we&#8217;ve come to the end of the tour. If you like the plugin, please %1$srate it 5 stars on WordPress.org%2$s!', 'formidable' ), '<a target="_blank" href="https://wordpress.org/plugins/formidable/">', '</a>' ) . '</p>'
333
+						   . '<p>' . sprintf( __( 'Thank you for using our plugin and good luck with your forms!<br/><br/>Best,<br/>Team Formidable - %1$sformidablepro.com%2$s', 'formidable' ), '<a target="_blank" href="' . esc_url( FrmAppHelper::make_affiliate_url( 'https://formidablepro.com/' ) ) . '">', '</a>' ) . '</p>',
334 334
 			'prev_page' => 'settings',
335 335
 		);
336 336
 	}
Please login to merge, or discard this patch.
classes/views/styles/_field-colors.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 				<a href="?page=formidable-styles&page-tab=default#tabs-panel-default-color" class="nav-tab-link" data-type="tabs-panel-default-color"><?php _e( 'Default', 'formidable' ) ?></a>
5 5
 			</li>
6 6
 			<li <?php echo ( 'active-color' == $current_tab ? ' class="tabs"' : '' ); ?>>
7
-				<a href="<?php echo esc_url('?page=formidable-styles&page-tab=active-color#page-active-color') ?>" class="nav-tab-link" data-type="tabs-panel-active-color"><?php _e( 'Active', 'formidable' ) ?></a>
7
+				<a href="<?php echo esc_url( '?page=formidable-styles&page-tab=active-color#page-active-color' ) ?>" class="nav-tab-link" data-type="tabs-panel-active-color"><?php _e( 'Active', 'formidable' ) ?></a>
8 8
 			</li>
9 9
 			<li <?php echo ( 'active-error' == $current_tab ? ' class="tabs"' : '' ); ?>>
10 10
 				<a href="?page=formidable-styles&page-tab=active-error#tabs-panel-active-error" class="nav-tab-link" data-type="tabs-panel-active-error"><?php _e( 'Error', 'formidable' ) ?></a>
@@ -19,34 +19,34 @@  discard block
 block discarded – undo
19 19
 		?>">
20 20
 			<div class="field-group field-group-border clearfix">
21 21
             	<label class="background"><?php _e( 'BG color', 'formidable' ) ?></label>
22
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('bg_color') ) ?>" id="frm_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color'] ) ?>" />
22
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'bg_color' ) ) ?>" id="frm_bg_color" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color'] ) ?>" />
23 23
             </div>
24 24
             <div class="field-group clearfix">
25 25
             	<label><?php _e( 'Text', 'formidable' ) ?></label>
26
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('text_color') ) ?>" id="frm_text_color" class="hex" value="<?php echo esc_attr( $style->post_content['text_color'] ) ?>" />
26
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'text_color' ) ) ?>" id="frm_text_color" class="hex" value="<?php echo esc_attr( $style->post_content['text_color'] ) ?>" />
27 27
             </div>
28 28
 
29 29
             <div class="field-group field-group-border clearfix">
30 30
             	<label><?php _e( 'Border', 'formidable' ) ?></label>
31
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_color') ) ?>" id="frm_border_color" class="hex" value="<?php echo esc_attr( $style->post_content['border_color'] ) ?>" />
31
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_color' ) ) ?>" id="frm_border_color" class="hex" value="<?php echo esc_attr( $style->post_content['border_color'] ) ?>" />
32 32
             </div>
33 33
             <div class="field-group clearfix">
34 34
             	<label><?php _e( 'Thickness', 'formidable' ) ?></label>
35
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('field_border_width') ) ?>" id="frm_field_border_width" value="<?php echo esc_attr( $style->post_content['field_border_width'] ) ?>" size="4" />
35
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'field_border_width' ) ) ?>" id="frm_field_border_width" value="<?php echo esc_attr( $style->post_content['field_border_width'] ) ?>" size="4" />
36 36
             </div>
37 37
             <div class="field-group clearfix">
38 38
 				<label><?php _e( 'Style', 'formidable' ) ?></label>
39
-            	<select name="<?php echo esc_attr( $frm_style->get_field_name('field_border_style') ) ?>" id="frm_field_border_style">
40
-            	    <option value="solid" <?php selected($style->post_content['field_border_style'], 'solid') ?>><?php _e( 'solid', 'formidable' ) ?></option>
41
-            		<option value="dotted" <?php selected($style->post_content['field_border_style'], 'dotted') ?>><?php _e( 'dotted', 'formidable' ) ?></option>
42
-            		<option value="dashed" <?php selected($style->post_content['field_border_style'], 'dashed') ?>><?php _e( 'dashed', 'formidable' ) ?></option>
43
-            		<option value="double" <?php selected($style->post_content['field_border_style'], 'double') ?>><?php _e( 'double', 'formidable' ) ?></option>
39
+            	<select name="<?php echo esc_attr( $frm_style->get_field_name( 'field_border_style' ) ) ?>" id="frm_field_border_style">
40
+            	    <option value="solid" <?php selected( $style->post_content['field_border_style'], 'solid' ) ?>><?php _e( 'solid', 'formidable' ) ?></option>
41
+            		<option value="dotted" <?php selected( $style->post_content['field_border_style'], 'dotted' ) ?>><?php _e( 'dotted', 'formidable' ) ?></option>
42
+            		<option value="dashed" <?php selected( $style->post_content['field_border_style'], 'dashed' ) ?>><?php _e( 'dashed', 'formidable' ) ?></option>
43
+            		<option value="double" <?php selected( $style->post_content['field_border_style'], 'double' ) ?>><?php _e( 'double', 'formidable' ) ?></option>
44 44
             	</select>
45 45
             </div>
46 46
             <div class="clear"></div>
47 47
 			<p class="frm_no_bottom_margin">
48 48
 				<label>
49
-					<input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name('remove_box_shadow') ) ?>" id="frm_remove_box_shadow" value="1" <?php checked($style->post_content['remove_box_shadow'], 1) ?> />
49
+					<input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name( 'remove_box_shadow' ) ) ?>" id="frm_remove_box_shadow" value="1" <?php checked( $style->post_content['remove_box_shadow'], 1 ) ?> />
50 50
 					<?php _e( 'Remove box shadow', 'formidable' ) ?>
51 51
 				</label>
52 52
 			</p>
@@ -57,16 +57,16 @@  discard block
 block discarded – undo
57 57
 		?>">
58 58
             <div class="field-group field-group-border clearfix">
59 59
             	<label class="background"><?php _e( 'BG color', 'formidable' ) ?></label>
60
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('bg_color_active') ) ?>" id="frm_bg_color_active" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_active'] ) ?>" />
60
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'bg_color_active' ) ) ?>" id="frm_bg_color_active" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_active'] ) ?>" />
61 61
             </div>
62 62
             <div class="field-group clearfix">
63 63
             	<label><?php _e( 'Border', 'formidable' ) ?></label>
64
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_color_active') ) ?>" id="frm_border_color_active" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_active'] ) ?>" />
64
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_color_active' ) ) ?>" id="frm_border_color_active" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_active'] ) ?>" />
65 65
             </div>
66 66
 			<div class="clear"></div>
67 67
 			<p class="frm_no_bottom_margin">
68 68
 				<label>
69
-					<input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name('remove_box_shadow_active') ) ?>" id="frm_remove_box_shadow_active" value="1" <?php checked($style->post_content['remove_box_shadow_active'], 1) ?> />
69
+					<input type="checkbox" name="<?php echo esc_attr( $frm_style->get_field_name( 'remove_box_shadow_active' ) ) ?>" id="frm_remove_box_shadow_active" value="1" <?php checked( $style->post_content['remove_box_shadow_active'], 1 ) ?> />
70 70
 					<?php _e( 'Remove box shadow', 'formidable' ) ?>
71 71
 				</label>
72 72
 			</p>
@@ -77,28 +77,28 @@  discard block
 block discarded – undo
77 77
 		?>">
78 78
 		    <div class="field-group field-group-border clearfix">
79 79
         	    <label class="background"><?php _e( 'BG color', 'formidable' ) ?></label>
80
-        	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('bg_color_error') ) ?>" id="frm_bg_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_error'] ) ?>" />
80
+        	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'bg_color_error' ) ) ?>" id="frm_bg_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_error'] ) ?>" />
81 81
             </div>
82 82
             <div class="field-group clearfix">
83 83
         	    <label><?php _e( 'Text', 'formidable' ) ?></label>
84
-        	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('text_color_error') ) ?>" id="frm_text_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['text_color_error'] ) ?>" />
84
+        	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'text_color_error' ) ) ?>" id="frm_text_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['text_color_error'] ) ?>" />
85 85
             </div>
86 86
 
87 87
             <div class="field-group field-group-border clearfix">
88 88
                 <label><?php _e( 'Border', 'formidable' ) ?></label>
89
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_color_error') ) ?>" id="frm_border_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_error'] ) ?>" />
89
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_color_error' ) ) ?>" id="frm_border_color_error" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_error'] ) ?>" />
90 90
             </div>
91 91
             <div class="field-group clearfix">
92 92
             	<label><?php _e( 'Thickness', 'formidable' ) ?></label>
93
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_width_error') ) ?>" id="frm_border_width_error" value="<?php echo esc_attr( $style->post_content['border_width_error'] ) ?>" size="4" />
93
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_width_error' ) ) ?>" id="frm_border_width_error" value="<?php echo esc_attr( $style->post_content['border_width_error'] ) ?>" size="4" />
94 94
             </div>
95 95
             <div class="field-group clearfix">
96 96
             	<label><?php _e( 'Style', 'formidable' ) ?></label>
97
-            	<select name="<?php echo esc_attr( $frm_style->get_field_name('border_style_error') ) ?>" id="frm_border_style_error">
98
-            	    <option value="solid" <?php selected($style->post_content['border_style_error'], 'solid') ?>><?php _e( 'solid', 'formidable' ) ?></option>
99
-            		<option value="dotted" <?php selected($style->post_content['border_style_error'], 'dotted') ?>><?php _e( 'dotted', 'formidable' ) ?></option>
100
-            		<option value="dashed" <?php selected($style->post_content['border_style_error'], 'dashed') ?>><?php _e( 'dashed', 'formidable' ) ?></option>
101
-            		<option value="double" <?php selected($style->post_content['border_style_error'], 'double') ?>><?php _e( 'double', 'formidable' ) ?></option>
97
+            	<select name="<?php echo esc_attr( $frm_style->get_field_name( 'border_style_error' ) ) ?>" id="frm_border_style_error">
98
+            	    <option value="solid" <?php selected( $style->post_content['border_style_error'], 'solid' ) ?>><?php _e( 'solid', 'formidable' ) ?></option>
99
+            		<option value="dotted" <?php selected( $style->post_content['border_style_error'], 'dotted' ) ?>><?php _e( 'dotted', 'formidable' ) ?></option>
100
+            		<option value="dashed" <?php selected( $style->post_content['border_style_error'], 'dashed' ) ?>><?php _e( 'dashed', 'formidable' ) ?></option>
101
+            		<option value="double" <?php selected( $style->post_content['border_style_error'], 'double' ) ?>><?php _e( 'double', 'formidable' ) ?></option>
102 102
             	</select>
103 103
             </div>
104 104
 
@@ -110,16 +110,16 @@  discard block
 block discarded – undo
110 110
 		?>">
111 111
 		    <div class="field-group field-group-border clearfix">
112 112
         	    <label class="background"><?php _e( 'BG color', 'formidable' ) ?></label>
113
-        	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('bg_color_disabled') ) ?>" id="frm_bg_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_disabled'] ) ?>" />
113
+        	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'bg_color_disabled' ) ) ?>" id="frm_bg_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['bg_color_disabled'] ) ?>" />
114 114
             </div>
115 115
             <div class="field-group clearfix">
116 116
         	    <label><?php _e( 'Text', 'formidable' ) ?></label>
117
-        	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('text_color_disabled') ) ?>" id="frm_text_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['text_color_disabled'] ) ?>" />
117
+        	    <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'text_color_disabled' ) ) ?>" id="frm_text_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['text_color_disabled'] ) ?>" />
118 118
             </div>
119 119
 
120 120
             <div class="field-group clearfix">
121 121
                 <label><?php _e( 'Border', 'formidable' ) ?></label>
122
-            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('border_color_disabled') ) ?>" id="frm_border_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_disabled'] ) ?>" />
122
+            	<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'border_color_disabled' ) ) ?>" id="frm_border_color_disabled" class="hex" value="<?php echo esc_attr( $style->post_content['border_color_disabled'] ) ?>" />
123 123
             </div>
124 124
             <div class="clear"></div>
125 125
 		</div><!-- /.tabs-panel -->
Please login to merge, or discard this patch.