| Server IP : 145.239.37.162 / Your IP : 216.73.216.39 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www1/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;
}
}