Current File : /home/n742ef5/sithmarket/wp-content/plugins/superb-blocks/plugin.php
<?php

namespace SuperbAddons;

/*
Plugin Name: Superb Addons: Blocks, Patterns & Theme Designer
Plugin URI: http://superbthemes.com/
Description: Superb Addons: Blocks, Patterns & Theme Designer
Version: 3.5.3
Author: SuperbThemes
Author URI: http://superbthemes.com/
License: GPL-3.0+
License URI: https://www.gnu.org/licenses/gpl-3.0.txt
Text Domain: superb-blocks
* Elementor tested up to: 3.27
* Elementor Pro tested up to: 3.27
*/

defined('ABSPATH') || exit;

if (!defined('WPINC')) {
    die;
}
// Constants
if (!defined('SUPERBADDONS_VERSION')) {
    define('SUPERBADDONS_VERSION', '3.5.3');
}

if (!defined('SUPERBADDONS_LIBRARY_VERSION')) {
    define('SUPERBADDONS_LIBRARY_VERSION', 100);
}

if (!defined('SUPERBADDONS_BASE')) {
    define('SUPERBADDONS_BASE', plugin_basename(__FILE__));
}

if (!defined('SUPERBADDONS_BASE_PATH')) {
    define('SUPERBADDONS_BASE_PATH', __FILE__);
}

if (!defined('SUPERBADDONS_PATH')) {
    define('SUPERBADDONS_PATH', untrailingslashit(plugins_url('', SUPERBADDONS_BASE_PATH)));
}

if (!defined('SUPERBADDONS_PLUGIN_DIR')) {
    define('SUPERBADDONS_PLUGIN_DIR', plugin_dir_path(SUPERBADDONS_BASE_PATH));
}

if (!defined('SUPERBADDONS_ASSETS_PATH')) {
    define('SUPERBADDONS_ASSETS_PATH', SUPERBADDONS_PATH . '/assets');
}
//

// Autoload
require_once SUPERBADDONS_PLUGIN_DIR . 'vendor/autoload.php';

use SuperbAddons\SuperbAddonsPlugin;

SuperbAddonsPlugin::GetInstance();

//