PluginProbe
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More / 3.3.0
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More v3.3.0
4.2.0 4.1.0 4.0.9 4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 trunk 1.0.0 2.0.0 2.0.1 2.0.2 2.0.3 3.0 3.0.1 3.0.2 3.0.5 3.0.6 3.0.7 3.0.8 All 59 releases
superb-blocks / plugin.php

plugin.php in Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More 3.3.0, at plugin.php

56 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace SuperbAddons;
4
5 /*
6 Plugin Name: Superb Addons - WordPress & Elementor Addons
7 Plugin URI: http://superbthemes.com/
8 Description: Superb Addons - WordPress & Elementor Addons
9 Version: 3.3.0
10 Author: SuperbThemes
11 Author URI: http://superbthemes.com/
12 Text Domain: superb-blocks
13 * Elementor tested up to: 3.23
14 * Elementor Pro tested up to: 3.23
15 */
16
17 defined('ABSPATH') || exit;
18
19 if (!defined('WPINC')) {
20 die;
21 }
22 // Constants
23 if (!defined('SUPERBADDONS_VERSION')) {
24 define('SUPERBADDONS_VERSION', '3.3.0');
25 }
26
27 if (!defined('SUPERBADDONS_BASE')) {
28 define('SUPERBADDONS_BASE', plugin_basename(__FILE__));
29 }
30
31 if (!defined('SUPERBADDONS_BASE_PATH')) {
32 define('SUPERBADDONS_BASE_PATH', __FILE__);
33 }
34
35 if (!defined('SUPERBADDONS_PATH')) {
36 define('SUPERBADDONS_PATH', untrailingslashit(plugins_url('', SUPERBADDONS_BASE_PATH)));
37 }
38
39 if (!defined('SUPERBADDONS_PLUGIN_DIR')) {
40 define('SUPERBADDONS_PLUGIN_DIR', plugin_dir_path(SUPERBADDONS_BASE_PATH));
41 }
42
43 if (!defined('SUPERBADDONS_ASSETS_PATH')) {
44 define('SUPERBADDONS_ASSETS_PATH', SUPERBADDONS_PATH . '/assets');
45 }
46 //
47
48 // Autoload
49 require_once SUPERBADDONS_PLUGIN_DIR . 'vendor/autoload.php';
50
51 use SuperbAddons\SuperbAddonsPlugin;
52
53 SuperbAddonsPlugin::GetInstance();
54
55 //
56