| Server IP : 193.86.120.172 / Your IP : 216.73.216.67 Web Server : Apache/2.4.63 (Unix) System : Linux JServices 3.10.108 #86003 SMP Wed Oct 22 13:20:46 CST 2025 x86_64 User : kubec ( 1026) PHP Version : 8.2.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /volume1/web/hotellesnizatisi_cz/wp-content/plugins/email-log/ |
Upload File : |
<?php
/**
* Uninstall page for Email Log Plugin to clean up all plugin data.
*
* This file is named uninstall.php since WordPress requires that name.
*/
// exit if WordPress is not uninstalling the plugin.
if ( ! defined( 'ABSPATH' ) && ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit();
}
if ( is_multisite() ) {
// Note: if there are more than 10,000 blogs or
// if `wp_is_large_network` filter is set, then this may fail.
$sites = get_sites();
foreach ( $sites as $site ) {
switch_to_blog( $site->blog_id );
email_log_delete_db_data();
restore_current_blog();
}
} else {
email_log_delete_db_data();
}
/**
* Delete all email log data from db.
*
* The data include email log table, options, capability and add-on license data.
*
* @since 1.7
*
* @global object $wpdb
*/
function email_log_delete_db_data() {
global $wpdb;
$remove_data_on_uninstall = false;
$option = get_option( 'email-log-core' );
if ( is_array( $option ) && array_key_exists( 'remove_on_uninstall', $option ) &&
'true' === strtolower( $option['remove_on_uninstall'] ) ) {
$remove_data_on_uninstall = true;
}
// This is hardcoded on purpose, since the entire plugin is not loaded during uninstall.
$table_name = $wpdb->prefix . 'email_log';
if ( $remove_data_on_uninstall ) {
if ( $wpdb->get_var( "SHOW TABLES LIKE '{$table_name}'" ) == $table_name ) { //phpcs:ignore
$wpdb->query( "DROP TABLE $table_name" ); //phpcs:ignore
}
delete_option( 'email-log-db' );
delete_option( 'email-log-core' );
$roles = get_editable_roles();
foreach ( $roles as $role_name => $role_obj ) {
$role = get_role( $role_name );
if ( ! is_null( $role ) ) {
$role->remove_cap( 'manage_email_logs' );
}
}
// Mask Fields addon adds this option.
delete_option( 'el_mask_fields' );
delete_option( 'el_bundle_license' );
$wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'el_license_%'" ); //phpcs:ignore
}
}