PluginProbe
YayMail – WooCommerce Email Customizer / trunk
YayMail – WooCommerce Email Customizer vtrunk
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / src / Integrations / IntegrationsLoader.php

IntegrationsLoader.php in YayMail – WooCommerce Email Customizer trunk, at src/Integrations/IntegrationsLoader.php

27 lines 771 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace YayMail\Integrations;
4
5 use YayMail\Utils\SingletonTrait;
6 // @yaymail-only-start
7 use YayMail\Integrations\AdminAndSiteEnhancements\AdminAndSiteEnhancements;
8 use YayMail\Integrations\DHL\DHLIntegration;
9 use YayMail\Integrations\F4ShippingPhoneAndEmailForWooCommerce\F4ShippingPhoneAndEmailForWooCommerce;
10 // @yaymail-only-end
11 /**
12 * IntegrationsLoader
13 * * @method static IntegrationsLoader get_instance()
14 */
15 class IntegrationsLoader {
16 use SingletonTrait;
17
18 protected function __construct() {
19 RankMath::get_instance();
20 // @yaymail-only-start
21 F4ShippingPhoneAndEmailForWooCommerce::get_instance();
22 AdminAndSiteEnhancements::get_instance();
23 DHLIntegration::get_instance();
24 // @yaymail-only-end
25 }
26 }
27