PluginProbe ʕ •ᴥ•ʔ
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More / 3.1.3
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More v3.1.3
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 2 years ago blocks 2 years ago src 2 years ago vendor 2 years ago plugin.php 2 years ago readme.txt 2 years ago
plugin.php
56 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.1.3
10 Author: SuperbThemes
11 Author URI: http://superbthemes.com/
12 Text Domain: superb-blocks
13 * Elementor tested up to: 3.18.3
14 * Elementor Pro tested up to: 3.18.3
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.1.3');
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