| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www/wp-content/plugins/divi-booster/core/ |
Upload File : |
<?php // Core plugin framework
// === Load the functions and hooks ===
include(dirname(__FILE__).'/divi/divi.php');
include(dirname(__FILE__).'/functions.php');
include(dirname(__FILE__).'/classes/classes.php');
include(dirname(__FILE__).'/hooks/index.php');
// Initialize assets
DBDBMagnificPopup::create()->init();
DBDBETModulesFont::create()->load_full_font();
DBDBDynamicAsset::socialMediaFollowCss()->init();
// === Load plugin compatibity / deprecation files ===
include(dirname(__FILE__).'/compat/compat.php');
include(dirname(__FILE__).'/deprecated/deprecated-icons/deprecated-icons.php');
// === Load the core plugin class ===
include(dirname(__FILE__).'/wtfplugin_1_0.class.php');
// === Load the update checker ===
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
require dirname(__FILE__).'/plugin-update-checker/plugin-update-checker.php';
}
// === Load the plugins page code ===
include(dirname(__FILE__).'/admin/plugins/plugins.php');
// === Load the module options ===
include(dirname(__FILE__).'/module-options.php'); // Load the module options
// === Load the icon sets ===
include(dirname(__FILE__).'/icons/socicon.php');
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
include(dirname(__FILE__).'/icons/divi-booster-icons/divi-booster-icons.php');
}
// === Load additional features ===
include(dirname(__FILE__).'/features/features.php');
// === Automatic updates ===
function booster_enable_updates($file) {
try {
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
$myUpdateChecker = \DiviBooster\Puc_v4_Factory::buildUpdateChecker(
DBDBUpdateServer::create()->updatesUrl(),
$file, //Full path to the main plugin file or functions.php.
dbdb_slug()
);
}
} catch (Exception $e) { }
}
// === Error handling ===
function booster_error($msg, $details="") {
update_option(BOOSTER_OPTION_LAST_ERROR, $msg);
update_option(BOOSTER_OPTION_LAST_ERROR_DESC, $details);
return false;
}
// === Add body classes ===
add_filter('body_class', 'dbdb_add_theme_version_body_classes');
function dbdb_add_theme_version_body_classes($classes) {
if (dbdb_is_divi_2_4_up()) {
$classes[] = 'dbdb_divi_2_4_up';
}
return $classes;
}
// === Minification ===
// JavaScript minification
function booster_minify_js($js) {
if (!class_exists('JSMin')) {
include_once(dirname(__FILE__).'/libs/JSMin.php');
}
try {
return JSMin::minify($js);
} catch (Exception $e) {
return $js; // Something went wrong, so fall back to unminified js
}
}
// CSS minification - modified from: https://github.com/GaryJones/Simple-PHP-CSS-Minification/blob/master/minify.php
function booster_minify_css($css) {
// Normalize whitespace
$css = preg_replace( '/\s+/', ' ', $css );
// Remove spaces before and after comment
$css = preg_replace( '/(\s+)(\/\*(.*?)\*\/)(\s+)/', '$2', $css );
// Remove comment blocks, everything between /* and */, unless preserved with /*! ... */ or /** ... */
$css = preg_replace( '~/\*(?![\!|\*])(.*?)\*/~', '', $css );
// Remove ; before }
$css = preg_replace( '/;(?=\s*})/', '', $css );
// Remove space after , : ; { } */ >
$css = preg_replace( '/(,|:|;|\{|}|\*\/|>) /', '$1', $css );
// Remove space before , ; { } ) >
$css = preg_replace( '/ (,|;|\{|}|\)|>)/', '$1', $css );
// Strips leading 0 on decimal values (converts 0.5px into .5px)
$css = preg_replace( '/(:| )0\.([0-9]+)(%|em|ex|px|in|cm|mm|pt|pc)/i', '${1}.${2}${3}', $css );
// Strips units if value is 0 (converts 0px to 0)
$css = preg_replace( '/(:| )(\.?)0(%|em|ex|px|in|cm|mm|pt|pc)/i', '${1}0', $css );
// Converts all zeros value into short-hand
$css = preg_replace( '/0 0 0 0/', '0', $css );
// Shorten 6-character hex color codes to 3-character where possible
$css = preg_replace( '/#([a-f0-9])\\1([a-f0-9])\\2([a-f0-9])\\3/i', '#\1\2\3', $css );
return trim($css);
}