@@ -15,20 +15,26 @@ |
||
| 15 | 15 | <h4><?php echo esc_html( $counter['heading'] ); ?></h4> |
| 16 | 16 | <?php if ( isset( $counter['cta'] ) && isset( $counter['cta']['display'] ) && true === $counter['cta']['display'] ) : ?> |
| 17 | 17 | <a href="<?php echo esc_url( $counter['cta']['link'] ); ?>"><?php echo esc_attr( $counter['cta']['title'] ); ?></a> |
| 18 | - <?php else : ?> |
|
| 18 | + <?php else { |
|
| 19 | + : ?> |
|
| 19 | 20 | <?php if ( 'currency' === $counter['type'] ) : ?> |
| 20 | 21 | <div class="frm-flex-box frm-gap-md"> |
| 21 | 22 | <?php foreach ( $counter['items'] as $item ) : ?> |
| 22 | 23 | <b> |
| 23 | - <?php echo esc_attr( $item['counter_label']['symbol_left'] ); ?> |
|
| 24 | + <?php echo esc_attr( $item['counter_label']['symbol_left'] ); |
|
| 25 | +} |
|
| 26 | +?> |
|
| 24 | 27 | <span class="frm-counter" data-type="<?php echo esc_attr( $counter['type'] ); ?>" data-locale="<?php echo esc_attr( get_locale() ); ?>" data-counter="<?php echo (int) $item['counter']; ?>"><?php echo (int) $item['counter']; ?></span> |
| 25 | 28 | <?php echo esc_attr( $item['counter_label']['symbol_right'] ); ?> |
| 26 | 29 | </b> |
| 27 | 30 | <?php endforeach; ?> |
| 28 | 31 | </div> |
| 29 | - <?php else : ?> |
|
| 32 | + <?php else { |
|
| 33 | + : ?> |
|
| 30 | 34 | <b> |
| 31 | - <span class="frm-counter" data-type="<?php echo esc_attr( $counter['type'] ); ?>" data-locale="<?php echo esc_attr( get_locale() ); ?>" data-counter="<?php echo (int) $counter['counter']; ?>"><?php echo (int) $counter['counter']; ?></span> |
|
| 35 | + <span class="frm-counter" data-type="<?php echo esc_attr( $counter['type'] ); |
|
| 36 | +} |
|
| 37 | +?>" data-locale="<?php echo esc_attr( get_locale() ); ?>" data-counter="<?php echo (int) $counter['counter']; ?>"><?php echo (int) $counter['counter']; ?></span> |
|
| 32 | 38 | </b> |
| 33 | 39 | <?php endif; ?> |
| 34 | 40 | <?php endif; ?> |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | 'class' => '', |
| 29 | 29 | 'inc_children' => 'exclude', |
| 30 | 30 | ); |
| 31 | - $args = wp_parse_args( $args, $defaults ); |
|
| 31 | + $args = wp_parse_args( $args, $defaults ); |
|
| 32 | 32 | |
| 33 | 33 | if ( ! $args['field_id'] ) { |
| 34 | 34 | $args['field_id'] = $field_name; |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | */ |
| 71 | 71 | public static function add_html_attr( $class, $param, &$add_html ) { |
| 72 | 72 | if ( ! empty( $class ) ) { |
| 73 | - $add_html[ $param ] = sanitize_title( $param ) . '="' . esc_attr( trim( sanitize_text_field( $class ) ) ) . '"'; |
|
| 73 | + $add_html[$param] = sanitize_title( $param ) . '="' . esc_attr( trim( sanitize_text_field( $class ) ) ) . '"'; |
|
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
@@ -293,8 +293,8 @@ discard block |
||
| 293 | 293 | 'description' => '', |
| 294 | 294 | ); |
| 295 | 295 | foreach ( $defaults as $var => $default ) { |
| 296 | - if ( ! isset( $values[ $var ] ) ) { |
|
| 297 | - $values[ $var ] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' ); |
|
| 296 | + if ( ! isset( $values[$var] ) ) { |
|
| 297 | + $values[$var] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' ); |
|
| 298 | 298 | } |
| 299 | 299 | } |
| 300 | 300 | |
@@ -309,8 +309,8 @@ discard block |
||
| 309 | 309 | 'parent_form_id' => 0, |
| 310 | 310 | ); |
| 311 | 311 | foreach ( $defaults as $var => $default ) { |
| 312 | - if ( ! isset( $values[ $var ] ) ) { |
|
| 313 | - $values[ $var ] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' ); |
|
| 312 | + if ( ! isset( $values[$var] ) ) { |
|
| 313 | + $values[$var] = FrmAppHelper::get_param( $var, $default, 'get', 'sanitize_text_field' ); |
|
| 314 | 314 | } |
| 315 | 315 | } |
| 316 | 316 | unset( $defaults ); |
@@ -347,16 +347,16 @@ discard block |
||
| 347 | 347 | $defaults = self::get_default_opts(); |
| 348 | 348 | foreach ( $defaults as $var => $default ) { |
| 349 | 349 | if ( is_array( $default ) ) { |
| 350 | - if ( ! isset( $values[ $var ] ) ) { |
|
| 351 | - $values[ $var ] = ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : array(); |
|
| 350 | + if ( ! isset( $values[$var] ) ) { |
|
| 351 | + $values[$var] = ( $record && isset( $record->options[$var] ) ) ? $record->options[$var] : array(); |
|
| 352 | 352 | } |
| 353 | 353 | |
| 354 | 354 | foreach ( $default as $k => $v ) { |
| 355 | - $values[ $var ][ $k ] = ( $post_values && isset( $post_values[ $var ][ $k ] ) ) ? $post_values[ $var ][ $k ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) ) ? $record->options[ $var ][ $k ] : $v ); |
|
| 355 | + $values[$var][$k] = ( $post_values && isset( $post_values[$var][$k] ) ) ? $post_values[$var][$k] : ( ( $record && isset( $record->options[$var] ) && isset( $record->options[$var][$k] ) ) ? $record->options[$var][$k] : $v ); |
|
| 356 | 356 | |
| 357 | 357 | if ( is_array( $v ) ) { |
| 358 | 358 | foreach ( $v as $k1 => $v1 ) { |
| 359 | - $values[ $var ][ $k ][ $k1 ] = ( $post_values && isset( $post_values[ $var ][ $k ][ $k1 ] ) ) ? $post_values[ $var ][ $k ][ $k1 ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) && isset( $record->options[ $var ][ $k ][ $k1 ] ) ) ? $record->options[ $var ][ $k ][ $k1 ] : $v1 ); |
|
| 359 | + $values[$var][$k][$k1] = ( $post_values && isset( $post_values[$var][$k][$k1] ) ) ? $post_values[$var][$k][$k1] : ( ( $record && isset( $record->options[$var] ) && isset( $record->options[$var][$k] ) && isset( $record->options[$var][$k][$k1] ) ) ? $record->options[$var][$k][$k1] : $v1 ); |
|
| 360 | 360 | unset( $k1, $v1 ); |
| 361 | 361 | } |
| 362 | 362 | } |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | unset( $k, $v ); |
| 365 | 365 | } |
| 366 | 366 | } else { |
| 367 | - $values[ $var ] = ( $post_values && isset( $post_values['options'][ $var ] ) ) ? $post_values['options'][ $var ] : ( ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : $default ); |
|
| 367 | + $values[$var] = ( $post_values && isset( $post_values['options'][$var] ) ) ? $post_values['options'][$var] : ( ( $record && isset( $record->options[$var] ) ) ? $record->options[$var] : $default ); |
|
| 368 | 368 | } |
| 369 | 369 | |
| 370 | 370 | unset( $var, $default ); |
@@ -410,7 +410,7 @@ discard block |
||
| 410 | 410 | public static function fill_form_options( &$options, $values ) { |
| 411 | 411 | $defaults = self::get_default_opts(); |
| 412 | 412 | foreach ( $defaults as $var => $default ) { |
| 413 | - $options[ $var ] = isset( $values['options'][ $var ] ) ? $values['options'][ $var ] : $default; |
|
| 413 | + $options[$var] = isset( $values['options'][$var] ) ? $values['options'][$var] : $default; |
|
| 414 | 414 | unset( $var, $default ); |
| 415 | 415 | } |
| 416 | 416 | } |
@@ -585,7 +585,7 @@ discard block |
||
| 585 | 585 | public static function insert_opt_html( $args ) { |
| 586 | 586 | $class = isset( $args['class'] ) ? $args['class'] : ''; |
| 587 | 587 | $fields = FrmField::all_field_selection(); |
| 588 | - $field = isset( $fields[ $args['type'] ] ) ? $fields[ $args['type'] ] : array(); |
|
| 588 | + $field = isset( $fields[$args['type']] ) ? $fields[$args['type']] : array(); |
|
| 589 | 589 | |
| 590 | 590 | self::prepare_field_type( $field ); |
| 591 | 591 | |
@@ -741,7 +741,7 @@ discard block |
||
| 741 | 741 | FrmField::update( $field->id, array( 'field_order' => $field->field_order + 2 ) ); |
| 742 | 742 | } |
| 743 | 743 | |
| 744 | - $add_order += 2; |
|
| 744 | + $add_order += 2; |
|
| 745 | 745 | $open = false; |
| 746 | 746 | $reset_fields = true; |
| 747 | 747 | } |
@@ -1148,10 +1148,10 @@ discard block |
||
| 1148 | 1148 | $link .= ' onclick="return confirm(\'' . esc_attr( $link_details['confirm'] ) . '\')"'; |
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | - $label = ( isset( $link_details[ $length ] ) ? $link_details[ $length ] : $link_details['label'] ); |
|
| 1152 | - if ( $length == 'icon' && isset( $link_details[ $length ] ) ) { |
|
| 1151 | + $label = ( isset( $link_details[$length] ) ? $link_details[$length] : $link_details['label'] ); |
|
| 1152 | + if ( $length == 'icon' && isset( $link_details[$length] ) ) { |
|
| 1153 | 1153 | $label = '<span class="' . $label . '" title="' . esc_attr( $link_details['label'] ) . '" aria-hidden="true"></span>'; |
| 1154 | - $link .= ' aria-label="' . esc_attr( $link_details['label'] ) . '"'; |
|
| 1154 | + $link .= ' aria-label="' . esc_attr( $link_details['label'] ) . '"'; |
|
| 1155 | 1155 | } |
| 1156 | 1156 | |
| 1157 | 1157 | $link .= '>' . $label . '</a>'; |
@@ -1296,7 +1296,7 @@ discard block |
||
| 1296 | 1296 | $status = 'publish'; |
| 1297 | 1297 | } |
| 1298 | 1298 | |
| 1299 | - $name = $nice_names[ $status ]; |
|
| 1299 | + $name = $nice_names[$status]; |
|
| 1300 | 1300 | |
| 1301 | 1301 | return $name; |
| 1302 | 1302 | } |
@@ -1360,7 +1360,7 @@ discard block |
||
| 1360 | 1360 | $icon = $icons['']; |
| 1361 | 1361 | if ( count( $categories ) === 1 ) { |
| 1362 | 1362 | $category = reset( $categories ); |
| 1363 | - $icon = isset( $icons[ $category ] ) ? $icons[ $category ] : $icon; |
|
| 1363 | + $icon = isset( $icons[$category] ) ? $icons[$category] : $icon; |
|
| 1364 | 1364 | } elseif ( ! empty( $categories ) ) { |
| 1365 | 1365 | $icons = array_intersect_key( $icons, array_flip( $categories ) ); |
| 1366 | 1366 | $icon = reset( $icons ); |
@@ -1498,7 +1498,7 @@ discard block |
||
| 1498 | 1498 | |
| 1499 | 1499 | foreach ( $item['categories'] as $k => $category ) { |
| 1500 | 1500 | if ( in_array( $category, $plans, true ) ) { |
| 1501 | - unset( $item['categories'][ $k ] ); |
|
| 1501 | + unset( $item['categories'][$k] ); |
|
| 1502 | 1502 | |
| 1503 | 1503 | if ( in_array( $category, array( 'Creator', 'Personal' ), true ) ) { |
| 1504 | 1504 | // Show the current package name. |
@@ -1700,9 +1700,9 @@ discard block |
||
| 1700 | 1700 | } |
| 1701 | 1701 | |
| 1702 | 1702 | foreach ( $shortcodes[0] as $key => $shortcode ) { |
| 1703 | - $options = trim( $shortcodes[3][ $key ] ); |
|
| 1703 | + $options = trim( $shortcodes[3][$key] ); |
|
| 1704 | 1704 | |
| 1705 | - if ( in_array( $shortcodes[1][ $key ], array( 'if ' ), true ) ) { |
|
| 1705 | + if ( in_array( $shortcodes[1][$key], array( 'if ' ), true ) ) { |
|
| 1706 | 1706 | // Skip if shortcodes. |
| 1707 | 1707 | continue; |
| 1708 | 1708 | } |
@@ -1712,7 +1712,7 @@ discard block |
||
| 1712 | 1712 | continue; |
| 1713 | 1713 | } |
| 1714 | 1714 | |
| 1715 | - $new_shortcode = '[' . $shortcodes[2][ $key ]; |
|
| 1715 | + $new_shortcode = '[' . $shortcodes[2][$key]; |
|
| 1716 | 1716 | if ( $options ) { |
| 1717 | 1717 | $new_shortcode .= ' ' . $options; |
| 1718 | 1718 | } |
@@ -126,11 +126,11 @@ |
||
| 126 | 126 | foreach ( $payments as $payment ) { |
| 127 | 127 | list( $amount, $currency ) = FrmTransLiteAppHelper::get_amount_and_currency_from_payment( $payment ); |
| 128 | 128 | |
| 129 | - if ( ! isset( $data[ $currency ] ) ) { |
|
| 130 | - $data[ $currency ] = 0; |
|
| 129 | + if ( ! isset( $data[$currency] ) ) { |
|
| 130 | + $data[$currency] = 0; |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - $data[ $currency ] += floatval( $amount ); |
|
| 133 | + $data[$currency] += floatval( $amount ); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | return $data; |
@@ -236,11 +236,11 @@ discard block |
||
| 236 | 236 | */ |
| 237 | 237 | public static function get_last_sent_date( $type ) { |
| 238 | 238 | $options = self::get_options(); |
| 239 | - if ( empty( $options[ 'last_' . $type ] ) ) { |
|
| 239 | + if ( empty( $options['last_' . $type] ) ) { |
|
| 240 | 240 | return false; |
| 241 | 241 | } |
| 242 | 242 | |
| 243 | - return $options[ 'last_' . $type ]; |
|
| 243 | + return $options['last_' . $type]; |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | /** |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | public static function set_last_sent_date( $type, $value = null ) { |
| 253 | 253 | $options = self::get_options(); |
| 254 | 254 | |
| 255 | - $options[ 'last_' . $type ] = null === $value ? self::get_date_from_today() : ''; |
|
| 255 | + $options['last_' . $type] = null === $value ? self::get_date_from_today() : ''; |
|
| 256 | 256 | self::save_options( $options ); |
| 257 | 257 | } |
| 258 | 258 | |
@@ -377,12 +377,12 @@ discard block |
||
| 377 | 377 | if ( $form_id ) { |
| 378 | 378 | self::get_columns_for_form( $form_id, $columns ); |
| 379 | 379 | } else { |
| 380 | - $columns[ $form_id . '_form_id' ] = __( 'Form', 'formidable' ); |
|
| 381 | - $columns[ $form_id . '_name' ] = __( 'Name', 'formidable' ); |
|
| 382 | - $columns[ $form_id . '_user_id' ] = __( 'Author', 'formidable' ); |
|
| 380 | + $columns[$form_id . '_form_id'] = __( 'Form', 'formidable' ); |
|
| 381 | + $columns[$form_id . '_name'] = __( 'Name', 'formidable' ); |
|
| 382 | + $columns[$form_id . '_user_id'] = __( 'Author', 'formidable' ); |
|
| 383 | 383 | } |
| 384 | 384 | |
| 385 | - $columns[ $form_id . '_created_at' ] = __( 'Created on', 'formidable' ); |
|
| 385 | + $columns[$form_id . '_created_at'] = __( 'Created on', 'formidable' ); |
|
| 386 | 386 | |
| 387 | 387 | return $columns; |
| 388 | 388 | } |
@@ -545,11 +545,11 @@ discard block |
||
| 545 | 545 | */ |
| 546 | 546 | private static function get_dashboard_options( $option_name = null ) { |
| 547 | 547 | $options = get_option( self::$option_meta_name, array() ); |
| 548 | - if ( null !== $option_name && ! isset( $options[ $option_name ] ) ) { |
|
| 548 | + if ( null !== $option_name && ! isset( $options[$option_name] ) ) { |
|
| 549 | 549 | return array(); |
| 550 | 550 | } |
| 551 | 551 | if ( null !== $option_name ) { |
| 552 | - return $options[ $option_name ]; |
|
| 552 | + return $options[$option_name]; |
|
| 553 | 553 | } |
| 554 | 554 | return $options; |
| 555 | 555 | } |
@@ -564,7 +564,7 @@ discard block |
||
| 564 | 564 | */ |
| 565 | 565 | private static function update_dashboard_options( $data, $option_name ) { |
| 566 | 566 | $options = self::get_dashboard_options(); |
| 567 | - $options[ $option_name ] = $data; |
|
| 567 | + $options[$option_name] = $data; |
|
| 568 | 568 | update_option( self::$option_meta_name, $options, 'no' ); |
| 569 | 569 | } |
| 570 | 570 | |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | public function insert_installed_addon( $plugins ) { |
| 45 | - $plugins[ $this->plugin_slug ] = $this; |
|
| 45 | + $plugins[$this->plugin_slug] = $this; |
|
| 46 | 46 | |
| 47 | 47 | return $plugins; |
| 48 | 48 | } |
@@ -50,8 +50,8 @@ discard block |
||
| 50 | 50 | public static function get_addon( $plugin_slug ) { |
| 51 | 51 | $plugins = apply_filters( 'frm_installed_addons', array() ); |
| 52 | 52 | $plugin = false; |
| 53 | - if ( isset( $plugins[ $plugin_slug ] ) ) { |
|
| 54 | - $plugin = $plugins[ $plugin_slug ]; |
|
| 53 | + if ( isset( $plugins[$plugin_slug] ) ) { |
|
| 54 | + $plugin = $plugins[$plugin_slug]; |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | return $plugin; |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | } else { |
| 112 | 112 | $api = new FrmFormApi( $this->license ); |
| 113 | 113 | $plugins = $api->get_api_info(); |
| 114 | - $_data = $plugins[ $item_id ]; |
|
| 114 | + $_data = $plugins[$item_id]; |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | $_data['sections'] = array( |
@@ -340,19 +340,19 @@ discard block |
||
| 340 | 340 | |
| 341 | 341 | if ( $this->is_current_version( $transient ) ) { |
| 342 | 342 | // Make sure it doesn't show there is an update if plugin is up-to-date. |
| 343 | - if ( isset( $transient->response[ $this->plugin_folder ] ) ) { |
|
| 344 | - unset( $transient->response[ $this->plugin_folder ] ); |
|
| 343 | + if ( isset( $transient->response[$this->plugin_folder] ) ) { |
|
| 344 | + unset( $transient->response[$this->plugin_folder] ); |
|
| 345 | 345 | } |
| 346 | - } elseif ( isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) ) { |
|
| 347 | - $this->prepare_update_details( $transient->response[ $this->plugin_folder ] ); |
|
| 346 | + } elseif ( isset( $transient->response ) && isset( $transient->response[$this->plugin_folder] ) ) { |
|
| 347 | + $this->prepare_update_details( $transient->response[$this->plugin_folder] ); |
|
| 348 | 348 | |
| 349 | 349 | // if the transient has expired, clear the update and trigger it again |
| 350 | - if ( $transient->response[ $this->plugin_folder ] === false ) { |
|
| 350 | + if ( $transient->response[$this->plugin_folder] === false ) { |
|
| 351 | 351 | if ( ! $this->has_been_cleared() ) { |
| 352 | 352 | $this->cleared_plugins(); |
| 353 | 353 | $this->manually_queue_update(); |
| 354 | 354 | } |
| 355 | - unset( $transient->response[ $this->plugin_folder ] ); |
|
| 355 | + unset( $transient->response[$this->plugin_folder] ); |
|
| 356 | 356 | } |
| 357 | 357 | } |
| 358 | 358 | |
@@ -440,7 +440,7 @@ discard block |
||
| 440 | 440 | } |
| 441 | 441 | |
| 442 | 442 | private function is_current_version( $transient ) { |
| 443 | - if ( empty( $transient->checked ) || ! isset( $transient->checked[ $this->plugin_folder ] ) ) { |
|
| 443 | + if ( empty( $transient->checked ) || ! isset( $transient->checked[$this->plugin_folder] ) ) { |
|
| 444 | 444 | return false; |
| 445 | 445 | } |
| 446 | 446 | |
@@ -449,7 +449,7 @@ discard block |
||
| 449 | 449 | return true; |
| 450 | 450 | } |
| 451 | 451 | |
| 452 | - return isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) && $transient->checked[ $this->plugin_folder ] === $transient->response[ $this->plugin_folder ]->new_version; |
|
| 452 | + return isset( $transient->response ) && isset( $transient->response[$this->plugin_folder] ) && $transient->checked[$this->plugin_folder] === $transient->response[$this->plugin_folder]->new_version; |
|
| 453 | 453 | } |
| 454 | 454 | |
| 455 | 455 | private function has_been_cleared() { |
@@ -564,8 +564,8 @@ discard block |
||
| 564 | 564 | $response['message'] = $response['status']; |
| 565 | 565 | } else { |
| 566 | 566 | $messages = $this->get_messages(); |
| 567 | - if ( is_string( $response['status'] ) && isset( $messages[ $response['status'] ] ) ) { |
|
| 568 | - $response['message'] = $messages[ $response['status'] ]; |
|
| 567 | + if ( is_string( $response['status'] ) && isset( $messages[$response['status']] ) ) { |
|
| 568 | + $response['message'] = $messages[$response['status']]; |
|
| 569 | 569 | } else { |
| 570 | 570 | $response['message'] = FrmAppHelper::kses( $response['status'], array( 'a' ) ); |
| 571 | 571 | } |
@@ -479,7 +479,8 @@ |
||
| 479 | 479 | return; |
| 480 | 480 | } |
| 481 | 481 | |
| 482 | - if ( empty( $this->license ) || empty( $this->plugin_slug ) || isset( $_POST['license'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
| 482 | + if ( empty( $this->license ) || empty( $this->plugin_slug ) || isset( $_POST['license'] ) ) { |
|
| 483 | +// phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
| 483 | 484 | return; |
| 484 | 485 | } |
| 485 | 486 | |
@@ -147,9 +147,9 @@ discard block |
||
| 147 | 147 | |
| 148 | 148 | $is_setup_intent = 0 === strpos( $intent->id, 'seti_' ); |
| 149 | 149 | if ( $is_setup_intent ) { |
| 150 | - $errors[ 'field' . $cc_field_id ] = $intent->last_setup_error->message; |
|
| 150 | + $errors['field' . $cc_field_id] = $intent->last_setup_error->message; |
|
| 151 | 151 | } else { |
| 152 | - $errors[ 'field' . $cc_field_id ] = $intent->last_payment_error->message; |
|
| 152 | + $errors['field' . $cc_field_id] = $intent->last_payment_error->message; |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | global $frm_vars; |
@@ -177,10 +177,10 @@ discard block |
||
| 177 | 177 | $save_draft = ! empty( $form->options['save_draft'] ); |
| 178 | 178 | |
| 179 | 179 | global $frm_vars; |
| 180 | - $frm_vars['created_entries'][ $form_id ]['errors'] = $errors; |
|
| 180 | + $frm_vars['created_entries'][$form_id]['errors'] = $errors; |
|
| 181 | 181 | |
| 182 | 182 | // Set to true to get FrmProFieldsHelper::get_page_with_error() run. |
| 183 | - $_POST[ 'frm_page_order_' . $form_id ] = true; |
|
| 183 | + $_POST['frm_page_order_' . $form_id] = true; |
|
| 184 | 184 | |
| 185 | 185 | if ( ! $save_draft ) { |
| 186 | 186 | // If draft saving is not on, delete the entry. |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | // If draft saving is on, load the draft entry. |
| 192 | - $frm_vars['created_entries'][ $form_id ]['entry_id'] = $entry_id; |
|
| 192 | + $frm_vars['created_entries'][$form_id]['entry_id'] = $entry_id; |
|
| 193 | 193 | add_action( |
| 194 | 194 | 'frm_filter_final_form', |
| 195 | 195 | /** |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | 'user_id' => get_current_user_id(), |
| 109 | 109 | 'frm_strp_connect_mode' => $mode, |
| 110 | 110 | ); |
| 111 | - $data = self::post_to_connect_server( 'initialize', $additional_body ); |
|
| 111 | + $data = self::post_to_connect_server( 'initialize', $additional_body ); |
|
| 112 | 112 | |
| 113 | 113 | if ( is_string( $data ) ) { |
| 114 | 114 | return $data; |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | * @return object|string |
| 144 | 144 | */ |
| 145 | 145 | private static function post_to_connect_server( $action, $additional_body = array() ) { |
| 146 | - $body = array( |
|
| 146 | + $body = array( |
|
| 147 | 147 | 'frm_strp_connect_action' => $action, |
| 148 | 148 | 'frm_strp_connect_mode' => FrmStrpLiteAppHelper::active_mode(), |
| 149 | 149 | ); |
@@ -18,17 +18,17 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | foreach ( $type as $tb_type ) { |
| 20 | 20 | |
| 21 | - if ( ! isset( $tables[ $tb_type ] ) ) { |
|
| 21 | + if ( ! isset( $tables[$tb_type] ) ) { |
|
| 22 | 22 | do_action( 'frm_xml_import_' . $tb_type, $args ); |
| 23 | 23 | continue; |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - if ( ! isset( $records[ $tb_type ] ) ) { |
|
| 26 | + if ( ! isset( $records[$tb_type] ) ) { |
|
| 27 | 27 | // No records. |
| 28 | 28 | continue; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - $item_ids = $records[ $tb_type ]; |
|
| 31 | + $item_ids = $records[$tb_type]; |
|
| 32 | 32 | |
| 33 | 33 | if ( in_array( $tb_type, array( 'styles', 'actions' ), true ) ) { |
| 34 | 34 | include dirname( __FILE__ ) . '/posts_xml.php'; |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | include FrmProAppHelper::plugin_path() . '/classes/views/xml/' . $tb_type . '_xml.php'; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - unset( $item_ids, $records[ $tb_type ], $tb_type ); |
|
| 41 | + unset( $item_ids, $records[$tb_type], $tb_type ); |
|
| 42 | 42 | }//end foreach |
| 43 | 43 | |
| 44 | 44 | /** |