HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/public_html/wp-content/plugins/simple-cloudflare-turnstile/uninstall.php
<?php
// If uninstall is not called from WordPress, exit
if (!defined('WP_UNINSTALL_PLUGIN')) {
    exit();
}

// Include the file containing the cfturnstile_settings_list() function
include(plugin_dir_path(__FILE__) . 'inc/admin/register-settings.php');

// Check if the "cfturnstile_uninstall_remove" option is true
if (get_option('cfturnstile_uninstall_remove')) {
    // Get registered settings
    $settings = cfturnstile_settings_list();
    // Remove all registered settings
    foreach ($settings as $setting) {
        delete_option($setting);
    }
    // Remove the "cfturnstile_tested" option
    delete_option('cfturnstile_tested');
    // Remove the "cfturnstile_uninstall_remove" option itself
    delete_option('cfturnstile_uninstall_remove');
}