PluginProbe
YayMail – WooCommerce Email Customizer / 4.3.4
YayMail – WooCommerce Email Customizer v4.3.4
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 / DHL / DHLIntegration.php

DHLIntegration.php in YayMail – WooCommerce Email Customizer 4.3.4, at src/Integrations/DHL/DHLIntegration.php

27 lines 477 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\DHL;
4
5 use YayMail\Utils\SingletonTrait;
6
7 /**
8 * DHL
9 * * @method static DHLIntegration get_instance()
10 */
11 class DHLIntegration {
12 use SingletonTrait;
13
14 protected function __construct() {
15 if ( ! class_exists( 'PR_DHL_WC' ) ) {
16 return;
17 }
18
19 add_action(
20 'yaymail_register_shortcodes',
21 function() {
22 DHLShortcodes::get_instance();
23 }
24 );
25 }
26 }
27