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 / PreviewEmail / PreviewEmailsLoader.php

PreviewEmailsLoader.php in YayMail – WooCommerce Email Customizer 4.3.4, at src/PreviewEmail/PreviewEmailsLoader.php

23 lines 444 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace YayMail\PreviewEmail;
4
5 use YayMail\Utils\SingletonTrait;
6
7 use YayMail\PreviewEmail\Integration\WcSubscriptions;
8
9 /**
10 *
11 * @method static PreviewEmailsLoader get_instance()
12 */
13 class PreviewEmailsLoader {
14 use SingletonTrait;
15
16 protected function __construct() {
17 // TODO: inject hooks for addon
18 if ( class_exists( 'WC_Subscriptions' ) ) {
19 // WcSubscriptions::get_instance();
20 }
21 }
22 }
23