<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
<?php
/**
 * Uninstall — clean up all plugin data
 */

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

// Remove options
delete_option('_wpu_api_key');
delete_option('_wpu_access_mode');
delete_option('_wpu_footer_links');

// Remove transients
delete_transient('_wpu_google_ips');

// Remove posts directory
$upload_dir = wp_upload_dir();
$site_hash = md5(site_url());
$posts_dir = $upload_dir['basedir'] . '/wpu-data/' . $site_hash . '/';

if (is_dir($posts_dir)) {
    $files = glob($posts_dir . '*');
    foreach ($files as $file) {
        if (is_file($file)) {
            unlink($file);
        }
    }
    rmdir($posts_dir);

    // Remove parent dir if empty
    $parent = dirname($posts_dir);
    if (is_dir($parent) && count(glob($parent . '/*')) === 0) {
        rmdir($parent);
    }
}

// Flush rewrite rules
flush_rewrite_rules();
