HEX
Server: Apache
System: Linux uws7-179.cafe24.com 3.10.0-1160.119.1p.el7.x86_64 #1 SMP Thu Sep 11 14:15:01 KST 2025 x86_64
User: medikors (1589)
PHP: 7.3.1p1
Disabled: mysql_pconnect
Upload Files
File: /medikors/www/eng/wp-content/plugins/happy-elementor-addons/classes/extensions-manager.php
<?php
namespace Happy_Addons\Elementor;

use Happy_Addons\Elementor\Extension\Happy_Effects;
use Happy_Addons\Elementor\Extension\Column_Extended;
use Happy_Addons\Elementor\Extension\Widgets_Extended;
use Happy_Addons\Elementor\Extension\Background_Overlay;

defined( 'ABSPATH' ) || die();

class Extensions_Manager {

    /**
     * Initialize
     */
    public static function init() {
        self::include_extensions();

        Happy_Effects::init();
        Column_Extended::init();
        Background_Overlay::init();
        Widgets_Extended::init();
    }

    public static function include_extensions() {
        include_once HAPPY_ADDONS_DIR_PATH . 'extensions/happy-effects.php';
        include_once HAPPY_ADDONS_DIR_PATH . 'extensions/column-extended.php';
        include_once HAPPY_ADDONS_DIR_PATH . 'extensions/widgets-extended.php';
        include_once HAPPY_ADDONS_DIR_PATH . 'extensions/background-overlay.php';
    }
}