PluginProbe ʕ •ᴥ•ʔ
ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution / 1.0.0
ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution v1.0.0
4.9.1 4.9.0 2.0.0 2.1.0 2.2.0 2.2.1 2.2.2 2.3.0 2.4.0 2.5.0 2.5.1 3.0.0 3.1.0 3.1.1 4.0.0 4.0.1 4.1.0 4.1.1 4.2.0 4.2.1 4.3.0 4.3.1 4.4.0 4.5.0 4.5.1 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.6.8 4.6.9 4.7.0 4.7.1 4.7.2 4.7.3 4.7.4 4.7.5 4.7.6 4.7.7 4.7.8 4.7.9 4.8.0 4.8.1 4.8.2 4.8.3 4.8.4 4.8.5 4.8.6 4.8.7 4.8.8 4.8.9 trunk 0.1.2-beta 0.1.3-beta 0.1.4-beta 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.5.0 1.5.1 1.6.0 1.6.1 1.7.0 1.8.0 1.8.1 1.9.0
shopengine / core / register / widget-list.php
shopengine / core / register Last commit date
base.php 5 years ago model.php 5 years ago module-list.php 5 years ago widget-list.php 5 years ago
widget-list.php
323 lines
1 <?php
2
3 namespace ShopEngine\Core\Register;
4
5 defined('ABSPATH') || exit;
6
7 class Widget_List extends \ShopEngine\Base\List_Model{
8
9 use \ShopEngine\Traits\Singleton;
10
11 protected $list_type = 'widgets';
12 protected $generate_base_class = true;
13
14 protected function raw_list() {
15 return [
16 'account-address' => [
17 'slug' => 'account-address',
18 'title' => esc_html__('Account Address', 'shopengine'),
19 'package' => 'free',
20 ],
21 'account-dashboard' => [
22 'slug' => 'account-dashboard',
23 'title' => esc_html__('Account Dashboard', 'shopengine'),
24 'package' => 'free',
25 ],
26 'account-details' => [
27 'slug' => 'account-details',
28 'title' => esc_html__('Account Details', 'shopengine'),
29 'package' => 'free',
30 ],
31 'account-downloads' => [
32 'slug' => 'account-downloads',
33 'title' => esc_html__('Account Downloads', 'shopengine'),
34 'package' => 'free',
35 ],
36 'account-form-login' => [
37 'slug' => 'account-form-login',
38 'title' => esc_html__('Account Form - Login', 'shopengine'),
39 'package' => 'free',
40 ],
41 'account-form-register' => [
42 'slug' => 'account-form-register',
43 'title' => esc_html__('Account Form - Register', 'shopengine'),
44 'package' => 'free',
45 ],
46 'account-logout' => [
47 'slug' => 'account-logout',
48 'title' => esc_html__('Account Logout', 'shopengine'),
49 'package' => 'free',
50 ],
51 'account-navigation' => [
52 'slug' => 'account-navigation',
53 'title' => esc_html__('Account Navigation', 'shopengine'),
54 'package' => 'free',
55 ],
56 'account-order-details' => [
57 'slug' => 'account-order-details',
58 'title' => esc_html__('Account Order - Details', 'shopengine'),
59 'package' => 'free',
60 ],
61 'account-orders' => [
62 'slug' => 'account-orders',
63 'title' => esc_html__('Account Orders', 'shopengine'),
64 'package' => 'free',
65 ],
66 'additional-information' => [
67 'slug' => 'additional-information',
68 'title' => esc_html__('Additional Information', 'shopengine'),
69 'package' => 'free',
70 ],
71 'add-to-cart' => [
72 'slug' => 'add-to-cart',
73 'title' => esc_html__('Add To Cart', 'shopengine'),
74 'package' => 'free',
75 ],
76 'archive-description' => [
77 'slug' => 'archive-description',
78 'title' => esc_html__('Archive Description', 'shopengine'),
79 'package' => 'free',
80 ],
81 'archive-products' => [
82 'slug' => 'archive-products',
83 'title' => esc_html__('Archive Products', 'shopengine'),
84 'package' => 'free',
85 ],
86 'archive-title' => [
87 'slug' => 'archive-title',
88 'title' => esc_html__('Archive Title', 'shopengine'),
89 'package' => 'free',
90 ],
91 'archive-result-count' => [
92 'slug' => 'archive-result-count',
93 'title' => esc_html__('Archive Result Count', 'shopengine'),
94 'package' => 'free',
95 ],
96 'archive-view-mode' => [
97 'slug' => 'archive-view-mode',
98 'title' => esc_html__('Archive View Mode', 'shopengine'),
99 'package' => 'free',
100 ],
101 'filter-products-per-page' => [
102 'slug' => 'filter-products-per-page',
103 'title' => esc_html__('Products Per Page Filter', 'shopengine'),
104 'package' => 'free',
105 ],
106 'breadcrumbs' => [
107 'slug' => 'breadcrumbs',
108 'title' => esc_html__('Breadcrumbs', 'shopengine'),
109 'package' => 'free',
110 ],
111 'cart-table' => [
112 'slug' => 'cart-table',
113 'title' => esc_html__('Cart Table', 'shopengine'),
114 'package' => 'free',
115 ],
116 'cart-totals' => [
117 'slug' => 'cart-totals',
118 'title' => esc_html__('Cart Total', 'shopengine'),
119 'package' => 'free',
120 ],
121 'categories' => [
122 'slug' => 'categories',
123 'title' => esc_html__('Categories', 'shopengine'),
124 'package' => 'free',
125 ],
126 'checkout-coupon-form' => [
127 'slug' => 'checkout-coupon-form',
128 'title' => esc_html__('Checkout Coupon Form', 'shopengine'),
129 'package' => 'free',
130 ],
131 'checkout-form-additional' => [
132 'slug' => 'checkout-form-additional',
133 'title' => esc_html__('Checkout Form - Additional', 'shopengine'),
134 'package' => 'free',
135 ],
136 'checkout-form-billing' => [
137 'slug' => 'checkout-form-billing',
138 'title' => esc_html__('Checkout Form - Billing', 'shopengine'),
139 'package' => 'free',
140 ],
141 'checkout-form-login' => [
142 'slug' => 'checkout-form-login',
143 'title' => esc_html__('Checkout Form - Login', 'shopengine'),
144 'package' => 'free',
145 ],
146 'checkout-form-shipping' => [
147 'slug' => 'checkout-form-shipping',
148 'title' => esc_html__('Checkout Form - Shipping', 'shopengine'),
149 'package' => 'free',
150 ],
151 'checkout-payment' => [
152 'slug' => 'checkout-payment',
153 'title' => esc_html__('Checkout Payment', 'shopengine'),
154 'package' => 'free',
155 ],
156 'checkout-review-order' => [
157 'slug' => 'checkout-review-order',
158 'title' => esc_html__('Checkout Review Order', 'shopengine'),
159 'package' => 'free',
160 ],
161 'checkout-shipping-methods' => [
162 'slug' => 'checkout-shipping-methods',
163 'title' => esc_html__('Checkout Shipping Methods', 'shopengine'),
164 'package' => 'free',
165 ],
166 'cross-sells' => [
167 'slug' => 'cross-sells',
168 'title' => esc_html__('Cross Sells', 'shopengine'),
169 'package' => 'free',
170 ],
171 'empty-cart-message' => [
172 'slug' => 'empty-cart-message',
173 'title' => esc_html__('Empty Cart Message', 'shopengine'),
174 'package' => 'free',
175 ],
176 'filter-price' => [
177 'slug' => 'filter-price',
178 'title' => esc_html__('Filter Price', 'shopengine'),
179 'package' => 'free',
180 ],
181 'product-categories' => [
182 'slug' => 'product-categories',
183 'title' => esc_html__('Product Categories', 'shopengine'),
184 'package' => 'free',
185 ],
186 'product-description' => [
187 'slug' => 'product-description',
188 'title' => esc_html__('Product Description', 'shopengine'),
189 'package' => 'free',
190 ],
191 'product-excerpt' => [
192 'slug' => 'product-excerpt',
193 'title' => esc_html__('Product Excerpt', 'shopengine'),
194 'package' => 'free',
195 ],
196 'product-filters' => [
197 'slug' => 'product-filters',
198 'title' => esc_html__('Product Filters', 'shopengine'),
199 'package' => 'free',
200 ],
201 'product-image' => [
202 'slug' => 'product-image',
203 'title' => esc_html__('Product Image', 'shopengine'),
204 'package' => 'free',
205 ],
206 'product-meta' => [
207 'slug' => 'product-meta',
208 'title' => esc_html__('Product Meta', 'shopengine'),
209 'package' => 'free',
210 ],
211 'product-price' => [
212 'slug' => 'product-price',
213 'title' => esc_html__('Product Price', 'shopengine'),
214 'package' => 'free',
215 ],
216 'product-review' => [
217 'slug' => 'product-review',
218 'title' => esc_html__('Product Review', 'shopengine'),
219 'package' => 'free',
220 ],
221 'product-share' => [
222 'slug' => 'product-share',
223 'title' => esc_html__('Product Share', 'shopengine'),
224 'package' => 'free',
225 ],
226 'product-sku' => [
227 'slug' => 'product-sku',
228 'title' => esc_html__('Product SKU', 'shopengine'),
229 'package' => 'free',
230 ],
231 'product-stock' => [
232 'slug' => 'product-stock',
233 'title' => esc_html__('Product Stock', 'shopengine'),
234 'package' => 'free',
235 ],
236 'product-tabs' => [
237 'slug' => 'product-tabs',
238 'title' => esc_html__('Product Tabs', 'shopengine'),
239 'package' => 'free',
240 ],
241 'product-tags' => [
242 'slug' => 'product-tags',
243 'title' => esc_html__('Product Tags', 'shopengine'),
244 'package' => 'free',
245 ],
246 'product-title' => [
247 'slug' => 'product-title',
248 'title' => esc_html__('Product Title', 'shopengine'),
249 'package' => 'free',
250 ],
251 'product-rating' => [
252 'slug' => 'product-rating',
253 'title' => esc_html__('Rating', 'shopengine'),
254 'package' => 'free',
255 ],
256 'related' => [
257 'slug' => 'related',
258 'title' => esc_html__('Related Product', 'shopengine'),
259 'package' => 'free',
260 ],
261 'return-to-shop' => [
262 'slug' => 'return-to-shop',
263 'title' => esc_html__('Return To Shop', 'shopengine'),
264 'package' => 'free',
265 ],
266 'thankyou-address-details' => [
267 'slug' => 'thankyou-address-details',
268 'title' => esc_html__('Thank You Address Details', 'shopengine'),
269 'package' => 'free',
270 ],
271 'thankyou-order-confirm' => [
272 'slug' => 'thankyou-order-confirm',
273 'title' => esc_html__('Order Confirm', 'shopengine'),
274 'package' => 'free',
275 ],
276 'thankyou-order-details' => [
277 'slug' => 'thankyou-order-details',
278 'title' => esc_html__('Order Details', 'shopengine'),
279 'package' => 'free',
280 ],
281 'thankyou-thankyou' => [
282 'slug' => 'thankyou-thankyou',
283 'title' => esc_html__('Order Thank You', 'shopengine'),
284 'package' => 'free',
285 ],
286 'up-sells' => [
287 'slug' => 'up-sells',
288 'title' => esc_html__('Up Sells', 'shopengine'),
289 'package' => 'free',
290 ],
291 'advanced-search' => [
292 'slug' => 'advanced-search',
293 'title' => esc_html__('Advanced Search', 'shopengine'),
294 'package' => 'free',
295 ],
296 'deal-products' => [
297 'slug' => 'deal-products',
298 'title' => esc_html__('Deal Products', 'shopengine'),
299 'package'=> 'free',
300 ],
301 'filterable-product-list' => [
302 'slug' => 'filterable-product-list',
303 'title' => esc_html__('Filterable Product List', 'shopengine'),
304 'package'=> 'free',
305 ],
306 'product-category-lists' => [
307 'slug' => 'product-category-lists',
308 'title' => esc_html__('Product Category Lists', 'shopengine'),
309 'package'=> 'free',
310 ],
311 'product-list' => [
312 'slug' => 'product-list',
313 'title' => esc_html__('Product List', 'shopengine'),
314 'package'=> 'free',
315 ],
316 'recently-viewed-products' => [
317 'slug' => 'recently-viewed-products',
318 'title' => esc_html__('Recently Viewed Products', 'shopengine'),
319 'package'=> 'free',
320 ]
321 ];
322 }
323 }