Completed
Push — master ( 7504f2...0efaab )
by Stephanie
29s queued 14s
created
classes/helpers/FrmEntriesListHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
 		if ( strpos( $orderby, 'meta' ) !== false ) {
72 72
 			$order_field_type = FrmField::get_type( str_replace( 'meta_', '', $orderby ) );
73
-			$orderby          .= in_array( $order_field_type, array( 'number', 'scale', 'star' ) ) ? '+0' : '';
73
+			$orderby .= in_array( $order_field_type, array( 'number', 'scale', 'star' ) ) ? '+0' : '';
74 74
 		}
75 75
 
76 76
 		$order = self::get_param(
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 			$form_ids              = $this->get_form_ids( $form_id );
117 117
 			$s_query['it.form_id'] = count( $form_ids ) > 1 ? $form_ids : $form_ids[0];
118 118
 		} else {
119
-			$s_query[]          = array(
119
+			$s_query[] = array(
120 120
 				'or'               => 1,
121 121
 				'parent_form_id'   => null,
122 122
 				'parent_form_id <' => 1,
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 
266 266
 		$r = "<tr id='item-action-{$item->id}'$style>";
267 267
 
268
-		list( $columns, $hidden, , $primary ) = $this->get_column_info();
268
+		list( $columns, $hidden,, $primary ) = $this->get_column_info();
269 269
 		$action_col                           = false;
270 270
 		$action_columns                       = $this->get_action_columns();
271 271
 
Please login to merge, or discard this patch.
classes/models/FrmDb.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 		}
65 65
 
66 66
 		foreach ( $args as $key => $value ) {
67
-			$where          .= empty( $where ) ? $base_where : $condition;
67
+			$where .= empty( $where ) ? $base_where : $condition;
68 68
 			$array_inc_null = ( ! is_numeric( $key ) && is_array( $value ) && in_array( null, $value ) );
69 69
 			if ( is_numeric( $key ) || $array_inc_null ) {
70 70
 				$where        .= ' ( ';
@@ -113,12 +113,12 @@  discard block
 block discarded – undo
113 113
 						$where .= ' OR ';
114 114
 					}
115 115
 					$start    = false;
116
-					$where    .= $key . ' %s';
116
+					$where .= $key . ' %s';
117 117
 					$values[] = '%' . self::esc_like( $v ) . '%';
118 118
 				}
119 119
 				$where .= ')';
120 120
 			} elseif ( ! empty( $value ) ) {
121
-				$where  .= ' in (' . self::prepare_array_values( $value, '%s' ) . ')';
121
+				$where .= ' in (' . self::prepare_array_values( $value, '%s' ) . ')';
122 122
 				$values = array_merge( $values, $value );
123 123
 			}
124 124
 		} elseif ( strpos( $lowercase_key, 'like' ) !== false ) {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 				$where .= 'like';
139 139
 			}
140 140
 
141
-			$where    .= ' %s';
141
+			$where .= ' %s';
142 142
 			$values[] = $start . self::esc_like( $value ) . $end;
143 143
 
144 144
 		} elseif ( $value === null ) {
@@ -306,8 +306,8 @@  discard block
 block discarded – undo
306 306
 		);
307 307
 
308 308
 		$where_is = strtolower( $where_is );
309
-		if ( isset( $switch_to[ $where_is ] ) ) {
310
-			return ' ' . $switch_to[ $where_is ];
309
+		if ( isset( $switch_to[$where_is] ) ) {
310
+			return ' ' . $switch_to[$where_is];
311 311
 		}
312 312
 
313 313
 		// > and < need a little more work since we don't want them switched to >= and <=
@@ -371,13 +371,13 @@  discard block
 block discarded – undo
371 371
 		$temp_args = $args;
372 372
 		foreach ( $temp_args as $k => $v ) {
373 373
 			if ( $v == '' ) {
374
-				unset( $args[ $k ] );
374
+				unset( $args[$k] );
375 375
 				continue;
376 376
 			}
377 377
 
378 378
 			$db_name = strtoupper( str_replace( '_', ' ', $k ) );
379 379
 			if ( strpos( $v, $db_name ) === false ) {
380
-				$args[ $k ] = $db_name . ' ' . $v;
380
+				$args[$k] = $db_name . ' ' . $v;
381 381
 			}
382 382
 		}
383 383
 
@@ -451,13 +451,13 @@  discard block
 block discarded – undo
451 451
 	private static function esc_query_args( &$args ) {
452 452
 		foreach ( $args as $param => $value ) {
453 453
 			if ( $param == 'order_by' ) {
454
-				$args[ $param ] = self::esc_order( $value );
454
+				$args[$param] = self::esc_order( $value );
455 455
 			} elseif ( $param == 'limit' ) {
456
-				$args[ $param ] = self::esc_limit( $value );
456
+				$args[$param] = self::esc_limit( $value );
457 457
 			}
458 458
 
459
-			if ( $args[ $param ] == '' ) {
460
-				unset( $args[ $param ] );
459
+			if ( $args[$param] == '' ) {
460
+				unset( $args[$param] );
461 461
 			}
462 462
 		}
463 463
 	}
@@ -540,7 +540,7 @@  discard block
 block discarded – undo
540 540
 		$limit = explode( ',', trim( $limit ) );
541 541
 		foreach ( $limit as $k => $l ) {
542 542
 			if ( is_numeric( $l ) ) {
543
-				$limit[ $k ] = $l;
543
+				$limit[$k] = $l;
544 544
 			}
545 545
 		}
546 546
 
@@ -691,7 +691,7 @@  discard block
 block discarded – undo
691 691
 	 */
692 692
 	public static function add_key_to_group_cache( $key, $group ) {
693 693
 		$cached         = self::get_group_cached_keys( $group );
694
-		$cached[ $key ] = $key;
694
+		$cached[$key] = $key;
695 695
 		wp_cache_set( 'cached_keys', $cached, $group, 300 );
696 696
 	}
697 697
 
Please login to merge, or discard this patch.
classes/views/frm-fields/front-end/combo-field/combo-field.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 			$sub_field_class   = "frm_form_field form-field frm_form_subfield-{$name} {$sub_field['wrapper_classes']}";
42 42
 			$sub_field_desc    = FrmField::get_option( $field, $name . '_desc' );
43 43
 
44
-			if ( isset( $errors[ 'field' . $field_id . '-' . $name ] ) ) {
44
+			if ( isset( $errors['field' . $field_id . '-' . $name] ) ) {
45 45
 				$sub_field_class .= ' frm_blank_field';
46 46
 			}
47 47
 			?>
@@ -61,10 +61,10 @@  discard block
 block discarded – undo
61 61
 						<input
62 62
 							type="<?php echo esc_attr( $sub_field['type'] ); ?>"
63 63
 							id="<?php echo esc_attr( $html_id . '_' . $name ); ?>"
64
-							value="<?php echo esc_attr( isset( $field_value[ $name ] ) ? $field_value[ $name ] : '' ); ?>"
64
+							value="<?php echo esc_attr( isset( $field_value[$name] ) ? $field_value[$name] : '' ); ?>"
65 65
 							<?php
66
-							if ( ! empty( $field_value[ $name ] ) ) {
67
-								echo 'data-frmval="' . esc_attr( $field_value[ $name ] ) . '" ';
66
+							if ( ! empty( $field_value[$name] ) ) {
67
+								echo 'data-frmval="' . esc_attr( $field_value[$name] ) . '" ';
68 68
 							}
69 69
 							if ( empty( $args['remove_names'] ) ) {
70 70
 								echo 'name="' . esc_attr( $field_name ) . '[' . esc_attr( $name ) . ']" ';
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
 				}
82 82
 
83 83
 				// Don't show individual field errors when there is a combo field error.
84
-				if ( ! empty( $errors ) && isset( $errors[ 'field' . $field_id . '-' . $name ] ) && ! isset( $errors[ 'field' . $field_id ] ) ) {
84
+				if ( ! empty( $errors ) && isset( $errors['field' . $field_id . '-' . $name] ) && ! isset( $errors['field' . $field_id] ) ) {
85 85
 					?>
86
-					<div class="frm_error" role="alert"><?php echo esc_html( $errors[ 'field' . $field_id . '-' . $name ] ); ?></div>
86
+					<div class="frm_error" role="alert"><?php echo esc_html( $errors['field' . $field_id . '-' . $name] ); ?></div>
87 87
 				<?php } ?>
88 88
 			</div>
89 89
 		<?php } ?>
Please login to merge, or discard this patch.
classes/views/frm-fields/front-end/checkbox-field.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,6 +83,6 @@
 block discarded – undo
83 83
 
84 84
 		?></div>
85 85
 <?php
86
-		++$option_index;
86
+		++ $option_index;
87 87
 	}
88 88
 }
Please login to merge, or discard this patch.
classes/helpers/FrmCurrencyHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@
 block discarded – undo
16 16
 	public static function get_currency( $currency ) {
17 17
 		$currency   = strtoupper( $currency );
18 18
 		$currencies = self::get_currencies();
19
-		if ( isset( $currencies[ $currency ] ) ) {
20
-			$currency = $currencies[ $currency ];
21
-		} elseif ( isset( $currencies[ strtolower( $currency ) ] ) ) {
22
-			$currency = $currencies[ strtolower( $currency ) ];
19
+		if ( isset( $currencies[$currency] ) ) {
20
+			$currency = $currencies[$currency];
21
+		} elseif ( isset( $currencies[strtolower( $currency )] ) ) {
22
+			$currency = $currencies[strtolower( $currency )];
23 23
 		} else {
24 24
 			$currency = $currencies['USD'];
25 25
 		}
Please login to merge, or discard this patch.
classes/controllers/FrmAddonsController.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 		} else {
102 102
 			foreach ( $addons as $k => $addon ) {
103 103
 				if ( empty( $addon['excerpt'] ) && $k !== 'error' ) {
104
-					unset( $addons[ $k ] );
104
+					unset( $addons[$k] );
105 105
 				}
106 106
 			}
107 107
 		}
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 
203 203
 		foreach ( $list as $k => $info ) {
204 204
 			$info['slug'] = $k;
205
-			$list[ $k ]   = array_merge( $defaults, $info );
205
+			$list[$k]   = array_merge( $defaults, $info );
206 206
 		}
207 207
 		return $list;
208 208
 	}
@@ -352,17 +352,17 @@  discard block
 block discarded – undo
352 352
 				continue;
353 353
 			}
354 354
 
355
-			$wp_plugin    = isset( $wp_plugins[ $folder ] ) ? $wp_plugins[ $folder ] : array();
355
+			$wp_plugin    = isset( $wp_plugins[$folder] ) ? $wp_plugins[$folder] : array();
356 356
 			$wp_version   = isset( $wp_plugin['Version'] ) ? $wp_plugin['Version'] : '1.0';
357 357
 			$plugin->slug = explode( '/', $folder )[0];
358 358
 
359 359
 			if ( version_compare( $wp_version, $plugin->new_version, '<' ) ) {
360
-				$transient->response[ $folder ] = $plugin;
360
+				$transient->response[$folder] = $plugin;
361 361
 			} else {
362
-				$transient->no_update[ $folder ] = $plugin;
362
+				$transient->no_update[$folder] = $plugin;
363 363
 			}
364 364
 
365
-			$transient->checked[ $folder ] = $wp_version;
365
+			$transient->checked[$folder] = $wp_version;
366 366
 
367 367
 		}
368 368
 
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
 	 */
396 396
 	protected static function is_installed( $plugin ) {
397 397
 		$all_plugins = self::get_plugins();
398
-		return isset( $all_plugins[ $plugin ] );
398
+		return isset( $all_plugins[$plugin] );
399 399
 	}
400 400
 
401 401
 	/**
@@ -434,13 +434,13 @@  discard block
 block discarded – undo
434 434
 			}
435 435
 
436 436
 			$download_id = isset( $plugin['id'] ) ? $plugin['id'] : 0;
437
-			if ( ! empty( $download_id ) && ! isset( $version_info[ $download_id ]['package'] ) ) {
437
+			if ( ! empty( $download_id ) && ! isset( $version_info[$download_id]['package'] ) ) {
438 438
 				// if this addon is using its own license, get the update url
439 439
 				$addon_info = $api->get_api_info();
440 440
 
441
-				$version_info[ $download_id ] = $addon_info[ $download_id ];
441
+				$version_info[$download_id] = $addon_info[$download_id];
442 442
 				if ( isset( $addon_info['error'] ) ) {
443
-					$version_info[ $download_id ]['error'] = array(
443
+					$version_info[$download_id]['error'] = array(
444 444
 						'message' => $addon_info['error']['message'],
445 445
 						'code'    => $addon_info['error']['code'],
446 446
 					);
@@ -539,8 +539,8 @@  discard block
 block discarded – undo
539 539
 					return $addon;
540 540
 				}
541 541
 			}
542
-		} elseif ( isset( $addons[ $download_id ] ) ) {
543
-			$plugin = $addons[ $download_id ];
542
+		} elseif ( isset( $addons[$download_id] ) ) {
543
+			$plugin = $addons[$download_id];
544 544
 		}
545 545
 
546 546
 		return $plugin;
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
 			self::prepare_addon_link( $addon['link'] );
605 605
 
606 606
 			self::set_addon_status( $addon );
607
-			$addons[ $id ] = $addon;
607
+			$addons[$id] = $addon;
608 608
 		}
609 609
 	}
610 610
 
@@ -645,7 +645,7 @@  discard block
 block discarded – undo
645 645
 			'utm_medium'   => 'addons',
646 646
 			'utm_campaign' => 'liteplugin',
647 647
 		);
648
-		$link       = add_query_arg( $query_args, $link );
648
+		$link = add_query_arg( $query_args, $link );
649 649
 	}
650 650
 
651 651
 	/**
@@ -1373,7 +1373,7 @@  discard block
 block discarded – undo
1373 1373
 		$addons = $api->get_api_info();
1374 1374
 
1375 1375
 		if ( is_array( $addons ) && array_key_exists( $addon_id, $addons ) ) {
1376
-			$dates    = $addons[ $addon_id ];
1376
+			$dates    = $addons[$addon_id];
1377 1377
 			$requires = FrmFormsHelper::get_plan_required( $dates );
1378 1378
 		}
1379 1379
 
Please login to merge, or discard this patch.
classes/helpers/FrmTipsHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 			'page'  => '',
46 46
 			'class' => 'frm-mt-0',
47 47
 		);
48
-		$tip      = array_merge( $defaults, $tip );
48
+		$tip = array_merge( $defaults, $tip );
49 49
 
50 50
 		if ( isset( $tip['link'] ) && ! isset( $tip['link']['medium'] ) ) {
51 51
 			$tip['link']['medium'] = 'tip';
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
 	 * @return array
373 373
 	 */
374 374
 	public static function get_banner_tip() {
375
-		$tips       = array(
375
+		$tips = array(
376 376
 			array(
377 377
 				'link' => array(
378 378
 					'medium'  => 'banner',
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 			),
400 400
 		);
401 401
 		$random     = rand( 0, count( $tips ) - 1 );
402
-		$tip        = $tips[ $random ];
402
+		$tip        = $tips[$random];
403 403
 		$tip['num'] = $random;
404 404
 
405 405
 		return $tip;
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
 	public static function get_random_tip( $tips ) {
409 409
 		$random = rand( 0, count( $tips ) - 1 );
410 410
 
411
-		return $tips[ $random ];
411
+		return $tips[$random];
412 412
 	}
413 413
 
414 414
 	/**
Please login to merge, or discard this patch.
classes/models/FrmEmailStats.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 	 * @param array $stats Statistics section data.
123 123
 	 */
124 124
 	protected function add_payments_data( &$stats ) {
125
-		$payment_data  = FrmEmailSummaryHelper::get_payments_data( $this->from_date, $this->to_date );
125
+		$payment_data = FrmEmailSummaryHelper::get_payments_data( $this->from_date, $this->to_date );
126 126
 		$stats['payments_count'] = array(
127 127
 			'label'   => __( 'Payments collected', 'formidable' ),
128 128
 			'count'   => $payment_data['count'],
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
 		// Build total for each currency.
133 133
 		foreach ( $payment_data['total'] as $currency => $amount ) {
134
-			$stats[ 'payments_total_' . $currency ] = array(
134
+			$stats['payments_total_' . $currency] = array(
135 135
 				// translators: currency name.
136 136
 				'label'   => sprintf( __( 'Total %s', 'formidable' ), strtoupper( $currency ) ),
137 137
 				'count'   => $amount,
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 		}
142 142
 
143 143
 		if ( $this->has_comparison ) {
144
-			$prev_payment_data  = FrmEmailSummaryHelper::get_payments_data( $this->prev_from_date, $this->prev_to_date );
144
+			$prev_payment_data = FrmEmailSummaryHelper::get_payments_data( $this->prev_from_date, $this->prev_to_date );
145 145
 
146 146
 			if ( ! $payment_data['count'] && ! $prev_payment_data['count'] ) {
147 147
 				// Maybe this site doesn't collect payment, hide these sections.
@@ -153,23 +153,23 @@  discard block
 block discarded – undo
153 153
 
154 154
 			// Compare total for each currency.
155 155
 			foreach ( $payment_data['total'] as $currency => $amount ) {
156
-				if ( ! isset( $prev_payment_data['total'][ $currency ] ) ) {
157
-					$stats[ 'payments_total_' . $currency ]['compare'] = 1;
156
+				if ( ! isset( $prev_payment_data['total'][$currency] ) ) {
157
+					$stats['payments_total_' . $currency]['compare'] = 1;
158 158
 					continue;
159 159
 				}
160 160
 
161
-				$stats[ 'payments_total_' . $currency ]['compare'] = $this->get_compare_diff( $amount, $prev_payment_data['total'][ $currency ] );
162
-				unset( $prev_payment_data['total'][ $currency ] );
161
+				$stats['payments_total_' . $currency]['compare'] = $this->get_compare_diff( $amount, $prev_payment_data['total'][$currency] );
162
+				unset( $prev_payment_data['total'][$currency] );
163 163
 			}
164 164
 
165 165
 			// If prev month has more currencies.
166 166
 			foreach ( $prev_payment_data['total'] as $currency => $amount ) {
167
-				$stats[ 'payments_total_' . $currency ] = array(
167
+				$stats['payments_total_' . $currency] = array(
168 168
 					// translators: currency name.
169 169
 					'label'   => sprintf( __( 'Total %s', 'formidable' ), strtoupper( $currency ) ),
170 170
 					'count'   => 0,
171 171
 					'display' => $this->get_formatted_price( 0, $currency ),
172
-					'compare' => -1,
172
+					'compare' => - 1,
173 173
 				);
174 174
 			}
175 175
 		}
Please login to merge, or discard this patch.
classes/models/FrmForm.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 			}
210 210
 
211 211
 			if ( $new_val !== $value ) {
212
-				$new_values[ $key ] = $new_val;
212
+				$new_values[$key] = $new_val;
213 213
 			}
214 214
 		}
215 215
 
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
 
241 241
 		foreach ( $values as $value_key => $value ) {
242 242
 			if ( $value_key && in_array( $value_key, $form_fields ) ) {
243
-				$new_values[ $value_key ] = $value;
243
+				$new_values[$value_key] = $value;
244 244
 			}
245 245
 		}
246 246
 
@@ -323,15 +323,15 @@  discard block
 block discarded – undo
323 323
 		$existing_keys = array_keys( $values['item_meta'] );
324 324
 		foreach ( $all_fields as $fid ) {
325 325
 			if ( ! in_array( $fid->id, $existing_keys ) && ( isset( $values['frm_fields_submitted'] ) && in_array( $fid->id, $values['frm_fields_submitted'] ) ) || isset( $values['options'] ) ) {
326
-				$values['item_meta'][ $fid->id ] = '';
326
+				$values['item_meta'][$fid->id] = '';
327 327
 			}
328
-			$field_array[ $fid->id ] = $fid;
328
+			$field_array[$fid->id] = $fid;
329 329
 		}
330 330
 		unset( $all_fields );
331 331
 
332 332
 		foreach ( $values['item_meta'] as $field_id => $default_value ) {
333
-			if ( isset( $field_array[ $field_id ] ) ) {
334
-				$field = $field_array[ $field_id ];
333
+			if ( isset( $field_array[$field_id] ) ) {
334
+				$field = $field_array[$field_id];
335 335
 			} else {
336 336
 				$field = FrmField::getOne( $field_id );
337 337
 			}
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
 				continue;
341 341
 			}
342 342
 
343
-			$is_settings_page = ( isset( $values['options'] ) || isset( $values['field_options'][ 'custom_html_' . $field_id ] ) );
343
+			$is_settings_page = ( isset( $values['options'] ) || isset( $values['field_options']['custom_html_' . $field_id] ) );
344 344
 			if ( $is_settings_page ) {
345 345
 				self::get_settings_page_html( $values, $field );
346 346
 
@@ -355,22 +355,22 @@  discard block
 block discarded – undo
355 355
 			$update_options = apply_filters( 'frm_field_options_to_update', $update_options );
356 356
 
357 357
 			foreach ( $update_options as $opt => $default ) {
358
-				$field->field_options[ $opt ] = isset( $values['field_options'][ $opt . '_' . $field_id ] ) ? $values['field_options'][ $opt . '_' . $field_id ] : $default;
359
-				self::sanitize_field_opt( $opt, $field->field_options[ $opt ] );
358
+				$field->field_options[$opt] = isset( $values['field_options'][$opt . '_' . $field_id] ) ? $values['field_options'][$opt . '_' . $field_id] : $default;
359
+				self::sanitize_field_opt( $opt, $field->field_options[$opt] );
360 360
 			}
361 361
 
362 362
 			$field->field_options = apply_filters( 'frm_update_field_options', $field->field_options, $field, $values );
363 363
 
364 364
 			$new_field = array(
365 365
 				'field_options' => $field->field_options,
366
-				'default_value' => isset( $values[ 'default_value_' . $field_id ] ) ? FrmAppHelper::maybe_json_encode( $values[ 'default_value_' . $field_id ] ) : '',
366
+				'default_value' => isset( $values['default_value_' . $field_id] ) ? FrmAppHelper::maybe_json_encode( $values['default_value_' . $field_id] ) : '',
367 367
 			);
368 368
 
369
-			if ( ! FrmAppHelper::allow_unfiltered_html() && isset( $values['field_options'][ 'options_' . $field_id ] ) && is_array( $values['field_options'][ 'options_' . $field_id ] ) ) {
370
-				foreach ( $values['field_options'][ 'options_' . $field_id ] as $option_key => $option ) {
369
+			if ( ! FrmAppHelper::allow_unfiltered_html() && isset( $values['field_options']['options_' . $field_id] ) && is_array( $values['field_options']['options_' . $field_id] ) ) {
370
+				foreach ( $values['field_options']['options_' . $field_id] as $option_key => $option ) {
371 371
 					if ( is_array( $option ) ) {
372 372
 						foreach ( $option as $key => $item ) {
373
-							$values['field_options'][ 'options_' . $field_id ][ $option_key ][ $key ] = FrmAppHelper::kses( $item, 'all' );
373
+							$values['field_options']['options_' . $field_id][$option_key][$key] = FrmAppHelper::kses( $item, 'all' );
374 374
 						}
375 375
 					}
376 376
 				}
@@ -400,8 +400,8 @@  discard block
 block discarded – undo
400 400
 	 */
401 401
 	private static function maybe_update_max_option( $field, $values, &$new_field ) {
402 402
 		if ( $field->type === 'textarea' &&
403
-			! empty( $values['field_options'][ 'type_' . $field->id ] ) &&
404
-			in_array( $values['field_options'][ 'type_' . $field->id ], array( 'text', 'email', 'url', 'password', 'phone' ), true ) ) {
403
+			! empty( $values['field_options']['type_' . $field->id] ) &&
404
+			in_array( $values['field_options']['type_' . $field->id], array( 'text', 'email', 'url', 'password', 'phone' ), true ) ) {
405 405
 
406 406
 			$new_field['field_options']['max'] = '';
407 407
 
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
 			 * Update posted field setting so that new 'max' option is displayed after form is saved and page reloads.
410 410
 			 * FrmFieldsHelper::fill_default_field_opts populates field options by calling self::get_posted_field_setting.
411 411
 			 */
412
-			$_POST['field_options'][ 'max_' . $field->id ] = '';
412
+			$_POST['field_options']['max_' . $field->id] = '';
413 413
 		}
414 414
 	}
415 415
 
@@ -484,11 +484,11 @@  discard block
 block discarded – undo
484 484
 	 * Updating the settings page
485 485
 	 */
486 486
 	private static function get_settings_page_html( $values, &$field ) {
487
-		if ( isset( $values['field_options'][ 'custom_html_' . $field->id ] ) ) {
487
+		if ( isset( $values['field_options']['custom_html_' . $field->id] ) ) {
488 488
 			$prev_opts     = array();
489 489
 			$fallback_html = isset( $field->field_options['custom_html'] ) ? $field->field_options['custom_html'] : FrmFieldsHelper::get_default_html( $field->type );
490 490
 
491
-			$field->field_options['custom_html'] = isset( $values['field_options'][ 'custom_html_' . $field->id ] ) ? $values['field_options'][ 'custom_html_' . $field->id ] : $fallback_html;
491
+			$field->field_options['custom_html'] = isset( $values['field_options']['custom_html_' . $field->id] ) ? $values['field_options']['custom_html_' . $field->id] : $fallback_html;
492 492
 		} elseif ( $field->type == 'hidden' || $field->type == 'user_id' ) {
493 493
 			$prev_opts = $field->field_options;
494 494
 		}
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
 		foreach ( $field_cols as $col => $default ) {
515 515
 			$default = ( $default === '' ) ? $field->{$col} : $default;
516 516
 
517
-			$new_field[ $col ] = isset( $values['field_options'][ $col . '_' . $field->id ] ) ? $values['field_options'][ $col . '_' . $field->id ] : $default;
517
+			$new_field[$col] = isset( $values['field_options'][$col . '_' . $field->id] ) ? $values['field_options'][$col . '_' . $field->id] : $default;
518 518
 		}
519 519
 
520 520
 		// Don't save the template option.
@@ -938,8 +938,8 @@  discard block
 block discarded – undo
938 938
 			self::maybe_get_form( $form );
939 939
 		}
940 940
 
941
-		if ( isset( $frm_vars['form_params'] ) && is_array( $frm_vars['form_params'] ) && isset( $frm_vars['form_params'][ $form->id ] ) ) {
942
-			return $frm_vars['form_params'][ $form->id ];
941
+		if ( isset( $frm_vars['form_params'] ) && is_array( $frm_vars['form_params'] ) && isset( $frm_vars['form_params'][$form->id] ) ) {
942
+			return $frm_vars['form_params'][$form->id];
943 943
 		}
944 944
 
945 945
 		$action_var = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action'; // phpcs:ignore WordPress.Security.NonceVerification.Missing
@@ -968,15 +968,15 @@  discard block
 block discarded – undo
968 968
 			//if there are two forms on the same page, make sure not to submit both
969 969
 			foreach ( $default_values as $var => $default ) {
970 970
 				if ( $var == 'action' ) {
971
-					$values[ $var ] = FrmAppHelper::get_param( $action_var, $default, 'get', 'sanitize_title' );
971
+					$values[$var] = FrmAppHelper::get_param( $action_var, $default, 'get', 'sanitize_title' );
972 972
 				} else {
973
-					$values[ $var ] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' );
973
+					$values[$var] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' );
974 974
 				}
975 975
 				unset( $var, $default );
976 976
 			}
977 977
 		} else {
978 978
 			foreach ( $default_values as $var => $default ) {
979
-				$values[ $var ] = $default;
979
+				$values[$var] = $default;
980 980
 				unset( $var, $default );
981 981
 			}
982 982
 		}
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
 			'sdir'     => '',
1003 1003
 		);
1004 1004
 		foreach ( $defaults as $var => $default ) {
1005
-			$values[ $var ] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' );
1005
+			$values[$var] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' );
1006 1006
 		}
1007 1007
 
1008 1008
 		return $values;
@@ -1030,7 +1030,7 @@  discard block
 block discarded – undo
1030 1030
 			'keep_post' => '',
1031 1031
 		);
1032 1032
 		foreach ( $defaults as $var => $default ) {
1033
-			$values[ $var ] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' );
1033
+			$values[$var] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' );
1034 1034
 		}
1035 1035
 
1036 1036
 		return $values;
@@ -1133,7 +1133,7 @@  discard block
 block discarded – undo
1133 1133
 		$form = $atts['form'];
1134 1134
 		$default = isset( $atts['default'] ) ? $atts['default'] : '';
1135 1135
 
1136
-		return isset( $form->options[ $atts['option'] ] ) ? $form->options[ $atts['option'] ] : $default;
1136
+		return isset( $form->options[$atts['option']] ) ? $form->options[$atts['option']] : $default;
1137 1137
 	}
1138 1138
 
1139 1139
 	/**
Please login to merge, or discard this patch.