文件操作 - uninstall.php
返回文件管理
返回主菜单
删除本文件
文件: /var/www/vec.uaysen.cl/html/wp-content/plugins/admin-menu-editor-pro/uninstall.php
编辑文件内容
<?php /** * @author W-Shadow * @copyright 2012 * * The uninstallation script. */ if( defined( 'ABSPATH') && defined('WP_UNINSTALL_PLUGIN') ) { //Remove the plugin's settings delete_option('ws_menu_editor_pro'); if ( function_exists('delete_site_option') ){ delete_site_option('ws_menu_editor_pro'); //Remove the "automatic license activation failed" flag. Most sites won't have this. delete_site_option('wslm_auto_activation_failed-admin-menu-editor-pro'); } //Remove update metadata delete_option('ame_pro_external_updates'); //Remove hint visibility flags if ( function_exists('delete_metadata') ) { delete_metadata('user', 0, 'ame_show_hints', '', true); } //Remove meta box settings. delete_option('ws_ame_meta_boxes'); if ( function_exists('delete_site_option') ) { delete_site_option('ws_ame_meta_boxes'); } //Remove tweak settings. delete_option('ws_ame_tweak_settings'); delete_option('ws_ame_detected_tmce_buttons'); delete_option('ws_ame_detected_gtb_blocks'); if ( function_exists('delete_site_option') ) { delete_site_option('ws_ame_tweak_settings'); delete_site_option('ws_ame_detected_tmce_buttons'); delete_site_option('ws_ame_detected_gtb_blocks'); } //Remove redirect settings. delete_option('ws_ame_redirects'); if ( function_exists('delete_site_option') ) { delete_site_option('ws_ame_redirects'); delete_site_option('ws_ame_rui_first_change'); } if ( function_exists('delete_metadata') ) { delete_metadata('user', 0, 'ame_rui_first_login_done', '', true); } //Call the "Easy Hide" module uninstaller. $easyHideUninstaller = dirname(__FILE__) . '/extras/modules/easy-hide/eh-preferences-uninstall.php'; if ( file_exists($easyHideUninstaller) ) { include ($easyHideUninstaller); } //Call the uninstaller for the "highlight new menus" module. $highlighterUninstaller = dirname(__FILE__) . '/modules/highlight-new-menus/uninstall.php'; if ( file_exists($highlighterUninstaller) ) { include (dirname(__FILE__) . '/modules/highlight-new-menus/uninstall.php'); } //Call the role editor uninstaller. $roleEditorUninstaller = dirname(__FILE__) . '/extras/modules/role-editor/uninstall.php'; if ( file_exists($roleEditorUninstaller) ) { include (dirname(__FILE__) . '/extras/modules/role-editor/uninstall.php'); } //Remove license data (if any). if ( file_exists(dirname(__FILE__) . '/extras.php') ) { require_once dirname(__FILE__) . '/includes/basic-dependencies.php'; require_once dirname(__FILE__) . '/extras.php'; if ( isset($ameProLicenseManager) ) { $ameProLicenseManager->unlicenseThisSite(); } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件