Server : LiteSpeed
System : Linux server104.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64
User : saleoqej ( 6848)
PHP Version : 8.0.30
Disable Function : NONE
Directory :  /home/saleoqej/public_html/wp-content/plugins/sfwd-lms/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : //home/saleoqej/public_html/wp-content/plugins/sfwd-lms/uninstall.php
<?php
/**
 * Functions for uninstall LearnDash
 *
 * @since 2.5.0
 *
 * @package LearnDash
 */

if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	die;
}

require_once plugin_dir_path( __FILE__ ) . 'vendor-prefixed/autoload.php';

/**
 * Remove our Multisite support file(s) to the /wp-content/mu-plugins directory.
 */
$learndash_wpmu_plugin_dir = ( defined( 'WPMU_PLUGIN_DIR' ) && defined( 'WPMU_PLUGIN_URL' ) ) ? WPMU_PLUGIN_DIR : trailingslashit( WP_CONTENT_DIR ) . 'mu-plugins';
if ( is_writable( $learndash_wpmu_plugin_dir ) ) {
	$learndash_wpmu_plugin_dir_file = trailingslashit( $learndash_wpmu_plugin_dir ) . 'learndash-multisite.php';
	if ( file_exists( $learndash_wpmu_plugin_dir_file ) ) {
		unlink( $learndash_wpmu_plugin_dir_file );
	}
}

/**
 * Fires on plugin uninstall.
 */
do_action( 'learndash_uninstall' );

/**
 * Uninstalls Telemetry.
 *
 * @since 4.5.0
 */
StellarWP\Learndash\StellarWP\Telemetry\Uninstall::run( 'learndash' );