PluginProbe ʕ •ᴥ•ʔ
GPTranslate – Multilingual AI Translation for WordPress: Automatically Translate Websites / trunk
GPTranslate – Multilingual AI Translation for WordPress: Automatically Translate Websites vtrunk
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 2.12 2.13 2.14 2.14.1 2.15 2.15.1 2.16.1 2.16.2 2.17 2.18 2.18.1 2.18.2 2.19 2.20 2.21 2.22 2.23 2.24 2.25 2.25.1 2.25.2 2.26 2.27 2.27.10 2.27.5 2.28 2.28.1 2.29 2.30 2.31 2.32 2.32.5
gptranslate / uninstall.php
gptranslate Last commit date
assets 4 days ago flags 7 months ago includes 1 week ago language 4 days ago ajax-handler.php 1 month ago gptranslate.php 4 days ago multilang-routing.php 1 week ago readme.txt 4 days ago serverside-translations.php 6 days ago settings.php 4 days ago simplehtmldom.php 1 year ago uninstall.php 1 month ago
uninstall.php
12 lines
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