@@ -14,7 +14,10 @@ |
||
| 14 | 14 | ); |
| 15 | 15 | ?> |
| 16 | 16 | Please <a href="<?php echo 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> |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | '<span class="frm-upgrade-submenu">' . esc_html( $cta_text ) . '</span>', |
| 117 | 117 | 'frm_view_forms', |
| 118 | 118 | 'formidable-pro-upgrade', |
| 119 | - function () { |
|
| 119 | + function() { |
|
| 120 | 120 | // This function doesn't need to do anything. |
| 121 | 121 | // The redirect is handled earlier to avoid issues with the headers being sent. |
| 122 | 122 | } |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | unset( $addons['error'] ); |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - $pro = array( |
|
| 150 | + $pro = array( |
|
| 151 | 151 | 'pro' => array( |
| 152 | 152 | 'title' => 'Formidable Forms Pro', |
| 153 | 153 | 'slug' => 'formidable-pro', |
@@ -189,9 +189,9 @@ discard block |
||
| 189 | 189 | |
| 190 | 190 | // Extract the elements to move |
| 191 | 191 | foreach ( $plans as $plan ) { |
| 192 | - if ( isset( self::$categories[ $plan ] ) ) { |
|
| 193 | - $bottom_categories[ $plan ] = self::$categories[ $plan ]; |
|
| 194 | - unset( self::$categories[ $plan ] ); |
|
| 192 | + if ( isset( self::$categories[$plan] ) ) { |
|
| 193 | + $bottom_categories[$plan] = self::$categories[$plan]; |
|
| 194 | + unset( self::$categories[$plan] ); |
|
| 195 | 195 | } |
| 196 | 196 | } |
| 197 | 197 | |
@@ -245,14 +245,12 @@ discard block |
||
| 245 | 245 | // Add the slug to the new array. |
| 246 | 246 | $addon['category-slugs'][] = $category_slug; |
| 247 | 247 | |
| 248 | - if ( ! isset( self::$categories[ $category_slug ] ) ) { |
|
| 249 | - self::$categories[ $category_slug ] = array( |
|
| 248 | + if ( ! isset( self::$categories[$category_slug] ) ) { |
|
| 249 | + self::$categories[$category_slug] = array( |
|
| 250 | 250 | 'name' => $category, |
| 251 | 251 | 'count' => 0, |
| 252 | 252 | ); |
| 253 | - } |
|
| 254 | - |
|
| 255 | - ++self::$categories[ $category_slug ]['count']; |
|
| 253 | + } ++self::$categories[$category_slug]['count']; |
|
| 256 | 254 | } |
| 257 | 255 | } |
| 258 | 256 | |
@@ -284,7 +282,7 @@ discard block |
||
| 284 | 282 | } else { |
| 285 | 283 | foreach ( $addons as $k => $addon ) { |
| 286 | 284 | if ( empty( $addon['excerpt'] ) && $k !== 'error' ) { |
| 287 | - unset( $addons[ $k ] ); |
|
| 285 | + unset( $addons[$k] ); |
|
| 288 | 286 | } |
| 289 | 287 | } |
| 290 | 288 | } |
@@ -398,7 +396,7 @@ discard block |
||
| 398 | 396 | |
| 399 | 397 | foreach ( $list as $k => $info ) { |
| 400 | 398 | $info['slug'] = $k; |
| 401 | - $list[ $k ] = array_merge( $defaults, $info ); |
|
| 399 | + $list[$k] = array_merge( $defaults, $info ); |
|
| 402 | 400 | } |
| 403 | 401 | return $list; |
| 404 | 402 | } |
@@ -549,17 +547,17 @@ discard block |
||
| 549 | 547 | continue; |
| 550 | 548 | } |
| 551 | 549 | |
| 552 | - $wp_plugin = $wp_plugins[ $folder ] ?? array(); |
|
| 550 | + $wp_plugin = $wp_plugins[$folder] ?? array(); |
|
| 553 | 551 | $wp_version = $wp_plugin['Version'] ?? '1.0'; |
| 554 | 552 | $plugin->slug = explode( '/', $folder )[0]; |
| 555 | 553 | |
| 556 | 554 | if ( version_compare( $wp_version, $plugin->new_version, '<' ) ) { |
| 557 | - $transient->response[ $folder ] = $plugin; |
|
| 555 | + $transient->response[$folder] = $plugin; |
|
| 558 | 556 | } else { |
| 559 | - $transient->no_update[ $folder ] = $plugin; |
|
| 557 | + $transient->no_update[$folder] = $plugin; |
|
| 560 | 558 | } |
| 561 | 559 | |
| 562 | - $transient->checked[ $folder ] = $wp_version; |
|
| 560 | + $transient->checked[$folder] = $wp_version; |
|
| 563 | 561 | |
| 564 | 562 | }//end foreach |
| 565 | 563 | |
@@ -592,7 +590,7 @@ discard block |
||
| 592 | 590 | */ |
| 593 | 591 | protected static function is_installed( $plugin ) { |
| 594 | 592 | $all_plugins = self::get_plugins(); |
| 595 | - return isset( $all_plugins[ $plugin ] ); |
|
| 593 | + return isset( $all_plugins[$plugin] ); |
|
| 596 | 594 | } |
| 597 | 595 | |
| 598 | 596 | /** |
@@ -631,13 +629,13 @@ discard block |
||
| 631 | 629 | } |
| 632 | 630 | |
| 633 | 631 | $download_id = $plugin['id'] ?? 0; |
| 634 | - if ( ! empty( $download_id ) && ! isset( $version_info[ $download_id ]['package'] ) ) { |
|
| 632 | + if ( ! empty( $download_id ) && ! isset( $version_info[$download_id]['package'] ) ) { |
|
| 635 | 633 | // if this addon is using its own license, get the update url |
| 636 | 634 | $addon_info = $api->get_api_info(); |
| 637 | 635 | |
| 638 | - $version_info[ $download_id ] = $addon_info[ $download_id ]; |
|
| 636 | + $version_info[$download_id] = $addon_info[$download_id]; |
|
| 639 | 637 | if ( isset( $addon_info['error'] ) ) { |
| 640 | - $version_info[ $download_id ]['error'] = array( |
|
| 638 | + $version_info[$download_id]['error'] = array( |
|
| 641 | 639 | 'message' => $addon_info['error']['message'], |
| 642 | 640 | 'code' => $addon_info['error']['code'], |
| 643 | 641 | ); |
@@ -736,8 +734,8 @@ discard block |
||
| 736 | 734 | return $addon; |
| 737 | 735 | } |
| 738 | 736 | } |
| 739 | - } elseif ( isset( $addons[ $download_id ] ) ) { |
|
| 740 | - $plugin = $addons[ $download_id ]; |
|
| 737 | + } elseif ( isset( $addons[$download_id] ) ) { |
|
| 738 | + $plugin = $addons[$download_id]; |
|
| 741 | 739 | } |
| 742 | 740 | |
| 743 | 741 | return $plugin; |
@@ -803,7 +801,7 @@ discard block |
||
| 803 | 801 | self::set_addon_status( $addon ); |
| 804 | 802 | self::set_categories( $addon ); |
| 805 | 803 | |
| 806 | - $addons[ $id ] = $addon; |
|
| 804 | + $addons[$id] = $addon; |
|
| 807 | 805 | }//end foreach |
| 808 | 806 | } |
| 809 | 807 | |
@@ -838,7 +836,7 @@ discard block |
||
| 838 | 836 | if ( strpos( $link, 'http' ) !== 0 ) { |
| 839 | 837 | $link = $site_url . $link; |
| 840 | 838 | } |
| 841 | - $link = FrmAppHelper::make_affiliate_url( $link ); |
|
| 839 | + $link = FrmAppHelper::make_affiliate_url( $link ); |
|
| 842 | 840 | |
| 843 | 841 | $utm = array( |
| 844 | 842 | 'campaign' => 'addons', |
@@ -1061,7 +1059,7 @@ discard block |
||
| 1061 | 1059 | */ |
| 1062 | 1060 | public static function ajax_activate_addon() { |
| 1063 | 1061 | self::process_addon_action( |
| 1064 | - function ( $plugin ) { |
|
| 1062 | + function( $plugin ) { |
|
| 1065 | 1063 | return self::handle_addon_action( $plugin, 'activate' ); |
| 1066 | 1064 | }, |
| 1067 | 1065 | array( 'FrmAddonsController', 'get_addon_activation_response' ) |
@@ -1086,7 +1084,7 @@ discard block |
||
| 1086 | 1084 | */ |
| 1087 | 1085 | public static function ajax_deactivate_addon() { |
| 1088 | 1086 | self::process_addon_action( |
| 1089 | - function ( $plugin ) { |
|
| 1087 | + function( $plugin ) { |
|
| 1090 | 1088 | return self::handle_addon_action( $plugin, 'deactivate' ); |
| 1091 | 1089 | } |
| 1092 | 1090 | ); |
@@ -1101,7 +1099,7 @@ discard block |
||
| 1101 | 1099 | */ |
| 1102 | 1100 | public static function ajax_uninstall_addon() { |
| 1103 | 1101 | self::process_addon_action( |
| 1104 | - function ( $plugin ) { |
|
| 1102 | + function( $plugin ) { |
|
| 1105 | 1103 | return self::handle_addon_action( $plugin, 'uninstall' ); |
| 1106 | 1104 | } |
| 1107 | 1105 | ); |
@@ -1499,7 +1497,7 @@ discard block |
||
| 1499 | 1497 | $addons = $api->get_api_info(); |
| 1500 | 1498 | |
| 1501 | 1499 | if ( is_array( $addons ) && array_key_exists( $addon_id, $addons ) ) { |
| 1502 | - $dates = $addons[ $addon_id ]; |
|
| 1500 | + $dates = $addons[$addon_id]; |
|
| 1503 | 1501 | $requires = FrmFormsHelper::get_plan_required( $dates ); |
| 1504 | 1502 | } |
| 1505 | 1503 | |