PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / 1.10.8
Subscriptions for WooCommerce with Stripe Recurring Payments v1.10.8
1.11.2 1.11.1 1.11.0 1.10.9 1.10.8 1.10.7 1.10.6 1.10.5 1.10.4 1.10.3 1.10.2 1.10.1 1.10.0 1.9.6 1.9.5 trunk 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 All 60 releases
subscription / includes / Frontend.php

Frontend.php in Subscriptions for WooCommerce with Stripe Recurring Payments 1.10.8, at includes/Frontend.php

29 lines 595 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace SpringDevs\Subscription;
4
5 use SpringDevs\Subscription\Frontend\ActionController;
6 use SpringDevs\Subscription\Frontend\Cart;
7 use SpringDevs\Subscription\Frontend\Downloadable;
8 use SpringDevs\Subscription\Frontend\MyAccount;
9 use SpringDevs\Subscription\Frontend\Order as FrontendOrder;
10 use SpringDevs\Subscription\Frontend\Product;
11
12 /**
13 * Frontend handler class
14 */
15 class Frontend {
16
17 /**
18 * Frontend constructor.
19 */
20 public function __construct() {
21 new Product();
22 new Cart();
23 new FrontendOrder();
24 new ActionController();
25 new MyAccount();
26 new Downloadable();
27 }
28 }
29