PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
paid-memberships-pro
/
classes
<?php defined( 'ABSPATH' ) || die( 'File cannot be accessed directly' ); class PMPro_Deny_Network_Activation { public function init() { register_activation_hook( PMPRO_BASE_FILE, array( $this, 'pmpro_check_network_activation' ) ); add_action( 'wp_print_footer_scripts', array( $this, 'wp_admin_style' ) ); add_action( 'network_admin_notices', array( $this, 'display_message_after_network_activation_attempt' ) ); } public function wp_admin_style() { global $current_screen; // Bail if not in the dashboard. if ( ! is_admin() ) { return; } // Bail if there is no current screen. if ( empty( $current_screen ) ) { return; } // Bail if not on the screens we want. if ( 'sites-network' !== $current_screen->id && 'plugins-network' !== $current_screen->id ) { return; } ?> <style type="text/css"> .notice.notice-info { background-color: #ffd; } </style> <?php } public function display_message_after_network_activation_attempt() { global $current_screen; if ( !empty($_REQUEST['pmpro_deny_network_activation']) && ( 'sites-network' === $current_screen->id || 'plugins-network' === $current_screen->id ) ) { //get plugin data $plugin = isset($_REQUEST['pmpro_deny_network_activation']) ? sanitize_file_name($_REQUEST['pmpro_deny_network_activation']) : ''; $plugin_path = WP_PLUGIN_DIR . '/' . urldecode($plugin); $plugin_data = get_plugin_data($plugin_path); if(!empty($plugin_data)) $plugin_name = $plugin_data['Name']; else $plugin_name = ''; //show notice echo '<div class="notice notice-info is-dismissible"><p>'; $text = sprintf( esc_html__("The %s plugin should not be network activated. Activate on each individual site's plugin page.", 'paid-memberships-pro'), $plugin_name); echo esc_html( $text ); echo '</p></div>'; } } public function pmpro_check_network_activation( $network_wide ) { if ( !is_multisite() || !$network_wide ) { return; } $plugin = isset($_REQUEST['plugin']) ? sanitize_file_name($_REQUEST['plugin']) : ''; deactivate_plugins( $plugin, true, true ); if ( ! isset( $_REQUEST['pmpro_deny_network_activation']) ) { wp_redirect( add_query_arg( 'pmpro_deny_network_activation', $plugin, network_admin_url( 'plugins.php' ) ) ); exit; } } } // Init the check if the plugin is active. if ( class_exists( '\PMPro_Deny_Network_Activation' ) ) { $pmp_wpmu_deny = new PMPro_Deny_Network_Activation(); $pmp_wpmu_deny->init(); }
[+]
gateways
[-] class-pmpro-discount-code-list-table.php
[edit]
[-] class-pmpro-field.php
[edit]
[-] class-pmpro-members-list-table.php
[edit]
[-] class-pmpro-wisdom-integration.php
[edit]
[+]
..
[-] class-pmpro-wisdom-tracker.php
[edit]
[-] class.mimetype.php
[edit]
[-] class-deny-network-activation.php
[edit]
[-] class-pmpro-admin-activity-email.php
[edit]
[-] class-pmpro-site-health.php
[edit]
[-] class-pmpro-discount-codes.php
[edit]
[-] class-pmpro-levels.php
[edit]
[-] class-pmpro-orders-list-table.php
[edit]
[-] class.pmproemail.php
[edit]
[-] class.memberorder.php
[edit]