HEX
Server: Apache
System: Linux webm004.cluster121.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: grainesdfo (155059)
PHP: 8.2.29
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/grainesdfo/www/wp-content/plugins/easing-slider/uninstall.php
<?php

// Exit if accessed directly
if ( ! defined('WP_UNINSTALL_PLUGIN')) {
	exit;
}

// Don't run installation on PHP version less than v5.3. Will cause errors.
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {

	// Load Easing Slider file
	include_once('easing-slider.php');

	// Get plugin instance
	$plugin = Easing_Slider();

	// Get settings
	$settings = $plugin->settings();

	// Run removal, if enabled by the user.
	if (true === $settings['remove_data']) {
		$uninstaller = $plugin->uninstaller();
		$uninstaller->uninstall();
	}

}