| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/web/wp-content/plugins/wp-mail-smtp/src/Compatibility/ |
Upload File : |
<?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;
}
}