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_2_6.php
<?php
/**
 * Upgrade to 2.6
 * We changed the pmpro_cron_expire_memberships cron
 * to run hourly instead of daily.
 * To ensure that existing members still expire at least
 * 1 calendar day after their expiration date, we are
 * updating old expiration date timestamps to set
 * the time component to 11:59. This way e.g.
 * someone who checked out at 3pm on Dec 31 won't expire
 * until Jan 1 at midnight.
 * Going forward, we will always set the expiration time to 11:59
 * unless the level is set up to expire hourly.
 */
function pmpro_upgrade_2_6() {
	// Map email settings to new email template settings.
	// Note: the old settings were true to enable, the new settings are true to disable.
	$admin_checkout = get_option( 'pmpro_email_admin_checkout' );
	if ( empty( $admin_checkout ) ) {
		update_option( 'pmpro_email_checkout_check_admin_disabled', 'true' );
		update_option( 'pmpro_email_checkout_express_admin_disabled', 'true' );
		update_option( 'pmpro_email_checkout_free_admin_disabled', 'true' );
		update_option( 'pmpro_email_checkout_freetrial_admin_disabled', 'true' );
		update_option( 'pmpro_email_checkout_paid_admin_disabled', 'true' );
		update_option( 'pmpro_email_checkout_trial_admin_disabled', 'true' );
	}
	$admin_changes = get_option( 'pmpro_email_admin_changes' );
	if ( empty( $admin_changes ) ) {
		update_option( 'pmpro_email_admin_change_admin_disabled', 'true' );
	}
	$admin_cancels = get_option( 'pmpro_email_admin_cancels' );
	if ( empty( $admin_cancels ) ) {
		update_option( 'pmpro_email_cancel_admin_disabled', 'true' );
	}
	$admin_billing = get_option( 'pmpro_email_admin_billing' );
	if ( empty( $admin_billing ) ) {
		update_option( 'pmpro_email_billing_admin_disabled', 'true' );
	}
}