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