@@ -40,6 +40,6 @@ |
||
| 40 | 40 | */ |
| 41 | 41 | public function get_video( $type = 'welcome' ) { |
| 42 | 42 | $videos = $this->get_api_info(); |
| 43 | - return $videos[ $type ] ?? array(); |
|
| 43 | + return $videos[$type] ?? array(); |
|
| 44 | 44 | } |
| 45 | 45 | } |
@@ -1334,11 +1334,11 @@ discard block |
||
| 1334 | 1334 | wp_set_script_translations( 's11-floating-links-config', 's11-' ); |
| 1335 | 1335 | } |
| 1336 | 1336 | |
| 1337 | - $upgrade_utm = array( |
|
| 1337 | + $upgrade_utm = array( |
|
| 1338 | 1338 | 'campaign' => 'floating-links', |
| 1339 | 1339 | 'content' => 'floating-links-upgrade', |
| 1340 | 1340 | ); |
| 1341 | - $docs_utm = array( |
|
| 1341 | + $docs_utm = array( |
|
| 1342 | 1342 | 'campaign' => 'floating-links', |
| 1343 | 1343 | 'content' => 'floating-links-docs', |
| 1344 | 1344 | ); |
@@ -1412,15 +1412,15 @@ discard block |
||
| 1412 | 1412 | global $wp_filter; |
| 1413 | 1413 | |
| 1414 | 1414 | foreach ( $actions as $action ) { |
| 1415 | - if ( empty( $wp_filter[ $action ]->callbacks ) ) { |
|
| 1415 | + if ( empty( $wp_filter[$action]->callbacks ) ) { |
|
| 1416 | 1416 | continue; |
| 1417 | 1417 | } |
| 1418 | - foreach ( $wp_filter[ $action ]->callbacks as $priority => $callbacks ) { |
|
| 1418 | + foreach ( $wp_filter[$action]->callbacks as $priority => $callbacks ) { |
|
| 1419 | 1419 | foreach ( $callbacks as $callback_name => $callback ) { |
| 1420 | 1420 | if ( self::is_our_callback_string( $callback_name ) || self::is_our_callback_array( $callback ) ) { |
| 1421 | 1421 | continue; |
| 1422 | 1422 | } |
| 1423 | - unset( $wp_filter[ $action ]->callbacks[ $priority ][ $callback_name ] ); |
|
| 1423 | + unset( $wp_filter[$action]->callbacks[$priority][$callback_name] ); |
|
| 1424 | 1424 | } |
| 1425 | 1425 | } |
| 1426 | 1426 | } |
@@ -1458,8 +1458,8 @@ discard block |
||
| 1458 | 1458 | $current_sort = $previous_meta; |
| 1459 | 1459 | $form_id = $is_entry_list ? FrmAppHelper::simple_get( 'form', 'absint' ) : 0; |
| 1460 | 1460 | |
| 1461 | - if ( is_array( $current_sort ) && $form_id && is_int( $form_id ) && isset( $current_sort[ $form_id ] ) ) { |
|
| 1462 | - $current_sort = $current_sort[ $form_id ]; |
|
| 1461 | + if ( is_array( $current_sort ) && $form_id && is_int( $form_id ) && isset( $current_sort[$form_id] ) ) { |
|
| 1462 | + $current_sort = $current_sort[$form_id]; |
|
| 1463 | 1463 | } |
| 1464 | 1464 | |
| 1465 | 1465 | if ( $new_sort !== $current_sort ) { |
@@ -1468,7 +1468,7 @@ discard block |
||
| 1468 | 1468 | if ( $is_entry_list && $form_id && is_int( $form_id ) ) { |
| 1469 | 1469 | // Index meta by form ID. |
| 1470 | 1470 | $temp_meta = is_array( $previous_meta ) ? $previous_meta : array(); |
| 1471 | - $temp_meta[ $form_id ] = $new_meta; |
|
| 1471 | + $temp_meta[$form_id] = $new_meta; |
|
| 1472 | 1472 | $new_meta = $temp_meta; |
| 1473 | 1473 | unset( $temp_meta ); |
| 1474 | 1474 | } |
@@ -1496,8 +1496,8 @@ discard block |
||
| 1496 | 1496 | $preferred_list_sort = get_user_meta( $user_id, $meta_key, true ); |
| 1497 | 1497 | $form_id = FrmAppHelper::simple_get( 'form', 'absint' ); |
| 1498 | 1498 | |
| 1499 | - if ( is_array( $preferred_list_sort ) && $form_id && is_int( $form_id ) && isset( $preferred_list_sort[ $form_id ] ) ) { |
|
| 1500 | - $preferred_list_sort = $preferred_list_sort[ $form_id ]; |
|
| 1499 | + if ( is_array( $preferred_list_sort ) && $form_id && is_int( $form_id ) && isset( $preferred_list_sort[$form_id] ) ) { |
|
| 1500 | + $preferred_list_sort = $preferred_list_sort[$form_id]; |
|
| 1501 | 1501 | } |
| 1502 | 1502 | |
| 1503 | 1503 | if ( is_array( $preferred_list_sort ) && ! empty( $preferred_list_sort['orderby'] ) ) { |
@@ -14,7 +14,10 @@ |
||
| 14 | 14 | ); |
| 15 | 15 | ?> |
| 16 | 16 | Please <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( $utm, 'account/downloads/' ) ); ?>">renew now</a> to get the latest version. |
| 17 | - <?php else : ?> |
|
| 18 | - Please <a href="<?php echo esc_url( admin_url( 'plugins.php?s=formidable%20forms%20pro' ) ); ?>">update now</a>. |
|
| 17 | + <?php else { |
|
| 18 | + : ?> |
|
| 19 | + Please <a href="<?php echo esc_url( admin_url( 'plugins.php?s=formidable%20forms%20pro' ) ); |
|
| 20 | +} |
|
| 21 | +?>">update now</a>. |
|
| 19 | 22 | <?php endif; ?> |
| 20 | 23 | </div> |
@@ -28,8 +28,11 @@ |
||
| 28 | 28 | <div class="<?php echo esc_attr( $classes ); ?>"> |
| 29 | 29 | <?php if ( $is_active ) : ?> |
| 30 | 30 | <?php echo esc_html( $details['label'] ); ?> |
| 31 | - <?php else : ?> |
|
| 32 | - <a href="<?php echo esc_url( $details['url'] ); ?>"> |
|
| 31 | + <?php else { |
|
| 32 | + : ?> |
|
| 33 | + <a href="<?php echo esc_url( $details['url'] ); |
|
| 34 | +} |
|
| 35 | +?>"> |
|
| 33 | 36 | <?php echo esc_html( $details['label'] ); ?> |
| 34 | 37 | </a> |
| 35 | 38 | <?php endif; ?> |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $active_step = 0; |
| 119 | 119 | |
| 120 | 120 | foreach ( $step_keys as $index => $step_key ) { |
| 121 | - $completed_step = isset( self::$checklist['completed_steps'][ $step_key ] ); |
|
| 121 | + $completed_step = isset( self::$checklist['completed_steps'][$step_key] ); |
|
| 122 | 122 | |
| 123 | 123 | if ( false === $completed_step ) { |
| 124 | 124 | switch ( $step_key ) { |
@@ -132,15 +132,15 @@ discard block |
||
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | if ( $completed_step ) { |
| 135 | - self::$checklist['completed_steps'][ $step_key ] = true; |
|
| 135 | + self::$checklist['completed_steps'][$step_key] = true; |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | // Count completed steps from start until gap found. |
| 139 | 139 | if ( $completed_step && $index === $active_step ) { |
| 140 | - $active_step++; |
|
| 140 | + $active_step ++; |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - self::$steps['steps'][ $index ]['completed'] = $completed_step; |
|
| 143 | + self::$steps['steps'][$index]['completed'] = $completed_step; |
|
| 144 | 144 | }//end foreach |
| 145 | 145 | |
| 146 | 146 | self::$checklist['active_step'] = $active_step; |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | self::$checklist['done'] = true; |
| 150 | 150 | self::$checklist['active_step_key'] = 'completed'; |
| 151 | 151 | } else { |
| 152 | - self::$checklist['active_step_key'] = $step_keys[ $active_step ]; |
|
| 152 | + self::$checklist['active_step_key'] = $step_keys[$active_step]; |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | self::save_checklist(); |
@@ -199,8 +199,8 @@ discard block |
||
| 199 | 199 | */ |
| 200 | 200 | private static function fill_step_completed_data( $steps, $steps_keys ) { |
| 201 | 201 | return array_map( |
| 202 | - function ( $step, $step_key ) { |
|
| 203 | - $step['completed'] = isset( self::$checklist['completed_steps'][ $step_key ] ); |
|
| 202 | + function( $step, $step_key ) { |
|
| 203 | + $step['completed'] = isset( self::$checklist['completed_steps'][$step_key] ); |
|
| 204 | 204 | return $step; |
| 205 | 205 | }, |
| 206 | 206 | $steps, |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | 'target' => '#frm_style_sidebar .frm-style-card > div', |
| 235 | 235 | 'left-position' => 'end', |
| 236 | 236 | 'offset' => array( |
| 237 | - 'top' => -22, |
|
| 237 | + 'top' => - 22, |
|
| 238 | 238 | 'left' => 16, |
| 239 | 239 | ), |
| 240 | 240 | ); |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | break; |
| 251 | 251 | }//end switch |
| 252 | 252 | |
| 253 | - return array_merge( self::$steps['steps'][ self::$checklist['active_step'] ], $spotlight_data ); |
|
| 253 | + return array_merge( self::$steps['steps'][self::$checklist['active_step']], $spotlight_data ); |
|
| 254 | 254 | } |
| 255 | 255 | |
| 256 | 256 | /** |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | } |
| 378 | 378 | |
| 379 | 379 | self::$checklist = self::get_checklist(); |
| 380 | - self::$checklist['completed_steps'][ $step_key ] = true; |
|
| 380 | + self::$checklist['completed_steps'][$step_key] = true; |
|
| 381 | 381 | self::save_checklist(); |
| 382 | 382 | |
| 383 | 383 | wp_send_json_success(); |
@@ -591,7 +591,7 @@ discard block |
||
| 591 | 591 | $steps = self::get_steps(); |
| 592 | 592 | |
| 593 | 593 | foreach ( $steps as $key => $step ) { |
| 594 | - $usage_data[ 'completed_step_' . $key ] = empty( $option['completed_steps'][ $key ] ) ? 0 : 1; |
|
| 594 | + $usage_data['completed_step_' . $key] = empty( $option['completed_steps'][$key] ) ? 0 : 1; |
|
| 595 | 595 | } |
| 596 | 596 | |
| 597 | 597 | $usage_data['done'] = empty( $option['done'] ) ? 0 : 1; |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $sub_field_class = "frm_form_field form-field frm_form_subfield-{$name} {$sub_field['wrapper_classes']}"; |
| 42 | 42 | $sub_field_desc = FrmField::get_option( $field, $name . '_desc' ); |
| 43 | 43 | |
| 44 | - if ( isset( $errors[ 'field' . $field_id . '-' . $name ] ) ) { |
|
| 44 | + if ( isset( $errors['field' . $field_id . '-' . $name] ) ) { |
|
| 45 | 45 | $sub_field_class .= ' frm_blank_field'; |
| 46 | 46 | } |
| 47 | 47 | ?> |
@@ -70,9 +70,9 @@ discard block |
||
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | // Don't show individual field errors when there is a combo field error. |
| 73 | - if ( ! empty( $errors ) && isset( $errors[ 'field' . $field_id . '-' . $name ] ) && ! isset( $errors[ 'field' . $field_id ] ) ) { |
|
| 73 | + if ( ! empty( $errors ) && isset( $errors['field' . $field_id . '-' . $name] ) && ! isset( $errors['field' . $field_id] ) ) { |
|
| 74 | 74 | ?> |
| 75 | - <div class="frm_error" role="alert"><?php echo esc_html( $errors[ 'field' . $field_id . '-' . $name ] ); ?></div> |
|
| 75 | + <div class="frm_error" role="alert"><?php echo esc_html( $errors['field' . $field_id . '-' . $name] ); ?></div> |
|
| 76 | 76 | <?php } ?> |
| 77 | 77 | </div> |
| 78 | 78 | <?php |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | global $wpdb; |
| 60 | 60 | |
| 61 | - $values = array( |
|
| 61 | + $values = array( |
|
| 62 | 62 | 'item_id' => $entry_id, |
| 63 | 63 | 'field_id' => $field_id, |
| 64 | 64 | ); |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | } |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | - $values_indexed_by_field_id[ $field_id ] = $meta_value; |
|
| 141 | + $values_indexed_by_field_id[$field_id] = $meta_value; |
|
| 142 | 142 | |
| 143 | 143 | self::get_value_to_save( compact( 'field', 'field_id', 'entry_id' ), $meta_value ); |
| 144 | 144 | |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | |
| 147 | 147 | if ( ( is_array( $meta_value ) && empty( $meta_value ) ) || ( ! is_array( $meta_value ) && trim( $meta_value ) === '' ) ) { |
| 148 | 148 | // Remove blank fields. |
| 149 | - unset( $values_indexed_by_field_id[ $field_id ] ); |
|
| 149 | + unset( $values_indexed_by_field_id[$field_id] ); |
|
| 150 | 150 | } else { |
| 151 | 151 | // if value exists, then update it |
| 152 | 152 | self::update_entry_meta( $entry_id, $field_id, '', $meta_value ); |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | */ |
| 225 | 225 | public static function get_meta_value( $entry, $field_id ) { |
| 226 | 226 | if ( isset( $entry->metas ) ) { |
| 227 | - return $entry->metas[ $field_id ] ?? false; |
|
| 227 | + return $entry->metas[$field_id] ?? false; |
|
| 228 | 228 | } |
| 229 | 229 | return self::get_entry_meta_by_field( $entry->id, $field_id ); |
| 230 | 230 | } |
@@ -246,8 +246,8 @@ discard block |
||
| 246 | 246 | $cached = FrmDb::check_cache( $entry_id, 'frm_entry' ); |
| 247 | 247 | } |
| 248 | 248 | |
| 249 | - if ( $cached && isset( $cached->metas ) && isset( $cached->metas[ $field_id ] ) ) { |
|
| 250 | - $result = $cached->metas[ $field_id ]; |
|
| 249 | + if ( $cached && isset( $cached->metas ) && isset( $cached->metas[$field_id] ) ) { |
|
| 250 | + $result = $cached->metas[$field_id]; |
|
| 251 | 251 | |
| 252 | 252 | return wp_unslash( $result ); |
| 253 | 253 | } |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | 'stripslashes' => true, |
| 281 | 281 | 'is_draft' => false, |
| 282 | 282 | ); |
| 283 | - $args = wp_parse_args( $args, $defaults ); |
|
| 283 | + $args = wp_parse_args( $args, $defaults ); |
|
| 284 | 284 | |
| 285 | 285 | $query = array(); |
| 286 | 286 | self::meta_field_query( $field_id, $order, $limit, $args, $query ); |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | |
| 296 | 296 | foreach ( $values as $k => $v ) { |
| 297 | 297 | FrmAppHelper::unserialize_or_decode( $v ); |
| 298 | - $values[ $k ] = $v; |
|
| 298 | + $values[$k] = $v; |
|
| 299 | 299 | unset( $k, $v ); |
| 300 | 300 | } |
| 301 | 301 | |
@@ -362,7 +362,7 @@ discard block |
||
| 362 | 362 | |
| 363 | 363 | foreach ( $results as $k => $result ) { |
| 364 | 364 | FrmAppHelper::unserialize_or_decode( $result->meta_value ); |
| 365 | - $results[ $k ]->meta_value = wp_unslash( $result->meta_value ); |
|
| 365 | + $results[$k]->meta_value = wp_unslash( $result->meta_value ); |
|
| 366 | 366 | unset( $k, $result ); |
| 367 | 367 | } |
| 368 | 368 | |
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | 'user_id' => '', |
| 376 | 376 | 'group_by' => '', |
| 377 | 377 | ); |
| 378 | - $args = wp_parse_args( $args, $defaults ); |
|
| 378 | + $args = wp_parse_args( $args, $defaults ); |
|
| 379 | 379 | |
| 380 | 380 | $query = array(); |
| 381 | 381 | self::get_ids_query( $where, $order_by, $limit, $unique, $args, $query ); |
@@ -478,7 +478,7 @@ discard block |
||
| 478 | 478 | } elseif ( false !== strpos( $args['is_draft'], ',' ) ) { |
| 479 | 479 | $is_draft = array_reduce( |
| 480 | 480 | explode( ',', $args['is_draft'] ), |
| 481 | - function ( $total, $current ) { |
|
| 481 | + function( $total, $current ) { |
|
| 482 | 482 | if ( is_numeric( $current ) ) { |
| 483 | 483 | $total[] = absint( $current ); |
| 484 | 484 | } |
@@ -133,19 +133,19 @@ discard block |
||
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | foreach ( $action_controls as $action ) { |
| 136 | - if ( isset( $groups[ $action->id_base ] ) || in_array( $action->id_base, $grouped ) ) { |
|
| 136 | + if ( isset( $groups[$action->id_base] ) || in_array( $action->id_base, $grouped ) ) { |
|
| 137 | 137 | continue; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | $this_group = $action->action_options['group']; |
| 141 | - if ( ! isset( $groups[ $this_group ] ) ) { |
|
| 141 | + if ( ! isset( $groups[$this_group] ) ) { |
|
| 142 | 142 | $this_group = 'misc'; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - if ( ! isset( $groups[ $this_group ]['actions'] ) ) { |
|
| 146 | - $groups[ $this_group ]['actions'] = array(); |
|
| 145 | + if ( ! isset( $groups[$this_group]['actions'] ) ) { |
|
| 146 | + $groups[$this_group]['actions'] = array(); |
|
| 147 | 147 | } |
| 148 | - $groups[ $this_group ]['actions'][] = $action->id_base; |
|
| 148 | + $groups[$this_group]['actions'][] = $action->id_base; |
|
| 149 | 149 | |
| 150 | 150 | unset( $action ); |
| 151 | 151 | } |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | return $a; |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | - $actions[ $a->id_base ] = $a; |
|
| 322 | + $actions[$a->id_base] = $a; |
|
| 323 | 323 | } |
| 324 | 324 | |
| 325 | 325 | return $actions; |
@@ -358,18 +358,18 @@ discard block |
||
| 358 | 358 | $action_map = array(); |
| 359 | 359 | |
| 360 | 360 | foreach ( $action_controls as $key => $control ) { |
| 361 | - $action_map[ $control->id_base ] = $key; |
|
| 361 | + $action_map[$control->id_base] = $key; |
|
| 362 | 362 | } |
| 363 | 363 | |
| 364 | 364 | self::maybe_show_limit_warning( $form->id, $form_actions ); |
| 365 | 365 | |
| 366 | 366 | foreach ( $form_actions as $action ) { |
| 367 | - if ( ! isset( $action_map[ $action->post_excerpt ] ) ) { |
|
| 367 | + if ( ! isset( $action_map[$action->post_excerpt] ) ) { |
|
| 368 | 368 | // don't try and show settings if action no longer exists |
| 369 | 369 | continue; |
| 370 | 370 | } |
| 371 | 371 | |
| 372 | - self::action_control( $action, $form, $action->ID, $action_controls[ $action_map[ $action->post_excerpt ] ], $values ); |
|
| 372 | + self::action_control( $action, $form, $action->ID, $action_controls[$action_map[$action->post_excerpt]], $values ); |
|
| 373 | 373 | } |
| 374 | 374 | } |
| 375 | 375 | |
@@ -681,8 +681,8 @@ discard block |
||
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | // Store actions so they can be triggered with the correct priority. |
| 684 | - $stored_actions[ $action->ID ] = $action; |
|
| 685 | - $action_priority[ $action->ID ] = $link_settings[ $action->post_excerpt ]->action_options['priority']; |
|
| 684 | + $stored_actions[$action->ID] = $action; |
|
| 685 | + $action_priority[$action->ID] = $link_settings[$action->post_excerpt]->action_options['priority']; |
|
| 686 | 686 | |
| 687 | 687 | unset( $action ); |
| 688 | 688 | }//end foreach |
@@ -694,7 +694,7 @@ discard block |
||
| 694 | 694 | new FrmNotification(); |
| 695 | 695 | |
| 696 | 696 | foreach ( $action_priority as $action_id => $priority ) { |
| 697 | - $action = $stored_actions[ $action_id ]; |
|
| 697 | + $action = $stored_actions[$action_id]; |
|
| 698 | 698 | |
| 699 | 699 | /** |
| 700 | 700 | * Allows custom form action trigger. |
@@ -791,7 +791,7 @@ discard block |
||
| 791 | 791 | * @return void |
| 792 | 792 | */ |
| 793 | 793 | public function register( $action_class ) { |
| 794 | - $this->actions[ $action_class ] = new $action_class(); |
|
| 794 | + $this->actions[$action_class] = new $action_class(); |
|
| 795 | 795 | } |
| 796 | 796 | |
| 797 | 797 | /** |
@@ -800,8 +800,8 @@ discard block |
||
| 800 | 800 | * @return void |
| 801 | 801 | */ |
| 802 | 802 | public function unregister( $action_class ) { |
| 803 | - if ( isset( $this->actions[ $action_class ] ) ) { |
|
| 804 | - unset( $this->actions[ $action_class ] ); |
|
| 803 | + if ( isset( $this->actions[$action_class] ) ) { |
|
| 804 | + unset( $this->actions[$action_class] ); |
|
| 805 | 805 | } |
| 806 | 806 | } |
| 807 | 807 | |
@@ -810,8 +810,8 @@ discard block |
||
| 810 | 810 | |
| 811 | 811 | foreach ( $keys as $key ) { |
| 812 | 812 | // don't register new action if old action with the same id is already registered |
| 813 | - if ( ! isset( $this->actions[ $key ] ) ) { |
|
| 814 | - $this->actions[ $key ]->_register(); |
|
| 813 | + if ( ! isset( $this->actions[$key] ) ) { |
|
| 814 | + $this->actions[$key]->_register(); |
|
| 815 | 815 | } |
| 816 | 816 | } |
| 817 | 817 | } |
@@ -593,7 +593,8 @@ |
||
| 593 | 593 | * @return void |
| 594 | 594 | */ |
| 595 | 595 | private function is_license_revoked() { |
| 596 | - if ( empty( $this->license ) || empty( $this->plugin_slug ) || isset( $_POST['license'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
| 596 | + if ( empty( $this->license ) || empty( $this->plugin_slug ) || isset( $_POST['license'] ) ) { |
|
| 597 | +// phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
| 597 | 598 | return; |
| 598 | 599 | } |
| 599 | 600 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | * @return array |
| 140 | 140 | */ |
| 141 | 141 | public function insert_installed_addon( $plugins ) { |
| 142 | - $plugins[ $this->plugin_slug ] = $this; |
|
| 142 | + $plugins[$this->plugin_slug] = $this; |
|
| 143 | 143 | |
| 144 | 144 | return $plugins; |
| 145 | 145 | } |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | public static function get_addon( $plugin_slug ) { |
| 153 | 153 | $plugins = apply_filters( 'frm_installed_addons', array() ); |
| 154 | 154 | |
| 155 | - return $plugins[ $plugin_slug ] ?? false; |
|
| 155 | + return $plugins[$plugin_slug] ?? false; |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | /** |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | } else { |
| 215 | 215 | $api = new FrmFormApi( $this->license ); |
| 216 | 216 | $plugins = $api->get_api_info(); |
| 217 | - $_data = $plugins[ $item_id ]; |
|
| 217 | + $_data = $plugins[$item_id]; |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | $_data['sections'] = array( |
@@ -515,19 +515,19 @@ discard block |
||
| 515 | 515 | |
| 516 | 516 | if ( $this->is_current_version( $transient ) ) { |
| 517 | 517 | // Make sure it doesn't show there is an update if plugin is up-to-date. |
| 518 | - if ( isset( $transient->response[ $this->plugin_folder ] ) ) { |
|
| 519 | - unset( $transient->response[ $this->plugin_folder ] ); |
|
| 518 | + if ( isset( $transient->response[$this->plugin_folder] ) ) { |
|
| 519 | + unset( $transient->response[$this->plugin_folder] ); |
|
| 520 | 520 | } |
| 521 | - } elseif ( isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) ) { |
|
| 522 | - $this->prepare_update_details( $transient->response[ $this->plugin_folder ] ); |
|
| 521 | + } elseif ( isset( $transient->response ) && isset( $transient->response[$this->plugin_folder] ) ) { |
|
| 522 | + $this->prepare_update_details( $transient->response[$this->plugin_folder] ); |
|
| 523 | 523 | |
| 524 | 524 | // if the transient has expired, clear the update and trigger it again |
| 525 | - if ( $transient->response[ $this->plugin_folder ] === false ) { |
|
| 525 | + if ( $transient->response[$this->plugin_folder] === false ) { |
|
| 526 | 526 | if ( ! $this->has_been_cleared() ) { |
| 527 | 527 | $this->cleared_plugins(); |
| 528 | 528 | $this->manually_queue_update(); |
| 529 | 529 | } |
| 530 | - unset( $transient->response[ $this->plugin_folder ] ); |
|
| 530 | + unset( $transient->response[$this->plugin_folder] ); |
|
| 531 | 531 | } |
| 532 | 532 | } |
| 533 | 533 | |
@@ -640,7 +640,7 @@ discard block |
||
| 640 | 640 | * @return bool |
| 641 | 641 | */ |
| 642 | 642 | private function is_current_version( $transient ) { |
| 643 | - if ( empty( $transient->checked ) || ! isset( $transient->checked[ $this->plugin_folder ] ) ) { |
|
| 643 | + if ( empty( $transient->checked ) || ! isset( $transient->checked[$this->plugin_folder] ) ) { |
|
| 644 | 644 | return false; |
| 645 | 645 | } |
| 646 | 646 | |
@@ -650,7 +650,7 @@ discard block |
||
| 650 | 650 | return true; |
| 651 | 651 | } |
| 652 | 652 | |
| 653 | - return isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) && $transient->checked[ $this->plugin_folder ] === $transient->response[ $this->plugin_folder ]->new_version; |
|
| 653 | + return isset( $transient->response ) && isset( $transient->response[$this->plugin_folder] ) && $transient->checked[$this->plugin_folder] === $transient->response[$this->plugin_folder]->new_version; |
|
| 654 | 654 | } |
| 655 | 655 | |
| 656 | 656 | /** |
@@ -818,8 +818,8 @@ discard block |
||
| 818 | 818 | } else { |
| 819 | 819 | $messages = $this->get_messages(); |
| 820 | 820 | |
| 821 | - if ( is_string( $response['status'] ) && isset( $messages[ $response['status'] ] ) ) { |
|
| 822 | - $response['message'] = $messages[ $response['status'] ]; |
|
| 821 | + if ( is_string( $response['status'] ) && isset( $messages[$response['status']] ) ) { |
|
| 822 | + $response['message'] = $messages[$response['status']]; |
|
| 823 | 823 | } else { |
| 824 | 824 | $response['message'] = FrmAppHelper::kses( $response['status'], array( 'a' ) ); |
| 825 | 825 | } |
@@ -1002,7 +1002,7 @@ discard block |
||
| 1002 | 1002 | 'user-agent' => $this->plugin_slug . '/' . $this->version . '; ' . get_bloginfo( 'url' ), |
| 1003 | 1003 | ); |
| 1004 | 1004 | |
| 1005 | - $resp = wp_remote_post( |
|
| 1005 | + $resp = wp_remote_post( |
|
| 1006 | 1006 | $this->store_url . '?l=' . urlencode( base64_encode( $this->license ) ), |
| 1007 | 1007 | $arg_array |
| 1008 | 1008 | ); |