PluginProbe
Extendify / 3.1.5
Extendify v3.1.5
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / app / Shared / Services / SupportedPlugins.php

SupportedPlugins.php in Extendify 3.1.5, at app/Shared/Services/SupportedPlugins.php

67 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Central registry of supported plugin slugs.
5 */
6
7 namespace Extendify\Shared\Services;
8
9 defined('ABSPATH') || die('No direct access.');
10
11 /**
12 * Central registry of all plugins.
13 */
14 class SupportedPlugins
15 {
16 /**
17 * All supported plugin slugs.
18 *
19 * @var string[]
20 */
21 // phpcs:ignore PSR12.Properties.ConstantVisibility.NotFound
22 const SLUGS = [
23 'all-in-one-seo-pack',
24 'backup',
25 'bookly-responsive-appointment-booking-tool',
26 'charitable',
27 'chatbot',
28 'complianz-gdpr',
29 'complianz-terms-conditions',
30 'contact-form-7',
31 'docket-cache',
32 'ecwid-shopping-cart',
33 'ewww-image-optimizer',
34 'give',
35 'google-analytics-for-wordpress',
36 'imagify',
37 'iubenda-cookie-law-solution',
38 'loginpress',
39 'mailin',
40 'mijndomein-seo-toolkit',
41 'mollie-payments-for-woocommerce',
42 'montonio-for-woocommerce',
43 'really-simple-ssl',
44 'rocket-lazy-load',
45 'seo-by-rank-math',
46 'simplybook',
47 'smaily-connect',
48 'sucuri-scanner',
49 'sugar-calendar-lite',
50 'the-events-calendar',
51 'translatepress-multilingual',
52 'woocommerce',
53 'woocommerce-correios',
54 'woocommerce-germanized',
55 'woocommerce-mercadopago',
56 'wordpress-seo',
57 'wp-mail-smtp',
58 'wp-rocket',
59 'wp-whatsapp',
60 'wpforms-lite',
61 'yith-woocommerce-ajax-navigation',
62 'yith-woocommerce-ajax-search',
63 'yith-woocommerce-wishlist',
64 'YourWebshop-updater',
65 ];
66 }
67