PluginProbe
GPTranslate – Multilingual AI Translation Agent for WordPress: Translate Your Site with AI / 2.34.4
GPTranslate – Multilingual AI Translation Agent for WordPress: Translate Your Site with AI v2.34.4
2.34.5 2.34.4 2.34.3 2.34.2 2.34.1 2.34 2.33.10 2.33.9 2.33.8 2.33.7 2.33.6 2.33.5 2.33.2 2.32.10 2.33 2.33.1 2.32.6 2.32.7 2.32.8 trunk 2.10.3 2.10.4 2.10.5 2.10.6 2.11 All 57 releases
gptranslate / uninstall.php
uninstall.php
12 lines 534 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if (!defined('WP_UNINSTALL_PLUGIN')) {
3 exit;
4 }
5
6 delete_option('gptranslate_options');
7 delete_option('gptranslate_wizard_completed');
8 delete_option('gptranslate_wizard_first_redirect_done');
9
10 global $wpdb;
11 $wpdb->query("DROP TABLE IF EXISTS {$wpdb->prefix}gptranslate"); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.DirectDatabaseQuery.SchemaChange -- Deliberate table removal on uninstall
12