PluginProbe ʕ •ᴥ•ʔ
Phone Orders for WooCommerce / 3.3.2
Phone Orders for WooCommerce v3.3.2
3.11.0 3.10.5 3.10.4 trunk 2.6.5 2.6.6 2.6.7 2.6.8 3.0.0 3.1.0 3.10.0 3.10.1 3.10.2 3.10.3 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.4.0 3.4.1 3.4.3 3.4.4 3.5.0 3.5.1 3.5.2 3.6.0 3.6.1 3.6.10 3.6.11 3.6.12 3.6.13 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.7.0 3.7.1 3.7.2 3.7.3 3.8.0 3.8.10 3.8.2 3.8.3 3.8.4 3.8.7 3.8.8 3.8.9 3.9.0 3.9.1 3.9.2 3.9.3 3.9.5 3.9.6 3.9.7 3.9.8 3.9.9
phone-orders-for-woocommerce / uninstall.php
phone-orders-for-woocommerce Last commit date
assets 7 years ago classes 7 years ago languages 7 years ago .babelrc 7 years ago package-lock.json 7 years ago package.json 7 years ago phone-orders-for-woocommerce.php 7 years ago readme.txt 7 years ago uninstall.php 8 years ago
uninstall.php
7 lines
1 <?php
2 if( defined( 'WP_UNINSTALL_PLUGIN' ) ) {
3 global $wpdb;
4 $table_name = "{$wpdb->prefix}phone_orders_log";
5 $result = $wpdb->query( "DROP TABLE IF EXISTS $table_name;" );
6 }
7