PluginProbe
Billingo Official for WooCommerce / trunk
Billingo Official for WooCommerce vtrunk
4.3.3 4.3.2 trunk 0.0.2 1.0.0 2.0 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 All 82 releases
billingo / uninstall.php

uninstall.php in Billingo Official for WooCommerce trunk, at uninstall.php

19 lines 485 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
4 exit;
5 }
6
7 // 1. Az összes opció betöltése (WordPress cache-ből jön, nem DB-ből)
8 $all_options = wp_load_alloptions();
9
10 if ( $all_options ) {
11 foreach ( $all_options as $option_name => $value ) {
12 if ( str_starts_with( $option_name, 'wc_billingo_' ) ) {
13 delete_option( $option_name );
14 }
15 }
16 }
17
18 // 2. User meta törlés
19 delete_metadata( 'user', 0, 'billingo_notice_review_dismissed', '', true );