File manager - Edit - /home/premiey/www/wp-includes/images/media/uninstall.php.tar
Back
home/premiey/www/wp-content/plugins/really-simple-ssl/uninstall.php 0000666 00000005060 15165257637 0021677 0 ustar 00 <?php // If uninstall is not called from WordPress, exit if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit(); } $settings = get_option('rsssl_options'); if (isset($settings['delete_data_on_uninstall']) && $settings['delete_data_on_uninstall']) { $options = [ "rsssl_notification_email", "rsssl_remaining_tasks", "rsssl_activation_timestamp", "rsssl_activation_timestamp", "rsssl_flush_caches", "rsssl_skip_dns_check", "rsssl_skip_challenge_directory_request", "rsssl_hosting_dashboard", "rsssl_options", "rsssl_le_dns_tokens", "rsssl_le_dns_records_verified", "rsssl_private_key_path", "rsssl_certificate_path", "rsssl_intermediate_path", "rsssl_le_certificate_generated_by_rsssl", "rsssl_ssl_dirname", "rsssl_create_folders_in_root", "rsssl_htaccess_file_set_", "rsssl_initial_alias_domain_value_set", "rsssl_le_start_renewal", "rsssl_le_start_installation", "rsssl_le_installation_progress", "rsssl_activation_time", "rsssl_le_certificate_installed_by_rsssl", "rsssl_installation_error", "rsssl_le_dns_configured_by_rsssl", "rsssl_onboarding_dismissed", "rsssl_ssl_detection_overridden", "rsssl_http_methods_allowed", "rsssl_show_onboarding", "rsssl_deactivate_list", "rsssl_firewall_error", "rsssl_completed_fixes", "rsssl_rest_api_optimizer_not_writable", "rsssl_ssl_labs_data", "rsssl_current_version", "rsssl_network_activation_status", "rsssl_run", "rsssl_wp_version_detected", "rsssl_admin_notices", "rsssl_plusone_count", "rsssl_siteprocessing_progress", "rsssl_ssl_activation_active", "rsssl_network_activation_status", "rsssl_siteprocessing_progress", "rsssl_header_detection_nonce", "rsssl_htaccess_error", "rsssl_htaccess_rules", "rsssl_options", "rsssl_key", ]; foreach ( $options as $option_name ) { delete_option( $option_name ); delete_site_option( $option_name ); } $transients = [ "rsssl_xmlrpc_allowed", "rsssl_http_methods_allowed", "rsssl_code_execution_allowed_status", "rsssl_directory_indexing_status", "rsssl_htaccess_test_success", "rsssl_can_use_curl_headers_check", "rsssl_curl_error", "rsssl_mixed_content_fixer_detected", "rsssl_admin_notices", "rsssl_plusone_count", "rsssl_testpage", "rsssl_plugin_download_active", "rsssl_le_generate_attempt_count", "rsssl_alias_domain_available", "rsssl_le_install_attempt_count", "rsssl_cw_t", "rsssl_cw_server_id", "rsssl_redirect_to_settings_page", "rsssl_certinfo", ]; foreach($transients as $transient) { delete_transient( $transient ); delete_site_transient( $transient ); } } home/premiey/www/wp-content/plugins/creame-whatsapp-me/uninstall.php 0000666 00000001641 15165313562 0021770 0 ustar 00 <?php /** * Fired when the plugin is uninstalled. * * @link https://crea.me * @since 1.0.0 * @package Joinchat */ // If uninstall not called from WordPress, then exit. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit; } $option = get_option( 'joinchat' ); /** * Delete all plugin data if 'clear' is true. */ if ( isset( $option['clear'] ) && 'yes' === $option['clear'] ) { global $wpdb; // Delete general option 'joinchat' added by plugin. delete_option( 'joinchat' ); delete_option( 'joinchat_notice_dismiss' ); // Delete post meta '_joinchat' added by plugin. $wpdb->delete( $wpdb->prefix . 'postmeta', array( 'meta_key' => '_joinchat' ) ); // Delete term meta '_joinchat' added by plugin. $wpdb->delete( $wpdb->prefix . 'termmeta', array( 'meta_key' => '_joinchat' ) ); // TODO: delete WPML/Polylang translations. // Clear any cached data that has been removed. wp_cache_flush(); } home/premiey/www/wp-content/plugins/social-1762710188/uninstall.php 0000666 00000000566 15165346617 0020664 0 ustar 00 <?php //if uninstall not called from WordPress exit if (!defined('WP_UNINSTALL_PLUGIN')) { exit(); } global $wpdb; $redirect_table = $wpdb->prefix . "redirects"; $wpdb->query('DROP TABLE IF EXISTS ' . $redirect_table); delete_option('eps_pointers'); delete_option('eps_redirects_404_log'); delete_option('301-redirects-notices'); delete_option('eps_redirects_version'); home/premiey/www/wp-content/plugins/wp-whatsapp-chat/uninstall.php 0000666 00000000672 15165347072 0021506 0 ustar 00 <?php if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { die( '-1' ); } if ( ! is_multisite() ) { delete_user_meta( get_current_user_id(), 'qlwapp-user-rating' ); delete_option( 'qlwapp' ); delete_option( 'qlwapp_box' ); delete_option( 'qlwapp_button' ); delete_option( 'qlwapp_contacts' ); delete_option( 'qlwapp_display' ); delete_option( 'qlwapp_scheme' ); delete_option( 'qlwapp_settings' ); delete_option( 'qlwapp_woocommerce' ); } home/premiey/www/wp-content/plugins/all-in-one-seo-pack/uninstall.php 0000666 00000003165 15165674535 0021760 0 ustar 00 <?php /** * Uninstall AIOSEO * * @since 4.0.0 */ // Exit if accessed directly. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit; } // Load plugin file. require_once 'all_in_one_seo_pack.php'; // In case any of the versions - Lite or Pro - is still activated we bail. // Meaning, if you delete Lite while the Pro is activated we bail, and vice-versa. if ( defined( 'AIOSEO_FILE' ) && is_plugin_active( plugin_basename( AIOSEO_FILE ) ) ) { return; } // Disable Action Scheduler Queue Runner. if ( class_exists( 'ActionScheduler_QueueRunner' ) ) { ActionScheduler_QueueRunner::instance()->unhook_dispatch_async_request(); } // Drop our custom tables and data. aioseo()->uninstall->dropData(); // Remove translation files. global $wp_filesystem; // phpcs:ignore Squiz.NamingConventions.ValidVariableName $languages_directory = defined( 'WP_LANG_DIR' ) ? trailingslashit( WP_LANG_DIR ) : trailingslashit( WP_CONTENT_DIR ) . 'languages/'; // phpcs:ignore Squiz.NamingConventions.ValidVariableName $translations = glob( wp_normalize_path( $languages_directory . 'plugins/aioseo-*' ) ); // phpcs:ignore Squiz.NamingConventions.ValidVariableName if ( ! empty( $translations ) ) { foreach ( $translations as $file ) { $wp_filesystem->delete( $file ); // phpcs:ignore Squiz.NamingConventions.ValidVariableName } } $translations = glob( wp_normalize_path( $languages_directory . 'plugins/all-in-one-seo-*' ) ); // phpcs:ignore Squiz.NamingConventions.ValidVariableName if ( ! empty( $translations ) ) { foreach ( $translations as $file ) { $wp_filesystem->delete( $file ); // phpcs:ignore Squiz.NamingConventions.ValidVariableName } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings