PluginProbe
WP Database Backup – Unlimited Database & Files Backup by Backup for WP / 6.9
WP Database Backup – Unlimited Database & Files Backup by Backup for WP v6.9
7.13 7.12 trunk 1.1 2.1.1 5.9 6.0 6.1 6.10 6.11 6.12 6.12.1 6.2 6.3 6.4 6.5 6.5.1 6.6 6.7 6.8 6.9 7.0 7.0.1 7.1 7.10 All 34 releases
wp-database-backup / uninstall.php

uninstall.php in WP Database Backup – Unlimited Database & Files Backup by Backup for WP 6.9, at uninstall.php

27 lines 801 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // If uninstall is not called from WordPress, exit
3 if (!defined('WP_UNINSTALL_PLUGIN')) {
4 exit();
5 }
6 $wp_db_backup_backups_dir = get_option('wp_db_backup_backups_dir');
7 $wp_db_remove_on_uninstall = get_option('wp_db_remove_on_uninstall',false);
8
9 if($wp_db_remove_on_uninstall){
10 // Remove options
11 $options_to_remove = array(
12 'wp_db_backup_destination_SFTP',
13 'wp_db_backup_destination_FTP',
14 'wp_db_backup_destination_Email',
15 'wp_db_backup_destination_s3',
16 'wp_db_remove_local_backup',
17 'wp_db_remove_on_uninstall',
18 'wp_db_backup_backup_type',
19 'wp_db_backup_exclude_dir',
20 'wp_db_backup_backups_dir'
21 );
22
23 foreach ($options_to_remove as $option) {
24 delete_option($option);
25 }
26
27 }