HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/cisuenolar.sumar.com.py/wp-content/plugins/simple-chat-button/uninstall.php
<?php
// Die if uninstall file is not called by WordPress
if (!defined('WP_UNINSTALL_PLUGIN')) {
    die;
}

// Delete options
$scb_options = array(
	'scb_whatsapp_number',
	'scb_whatsapp_chat_text',
    'scb_button_status',
	'scb_button_text',
    'scb_button_target',
	'scb_button_position',
    'scb_button_z_index',
    'scb_desktop_link_type',
	'scb_desktop_bottom_margin',
	'scb_tablet_bottom_margin',
	'scb_mobile_bottom_margin'
);
foreach ($scb_options as $option) {
    if (get_option($option)) {
        delete_option($option);
    }
}