HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/intranet.kauko.lt/wp-content/plugins/jonradio-private-site/uninstall.php
<?php
// Ensure call comes from WordPress, not a hacker or anyone else trying direct access.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit();
}


/*  Remove any tables, options, and such created by this Plugin  */
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
	global $wpdb, $site_id;
	$blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs} WHERE site_id = $site_id" );
	foreach ( $blogs as $blog_obj ) {
		delete_blog_option( $blog_obj->blog_id, 'jr_ps_settings' );
		delete_blog_option( $blog_obj->blog_id, 'jr_ps_internal_settings' );
	}
} else {
	delete_option( 'jr_ps_settings' );
	delete_option( 'jr_ps_internal_settings' );
}