gptranslate
Last commit date
assets
3 weeks ago
flags
3 weeks ago
includes
3 weeks ago
language
3 weeks ago
ajax-handler.php
3 weeks ago
gptranslate.php
3 weeks ago
multilang-routing.php
3 weeks ago
readme.txt
3 weeks ago
serverside-translations.php
3 weeks ago
settings.php
3 weeks ago
simplehtmldom.php
3 weeks ago
uninstall.php
3 weeks 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 |