Server IP : 162.0.217.223 / Your IP : 216.73.216.153 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/simple-cloudflare-turnstile/ |
Upload File : |
<?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'); }