Completed
Pull Request — master (#1356)
by Stephanie
01:01
created
stripe/controllers/FrmStrpLiteActionsController.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 			$gateway   = $payment_action->post_content['gateway'];
48 48
 			$is_stripe = $gateway === 'stripe' || ( is_array( $gateway ) && in_array( 'stripe', $gateway, true ) );
49 49
 			if ( ! $is_stripe || empty( $payment_action->post_content['amount'] ) ) {
50
-				unset( $payment_actions[ $k ] );
50
+				unset( $payment_actions[$k] );
51 51
 			}
52 52
 		}
53 53
 		return $payment_actions;
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 			'run_triggers' => false,
85 85
 			'show_errors'  => true,
86 86
 		);
87
-		$atts     = compact( 'action', 'entry', 'form' );
87
+		$atts = compact( 'action', 'entry', 'form' );
88 88
 
89 89
 		$amount = self::prepare_amount( $action->post_content['amount'], $atts );
90 90
 		if ( empty( $amount ) || $amount == 000 ) {
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
 		$disallowed = array( ';', ':', '!important' );
503 503
 		foreach ( $settings as $k => $s ) {
504 504
 			if ( is_string( $s ) ) {
505
-				$settings[ $k ] = str_replace( $disallowed, '', $s );
505
+				$settings[$k] = str_replace( $disallowed, '', $s );
506 506
 			}
507 507
 		}
508 508
 
@@ -574,18 +574,18 @@  discard block
 block discarded – undo
574 574
 	 * @return array
575 575
 	 */
576 576
 	public static function remove_cc_validation( $errors, $field, $values ) {
577
-		$has_processed = isset( $_POST[ 'frmintent' . $field->form_id ] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing
577
+		$has_processed = isset( $_POST['frmintent' . $field->form_id] ); // phpcs:ignore WordPress.Security.NonceVerification.Missing
578 578
 		if ( ! $has_processed ) {
579 579
 			return $errors;
580 580
 		}
581 581
 
582 582
 		$field_id = isset( $field->temp_id ) ? $field->temp_id : $field->id;
583 583
 
584
-		if ( isset( $errors[ 'field' . $field_id . '-cc' ] ) ) {
585
-			unset( $errors[ 'field' . $field_id . '-cc' ] );
584
+		if ( isset( $errors['field' . $field_id . '-cc'] ) ) {
585
+			unset( $errors['field' . $field_id . '-cc'] );
586 586
 		}
587
-		if ( isset( $errors[ 'field' . $field_id ] ) ) {
588
-			unset( $errors[ 'field' . $field_id ] );
587
+		if ( isset( $errors['field' . $field_id] ) ) {
588
+			unset( $errors['field' . $field_id] );
589 589
 		}
590 590
 
591 591
 		return $errors;
Please login to merge, or discard this patch.
classes/models/FrmEntryFormatter.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
164 164
 
165 165
 		$conditionally_add = array( 'include_fields', 'fields', 'exclude_fields', 'entry' );
166 166
 		foreach ( $conditionally_add as $index ) {
167
-			if ( isset( $atts[ $index ] ) ) {
168
-				$entry_atts[ $index ] = $atts[ $index ];
167
+			if ( isset( $atts[$index] ) ) {
168
+				$entry_atts[$index] = $atts[$index];
169 169
 			}
170 170
 		}
171 171
 
@@ -351,8 +351,8 @@  discard block
 block discarded – undo
351 351
 
352 352
 		$unset = array( 'id', 'form_id', 'format' );
353 353
 		foreach ( $unset as $param ) {
354
-			if ( isset( $atts[ $param ] ) ) {
355
-				unset( $atts[ $param ] );
354
+			if ( isset( $atts[$param] ) ) {
355
+				unset( $atts[$param] );
356 356
 			}
357 357
 		}
358 358
 
@@ -523,11 +523,11 @@  discard block
 block discarded – undo
523 523
 
524 524
 			$displayed_value = $this->prepare_display_value_for_array( $field_value->get_displayed_value() );
525 525
 
526
-			$output[ $this->get_key_or_id( $field_value ) ] = $displayed_value;
526
+			$output[$this->get_key_or_id( $field_value )] = $displayed_value;
527 527
 
528 528
 			$has_separate_value = (bool) $field_value->get_field_option( 'separate_value' );
529 529
 			if ( $has_separate_value || $displayed_value !== $field_value->get_saved_value() ) {
530
-				$output[ $this->get_key_or_id( $field_value ) . '-value' ] = $field_value->get_saved_value();
530
+				$output[$this->get_key_or_id( $field_value ) . '-value'] = $field_value->get_saved_value();
531 531
 			}
532 532
 		}
533 533
 	}
@@ -917,7 +917,7 @@  discard block
 block discarded – undo
917 917
 
918 918
 			if ( is_array( $value ) ) {
919 919
 				foreach ( $value as $key => $single_value ) {
920
-					$value[ $key ] = $this->strip_html( $single_value );
920
+					$value[$key] = $this->strip_html( $single_value );
921 921
 				}
922 922
 			} elseif ( $this->is_plain_text && ! is_array( $value ) ) {
923 923
 				if ( strpos( $value, '<img' ) !== false ) {
Please login to merge, or discard this patch.
classes/controllers/FrmFormTemplatesController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -330,11 +330,11 @@  discard block
 block discarded – undo
330 330
 
331 331
 		// Perform add or remove operation.
332 332
 		if ( 'add' === $operation ) {
333
-			self::$favorite_templates[ $key ][] = $template_id;
333
+			self::$favorite_templates[$key][] = $template_id;
334 334
 		} elseif ( 'remove' === $operation ) {
335
-			$position = array_search( $template_id, self::$favorite_templates[ $key ], true );
335
+			$position = array_search( $template_id, self::$favorite_templates[$key], true );
336 336
 			if ( $position !== false ) {
337
-				unset( self::$favorite_templates[ $key ][ $position ] );
337
+				unset( self::$favorite_templates[$key][$position] );
338 338
 			}
339 339
 		}
340 340
 
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
 		foreach ( self::$templates as $key => &$template ) {
464 464
 			// Skip the template if the categories are not set.
465 465
 			if ( ! isset( $template['categories'] ) ) {
466
-				unset( self::$templates[ $key ] );
466
+				unset( self::$templates[$key] );
467 467
 				continue;
468 468
 			}
469 469
 
@@ -477,14 +477,14 @@  discard block
 block discarded – undo
477 477
 				// Add the slug to the new array.
478 478
 				$template['category_slugs'][] = $category_slug;
479 479
 
480
-				if ( ! isset( self::$categories[ $category_slug ] ) ) {
481
-					self::$categories[ $category_slug ] = array(
480
+				if ( ! isset( self::$categories[$category_slug] ) ) {
481
+					self::$categories[$category_slug] = array(
482 482
 						'name'  => $category,
483 483
 						'count' => 0,
484 484
 					);
485 485
 				}
486 486
 
487
-				self::$categories[ $category_slug ]['count']++;
487
+				self::$categories[$category_slug]['count'] ++;
488 488
 			}
489 489
 
490 490
 			// Mark the template as favorite if it's in the favorite templates list.
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
 		$redundant_cats = array_merge( array( 'PayPal', 'Stripe', 'Twilio' ), FrmFormsHelper::ignore_template_categories() );
500 500
 		foreach ( $redundant_cats as $redundant_cat ) {
501 501
 			$category_slug = sanitize_title( $redundant_cat );
502
-			unset( self::$categories[ $category_slug ] );
502
+			unset( self::$categories[$category_slug] );
503 503
 		}
504 504
 
505 505
 		// Sort the categories by keys alphabetically.
@@ -524,7 +524,7 @@  discard block
 block discarded – undo
524 524
 				'count' => 0,
525 525
 			);
526 526
 		}
527
-		$special_categories['all-templates']  = array(
527
+		$special_categories['all-templates'] = array(
528 528
 			'name'  => __( 'All Templates', 'formidable' ),
529 529
 			'count' => self::get_template_count(),
530 530
 		);
@@ -552,9 +552,9 @@  discard block
 block discarded – undo
552 552
 	 */
553 553
 	private static function assign_featured_templates() {
554 554
 		foreach ( self::FEATURED_TEMPLATES_KEYS as $key ) {
555
-			if ( isset( self::$templates[ $key ] ) ) {
556
-				self::$templates[ $key ]['is_featured'] = true;
557
-				self::$featured_templates[]             = self::$templates[ $key ];
555
+			if ( isset( self::$templates[$key] ) ) {
556
+				self::$templates[$key]['is_featured'] = true;
557
+				self::$featured_templates[]             = self::$templates[$key];
558 558
 			}
559 559
 		}
560 560
 	}
Please login to merge, or discard this patch.