PluginProbe ʕ •ᴥ•ʔ
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More / 4.0.5
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More v4.0.5
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 5 days ago blocks 5 days ago src 5 days ago vendor 5 days ago composer.json 5 days ago plugin.php 5 days ago readme.txt 5 days ago
plugin.php
62 lines
1 <?php
2
3 namespace SuperbAddons;
4
5 /*
6 Plugin Name: Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More
7 Plugin URI: https://superbthemes.com/
8 Description: Enhance your website building experience with our user-friendly tools and features. Create stunning designs effortlessly using our blocks, patterns, and theme designer for the Block Editor & FSE.
9 Version: 4.0.5
10 Author: SuperbThemes
11 Author URI: https://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: 4.1
16 * Elementor Pro tested up to: 4.1
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', '4.0.5');
27 }
28
29 if (!defined('SUPERBADDONS_LIBRARY_VERSION')) {
30 define('SUPERBADDONS_LIBRARY_VERSION', 102);
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