PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 1.9.0
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v1.9.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.9.0, at admin/classes/class-merchant-admin-modules.php

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