| Server IP : 165.22.154.248 / Your IP : 216.73.217.54 [ Web Server : Apache/2.4.29 (Ubuntu) System : Linux droplet-integra 4.15.0-197-generic #208-Ubuntu SMP Tue Nov 1 17:23:37 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 7.2.24-0ubuntu0.18.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/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 ) {
$wpdb->query( "DROP TABLE $table_name" );
}
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_%'" );
}
}