PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/cheaptravel.live/wp-content/plugins/anti-spam/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/cheaptravel.live/wp-content/plugins/anti-spam/uninstall.php |
<?php // @formatter:off // if uninstall.php is not called by WordPress, die if( !defined('WP_UNINSTALL_PLUGIN') ) { die; } /** * Удаление кеша и опций */ function uninstall() { // remove plugin options global $wpdb; $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE 'titan_%';"); } if(get_option( 'titan_complete_uninstall', false)) { if ( is_multisite() ) { global $wpdb, $wp_version; $wpdb->query("DELETE FROM {$wpdb->sitemeta} WHERE meta_key LIKE 'titan_%';"); $blogs = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" ); if ( ! empty( $blogs ) ) { foreach ( $blogs as $id ) { switch_to_blog( $id ); uninstall(); restore_current_blog(); } } } else { uninstall(); } } //require_once dirname(__FILE__) . '/includes/firewall/class-database-schema.php'; //$db_schema = new \WBCR\Titan\Database\Schema(); //$db_schema->dropAll();