HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/karjerosdiena.lt/wp-content/plugins/wp-user-manager/includes/compatibility/oceanwp.php
<?php
/**
 * OceanWP compatibility
 *
 * @package     wp-user-manager
 * @copyright   Copyright (c) 2023, WP User Manager
 * @license     https://opensource.org/licenses/gpl-license GNU Public License
 * @since       2.8.19
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Ensure the email customizer works when using the OceanWP theme
 */
add_action( 'after_setup_theme', function () {
	if ( ! class_exists( 'OCEANWP_Theme_Class' ) ) {
		return;
	}

	if ( isset( $_GET['wpum_email_customizer'] ) ) {
		class OceanWP_Customizer {
		}

		class OceanWP_Customizer_Slider_Control extends \WP_Customize_Control {
		}
	}
}, 3 );