all repos — wp-ffpc @ 1f3a4fecb2701092e0252718850aec5351aa7ccf

uninstall.php (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
<?php
/**
 * uninstall file for WP-FFPC; uninstall hook does not remove the databse options
 */

// exit if uninstall not called from WordPress
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit;
}

/* get the worker file */
include_once ( 'wp-ffpc.php' );

/* run uninstall function */
$wp_ffpc->plugin_uninstall();

?>