PluginProbe ʕ •ᴥ•ʔ
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More / 3.4.1
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More v3.4.1
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 3.0.9 3.1.0 3.1.2 3.1.3 3.2.0 3.2.1 3.2.2 3.2.4 3.2.5 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.4.0 3.4.1 3.4.2 3.4.5 3.4.6 3.5.0 3.5.1 3.5.2 3.5.3 3.5.4 3.5.6 3.5.7 3.5.8 3.5.9 3.6.0 3.6.1 3.6.2 3.7.0 3.7.1
superb-blocks / plugin.php
superb-blocks Last commit date
assets 1 year ago blocks 1 year ago src 1 year ago vendor 1 year ago plugin.php 1 year ago readme.txt 1 year ago
plugin.php
60 lines
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.4.1
10 Author: SuperbThemes
11 Author URI: http://superbthemes.com/
12 Text Domain: superb-blocks
13 * Elementor tested up to: 3.24
14 * Elementor Pro tested up to: 3.24
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.4.1');
25 }
26
27 if (!defined('SUPERBADDONS_LIBRARY_VERSION')) {
28 define('SUPERBADDONS_LIBRARY_VERSION', 100);
29 }
30
31 if (!defined('SUPERBADDONS_BASE')) {
32 define('SUPERBADDONS_BASE', plugin_basename(__FILE__));
33 }
34
35 if (!defined('SUPERBADDONS_BASE_PATH')) {
36 define('SUPERBADDONS_BASE_PATH', __FILE__);
37 }
38
39 if (!defined('SUPERBADDONS_PATH')) {
40 define('SUPERBADDONS_PATH', untrailingslashit(plugins_url('', SUPERBADDONS_BASE_PATH)));
41 }
42
43 if (!defined('SUPERBADDONS_PLUGIN_DIR')) {
44 define('SUPERBADDONS_PLUGIN_DIR', plugin_dir_path(SUPERBADDONS_BASE_PATH));
45 }
46
47 if (!defined('SUPERBADDONS_ASSETS_PATH')) {
48 define('SUPERBADDONS_ASSETS_PATH', SUPERBADDONS_PATH . '/assets');
49 }
50 //
51
52 // Autoload
53 require_once SUPERBADDONS_PLUGIN_DIR . 'vendor/autoload.php';
54
55 use SuperbAddons\SuperbAddonsPlugin;
56
57 SuperbAddonsPlugin::GetInstance();
58
59 //
60