PluginProbe ʕ •ᴥ•ʔ
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More / 3.6.1
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More v3.6.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 10 months ago blocks 10 months ago src 10 months ago vendor 10 months ago plugin.php 10 months ago readme.md 10 months ago readme.txt 10 months ago
plugin.php
62 lines
1 <?php
2
3 namespace SuperbAddons;
4
5 /*
6 Plugin Name: Superb Addons: Blocks, Patterns & Theme Designer
7 Plugin URI: http://superbthemes.com/
8 Description: Superb Addons: Blocks, Patterns & Theme Designer
9 Version: 3.6.1
10 Author: SuperbThemes
11 Author URI: http://superbthemes.com/
12 License: GPL-3.0+
13 License URI: https://www.gnu.org/licenses/gpl-3.0.txt
14 Text Domain: superb-blocks
15 * Elementor tested up to: 3.29
16 * Elementor Pro tested up to: 3.29
17 */
18
19 defined('ABSPATH') || exit;
20
21 if (!defined('WPINC')) {
22 die;
23 }
24 // Constants
25 if (!defined('SUPERBADDONS_VERSION')) {
26 define('SUPERBADDONS_VERSION', '3.6.1');
27 }
28
29 if (!defined('SUPERBADDONS_LIBRARY_VERSION')) {
30 define('SUPERBADDONS_LIBRARY_VERSION', 101);
31 }
32
33 if (!defined('SUPERBADDONS_BASE')) {
34 define('SUPERBADDONS_BASE', plugin_basename(__FILE__));
35 }
36
37 if (!defined('SUPERBADDONS_BASE_PATH')) {
38 define('SUPERBADDONS_BASE_PATH', __FILE__);
39 }
40
41 if (!defined('SUPERBADDONS_PATH')) {
42 define('SUPERBADDONS_PATH', untrailingslashit(plugins_url('', SUPERBADDONS_BASE_PATH)));
43 }
44
45 if (!defined('SUPERBADDONS_PLUGIN_DIR')) {
46 define('SUPERBADDONS_PLUGIN_DIR', plugin_dir_path(SUPERBADDONS_BASE_PATH));
47 }
48
49 if (!defined('SUPERBADDONS_ASSETS_PATH')) {
50 define('SUPERBADDONS_ASSETS_PATH', SUPERBADDONS_PATH . '/assets');
51 }
52 //
53
54 // Autoload
55 require_once SUPERBADDONS_PLUGIN_DIR . 'vendor/autoload.php';
56
57 use SuperbAddons\SuperbAddonsPlugin;
58
59 SuperbAddonsPlugin::GetInstance();
60
61 //
62