@@ -45,7 +45,7 @@ discard block |
||
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'; |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | public static function get_random_tip( $tips ) { |
368 | 368 | $random = rand( 0, count( $tips ) - 1 ); |
369 | 369 | |
370 | - return $tips[ $random ]; |
|
370 | + return $tips[$random]; |
|
371 | 371 | } |
372 | 372 | |
373 | 373 | /** |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | 'default' => 'id', |
97 | 97 | ) |
98 | 98 | ); |
99 | - $order = self::get_param( |
|
99 | + $order = self::get_param( |
|
100 | 100 | array( |
101 | 101 | 'param' => 'order', |
102 | 102 | 'default' => 'DESC', |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $form_ids = $this->get_form_ids( $form_id ); |
149 | 149 | $s_query['it.form_id'] = count( $form_ids ) > 1 ? $form_ids : $form_ids[0]; |
150 | 150 | } else { |
151 | - $s_query[] = array( |
|
151 | + $s_query[] = array( |
|
152 | 152 | 'or' => 1, |
153 | 153 | 'parent_form_id' => null, |
154 | 154 | 'parent_form_id <' => 1, |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | |
316 | 316 | $r = "<tr id='item-action-{$item->id}'$style>"; |
317 | 317 | |
318 | - list( $columns, $hidden, , $primary ) = $this->get_column_info(); |
|
318 | + list( $columns, $hidden,, $primary ) = $this->get_column_info(); |
|
319 | 319 | $action_col = false; |
320 | 320 | $action_columns = $this->get_action_columns(); |
321 | 321 |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | $intent_is_processing = 'processing' === $intent->status; |
58 | 58 | if ( $intent_is_processing ) { |
59 | 59 | // Append an additional processing message to the end of the success message. |
60 | - $filter = function ( $message ) { |
|
60 | + $filter = function( $message ) { |
|
61 | 61 | $stripe_settings = FrmStrpLiteAppHelper::get_settings(); |
62 | 62 | $message .= '<p>' . esc_html( $stripe_settings->settings->processing_message ) . '</p>'; |
63 | 63 | return $message; |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | $atts['form'] = FrmForm::getOne( $atts['entry']->form_id ); |
162 | 162 | $atts['entry_id'] = $atts['entry']->id; |
163 | 163 | $opt = 'success_action'; |
164 | - $atts['conf_method'] = ! empty( $atts['form']->options[ $opt ] ) ? $atts['form']->options[ $opt ] : 'message'; |
|
164 | + $atts['conf_method'] = ! empty( $atts['form']->options[$opt] ) ? $atts['form']->options[$opt] : 'message'; |
|
165 | 165 | |
166 | 166 | $actions = FrmFormsController::get_met_on_submit_actions( $atts, 'create' ); |
167 | 167 | if ( $actions ) { |
@@ -246,10 +246,10 @@ discard block |
||
246 | 246 | */ |
247 | 247 | public static function get_payment_intents( $name ) { |
248 | 248 | // phpcs:ignore WordPress.Security.NonceVerification.Missing |
249 | - if ( ! isset( $_POST[ $name ] ) ) { |
|
249 | + if ( ! isset( $_POST[$name] ) ) { |
|
250 | 250 | return array(); |
251 | 251 | } |
252 | - $intents = $_POST[ $name ]; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.NonceVerification.Missing |
|
252 | + $intents = $_POST[$name]; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.NonceVerification.Missing |
|
253 | 253 | FrmAppHelper::sanitize_value( 'sanitize_text_field', $intents ); |
254 | 254 | return $intents; |
255 | 255 | } |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | self::format_form_data( $form ); |
277 | 277 | |
278 | 278 | $form_id = absint( $form['form_id'] ); |
279 | - $intents = isset( $form[ 'frmintent' . $form_id ] ) ? $form[ 'frmintent' . $form_id ] : array(); |
|
279 | + $intents = isset( $form['frmintent' . $form_id] ) ? $form['frmintent' . $form_id] : array(); |
|
280 | 280 | |
281 | 281 | if ( empty( $intents ) ) { |
282 | 282 | wp_die(); |
@@ -286,8 +286,8 @@ discard block |
||
286 | 286 | $intents = array( $intents ); |
287 | 287 | } else { |
288 | 288 | foreach ( $intents as $k => $intent ) { |
289 | - if ( is_array( $intent ) && isset( $intent[ $k ] ) ) { |
|
290 | - $intents[ $k ] = $intent[ $k ]; |
|
289 | + if ( is_array( $intent ) && isset( $intent[$k] ) ) { |
|
290 | + $intents[$k] = $intent[$k]; |
|
291 | 291 | } |
292 | 292 | } |
293 | 293 | } |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | if ( $saved->metadata->action != $action->ID ) { |
341 | 341 | continue; |
342 | 342 | } |
343 | - $intents[ $k ] = array( |
|
343 | + $intents[$k] = array( |
|
344 | 344 | 'id' => $intent, |
345 | 345 | 'action' => $action->ID, |
346 | 346 | ); |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | if ( $k === 'item_meta' ) { |
384 | 384 | foreach ( $v as $f => $value ) { |
385 | 385 | FrmAppHelper::sanitize_value( 'wp_kses_post', $value ); |
386 | - $entry->metas[ absint( $f ) ] = $value; |
|
386 | + $entry->metas[absint( $f )] = $value; |
|
387 | 387 | } |
388 | 388 | } else { |
389 | 389 | FrmAppHelper::sanitize_value( 'wp_kses_post', $v ); |
@@ -407,14 +407,14 @@ discard block |
||
407 | 407 | |
408 | 408 | foreach ( $form as $input ) { |
409 | 409 | $key = $input['name']; |
410 | - if ( isset( $formatted[ $key ] ) ) { |
|
411 | - if ( is_array( $formatted[ $key ] ) ) { |
|
412 | - $formatted[ $key ][] = $input['value']; |
|
410 | + if ( isset( $formatted[$key] ) ) { |
|
411 | + if ( is_array( $formatted[$key] ) ) { |
|
412 | + $formatted[$key][] = $input['value']; |
|
413 | 413 | } else { |
414 | - $formatted[ $key ] = array( $formatted[ $key ], $input['value'] ); |
|
414 | + $formatted[$key] = array( $formatted[$key], $input['value'] ); |
|
415 | 415 | } |
416 | 416 | } else { |
417 | - $formatted[ $key ] = $input['value']; |
|
417 | + $formatted[$key] = $input['value']; |
|
418 | 418 | } |
419 | 419 | } |
420 | 420 | |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | |
560 | 560 | foreach ( $actions as $k => $action ) { |
561 | 561 | $amount = self::get_amount_before_submit( compact( 'action', 'form' ) ); |
562 | - $actions[ $k ]->post_content['amount'] = $amount; |
|
562 | + $actions[$k]->post_content['amount'] = $amount; |
|
563 | 563 | } |
564 | 564 | } |
565 | 565 |
@@ -156,8 +156,8 @@ discard block |
||
156 | 156 | $field_val = ''; |
157 | 157 | if ( is_object( $this->field ) ) { |
158 | 158 | $field_val = $this->field->{$column}; |
159 | - } elseif ( is_array( $this->field ) && isset( $this->field[ $column ] ) ) { |
|
160 | - $field_val = $this->field[ $column ]; |
|
159 | + } elseif ( is_array( $this->field ) && isset( $this->field[$column] ) ) { |
|
160 | + $field_val = $this->field[$column]; |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | return $field_val; |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | if ( is_object( $this->field ) ) { |
172 | 172 | $this->field->{$column} = $value; |
173 | 173 | } elseif ( is_array( $this->field ) ) { |
174 | - $this->field[ $column ] = $value; |
|
174 | + $this->field[$column] = $value; |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | |
@@ -637,7 +637,7 @@ discard block |
||
637 | 637 | printf( |
638 | 638 | /* translators: %s: Field type */ |
639 | 639 | esc_html__( '%s Options', 'formidable' ), |
640 | - esc_html( $all_field_types[ $args['display']['type'] ]['name'] ) |
|
640 | + esc_html( $all_field_types[$args['display']['type']]['name'] ) |
|
641 | 641 | ); |
642 | 642 | FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown6_icon', array( 'aria-hidden' => 'true' ) ); |
643 | 643 | ?> |
@@ -737,7 +737,7 @@ discard block |
||
737 | 737 | * New field |
738 | 738 | */ |
739 | 739 | public function get_new_field_defaults() { |
740 | - $field = array( |
|
740 | + $field = array( |
|
741 | 741 | 'name' => $this->get_new_field_name(), |
742 | 742 | 'description' => '', |
743 | 743 | 'type' => $this->type, |
@@ -768,8 +768,8 @@ discard block |
||
768 | 768 | |
769 | 769 | $fields = array_merge( $fields, $pro_fields ); |
770 | 770 | |
771 | - if ( isset( $fields[ $this->type ] ) ) { |
|
772 | - $name = is_array( $fields[ $this->type ] ) ? $fields[ $this->type ]['name'] : $fields[ $this->type ]; |
|
771 | + if ( isset( $fields[$this->type] ) ) { |
|
772 | + $name = is_array( $fields[$this->type] ) ? $fields[$this->type]['name'] : $fields[$this->type]; |
|
773 | 773 | } |
774 | 774 | |
775 | 775 | return $name; |
@@ -786,7 +786,7 @@ discard block |
||
786 | 786 | * @return array |
787 | 787 | */ |
788 | 788 | public function get_default_field_options() { |
789 | - $opts = array( |
|
789 | + $opts = array( |
|
790 | 790 | 'size' => '', |
791 | 791 | 'max' => '', |
792 | 792 | 'label' => '', |
@@ -1030,7 +1030,7 @@ discard block |
||
1030 | 1030 | * @return void |
1031 | 1031 | */ |
1032 | 1032 | public function set_aria_invalid_error( &$shortcode_atts, $args ) { |
1033 | - $shortcode_atts['aria-invalid'] = isset( $args['errors'][ 'field' . $this->field_id ] ) ? 'true' : 'false'; |
|
1033 | + $shortcode_atts['aria-invalid'] = isset( $args['errors']['field' . $this->field_id] ) ? 'true' : 'false'; |
|
1034 | 1034 | } |
1035 | 1035 | |
1036 | 1036 | /** |
@@ -1219,8 +1219,8 @@ discard block |
||
1219 | 1219 | $selected = $values['field_value']; |
1220 | 1220 | |
1221 | 1221 | if ( isset( $values['combo_name'] ) ) { |
1222 | - $options = $options[ $values['combo_name'] ]; |
|
1223 | - $selected = is_array( $selected ) && isset( $selected[ $values['combo_name'] ] ) ? $selected[ $values['combo_name'] ] : ''; |
|
1222 | + $options = $options[$values['combo_name']]; |
|
1223 | + $selected = is_array( $selected ) && isset( $selected[$values['combo_name']] ) ? $selected[$values['combo_name']] : ''; |
|
1224 | 1224 | } |
1225 | 1225 | |
1226 | 1226 | $input = $this->select_tag( $values ); |
@@ -1275,7 +1275,7 @@ discard block |
||
1275 | 1275 | } |
1276 | 1276 | |
1277 | 1277 | protected function fill_display_field_values( $args = array() ) { |
1278 | - $defaults = array( |
|
1278 | + $defaults = array( |
|
1279 | 1279 | 'field_name' => 'item_meta[' . $this->get_field_column( 'id' ) . ']', |
1280 | 1280 | 'field_id' => $this->get_field_column( 'id' ), |
1281 | 1281 | 'field_plus_id' => '', |
@@ -1332,7 +1332,7 @@ discard block |
||
1332 | 1332 | } |
1333 | 1333 | } |
1334 | 1334 | |
1335 | - if ( isset( $args['errors'][ 'field' . $args['field_id'] ] ) && ! $custom_error_fields ) { |
|
1335 | + if ( isset( $args['errors']['field' . $args['field_id']] ) && ! $custom_error_fields ) { |
|
1336 | 1336 | if ( $error_comes_first ) { |
1337 | 1337 | array_unshift( $describedby, 'frm_error_' . $args['html_id'] ); |
1338 | 1338 | } else { |
@@ -1448,7 +1448,7 @@ discard block |
||
1448 | 1448 | $values['value'] = $value; |
1449 | 1449 | FrmFieldsHelper::prepare_new_front_field( $values, $field_object ); |
1450 | 1450 | |
1451 | - $map_callback = function ( $option ) { |
|
1451 | + $map_callback = function( $option ) { |
|
1452 | 1452 | return is_array( $option ) ? $option['value'] : $option; |
1453 | 1453 | }; |
1454 | 1454 | |
@@ -1499,11 +1499,11 @@ discard block |
||
1499 | 1499 | |
1500 | 1500 | $field_id = $this->get_field_column( 'id' ); |
1501 | 1501 | if ( ! array_key_exists( $field_id, $frm_validated_unique_values ) ) { |
1502 | - $frm_validated_unique_values[ $field_id ] = array(); |
|
1502 | + $frm_validated_unique_values[$field_id] = array(); |
|
1503 | 1503 | return false; |
1504 | 1504 | } |
1505 | 1505 | |
1506 | - $already_validated_this_value = in_array( $value, $frm_validated_unique_values[ $field_id ], true ); |
|
1506 | + $already_validated_this_value = in_array( $value, $frm_validated_unique_values[$field_id], true ); |
|
1507 | 1507 | return $already_validated_this_value; |
1508 | 1508 | } |
1509 | 1509 | |
@@ -1528,7 +1528,7 @@ discard block |
||
1528 | 1528 | private function value_validated_as_unique( $value ) { |
1529 | 1529 | global $frm_validated_unique_values; |
1530 | 1530 | $field_id = $this->get_field_column( 'id' ); |
1531 | - $frm_validated_unique_values[ $field_id ][] = $value; |
|
1531 | + $frm_validated_unique_values[$field_id][] = $value; |
|
1532 | 1532 | } |
1533 | 1533 | |
1534 | 1534 | /** |
@@ -1573,8 +1573,8 @@ discard block |
||
1573 | 1573 | $value = $this->prepare_display_value( $value, $atts ); |
1574 | 1574 | |
1575 | 1575 | if ( is_array( $value ) ) { |
1576 | - if ( ! empty( $atts['show'] ) && isset( $value[ $atts['show'] ] ) ) { |
|
1577 | - $value = $value[ $atts['show'] ]; |
|
1576 | + if ( ! empty( $atts['show'] ) && isset( $value[$atts['show']] ) ) { |
|
1577 | + $value = $value[$atts['show']]; |
|
1578 | 1578 | } elseif ( empty( $atts['return_array'] ) ) { |
1579 | 1579 | $sep = isset( $atts['sep'] ) ? $atts['sep'] : ', '; |
1580 | 1580 | $value = FrmAppHelper::safe_implode( $sep, $value ); |
@@ -1704,8 +1704,8 @@ discard block |
||
1704 | 1704 | $saved_entries = $atts['ids']; |
1705 | 1705 | $new_value = array(); |
1706 | 1706 | foreach ( (array) $value as $old_child_id ) { |
1707 | - if ( isset( $saved_entries[ $old_child_id ] ) ) { |
|
1708 | - $new_value[] = $saved_entries[ $old_child_id ]; |
|
1707 | + if ( isset( $saved_entries[$old_child_id] ) ) { |
|
1708 | + $new_value[] = $saved_entries[$old_child_id]; |
|
1709 | 1709 | } |
1710 | 1710 | } |
1711 | 1711 |