| 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 |
|