HEX
Server: Microsoft-IIS/10.0
System: Windows NT WIN8095 10.0 build 20348 (Windows Server 2016) AMD64
User: kytoffice-001 (0)
PHP: 7.4.30
Disabled: exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,show_source
Upload Files
File: h:/root/home/kytoffice-001/www/expresstinou/wp-content/plugins/si-contact-form/uninstall.php
<?php

/*
 * Wordpress will run the code in this file when the user deletes the plugin
 * 
 */

// Be sure that Wordpress is deleting the plugin
if(defined('WP_UNINSTALL_PLUGIN') ){
	// XXX Prompt to delete options

    // settings get deleted when plugin is deleted from admin plugins page
    delete_option('fs_contact_global');

    // delete up to 100 forms (a unique configuration for each contact form)
    for ($i = 1; $i <= 100; $i++) {
       delete_option("fs_contact_form$i");
    }
}  
// end of file