PluginProbe ʕ •ᴥ•ʔ
ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution / 1.3.4
ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution v1.3.4
4.9.2 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 4 years ago module-list.php 4 years ago widget-list.php 4 years ago
widget-list.php
249 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 'additional-information' => [
17 'slug' => 'additional-information',
18 'title' => esc_html__('Additional Information', 'shopengine'),
19 'package' => 'free',
20 ],
21 'add-to-cart' => [
22 'slug' => 'add-to-cart',
23 'title' => esc_html__('Add To Cart', 'shopengine'),
24 'package' => 'free',
25 ],
26 'archive-description' => [
27 'slug' => 'archive-description',
28 'title' => esc_html__('Archive Description', 'shopengine'),
29 'package' => 'free',
30 ],
31 'archive-products' => [
32 'slug' => 'archive-products',
33 'title' => esc_html__('Archive Products', 'shopengine'),
34 'package' => 'free',
35 ],
36 'archive-title' => [
37 'slug' => 'archive-title',
38 'title' => esc_html__('Archive Title', 'shopengine'),
39 'package' => 'free',
40 ],
41 'archive-result-count' => [
42 'slug' => 'archive-result-count',
43 'title' => esc_html__('Archive Result Count', 'shopengine'),
44 'package' => 'free',
45 ],
46 'archive-view-mode' => [
47 'slug' => 'archive-view-mode',
48 'title' => esc_html__('Archive View Mode', 'shopengine'),
49 'package' => 'free',
50 ],
51 'filter-orderby' => [
52 'slug' => 'filter-orderby',
53 'title' => esc_html__('Order By Filter', 'shopengine'),
54 'package' => 'free',
55 ],
56 'filter-products-per-page' => [
57 'slug' => 'filter-products-per-page',
58 'title' => esc_html__('Products Per Page Filter', 'shopengine'),
59 'package' => 'free',
60 ],
61 'breadcrumbs' => [
62 'slug' => 'breadcrumbs',
63 'title' => esc_html__('Breadcrumbs', 'shopengine'),
64 'package' => 'free',
65 ],
66 'cart-table' => [
67 'slug' => 'cart-table',
68 'title' => esc_html__('Cart Table', 'shopengine'),
69 'package' => 'free',
70 ],
71 'cart-totals' => [
72 'slug' => 'cart-totals',
73 'title' => esc_html__('Cart Total', 'shopengine'),
74 'package' => 'free',
75 ],
76 'checkout-coupon-form' => [
77 'slug' => 'checkout-coupon-form',
78 'title' => esc_html__('Checkout Form-Coupon', 'shopengine'),
79 'package' => 'free',
80 ],
81 'checkout-form-additional' => [
82 'slug' => 'checkout-form-additional',
83 'title' => esc_html__('Checkout Form - Additional', 'shopengine'),
84 'package' => 'free',
85 ],
86 'checkout-form-billing' => [
87 'slug' => 'checkout-form-billing',
88 'title' => esc_html__('Checkout Form - Billing', 'shopengine'),
89 'package' => 'free',
90 ],
91 'checkout-form-shipping' => [
92 'slug' => 'checkout-form-shipping',
93 'title' => esc_html__('Checkout Form - Shipping', 'shopengine'),
94 'package' => 'free',
95 ],
96 'checkout-payment' => [
97 'slug' => 'checkout-payment',
98 'title' => esc_html__('Checkout Payment', 'shopengine'),
99 'package' => 'free',
100 ],
101 'checkout-review-order' => [
102 'slug' => 'checkout-review-order',
103 'title' => esc_html__('Order Review', 'shopengine'),
104 'package' => 'free',
105 ],
106 'checkout-shipping-methods' => [
107 'slug' => 'checkout-shipping-methods',
108 'title' => esc_html__('Checkout Shipping Methods', 'shopengine'),
109 'package' => 'free',
110 ],
111 'cross-sells' => [
112 'slug' => 'cross-sells',
113 'title' => esc_html__('Cross-Sell', 'shopengine'),
114 'package' => 'free',
115 ],
116 'empty-cart-message' => [
117 'slug' => 'empty-cart-message',
118 'title' => esc_html__('Empty Cart Message', 'shopengine'),
119 'package' => 'free',
120 ],
121 'product-categories' => [
122 'slug' => 'product-categories',
123 'title' => esc_html__('Product Categories', 'shopengine'),
124 'package' => 'free',
125 ],
126 'product-description' => [
127 'slug' => 'product-description',
128 'title' => esc_html__('Product Description', 'shopengine'),
129 'package' => 'free',
130 ],
131 'product-excerpt' => [
132 'slug' => 'product-excerpt',
133 'title' => esc_html__('Product Excerpt', 'shopengine'),
134 'package' => 'free',
135 ],
136 'product-image' => [
137 'slug' => 'product-image',
138 'title' => esc_html__('Product Image', 'shopengine'),
139 'package' => 'free',
140 ],
141 'product-meta' => [
142 'slug' => 'product-meta',
143 'title' => esc_html__('Product Meta', 'shopengine'),
144 'package' => 'free',
145 ],
146 'product-price' => [
147 'slug' => 'product-price',
148 'title' => esc_html__('Product Price', 'shopengine'),
149 'package' => 'free',
150 ],
151 'product-review' => [
152 'slug' => 'product-review',
153 'title' => esc_html__('Product Review', 'shopengine'),
154 'package' => 'free',
155 ],
156 'product-share' => [
157 'slug' => 'product-share',
158 'title' => esc_html__('Product Share', 'shopengine'),
159 'package' => 'free',
160 ],
161 'product-sku' => [
162 'slug' => 'product-sku',
163 'title' => esc_html__('Product SKU', 'shopengine'),
164 'package' => 'free',
165 ],
166 'product-stock' => [
167 'slug' => 'product-stock',
168 'title' => esc_html__('Product Stock', 'shopengine'),
169 'package' => 'free',
170 ],
171 'product-tabs' => [
172 'slug' => 'product-tabs',
173 'title' => esc_html__('Product Tabs', 'shopengine'),
174 'package' => 'free',
175 ],
176 'product-tags' => [
177 'slug' => 'product-tags',
178 'title' => esc_html__('Product Tags', 'shopengine'),
179 'package' => 'free',
180 ],
181 'product-title' => [
182 'slug' => 'product-title',
183 'title' => esc_html__('Product Title', 'shopengine'),
184 'package' => 'free',
185 ],
186 'product-rating' => [
187 'slug' => 'product-rating',
188 'title' => esc_html__('Rating', 'shopengine'),
189 'package' => 'free',
190 ],
191 'related' => [
192 'slug' => 'related',
193 'title' => esc_html__('Related Product', 'shopengine'),
194 'package' => 'free',
195 ],
196 'return-to-shop' => [
197 'slug' => 'return-to-shop',
198 'title' => esc_html__('Return To Shop', 'shopengine'),
199 'package' => 'free',
200 ],
201 'up-sells' => [
202 'slug' => 'up-sells',
203 'title' => esc_html__('Upsell', 'shopengine'),
204 'package' => 'free',
205 ],
206 'advanced-search' => [
207 'slug' => 'advanced-search',
208 'title' => esc_html__('Advanced Search', 'shopengine'),
209 'package' => 'free',
210 ],
211 'deal-products' => [
212 'slug' => 'deal-products',
213 'title' => esc_html__('Deal Products', 'shopengine'),
214 'package' => 'free',
215 ],
216 'filterable-product-list' => [
217 'slug' => 'filterable-product-list',
218 'title' => esc_html__('Filterable Product List', 'shopengine'),
219 'package' => 'free',
220 ],
221 'product-category-lists' => [
222 'slug' => 'product-category-lists',
223 'title' => esc_html__('Product Category List', 'shopengine'),
224 'package' => 'free',
225 ],
226 'product-list' => [
227 'slug' => 'product-list',
228 'title' => esc_html__('Product List', 'shopengine'),
229 'package' => 'free',
230 ],
231 'recently-viewed-products' => [
232 'slug' => 'recently-viewed-products',
233 'title' => esc_html__('Recently Viewed Products', 'shopengine'),
234 'package' => 'free',
235 ],
236 'view-single-product' => [
237 'slug' => 'view-single-product',
238 'title' => esc_html__('View Single Product', 'shopengine'),
239 'package' => 'free',
240 ],
241 'notice' => [
242 'slug' => 'notice',
243 'title' => esc_html__('Notice', 'shopengine'),
244 'package' => 'free',
245 ]
246 ];
247 }
248 }
249