PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
seedprod-coming-soon-pro-5
<?php /************************************************************ * * ManageWP Premium Plugin Integration * *************************************************************/ // mwp_premium_update_notification filter // // Hook to this filter to provide the new version of your plugin if available // add_filter('mwp_premium_update_notification', 'seed_cspv5_mwp_update_notification'); if( !function_exists('seed_cspv5_mwp_update_notification') ) { function seed_cspv5_mwp_update_notification( $premium_updates ){ if( !function_exists( 'get_plugin_data' ) || !function_exists( 'is_plugin_active') ) // make sure we have the needed functions available if (!@include_once( ABSPATH.'wp-admin/includes/plugin.php')) return $premium_updates; if (!(is_plugin_active('worker/init.php') || is_plugin_active('managewp/init.php'))) // ManageWP client plugin needed return $premium_updates; global $seed_cspv5; $seed_cspv5_api_key = ''; if(defined('SEED_CSP_API_KEY')){ $seed_cspv5_api_key = SEED_CSP_API_KEY; } if(empty($seed_cspv5_api_key)){ $seed_cspv5_api_key = get_option('seed_cspv5_license_key'); } $response = wp_remote_post( SEED_CSPV5_API_URL, array( 'method' => 'POST', 'timeout' => 45, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => true, 'headers' => array(), 'body' => array( 'action' => 'info', 'license_key' => $seed_cspv5_api_key, 'slug' => SEED_CSPV5_SLUG, 'domain' => home_url(), 'installed_version' => SEED_CSPV5_VERSION ), 'cookies' => array() ) ); if ( is_wp_error( $response ) ) { $error_message = $response->get_error_message(); //echo "Something went wrong: $error_message"; } $cspv5 = get_plugin_data( SEED_CSPV5_PLUGIN_PATH.'seedprod-coming-soon-pro-5.php' ); // EDIT: if necessary edit the path to your main plugin file $cspv5['type'] = 'plugin'; $cspv5['new_version'] = $response->new_version; // EDIT: your plugin's new version $cspv5['old_version'] = $cspv5['Version']; // error_log( print_r( $cspv5, true ) ); if($cspv5['new_version'] === $cspv5['old_version'])//Check if there is a new version return $premium_updates; array_push($premium_updates, $cspv5); return $premium_updates; } } // mwp_premium_perform_update filter // // Hook to this filter to return either the URL to the new version // or your callback function which will perform the update when called // add_filter('mwp_premium_perform_update', 'seed_cspv5_mwp_perform_update'); if( !function_exists('seed_cspv5_mwp_perform_update') ) { function seed_cspv5_mwp_perform_update( $update ){ if( !function_exists( 'get_plugin_data' ) || !function_exists( 'is_plugin_active') ) // make sure we have the needed functions available if (!@include_once( ABSPATH.'wp-admin/includes/plugin.php')) return $update; if (!(is_plugin_active('worker/init.php') || is_plugin_active('managewp/init.php'))) // ManageWP client plugin needed return $update; global $seed_cspv5; $seed_cspv5_api_key = ''; if(defined('SEED_CSP_API_KEY')){ $seed_cspv5_api_key = SEED_CSP_API_KEY; } if(empty($seed_cspv5_api_key)){ $seed_cspv5_api_key = get_option('seed_cspv5_license_key'); } $response = wp_remote_post( SEED_CSPV5_API_URL, array( 'method' => 'POST', 'timeout' => 45, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => true, 'headers' => array(), 'body' => array( 'action' => 'info', 'license_key' => $seed_cspv5_api_key, 'slug' => SEED_CSPV5_SLUG, 'domain' => home_url(), 'installed_version' => SEED_CSPV5_VERSION ), 'cookies' => array() ) ); if ( is_wp_error( $response ) ) { $error_message = $response->get_error_message(); //echo "Something went wrong: $error_message"; } $cspv5= get_plugin_data( SEED_CSPV5_PLUGIN_PATH.'seedprod-coming-soon-pro.php' ); // EDIT: if necessary edit the path to your main plugin file $cspv5['url'] = $response->download_link; // EDIT: provide URL to the archive file with the new version and we will use WordPress update mechanism $cspv5['type']= 'plugin'; $cspv5['slug'] = SEED_CSPV5_SLUG; //$my_addon['callback'] = 'my_update_callback'; // EDIT: OR alternately provide your own callback function for managing the update. Do not use both. array_push($update, $cspv5); return $update; } } // mwp_premium_update_check filter // // Hook to this filter to provide a function that checks for updates //This hook is required only if you are using callback to check the plugin version //add_filter('mwp_premium_update_check', 'seed_cspv5_mwp_update_check'); if( !function_exists('seed_cspv5_mwp_update_check') ) { function seed_cspv5_mwp_update_check( $update ){ if( !function_exists( 'get_plugin_data' ) || !function_exists( 'is_plugin_active') ) // make sure we have the needed functions available if (!@include_once( ABSPATH.'wp-admin/includes/plugin.php')) return $premium_updates; if (!(is_plugin_active('worker/init.php') || is_plugin_active('managewp/init.php'))) // ManageWP client plugin needed return $update; $my_addon = get_plugin_data( __FILE__ ); //EDIT: if necessary edit the path to your main plugin file $my_addon['callback'] = 'my_update_callback'; // EDIT: provide your callback function which checks for your plugin updates //EDIT: If you provided path to zip file, don't use callback array_push($update, $my_addon); return $update; } }
[+]
..
[+]
languages
[-] managewp-plugins-api.php
[edit]
[+]
extentions
[-] seedprod-updater-cspv5.php
[edit]
[-] LICENSE.txt
[edit]
[-] .seedprod-coming-soon-pro-5.php
[edit]
[+]
admin
[+]
inc
[-] GPL.txt
[edit]
[+]
customizer
[+]
template
[-] seedprod-coming-soon-pro-5.php
[edit]
[-] class-am-notification2.php
[edit]
[+]
lib
[+]
.vscode