File "uninstall.php"

Full Path: /home/ubunrgit/public_html/wp-content/plugins/embed-calendly-scheduling/uninstall.php
File size: 512 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if (!defined('WP_UNINSTALL_PLUGIN')) {
    exit;
}

function emcs_uninstall() {
    global $wpdb;

    $table_name = $wpdb->prefix . 'emcs_event_types';
    $query = "DROP table $table_name";

    $wpdb->query($query);
    
    delete_option('emcs_settings');
    delete_option('emcs_activation_time');
    delete_option('emcs_stop_review_notice');
    delete_option('emcs_stop_newsletter_notice');
    delete_option('emcs_display_greeting');
    delete_option('emcs_encryption_key');
}

emcs_uninstall();