contact-form-7
Last commit date
admin
16 years ago
images
18 years ago
includes
16 years ago
languages
16 years ago
modules
16 years ago
README.txt
16 years ago
screenshot-1.png
16 years ago
scripts.js
16 years ago
settings.php
16 years ago
styles-rtl.css
16 years ago
styles.css
16 years ago
uninstall.php
16 years ago
wp-contact-form-7.php
16 years ago
uninstall.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) |
| 4 | exit(); |
| 5 | |
| 6 | function wpcf7_delete_plugin() { |
| 7 | global $wpdb; |
| 8 | |
| 9 | delete_option( 'wpcf7' ); |
| 10 | |
| 11 | $table_name = $wpdb->prefix . "contact_form_7"; |
| 12 | |
| 13 | $wpdb->query( "DROP TABLE IF EXISTS $table_name" ); |
| 14 | } |
| 15 | |
| 16 | wpcf7_delete_plugin(); |
| 17 | |
| 18 | ?> |