@@ -47,7 +47,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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; |
@@ -164,8 +164,8 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 ) { |