You've already forked wp-prometheus
19 lines
390 B
PHP
19 lines
390 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Uninstall WP Prometheus plugin.
|
||
|
|
*
|
||
|
|
* @package WP_Prometheus
|
||
|
|
*/
|
||
|
|
|
||
|
|
// If uninstall.php is not called by WordPress, die.
|
||
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
||
|
|
die;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Load the autoloader if it exists.
|
||
|
|
$autoloader = __DIR__ . '/vendor/autoload.php';
|
||
|
|
if ( file_exists( $autoloader ) ) {
|
||
|
|
require_once $autoloader;
|
||
|
|
\Magdev\WpPrometheus\Installer::uninstall();
|
||
|
|
}
|