gptranslate
Last commit date
assets
9 months ago
flags
9 months ago
language
9 months ago
gptranslate.php
9 months ago
multilang-routing.php
9 months ago
readme.txt
9 months ago
serverside-translations.php
9 months ago
settings.php
9 months ago
simplehtmldom.php
9 months ago
uninstall.php
9 months ago
uninstall.php
10 lines
| 1 | <?php |
| 2 | if (!defined('WP_UNINSTALL_PLUGIN')) { |
| 3 | exit; |
| 4 | } |
| 5 | |
| 6 | delete_option('gptranslate_options'); |
| 7 | |
| 8 | global $wpdb; |
| 9 | $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 |
| 10 |