Submit
Path:
~
/
home
/
getwphos
/
public_html
/
srlgroup
/
wp-content
/
plugins
/
duplicator
/
src
/
Core
/
File Content:
Unistall.php
<?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'); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
Controllers
---
0755
Notifications
---
0755
Upgrade
---
0755
Views
---
0755
Bootstrap.php
25327 bytes
0644
MigrationMng.php
17620 bytes
0644
Unistall.php
898 bytes
0644
N4ST4R_ID | Naxtarrr