PluginProbe ʕ •ᴥ•ʔ
CorvusPay WooCommerce Payment Gateway / 2.7.0
CorvusPay WooCommerce Payment Gateway v2.7.0
2.7.5 trunk 1.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 2.1.0 2.1.1 2.2.0 2.2.1 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.4.0 2.4.1 2.4.2 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.6.5 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4
corvuspay-woocommerce-integration / uninstall.php
corvuspay-woocommerce-integration Last commit date
assets 10 months ago includes 10 months ago languages 10 months ago vendor 10 months ago vendor_prefixed 10 months ago corvuspay-woocommerce-integration.php 10 months ago readme.txt 10 months ago uninstall.php 7 years ago
uninstall.php
18 lines
1 <?php
2 /**
3 * Uninstall script
4 *
5 * @package corvuspay-woocommerce-integration
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit;
10 }
11
12 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
13 exit;
14 }
15
16 delete_option( 'woocommerce_corvuspay_settings' );
17 delete_option( 'corvuspay_settings_version' );
18