[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.223.125.226: ~ $
<?php
/*
* SiteSEO
* https://siteseo.io/
* (c) SiteSEO Team <support@siteseo.io>
*/

/*
Copyright 2016 - 2024 - Benjamin Denis  (email : contact@seopress.org)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

/**
 * Uninstall SiteSEO
 *
 * @since 6.2
 *
 * author Softaculous, inspired by Polylang
 */

if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { // If uninstall not called from WordPress exit
	exit;
}

class SITESEO_Uninstall {

	/**
	 * Constructor: manages uninstall for multisite
	 *
	 * @since 6.2
	 */
	public function __construct() {
		global $wpdb;

		// Don't do anything except if the constant SITESEO_UNINSTALL is explicitely defined and true.
		if ( ! defined( 'SITESEO_UNINSTALL' ) || ! SITESEO_UNINSTALL ) {
			return;
		}

		// Check if it is a multisite uninstall - if so, run the uninstall function for each blog id
		if ( is_multisite() ) {
			foreach ( $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" ) as $blog_id ) {
				switch_to_blog( $blog_id );
				$this->uninstall();
			}
			restore_current_blog();
		}
		else {
			$this->uninstall();
		}
	}

	/**
	 * Delete all entries in the DB related to SiteSEO Free AND PRO:
	 * Transients, post meta, options, custom tables
	 *
	 * @since 6.2
	 */
	public function uninstall() {
		global $wpdb;

		do_action( 'siteseo_uninstall' );

		// Delete post meta
		$wpdb->query( "DELETE FROM $wpdb->postmeta WHERE meta_key LIKE '_siteseo_%'" );

		// Delete global settings
		$options = $wpdb->get_col( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE 'siteseo_%'" );
		array_map( 'delete_option', $options );

		// Delete widget options
		$options = $wpdb->get_col( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE 'widget_siteseo_%'" );
		array_map( 'delete_option', $options );

		// Delete transients
		delete_transient( '_siteseo_sitemap_ids_video' );
		delete_transient( 'siteseo_results_page_speed' );
		delete_transient( 'siteseo_results_page_speed_desktop' );
		delete_transient( 'siteseo_results_google_analytics' );
		delete_transient( 'siteseo_results_matomo' );
		delete_transient( 'siteseo_prevent_title_redirection_already_exist' );

		// Delete custom tables
		$wpdb->query("DROP TABLE IF EXISTS {$wpdb->prefix}siteseo_significant_keywords");
	}
}

new SITESEO_Uninstall();

Filemanager

Name Type Size Permission Actions
assets Folder 0755
classes Folder 0755
languages Folder 0755
main Folder 0755
templates Folder 0755
vendor Folder 0755
credits.txt File 16.67 KB 0644
functions.php File 4.58 KB 0644
init.php File 11.63 KB 0644
readme.txt File 11.83 KB 0644
siteseo-autoload.php File 1.66 KB 0644
siteseo.php File 1.49 KB 0644
uninstall.php File 2.78 KB 0644
wpml-config.xml File 5.58 KB 0644