File "class-uninstaller.php"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/vibes/includes/plugin/class-uninstaller.php
File
size: 687 B (687 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
/**
* Plugin deletion handling.
*
* @package Plugin
* @author Pierre Lannoy <https://pierre.lannoy.fr/>.
* @since 1.0.0
*/
namespace Vibes\Plugin;
use Vibes\System\Option;
use Vibes\System\User;
use Vibes\Plugin\Feature\Schema;
/**
* Fired during plugin deletion.
*
* This class defines all code necessary to run during the plugin's deletion.
*
* @package Plugin
* @author Pierre Lannoy <https://pierre.lannoy.fr/>.
* @since 1.0.0
*/
class Uninstaller {
/**
* Delete the plugin.
*
* @since 1.0.0
*/
public static function uninstall() {
Option::site_delete_all();
User::delete_all_meta();
$schema = new Schema();
$schema->finalize();
}
}