SILENT KILLERPanel

Current Path: > home > > transcarter > public_html > wp-content > plugins > wp-optimize > includes


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.135
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home//transcarter/public_html/wp-content/plugins/wp-optimize/includes

NameTypeSizeLast ModifiedActions
blockui Directory - -
fragments Directory - -
list-tables Directory - -
tables Directory - -
backward-compatibility-functions.php File 3311 bytes July 17 2025 21:05:49.
class-re-smush-it-task.php File 5606 bytes July 17 2025 21:05:49.
class-updraft-abstract-logger.php File 3510 bytes July 17 2025 21:05:49.
class-updraft-email-logger.php File 4209 bytes July 17 2025 21:05:49.
class-updraft-file-logger.php File 4362 bytes July 17 2025 21:05:49.
class-updraft-log-levels.php File 911 bytes July 17 2025 21:05:49.
class-updraft-logger-interface.php File 2851 bytes July 17 2025 21:05:49.
class-updraft-logger.php File 4960 bytes July 17 2025 21:05:49.
class-updraft-php-logger.php File 2875 bytes July 17 2025 21:05:49.
class-updraft-ring-logger.php File 4148 bytes July 17 2025 21:05:49.
class-updraft-smush-manager-commands.php File 29110 bytes July 17 2025 21:05:49.
class-updraft-smush-manager.php File 58419 bytes July 17 2025 21:05:49.
class-updraft-smush-task.php File 13294 bytes July 17 2025 21:05:49.
class-updraftcentral-wp-optimize-commands.php File 1193 bytes July 17 2025 21:05:49.
class-wp-optimization.php File 13173 bytes July 17 2025 21:05:49.
class-wp-optimize-404-detector-cron.php File 1058 bytes July 17 2025 21:05:49.
class-wp-optimize-404-detector.php File 11259 bytes July 17 2025 21:05:49.
class-wp-optimize-admin.php File 33078 bytes July 17 2025 21:05:49.
class-wp-optimize-browser-cache.php File 9429 bytes July 17 2025 21:05:49.
class-wp-optimize-commands.php File 37345 bytes July 17 2025 21:05:49.
class-wp-optimize-database-information.php File 17133 bytes July 17 2025 21:05:49.
class-wp-optimize-delay-js.php File 11215 bytes July 17 2025 21:05:49.
class-wp-optimize-gzip-compression.php File 11036 bytes July 17 2025 21:05:49.
class-wp-optimize-heartbeat.php File 4044 bytes July 17 2025 21:05:49.
class-wp-optimize-htaccess.php File 9012 bytes July 17 2025 21:05:49.
class-wp-optimize-http-error-codes-trait.php File 9045 bytes July 17 2025 21:05:49.
class-wp-optimize-install-or-update-notice.php File 3344 bytes July 17 2025 21:05:49.
class-wp-optimize-notices.php File 18660 bytes July 17 2025 21:05:49.
class-wp-optimize-options.php File 16430 bytes July 17 2025 21:05:49.
class-wp-optimize-performance.php File 3555 bytes July 17 2025 21:05:49.
class-wp-optimize-preloader.php File 18543 bytes July 17 2025 21:05:49.
class-wp-optimize-server-information.php File 4941 bytes July 17 2025 21:05:49.
class-wp-optimize-system-status-report.php File 11189 bytes July 17 2025 21:05:49.
class-wp-optimize-table-management.php File 3762 bytes July 17 2025 21:05:49.
class-wp-optimize-transients-cache.php File 3434 bytes July 17 2025 21:05:49.
class-wp-optimize-updates.php File 11273 bytes July 17 2025 21:05:49.
class-wp-optimize-utils.php File 7010 bytes July 17 2025 21:05:49.
class-wp-optimizer.php File 20933 bytes July 17 2025 21:05:49.
class-wpo-activation.php File 2748 bytes July 17 2025 21:05:49.
class-wpo-ajax.php File 12418 bytes July 17 2025 21:05:49.
class-wpo-deactivation.php File 533 bytes July 17 2025 21:05:49.
class-wpo-image-utils.php File 1738 bytes July 17 2025 21:05:49.
class-wpo-page-optimizer.php File 1628 bytes July 17 2025 21:05:49.
class-wpo-uninstall.php File 2654 bytes July 17 2025 21:05:49.
updraftcentral.php File 1704 bytes July 17 2025 21:05:49.

Reading File: /home//transcarter/public_html/wp-content/plugins/wp-optimize/includes/updraftcentral.php

<?php

if (!defined('WPO_PLUGIN_MAIN_PATH')) die('No direct access allowed');

/**
 * This file is the bootstrapper for UpdraftCentral integration: i.e. it registers what is necessary to deal with commands in the wpoptimize namespace.
 */
class WP_Optimize_UpdraftCentral {

	public function __construct() {
		add_filter('updraftplus_remotecontrol_command_classes', array($this, 'updraftcentral_remotecontrol_command_classes'));
		add_filter('updraftcentral_remotecontrol_command_classes', array($this, 'updraftcentral_remotecontrol_command_classes'));
		add_action('updraftcentral_command_class_wanted', array($this, 'updraftcentral_command_class_wanted'));
	}
	
	/**
	 * Register our class
	 *
	 * @param string $command_classes Passing over an array of command classes.
	 */
	public function updraftcentral_remotecontrol_command_classes($command_classes) {
		if (is_array($command_classes)) $command_classes['wpoptimize'] = 'UpdraftCentral_WP_Optimize_Commands';
		return $command_classes;
	}
	
	/**
	 * Load the class when required
	 *
	 * @param string $command_php_class Passing over if there are any command classes.
	 */
	public function updraftcentral_command_class_wanted($command_php_class) {
		if ('UpdraftCentral_WP_Optimize_Commands' == $command_php_class) {
			// This fragment is only needed for compatibility with UD < 1.12.30 - thenceforth, the class can be assumed to exist.
			if (!class_exists('UpdraftCentral_Commands')) {
				include_once(apply_filters('updraftcentral_command_base_class_at', UPDRAFTPLUS_DIR.'/central/commands.php'));
			}
			include_once(WPO_PLUGIN_MAIN_PATH.'includes/class-updraftcentral-wp-optimize-commands.php');
		}
	}
}

new WP_Optimize_UpdraftCentral();

SILENT KILLER Tool