| @@ -1,13 +1,18 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | namespace SpringDevs\Subscription; |
| 4 | 4 | |
| 5 | +use SpringDevs\Subscription\Admin\Dashboard; | |
| 6 | +use SpringDevs\Subscription\Admin\Integrations; | |
| 5 | 7 | use SpringDevs\Subscription\Admin\Required; |
| 6 | 8 | use SpringDevs\Subscription\Admin\Links; |
| 9 | +use SpringDevs\Subscription\Admin\CancellationFlow; | |
| 7 | 10 | use SpringDevs\Subscription\Admin\Menu; |
| 8 | 11 | use SpringDevs\Subscription\Admin\Order as AdminOrder; |
| 12 | +use SpringDevs\Subscription\Admin\Plans; | |
| 9 | 13 | use SpringDevs\Subscription\Admin\Product; |
| 14 | +use SpringDevs\Subscription\Admin\ProSettingsFields; | |
| 10 | 15 | use SpringDevs\Subscription\Admin\Settings; |
| 11 | 16 | use SpringDevs\Subscription\Admin\Subscriptions; |
| 12 | 17 | use SpringDevs\Subscription\Illuminate\Comments; |
| 13 | 18 | |
| @@ -20,16 +25,37 @@ | ||
| 20 | 25 | * Initialize the class |
| 21 | 26 | */ |
| 22 | 27 | public function __construct() { |
| 23 | 28 | $this->dispatch_actions(); |
| 24 | - new Required(); | |
| 25 | - new Menu(); | |
| 26 | - new Product(); | |
| 27 | - new Subscriptions(); | |
| 28 | - new AdminOrder(); | |
| 29 | - new Comments(); | |
| 30 | - new Settings(); | |
| 31 | - new Links(); | |
| 29 | + if ( ! function_exists( 'is_plugin_active' ) ) { | |
| 30 | + include_once ABSPATH . 'wp-admin/includes/plugin.php'; | |
| 31 | + } | |
| 32 | + // Only show required plugins notice if Pro is NOT active | |
| 33 | + if ( ! is_plugin_active( 'subscription-pro/subscription-pro.php' ) ) { | |
| 34 | + if ( ! is_plugin_active( 'woocommerce/woocommerce.php' ) ) { | |
| 35 | + // Show required notice only, do not load other admin content | |
| 36 | + new Required(); | |
| 37 | + return; | |
| 38 | + } else { | |
| 39 | + new Required(); | |
| 40 | + } | |
| 41 | + } | |
| 42 | + // Only load admin content if WooCommerce is active | |
| 43 | + if ( is_plugin_active( 'woocommerce/woocommerce.php' ) ) { | |
| 44 | + new Menu(); | |
| 45 | + new Dashboard(); | |
| 46 | + new Plans(); | |
| 47 | + new CancellationFlow(); | |
| 48 | + new Product\Plans(); | |
| 49 | + new Integrations(); | |
| 50 | + new Product(); | |
| 51 | + new Subscriptions(); | |
| 52 | + new AdminOrder(); | |
| 53 | + new Comments(); | |
| 54 | + new Settings(); | |
| 55 | + new ProSettingsFields(); | |
| 56 | + new Links(); | |
| 57 | + } | |
| 32 | 58 | } |
| 33 | 59 | |
| 34 | 60 | /** |
| 35 | 61 | * Dispatch and bind actions |
| @@ -36,6 +62,16 @@ | ||
| 36 | 62 | * |
| 37 | 63 | * @return void |
| 38 | 64 | */ |
| 39 | 65 | public function dispatch_actions() { |
| 66 | + add_action( 'save_post_product', array( $this, 'flush_gsc_cache' ) ); | |
| 67 | + } | |
| 68 | + | |
| 69 | + /** | |
| 70 | + * Bust the GSC product-exists cache when any product is saved. | |
| 71 | + * | |
| 72 | + * @return void | |
| 73 | + */ | |
| 74 | + public function flush_gsc_cache() { | |
| 75 | + delete_transient( 'subscrpt_has_enabled_product' ); | |
| 40 | 76 | } |
| 41 | 77 | } |