uninstall.php 1.5 KB
Newer Older
Tech No Freaky's avatar
Tech No Freaky committed
1
<?php
Tech No Freaky's avatar
Tech No Freaky committed
2
/*  Copyright 2015  Varun Sridharan  (email : varunsridharan23@gmail.com)
Tech No Freaky's avatar
Tech No Freaky committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License, version 2, as 
    published by the Free Software Foundation.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA 
*/ 
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) 
    exit();

Tech No Freaky's avatar
Tech No Freaky committed
20
$options = array('wc_quick_donation_cart_remove','wc_quick_donation_hide_form','wc_quick_donation_hide_order_notes','wc_quick_donation_redirect','wc_quick_donation_payment_gateway','wc_quick_donation_projects','wc_quick_donation_min_required_donation','wc_quick_donation_max_required_donation','wc_quick_donation_project_section_title','wc_quick_donation_order_notes_title','wc_quick_donation_msg_donation_exist','wc_quick_donation_msg_project_invalid','wc_quick_donation_msg_amount_empty','wc_quick_donation_msg_amount_invalid','wc_quick_donation_msg_amount_min_required','wc_quick_donation_msg_amount_max_allowed');
Tech No Freaky's avatar
Tech No Freaky committed
21 22 23 24 25 26 27
foreach($options as $option_name){
	delete_option( $option_name );
	delete_site_option( $option_name );  
}
?>


Tech No Freaky's avatar
Tech No Freaky committed
28