PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / trunk
Subscriptions for WooCommerce with Stripe Recurring Payments vtrunk
2.0.0 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 All 61 releases
subscription / includes / Admin / views / dashboard.php

dashboard.php in Subscriptions for WooCommerce with Stripe Recurring Payments trunk, at includes/Admin/views/dashboard.php

24 lines 729 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Dashboard container.
4 *
5 * The screen is rendered by src/dashboard/ into this node. Everything it needs
6 * is preloaded on `window.subscrptDashboard` by Admin\Dashboard::enqueue().
7 *
8 * The fallback below is what a visitor sees if the bundle fails to load — a
9 * blank page with no explanation is the worst outcome for a landing screen.
10 *
11 * @package SpringDevs\Subscription\Admin
12 */
13
14 defined( 'ABSPATH' ) || exit;
15 ?>
16
17 <div class="wp-subscription-admin-content list-page">
18 <div id="subscrpt-dashboard" class="subscrpt-dashboard">
19 <noscript>
20 <p><?php esc_html_e( 'The dashboard needs JavaScript. Use the menu on the left to reach your subscriptions.', 'subscription' ); ?></p>
21 </noscript>
22 </div>
23 </div>
24