PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 1.11.0
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v1.11.0
2.3.2 2.3.1 2.3.0 2.2.8 2.2.7 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.11.1 1.11.2 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 1.9.10 1.9.11 All 60 releases
merchant / admin / classes / class-merchant-admin-modules.php

class-merchant-admin-modules.php in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant 1.11.0, at admin/classes/class-merchant-admin-modules.php

525 lines 23.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Merchant_Admin_Modules Class.
4 */
5
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit; // Exit if accessed directly
8 }
9
10 if ( ! class_exists( 'Merchant_Admin_Modules' ) ) {
11
12 class Merchant_Admin_Modules {
13
14 /**
15 * Upsell modules.
16 *
17 */
18 public static $modules_data = array();
19
20 /**
21 * The single class instance.
22 */
23 private static $instance = null;
24
25 /**
26 * Instance.
27 */
28 public static function instance() {
29 if ( is_null( self::$instance ) ) {
30 self::$instance = new self();
31 }
32 return self::$instance;
33 }
34
35 /**
36 * Constructor.
37 */
38 public function __construct() {
39 self::$modules_data = array(
40
41 // Boost Revenue.
42 'pre-orders' => array(
43 'pro' => false,
44 'section' => 'boost-revenue',
45 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-pre-orders' ),
46 'title' => esc_html__( 'Pre-Orders', 'merchant' ),
47 'desc' => esc_html__( 'Allow visitors to pre-order products that are either out of stock or not yet released', 'merchant' ),
48 'tutorial_url' => 'https://docs.athemes.com/article/pre-orders/',
49 ),
50 'wait-list' => array(
51 'pro' => true,
52 'section' => 'boost-revenue',
53 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-wait-list' ),
54 'title' => esc_html__( 'Waitlist', 'merchant' ),
55 'desc' => esc_html__( 'Build waitlists for sold-out items and auto-notify potential customers when items are restocked', 'merchant' ),
56 'tutorial_url' => 'https://docs.athemes.com/article/merchant-waitlist/',
57 ),
58 'product-bundles' => array(
59 'pro' => true,
60 'section' => 'boost-revenue',
61 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-bundles' ),
62 'title' => esc_html__( 'Product Bundles', 'merchant' ),
63 'desc' => esc_html__( 'Create bundles of products to be sold together and boost your average order value', 'merchant' ),
64 'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-bundles/',
65 ),
66 'frequently-bought-together' => array(
67 'pro' => true,
68 'section' => 'boost-revenue',
69 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-frequently-bought-together' ),
70 'title' => esc_html__( 'Frequently Bought Together', 'merchant' ),
71 'desc' => esc_html__( 'Create bundles of related products that customers can add to their cart with just one click', 'merchant' ),
72 'tutorial_url' => 'https://docs.athemes.com/article/merchant-frequently-bought-together/',
73 ),
74 'buy-x-get-y' => array(
75 'pro' => true,
76 'section' => 'boost-revenue',
77 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-buy-x-get-y' ),
78 'title' => esc_html__( 'Buy X, Get Y', 'merchant' ),
79 'desc' => esc_html__( 'Create offers where purchasing a specific quantity of Product X triggers a discount on Product Y', 'merchant' ),
80 'tutorial_url' => 'https://docs.athemes.com/article/merchant-buy-x-get-y/',
81 ),
82 'volume-discounts' => array(
83 'pro' => true,
84 'section' => 'boost-revenue',
85 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-volume-discounts' ),
86 'title' => esc_html__( 'Bulk Discounts', 'merchant' ),
87 'desc' => esc_html__( 'Offer discounts on larger quantity purchases to drive up average order value', 'merchant' ),
88 'tutorial_url' => 'https://docs.athemes.com/article/merchant-bulk-discounts/',
89 ),
90 'storewide-sale' => array(
91 'pro' => true,
92 'section' => 'boost-revenue',
93 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-storewide-sale' ),
94 'title' => esc_html__( 'Storewide Sale', 'merchant' ),
95 'desc' => esc_html__( 'Create discount campaigns for all your products, specific categories, or specific products', 'merchant' ),
96 'tutorial_url' => 'https://docs.athemes.com/article/merchant-storewide-sale/',
97 ),
98 'spending-goal' => array(
99 'pro' => true,
100 'section' => 'boost-revenue',
101 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-spending-goal' ),
102 'title' => esc_html__( 'Spending Discount Goal', 'merchant' ),
103 'desc' => esc_html__( 'Motivate higher order values by offering customers discounts for reaching spending goals', 'merchant' ),
104 'tutorial_url' => 'https://docs.athemes.com/article/merchant-spending-goal/',
105 ),
106 'free-gifts' => array(
107 'pro' => true,
108 'section' => 'boost-revenue',
109 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-free-gifts' ),
110 'title' => esc_html__( 'Free Gifts', 'merchant' ),
111 'desc' => esc_html__( 'Reward shoppers with a gift if they hit a specified spending target or apply a coupon', 'merchant' ),
112 'tutorial_url' => 'https://docs.athemes.com/article/merchant-gift-card/',
113 ),
114 'free-shipping-progress-bar' => array(
115 'pro' => true,
116 'section' => 'boost-revenue',
117 'icon' => Merchant_SVG_Icons::get_svg_icon( 'free-shipping-progress-bar' ),
118 'title' => esc_html__( 'Free Shipping Bar', 'merchant' ),
119 'desc' => esc_html__( 'Encourage customers to spend more by displaying the amount left needed for free shipping', 'merchant' ),
120 'tutorial_url' => 'https://docs.athemes.com/article/merchant-free-shipping-progress-bar/',
121 ),
122 // Increase Conversion Rates (Convert More).
123 'product-labels' => array(
124 'pro' => false,
125 'section' => 'convert-more',
126 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-labels' ),
127 'title' => esc_html__( 'Product Labels', 'merchant' ),
128 'desc' => esc_html__( 'Create customizable product labels with display conditions and color settings', 'merchant' ),
129 'tutorial_url' => 'https://docs.athemes.com/article/product-labels/',
130 ),
131 'quick-view' => array(
132 'pro' => false,
133 'section' => 'convert-more',
134 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-quick-view' ),
135 'title' => esc_html__( 'Quick View', 'merchant' ),
136 'desc' => esc_html__( 'Allows users to quickly view product details without leaving the current page', 'merchant' ),
137 'tutorial_url' => 'https://docs.athemes.com/article/quick-view/',
138 ),
139 'added-to-cart-popup' => array(
140 'pro' => true,
141 'section' => 'convert-more',
142 'icon' => Merchant_SVG_Icons::get_svg_icon( 'added-to-cart-popup' ),
143 'title' => esc_html__( 'Added To Cart Popup', 'merchant' ),
144 'desc' => esc_html__( 'Display a dynamic popup with product suggestions when items are added to the cart', 'merchant' ),
145 'tutorial_url' => 'https://docs.athemes.com/article/merchant-added-to-cart-popup/',
146 ),
147 'countdown-timer' => array(
148 'pro' => true,
149 'section' => 'convert-more',
150 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-countdown-timer' ),
151 'title' => esc_html__( 'Countdown Timer', 'merchant' ),
152 'desc' => esc_html__( 'Create a sense of urgency by displaying a countdown timer on your discounted products', 'merchant' ),
153 'tutorial_url' => 'https://docs.athemes.com/article/merchant-countdown-timer/',
154 ),
155 'stock-scarcity' => array(
156 'pro' => true,
157 'section' => 'convert-more',
158 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-stock-scarcity' ),
159 'title' => esc_html__( 'Stock Scarcity', 'merchant' ),
160 'desc' => esc_html__( 'Let visitors know that stock is running low on products they are looking at', 'merchant' ),
161 'tutorial_url' => 'https://docs.athemes.com/article/merchant-stock-scarcity/',
162 ),
163 'checkout' => array(
164 'pro' => true,
165 'section' => 'convert-more',
166 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-checkout' ),
167 'title' => esc_html__( 'Checkouts', 'merchant' ),
168 'desc' => esc_html__( 'Choose from three different checkout layouts: Shopify-style, Multi-step or One-page', 'merchant' ),
169 'tutorial_url' => 'https://docs.athemes.com/article/merchant-checkouts/',
170 ),
171 'sticky-add-to-cart' => array(
172 'pro' => true,
173 'section' => 'convert-more',
174 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-sticky-add-to-cart' ),
175 'title' => esc_html__( 'Sticky Add To Cart', 'merchant' ),
176 'desc' => esc_html__( 'Display a sticky add to cart bar when visitors are scrolling on your product pages', 'merchant' ),
177 'tutorial_url' => 'https://docs.athemes.com/article/merchant-sticky-add-to-cart/',
178 ),
179 'recently-viewed-products' => array(
180 'pro' => true,
181 'section' => 'convert-more',
182 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-recently-viewed-products' ),
183 'title' => esc_html__( 'Recently Viewed Products', 'merchant' ),
184 'desc' => esc_html__( 'Show recently viewed products on product pages and in the cart', 'merchant' ),
185 'tutorial_url' => 'https://docs.athemes.com/article/merchant-recently-viewed-products/',
186 ),
187
188 // Reduce Cart Abandonment.
189 'buy-now' => array(
190 'pro' => false,
191 'section' => 'reduce-abandonment',
192 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-buy-now' ),
193 'title' => esc_html__( 'Buy Now', 'merchant' ),
194 'desc' => esc_html__( 'Send your customers directly to checkout instead of the cart with Buy Now buttons', 'merchant' ),
195 'tutorial_url' => 'https://docs.athemes.com/article/buy-now/',
196 ),
197 'cart-count-favicon' => array(
198 'pro' => false,
199 'section' => 'reduce-abandonment',
200 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-cart-count-favicon' ),
201 'title' => esc_html__( 'Cart Count Favicon', 'merchant' ),
202 'desc' => esc_html__( 'Make your browser tab stand out by showing the number of items in the cart on the favicon', 'merchant' ),
203 'tutorial_url' => 'https://docs.athemes.com/article/cart-count-favicon/',
204 ),
205 'inactive-tab-message' => array(
206 'pro' => false,
207 'section' => 'reduce-abandonment',
208 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-inactive-tab-message' ),
209 'title' => esc_html__( 'Inactive Tab Message', 'merchant' ),
210 'desc' => esc_html__( 'Modify the browser tab\'s title when the visitor navigates away from your store', 'merchant' ),
211 'tutorial_url' => 'https://docs.athemes.com/article/merchant-inactive-tab-message/',
212 ),
213 'cart-reserved-timer' => array(
214 'pro' => true,
215 'section' => 'reduce-abandonment',
216 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-cart-reserved-timer' ),
217 'title' => esc_html__( 'Cart Reserved Timer', 'merchant' ),
218 'desc' => esc_html__( 'Create urgency by letting visitors know that the products in cart are reserved for a limited time', 'merchant' ),
219 'tutorial_url' => 'https://docs.athemes.com/article/merchant-cart-reserved-timer/',
220 ),
221 'floating-mini-cart' => array(
222 'pro' => true,
223 'section' => 'reduce-abandonment',
224 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-floating-mini-cart' ),
225 'title' => esc_html__( 'Floating Mini Cart', 'merchant' ),
226 'desc' => esc_html__( 'A cart icon will always be visible and a sliding cart when the customer clicks it', 'merchant' ),
227 'tutorial_url' => 'https://docs.athemes.com/article/merchant-floating-mini-cart/',
228 ),
229 'side-cart' => array(
230 'pro' => true,
231 'section' => 'reduce-abandonment',
232 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-side-cart' ),
233 'title' => esc_html__( 'Side Cart', 'merchant' ),
234 'desc' => esc_html__( 'Show a sliding cart whenever a customer adds a product to the cart', 'merchant' ),
235 'tutorial_url' => 'https://docs.athemes.com/article/merchant-side-cart/',
236 ),
237
238 // Build Trust.
239 'payment-logos' => array(
240 'pro' => false,
241 'section' => 'build-trust',
242 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-payment-logos' ),
243 'title' => esc_html__( 'Payment Logos', 'merchant' ),
244 'desc' => esc_html__( 'Display the logos of the payment methods you accept on product pages', 'merchant' ),
245 'tutorial_url' => 'https://docs.athemes.com/article/payment-logos/',
246 ),
247 'trust-badges' => array(
248 'pro' => false,
249 'section' => 'build-trust',
250 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-trust-badges' ),
251 'title' => esc_html__( 'Trust Badges', 'merchant' ),
252 'desc' => esc_html__( 'Reassure customers by showcasing different badge-shaped store benefits', 'merchant' ),
253 'tutorial_url' => 'https://docs.athemes.com/article/trust-badges/',
254 ),
255 'advanced-reviews' => array(
256 'pro' => true,
257 'section' => 'build-trust',
258 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-advanced-reviews' ),
259 'title' => esc_html__( 'Advanced Reviews', 'merchant' ),
260 'desc' => esc_html__( 'Enhance your customer reviews with advanced features including photo uploads and more', 'merchant' ),
261 'tutorial_url' => 'https://docs.athemes.com/article/merchant-advanced-reviews/',
262 ),
263 'recent-sales-notifications' => array(
264 'pro' => true,
265 'section' => 'build-trust',
266 'icon' => Merchant_SVG_Icons::get_svg_icon( 'recent-sales-notifications' ),
267 'title' => esc_html__( 'Recent Sales Notifications', 'merchant' ),
268 'desc' => esc_html__( 'Build trust by displaying real-time notifications of purchases and other user activity on your store', 'merchant' ),
269 'tutorial_url' => 'https://docs.athemes.com/article/merchant-recent-sales-notifications/',
270 ),
271 'reasons-to-buy' => array(
272 'pro' => true,
273 'section' => 'build-trust',
274 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-reasons-to-buy' ),
275 'title' => esc_html__( 'Reasons To Buy List', 'merchant' ),
276 'desc' => esc_html__( 'Provide customers with a summary of the key features and benefits of your products', 'merchant' ),
277 'tutorial_url' => 'https://docs.athemes.com/article/merchant-reasons-to-buy/',
278 ),
279 'quick-social-links' => array(
280 'pro' => true,
281 'section' => 'build-trust',
282 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-quick-social-links' ),
283 'title' => esc_html__( 'Quick Social Links', 'merchant' ),
284 'desc' => esc_html__( 'Display floating social media icons to make it easier for your customers to connect with you', 'merchant' ),
285 'tutorial_url' => 'https://docs.athemes.com/article/merchant-quick-social-links/',
286 ),
287 'product-brand-image' => array(
288 'pro' => true,
289 'section' => 'build-trust',
290 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-brand-image' ),
291 'title' => esc_html__( 'Product Brand Image', 'merchant' ),
292 'desc' => esc_html__( 'Add brand images to products to instill confidence in potential buyers', 'merchant' ),
293 'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-brand-image/',
294 ),
295
296 // Improve User Experience.
297 'animated-add-to-cart' => array(
298 'pro' => false,
299 'section' => 'improve-experience',
300 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-animated-add-to-cart' ),
301 'title' => esc_html__( 'Animated Add to Cart', 'merchant' ),
302 'desc' => esc_html__( 'Make your Add To Cart button stand out by adding an animation on mouse over or page load', 'merchant' ),
303 'tutorial_url' => 'https://docs.athemes.com/article/animated-add-to-cart/',
304 ),
305 'add-to-cart-text' => array(
306 'pro' => false,
307 'section' => 'improve-experience',
308 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-add-to-cart-text' ),
309 'title' => esc_html__( 'Add To Cart Text', 'merchant' ),
310 'desc' => esc_html__( 'Change your store\'s \'Add to Cart\' text for various product types, as well as individual products', 'merchant' ),
311 'tutorial_url' => 'https://docs.athemes.com/article/merchant-add-to-cart-text/',
312 ),
313 'auto-external-links' => array(
314 'pro' => false,
315 'section' => 'improve-experience',
316 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-auto-external-links' ),
317 'title' => esc_html__( 'Auto External Links', 'merchant' ),
318 'desc' => esc_html__( 'Keep users from navigating away from your store by opening external links in a new browser tab', 'merchant' ),
319 'tutorial_url' => 'https://docs.athemes.com/article/auto-external-links/',
320 ),
321 'real-time-search' => array(
322 'pro' => false,
323 'section' => 'improve-experience',
324 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-real-time-search' ),
325 'title' => esc_html__( 'Real-Time Search', 'merchant' ),
326 'desc' => esc_html__( 'Help visitors instantly find the products they\'re looking for by using predictive search', 'merchant' ),
327 'tutorial_url' => 'https://docs.athemes.com/article/real-time-search/',
328 ),
329 'scroll-to-top-button' => array(
330 'pro' => false,
331 'section' => 'improve-experience',
332 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-scroll-to-top-button' ),
333 'title' => esc_html__( 'Scroll to Top Button', 'merchant' ),
334 'desc' => esc_html__( 'Help your customers get back easily to the top of the page with a single click', 'merchant' ),
335 'tutorial_url' => 'https://docs.athemes.com/article/scroll-to-top-button/',
336 ),
337 'address-autocomplete' => array(
338 'pro' => true,
339 'section' => 'improve-experience',
340 'icon' => Merchant_SVG_Icons::get_svg_icon( 'google-autocomplete' ),
341 'title' => esc_html__( 'Google Address Autocomplete', 'merchant' ),
342 'desc' => esc_html__( 'Streamline your checkout process and reduce user errors by autocompleting the address fields', 'merchant' ),
343 'tutorial_url' => 'https://docs.athemes.com/article/merchant-google-address-autocomplete/',
344 ),
345 'size-chart' => array(
346 'pro' => true,
347 'section' => 'improve-experience',
348 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-size-chart' ),
349 'title' => esc_html__( 'Size Chart', 'merchant' ),
350 'desc' => esc_html__( 'Reduce returns and increase sales by showing a size chart on specific products or all products', 'merchant' ),
351 'tutorial_url' => 'https://docs.athemes.com/article/merchant-size-chart/',
352 ),
353 'product-swatches' => array(
354 'pro' => true,
355 'section' => 'improve-experience',
356 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-swatches' ),
357 'title' => esc_html__( 'Variation Swatches', 'merchant' ),
358 'desc' => esc_html__( 'Display variable product options as customizable color/image icons, buttons, or dropdowns', 'merchant' ),
359 'tutorial_url' => 'https://docs.athemes.com/article/merchant-variation-swatches/',
360 ),
361 'wishlist' => array(
362 'pro' => true,
363 'section' => 'improve-experience',
364 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-wishlist' ),
365 'title' => esc_html__( 'Wishlist', 'merchant' ),
366 'desc' => esc_html__( 'Allow customers to easily save products they are interested in for later', 'merchant' ),
367 'tutorial_url' => 'https://docs.athemes.com/article/merchant-wishlist/',
368 ),
369 'product-navigation-links' => array(
370 'pro' => true,
371 'section' => 'improve-experience',
372 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-navigation-links' ),
373 'title' => esc_html__( 'Product Navigation Links', 'merchant' ),
374 'desc' => esc_html__( 'Enable easy navigation from one product to the next with next/previous links', 'merchant' ),
375 'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-navigation-links/',
376 ),
377 'product-video' => array(
378 'pro' => true,
379 'section' => 'improve-experience',
380 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-video' ),
381 'title' => esc_html__( 'Product Video', 'merchant' ),
382 'desc' => esc_html__( 'Upload video to be viewed in product galleries and on archive pages', 'merchant' ),
383 'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-video/',
384 ),
385 'product-audio' => array(
386 'pro' => true,
387 'section' => 'improve-experience',
388 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-audio' ),
389 'title' => esc_html__( 'Product Audio', 'merchant' ),
390 'desc' => esc_html__( 'Upload audio to be listened to in product galleries and on archive pages', 'merchant' ),
391 'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-audio/',
392 ),
393 'login-popup' => array(
394 'pro' => true,
395 'section' => 'improve-experience',
396 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-login-popup' ),
397 'title' => esc_html__( 'Login Popup', 'merchant' ),
398 'desc' => esc_html__( 'Allow users to log in with a simple pop up without navigating to a new page', 'merchant' ),
399 'tutorial_url' => 'https://docs.athemes.com/article/merchant-login-popup/',
400 ),
401 'clear-cart' => array(
402 'pro' => false,
403 'section' => 'improve-experience',
404 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-clear-cart' ),
405 'title' => esc_html__( 'Clear Cart', 'merchant' ),
406 'desc' => esc_html__( 'Display a clear cart button to let customers empty their carts and start fresh', 'merchant' ),
407 'tutorial_url' => 'https://docs.athemes.com/article/merchant-clear-cart/',
408 ),
409
410 // Protect Your Store.
411 'agree-to-terms-checkbox' => array(
412 'pro' => false,
413 'section' => 'protect-your-store',
414 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-agree-to-terms-checkbox' ),
415 'title' => esc_html__( 'Agree to Terms Checkbox', 'merchant' ),
416 'desc' => esc_html__( 'Get customers to agree to your Terms & Conditions as part of the checkout process', 'merchant' ),
417 'tutorial_url' => 'https://docs.athemes.com/article/agree-to-terms-checkbox/',
418 ),
419 'cookie-banner' => array(
420 'pro' => false,
421 'section' => 'protect-your-store',
422 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-cookie-banner' ),
423 'title' => esc_html__( 'Cookie Banner', 'merchant' ),
424 'desc' => esc_html__( 'Inform your visitors that the site uses cookies via a dismissable banner', 'merchant' ),
425 'tutorial_url' => 'https://docs.athemes.com/article/cookie-banner/',
426 ),
427 );
428 }
429
430 /**
431 * Get modules.
432 */
433 public static function get_modules() {
434
435 $modules = array(
436
437 'boost-revenue' => array(
438 'title' => esc_html__( 'Boost Revenue', 'merchant' ),
439 'modules' => array(),
440 ),
441
442 'convert-more' => array(
443 'title' => esc_html__( 'Convert More', 'merchant' ),
444 'modules' => array(),
445 ),
446
447 'reduce-abandonment' => array(
448 'title' => esc_html__( 'Reduce Cart Abandonment', 'merchant' ),
449 'modules' => array(),
450 ),
451
452 'build-trust' => array(
453 'title' => esc_html__( 'Build Trust', 'merchant' ),
454 'modules' => array(),
455 ),
456
457 'improve-experience' => array(
458 'title' => esc_html__( 'Improve Experience', 'merchant' ),
459 'modules' => array(),
460 ),
461
462 'protect-your-store' => array(
463 'title' => esc_html__( 'Protect Store', 'merchant' ),
464 'modules' => array(),
465 ),
466
467 );
468
469 /**
470 * Hook: merchant_modules
471 *
472 * @since 1.0
473 */
474 $modules = apply_filters( 'merchant_modules', $modules );
475
476 return $modules;
477 }
478
479 /**
480 * Get upsell modules.
481 *
482 */
483 public static function get_upsell_modules() {
484 return array_filter( self::$modules_data, static function( $module ){
485 return isset( $module[ 'pro' ] ) && $module[ 'pro' ] ? $module : false;
486 } );
487 }
488
489 /**
490 * Add upsell to modules.
491 *
492 */
493 public static function add_upsell_modules( $modules ) {
494 if ( defined( 'MERCHANT_PRO_VERSION' ) ) {
495 return $modules;
496 }
497
498 foreach ( self::get_upsell_modules() as $module_id => $module_data ) {
499 $modules[ $module_data[ 'section' ] ][ 'modules' ][ $module_id ] = $module_data;
500 }
501
502 return $modules;
503 }
504
505 /**
506 * Get module info.
507 */
508 public static function get_module_info( $module ) {
509
510 $modules = self::get_modules();
511
512 $maybe_found = array_column( array_column( $modules, 'modules' ), $module );
513
514 if ( ! empty( $maybe_found ) && ! empty( $maybe_found[0] ) ) {
515 return $maybe_found[0];
516 }
517
518 return false;
519 }
520 }
521
522 Merchant_Admin_Modules::instance();
523
524 }
525