HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-10-0-0-110 6.14.0-1016-aws #16~24.04.1-Ubuntu SMP Tue Oct 14 02:15:09 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/panineeyapublicschool.net/wp-content/plugins/stop-user-enumeration-1/bootstrap.php
<?php


namespace Stop_User_Enumeration;

// If this file is called directly, abort.
use Stop_User_Enumeration\Includes\Core;
use Stop_User_Enumeration\Includes\Freemius_Config;

if ( ! defined( 'WPINC' ) ) {
	die;
}
define( 'STOP_USER_ENUMERATION_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'STOP_USER_ENUMERATION_PLUGIN_VERSION', '1.3.2' );


// Include the autoloader so we can dynamically include the classes.
require_once( STOP_USER_ENUMERATION_PLUGIN_DIR . 'includes/autoloader.php' );


function run_stop_user_enumeration() {
	/**
	 *  Load freemius SDK
	 */
	$freemius    = new Freemius_Config();
	$freemiusSDK = $freemius->init();
	// Signal that SDK was initiated.
	do_action( 'sue_fs_loaded' );


	$freemiusSDK->add_action( 'after_uninstall', array( '\Stop_User_Enumeration\Includes\Uninstall', 'uninstall' ) );

	/**
	 * The core plugin class that is used to define internationalization,
	 * admin-specific hooks, and public-facing site hooks.
	 */

	$plugin = new Core( $freemiusSDK );
	$plugin->run();

}

run_stop_user_enumeration();


?>