PluginProbe
ElementsKit Elementor Addons – Advanced Widgets & Templates Addons for Elementor / 4.0.3
ElementsKit Elementor Addons – Advanced Widgets & Templates Addons for Elementor v4.0.3
4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.10.02 3.10.01 3.9.10 3.9.9 3.9.8 3.9.7 3.9.5 3.9.6 3.9.3 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.2.0 2.2.1 2.2.2 All 183 releases
elementskit-lite / config / module-list.php
module-list.php
155 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace ElementsKit_Lite\Config;
4
5 defined( 'ABSPATH' ) || exit;
6 class Module_List extends \ElementsKit_Lite\Core\Config_List {
7
8 protected $type = 'module';
9
10 protected function set_required_list() {
11
12 $this->required_list = array(
13 'dynamic-content' => array(
14 'slug' => 'dynamic-content',
15 'package' => 'free',
16 ),
17 'layout-manager' => array(
18 'slug' => 'layout-manager',
19 'package' => 'free',
20 ),
21 // 'controls' => [
22 // 'slug' => 'controls',
23 // 'package' => 'free',
24 // ],
25 );
26 }
27
28 protected function set_optional_list() {
29
30 $this->optional_list = apply_filters(
31 'elementskit/modules/list',
32 array(
33 'elementskit-icon-pack' => array(
34 'slug' => 'elementskit-icon-pack',
35 'title' => 'Icon Pack',
36 'package' => 'free', // free, pro, pro-disabled
37 //'path' => null,
38 //'base_class_name' => null,
39 //'live' => null
40 // 'attributes' => array( 'new' ),
41 ),
42 'header-footer' => array(
43 'slug' => 'header-footer',
44 'title' => 'Header Footer',
45 'package' => 'free',
46 ),
47 'megamenu' => array(
48 'slug' => 'megamenu',
49 'package' => 'free',
50 'title' => 'Mega Menu',
51 ),
52 'onepage-scroll' => array(
53 'slug' => 'onepage-scroll',
54 'package' => 'free',
55 'title' => 'Onepage Scroll',
56 ),
57 'widget-builder' => array(
58 'slug' => 'widget-builder',
59 'package' => 'free',
60 'title' => 'Widget Builder',
61 ),
62 'parallax' => array(
63 'slug' => 'parallax',
64 'package' => 'pro-disabled',
65 'title' => 'Parallax Effects',
66 ),
67 'sticky-content' => array(
68 'slug' => 'sticky-content',
69 'package' => 'pro-disabled',
70 'title' => 'Sticky Content',
71 ),
72 'facebook-messenger' => array(
73 'slug' => 'facebook-messenger',
74 'package' => 'pro-disabled',
75 'title' => 'Facebook Messenger',
76 ),
77 'conditional-content' => array(
78 'slug' => 'conditional-content',
79 'package' => 'pro-disabled',
80 'title' => 'Conditional Content',
81 ),
82 'copy-paste-cross-domain' => array(
83 'slug' => 'copy-paste-cross-domain',
84 'package' => 'pro-disabled',
85 'title' => 'Cross-Domain Copy Paste',
86 ),
87 'advanced-tooltip' => array(
88 'slug' => 'advanced-tooltip',
89 'package' => 'pro-disabled',
90 'title' => 'Advanced Tooltip',
91 ),
92 'pro-form-reset-button' => array(
93 'slug' => 'pro-form-reset-button',
94 'package' => 'pro-disabled',
95 'title' => 'Reset Button For Elementor Pro Form',
96 ),
97 'google_sheet_for_elementor_pro_form' => array(
98 'slug' => 'google-sheet-for-elementor-pro-form',
99 'package' => 'pro-disabled',
100 'title' => 'Google Sheet For Elementor Pro Form',
101 ),
102 'masking' => array(
103 'slug' => 'masking',
104 'package' => 'pro-disabled',
105 'title' => 'Image Masking',
106 ),
107 'particles' => array(
108 'slug' => 'particles',
109 'package' => 'pro-disabled',
110 'title' => 'Particles',
111 ),
112 'wrapper-link' => array(
113 'slug' => 'wrapper-link',
114 'package' => 'pro-disabled',
115 'title' => 'Wrapper Link',
116 ),
117 'glass-morphism' => array(
118 'slug' => 'glass-morphism',
119 'package' => 'pro-disabled',
120 'title' => 'Glass Morphism',
121 ),
122 'mouse-cursor' => array(
123 'slug' => 'mouse-cursor',
124 'package' => 'pro-disabled',
125 'title' => 'Mouse Cursor',
126 ),
127 'liquid-glass' => [
128 'slug' => 'liquid-glass',
129 'package' => 'pro-disabled',
130 'title' => 'Liquid Glass',
131 'attributes' => array( 'new' ),
132 ],
133 'badge' => [
134 'slug' => 'badge',
135 'package' => 'pro-disabled',
136 'title' => 'Global Badge',
137 'attributes' => array( 'new' ),
138 ],
139 'scroll-reveal' => [
140 'slug' => 'scroll-reveal',
141 'package' => 'pro-disabled',
142 'title' => 'Scroll Reveal',
143 'attributes' => array( 'new' ),
144 ],
145 'marquee' => [
146 'slug' => 'marquee',
147 'package' => 'pro-disabled',
148 'title' => 'Marquee (Anything)',
149 'attributes' => array( 'new' ),
150 ],
151 )
152 );
153 }
154 }
155