MOON
Server: Apache
System: Linux server.royaltuning.hu 4.18.0-425.13.1.el8_7.x86_64 #1 SMP Tue Feb 21 04:20:52 EST 2023 x86_64
User: royaltuning (1001)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/royaltuning/www/public/wp-content/plugins/webshippy_tracking/uninstall.php
<?php

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


function abf_delete_plugin()
{
	global $wpdb;
	$vehicles_table = $wpdb->prefix . 'abfinder_vehicles';
	$wpdb->query("DROP TABLE IF EXISTS $vehicles_table");
	$adaptions_table = $wpdb->prefix . 'abfinder_adaptions';
	$wpdb->query("DROP TABLE IF EXISTS $adaptions_table");

	//remove all options
	delete_option('enable_vehicle_post');
	delete_option('abf_code_status');
	delete_option('abf_code_expired');
	delete_option('abf_token');
	delete_option('app_promotion_html');
	unregister_post_type('vehicle');
}

if (!defined('ABFINDER')) {
	abf_delete_plugin();
}