Completed
Push — master ( 41d4a3...370bbb )
by
unknown
18s
created
classes/models/FrmField.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -267,11 +267,11 @@  discard block
 block discarded – undo
267 267
 			'ranking' => '2024-03-12',
268 268
 		);
269 269
 
270
-		if ( ! isset( $release_dates[ $type ] ) ) {
270
+		if ( ! isset( $release_dates[$type] ) ) {
271 271
 			return false;
272 272
 		}
273 273
 
274
-		$release_date = $release_dates[ $type ];
274
+		$release_date = $release_dates[$type];
275 275
 
276 276
 		$three_months_after_release = gmdate( 'Y-m-d', strtotime( $release_date . ' + 90 days' ) );
277 277
 		return gmdate( 'Y-m-d' ) < $three_months_after_release;
@@ -304,8 +304,8 @@  discard block
 block discarded – undo
304 304
 		$values = FrmAppHelper::maybe_filter_array( $values, array( 'name', 'description' ) );
305 305
 
306 306
 		foreach ( array( 'name', 'description', 'type', 'default_value' ) as $col ) {
307
-			if ( isset( $values[ $col ] ) ) {
308
-				$new_values[ $col ] = $values[ $col ];
307
+			if ( isset( $values[$col] ) ) {
308
+				$new_values[$col] = $values[$col];
309 309
 			}
310 310
 		}
311 311
 
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
 		$new_values['created_at']    = current_time( 'mysql', 1 );
318 318
 
319 319
 		if ( isset( $values['id'] ) ) {
320
-			$frm_duplicate_ids[ $values['field_key'] ] = $new_values['field_key'];
320
+			$frm_duplicate_ids[$values['field_key']] = $new_values['field_key'];
321 321
 			$new_values                                = apply_filters( 'frm_duplicated_field', $new_values );
322 322
 		}
323 323
 
@@ -326,9 +326,9 @@  discard block
 block discarded – undo
326 326
 		foreach ( $new_values as $k => $v ) {
327 327
 			if ( is_array( $v ) ) {
328 328
 				if ( $k === 'default_value' ) {
329
-					$new_values[ $k ] = FrmAppHelper::maybe_json_encode( $v );
329
+					$new_values[$k] = FrmAppHelper::maybe_json_encode( $v );
330 330
 				} else {
331
-					$new_values[ $k ] = serialize( $v );
331
+					$new_values[$k] = serialize( $v );
332 332
 				}
333 333
 			}
334 334
 			unset( $k, $v );
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
 		}
349 349
 
350 350
 		if ( isset( $values['id'] ) ) {
351
-			$frm_duplicate_ids[ $values['id'] ] = $new_id;
351
+			$frm_duplicate_ids[$values['id']] = $new_id;
352 352
 		}
353 353
 
354 354
 		return $new_id;
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 			 * @param array $match Shortcode data.
400 400
 			 * @return string
401 401
 			 */
402
-			function ( $match ) {
402
+			function( $match ) {
403 403
 				$attr = shortcode_parse_atts( $match[3] );
404 404
 
405 405
 				if ( ! is_array( $attr ) ) {
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 					}
425 425
 
426 426
 					if ( FrmAppHelper::input_key_is_safe( $key, 'update' ) ) {
427
-						$safe_atts[ $key ] = $value;
427
+						$safe_atts[$key] = $value;
428 428
 					}
429 429
 				}
430 430
 
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
 	public static function duplicate( $old_form_id, $form_id, $copy_keys = false, $blog_id = false ) {
483 483
 		global $frm_duplicate_ids;
484 484
 
485
-		$where  = array(
485
+		$where = array(
486 486
 			array(
487 487
 				'or'                => 1,
488 488
 				'fi.form_id'        => $old_form_id,
@@ -528,8 +528,8 @@  discard block
 block discarded – undo
528 528
 
529 529
 			$values                                 = apply_filters( 'frm_duplicated_field', $values );
530 530
 			$new_id                                 = self::create( $values );
531
-			$frm_duplicate_ids[ $field->id ]        = $new_id;
532
-			$frm_duplicate_ids[ $field->field_key ] = $new_id;
531
+			$frm_duplicate_ids[$field->id]        = $new_id;
532
+			$frm_duplicate_ids[$field->field_key] = $new_id;
533 533
 			unset( $field );
534 534
 		}//end foreach
535 535
 	}
@@ -578,11 +578,11 @@  discard block
 block discarded – undo
578 578
 
579 579
 		// serialize array values
580 580
 		foreach ( array( 'field_options', 'options' ) as $opt ) {
581
-			if ( isset( $values[ $opt ] ) && is_array( $values[ $opt ] ) ) {
581
+			if ( isset( $values[$opt] ) && is_array( $values[$opt] ) ) {
582 582
 				if ( 'field_options' === $opt ) {
583
-					$values[ $opt ] = self::maybe_filter_options( $values[ $opt ] );
583
+					$values[$opt] = self::maybe_filter_options( $values[$opt] );
584 584
 				}
585
-				$values[ $opt ] = serialize( $values[ $opt ] );
585
+				$values[$opt] = serialize( $values[$opt] );
586 586
 			}
587 587
 		}
588 588
 		if ( isset( $values['default_value'] ) && is_array( $values['default_value'] ) ) {
@@ -769,8 +769,8 @@  discard block
 block discarded – undo
769 769
 					continue;
770 770
 				}
771 771
 
772
-				$fields[ $result->id ] = $result;
773
-				++$count;
772
+				$fields[$result->id] = $result;
773
+				++ $count;
774 774
 				if ( $limit == 1 ) {
775 775
 					$fields = $result;
776 776
 					break;
@@ -821,8 +821,8 @@  discard block
 block discarded – undo
821 821
 			$fields = array();
822 822
 			$count  = 0;
823 823
 			foreach ( $results as $result ) {
824
-				++$count;
825
-				$fields[ $result->id ] = $result;
824
+				++ $count;
825
+				$fields[$result->id] = $result;
826 826
 				if ( ! empty( $limit ) && $count >= $limit ) {
827 827
 					break;
828 828
 				}
@@ -936,7 +936,7 @@  discard block
 block discarded – undo
936 936
 		$query_type = $limit === ' LIMIT 1' || $limit == 1 ? 'row' : 'results';
937 937
 
938 938
 		if ( is_array( $where ) ) {
939
-			$args    = array(
939
+			$args = array(
940 940
 				'order_by' => $order_by,
941 941
 				'limit'    => $limit,
942 942
 			);
@@ -969,9 +969,9 @@  discard block
 block discarded – undo
969 969
 				FrmDb::set_cache( $result->field_key, $result, 'frm_field' );
970 970
 
971 971
 				self::prepare_options( $result );
972
-				$results[ $r_key ]->field_options = $result->field_options;
973
-				$results[ $r_key ]->options       = $result->options;
974
-				$results[ $r_key ]->default_value = $result->default_value;
972
+				$results[$r_key]->field_options = $result->field_options;
973
+				$results[$r_key]->options       = $result->options;
974
+				$results[$r_key]->default_value = $result->default_value;
975 975
 
976 976
 				unset( $r_key, $result );
977 977
 			}
@@ -1050,7 +1050,7 @@  discard block
 block discarded – undo
1050 1050
 
1051 1051
 			if ( count( $next_fields ) >= self::$transient_size ) {
1052 1052
 				// if this transient is full, check for another
1053
-				++$next;
1053
+				++ $next;
1054 1054
 				self::get_next_transient( $fields, $base_name, $next );
1055 1055
 			}
1056 1056
 		}
@@ -1078,7 +1078,7 @@  discard block
 block discarded – undo
1078 1078
 				return;
1079 1079
 			}
1080 1080
 
1081
-			++$next;
1081
+			++ $next;
1082 1082
 		}
1083 1083
 	}
1084 1084
 
@@ -1226,7 +1226,7 @@  discard block
 block discarded – undo
1226 1226
 	 * @return bool
1227 1227
 	 */
1228 1228
 	public static function is_option_true_in_array( $field, $option ) {
1229
-		return ! empty( $field[ $option ] );
1229
+		return ! empty( $field[$option] );
1230 1230
 	}
1231 1231
 
1232 1232
 	/**
@@ -1235,7 +1235,7 @@  discard block
 block discarded – undo
1235 1235
 	 * @return bool
1236 1236
 	 */
1237 1237
 	public static function is_option_true_in_object( $field, $option ) {
1238
-		return isset( $field->field_options[ $option ] ) && $field->field_options[ $option ];
1238
+		return isset( $field->field_options[$option] ) && $field->field_options[$option];
1239 1239
 	}
1240 1240
 
1241 1241
 	/**
@@ -1244,7 +1244,7 @@  discard block
 block discarded – undo
1244 1244
 	 * @return bool
1245 1245
 	 */
1246 1246
 	public static function is_option_empty_in_array( $field, $option ) {
1247
-		return empty( $field[ $option ] );
1247
+		return empty( $field[$option] );
1248 1248
 	}
1249 1249
 
1250 1250
 	/**
@@ -1253,7 +1253,7 @@  discard block
 block discarded – undo
1253 1253
 	 * @return bool
1254 1254
 	 */
1255 1255
 	public static function is_option_empty_in_object( $field, $option ) {
1256
-		return empty( $field->field_options[ $option ] );
1256
+		return empty( $field->field_options[$option] );
1257 1257
 	}
1258 1258
 
1259 1259
 	/**
@@ -1262,7 +1262,7 @@  discard block
 block discarded – undo
1262 1262
 	 * @return bool
1263 1263
 	 */
1264 1264
 	public static function is_option_value_in_object( $field, $option ) {
1265
-		return isset( $field->field_options[ $option ] ) && $field->field_options[ $option ] != '';
1265
+		return isset( $field->field_options[$option] ) && $field->field_options[$option] != '';
1266 1266
 	}
1267 1267
 
1268 1268
 	/**
@@ -1288,10 +1288,10 @@  discard block
 block discarded – undo
1288 1288
 	 * @return mixed
1289 1289
 	 */
1290 1290
 	public static function get_option_in_array( $field, $option ) {
1291
-		if ( isset( $field[ $option ] ) ) {
1292
-			$this_option = $field[ $option ];
1293
-		} elseif ( isset( $field['field_options'] ) && is_array( $field['field_options'] ) && isset( $field['field_options'][ $option ] ) ) {
1294
-			$this_option = $field['field_options'][ $option ];
1291
+		if ( isset( $field[$option] ) ) {
1292
+			$this_option = $field[$option];
1293
+		} elseif ( isset( $field['field_options'] ) && is_array( $field['field_options'] ) && isset( $field['field_options'][$option] ) ) {
1294
+			$this_option = $field['field_options'][$option];
1295 1295
 		} else {
1296 1296
 			$this_option = '';
1297 1297
 		}
@@ -1305,7 +1305,7 @@  discard block
 block discarded – undo
1305 1305
 	 * @return mixed
1306 1306
 	 */
1307 1307
 	public static function get_option_in_object( $field, $option ) {
1308
-		return $field->field_options[ $option ] ?? '';
1308
+		return $field->field_options[$option] ?? '';
1309 1309
 	}
1310 1310
 
1311 1311
 	/**
Please login to merge, or discard this patch.