HEX
Server: LiteSpeed
System: Linux server318.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: joyfejor (3859)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/joyfejor/public_html/wp-content/plugins/siteseo-pro/main/install.php
<?php
/*
* SITESEO
* https://siteseo.io
* (c) SiteSEO Team
*/

namespace SiteSEOPro;

if(!defined('ABSPATH')){
    die('HACKING ATTEMPT!');
}


class Install{

	static function activate(){
		update_option('siteseo_pro_version', SITESEO_PRO_VERSION);
	}
	
	static function deactivate(){
		global $wpdb;

		wp_clear_scheduled_hook('siteseo_send_404_report_email');
		wp_clear_scheduled_hook('siteseo_404_cleanup');
	}
	
	static function uninstall(){
		global $wpdb;
		
		$wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix."siteseo_redirect_logs`");

		delete_option('siteseo_pro_version');
		delete_option('siteseo_pro_options');
		delete_option('siteseo_pro_page_speed');
		delete_option('siteseo_license');
	}
	
}