STRATO-apps/wordpress_03/app/wp-content/plugins/fluent-smtp/app/Services/DB/wpfluent.php
SHA-256: ffe1f0afcf544f70764bbe2db7c94c86e7c438c44bee4438c8d5a60db012d605
<?php defined('ABSPATH') or die;
if (! function_exists('FluentSmtpDb')) {
/**
* @return \FluentMail\App\Services\DB\QueryBuilder\QueryBuilderHandler
*/
function FluentSmtpDb()
{
static $FluentSmtpDb;
if (! $FluentSmtpDb) {
global $wpdb;
$connection = new \FluentMail\App\Services\DB\Connection($wpdb, ['prefix' => $wpdb->prefix]);
$FluentSmtpDb = new \FluentMail\App\Services\DB\QueryBuilder\QueryBuilderHandler($connection);
}
return $FluentSmtpDb;
}
}