2013-03-19 10:16:59 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* uninstall file for WP-FFPC; uninstall hook does not remove the databse options
|
|
|
|
*/
|
|
|
|
|
2014-01-10 22:20:55 +00:00
|
|
|
// exit if uninstall not called from WordPress
|
|
|
|
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2013-03-19 10:16:59 +00:00
|
|
|
/* get the worker file */
|
|
|
|
include_once ( 'wp-ffpc.php' );
|
|
|
|
|
|
|
|
/* run uninstall function */
|
|
|
|
$wp_ffpc->plugin_uninstall();
|
|
|
|
|
|
|
|
?>
|