HEX
Server: LiteSpeed
System: Linux premium140.web-hosting.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
User: ukqcurpj (1011)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/ukqcurpj/www/wp-content/plugins/paid-memberships-pro/includes/updates/upgrade_3_2.php
<?php
/**
 * Upgrade to version 3.2
 *
 * We are eliminating the built-in PPE option for Website Payments Pro.
 *
 * @since 3.1
 */
function pmpro_upgrade_3_2() {
	if ( 'paypal' === pmpro_getGateway() ) {
		// Set an option to show the notice about the PPE option being removed.
		update_option( 'pmpro_upgrade_3_2_notice_wpp', true );
	}
}

/**
 * Show a notice on the PMPro dashboard if there are orders with user IDs greater than 4294967295.
 * This is to alert users that they may have run into issues with user IDs being too large for the int(11) column.
 *
 * @since 3.1
 */
function pmpro_show_upgrade_3_2_notice_wpp() {
	// Check if we need to show the notice.
	if ( ! get_option( 'pmpro_upgrade_3_2_notice_wpp' ) ) {
		return;
	}

	// Only show on PMPro admin pages.
	if ( empty( $_REQUEST['page'] ) || strpos( $_REQUEST['page'], 'pmpro' ) === false ) {
		return;
	}

	// Check if the user has dismissed the notice.
	if ( ! empty( $_REQUEST['pmpro-upgrade_3_2_notice_wpp'] ) ) {
		delete_option( 'pmpro_upgrade_3_2_notice_wpp' );
		return;
	}

	// Show a dismissable notice. Do not show a link to scrub data.
	?>
	<div class="notice notice-warning" id="pmpro-upgrade-3-2-notice">
		<p><strong><?php esc_html_e( 'Important Notice: Paid Memberships Pro v3.2 Update', 'paid-memberships-pro' ); ?></strong></p>
		<p>
			<?php
			printf(
				wp_kses_post(
					__( 'In previous versions of PMPro, PayPal Express was automatically added as a second payment option on the checkout page when using the Website Payments Pro gateway. This feature has been removed in PMPro v3.2 but can be added back using the PMPro Add PayPal Express Option at Checkout Add On. For more information, read our <a href="%s">v3.2 release notes post here</a>.', 'paid-memberships-pro' )
				),
				esc_url( 'https://www.paidmembershipspro.com/pmpro-update-3-2/' )
			);
			?>
		</p>
		<p>
			<a href="<?php echo esc_url( add_query_arg( 'pmpro-upgrade_3_2_notice_wpp', '1' ) ); ?>"><?php esc_html_e( 'Dismiss this notice.', 'paid-memberships-pro' ); ?></a>
		</p>
	</div>
	<?php
}
add_action( 'admin_notices', 'pmpro_show_upgrade_3_2_notice_wpp' );