Files
wp-multisite-waas/views/dashboard-statistics/widget-mrr-growth.php
David Stone a815fdf179 Prep Plugin for release on WordPress.org
Escape everything that should be escaped.
Add nonce checks where needed.
Sanitize all inputs.
Apply Code style changes across the codebase.
Correct many deprecation notices.
Optimize load order of many filters.
2025-04-07 09:15:21 -06:00

33 lines
648 B
PHP

<?php
/**
* Graph base view.
*
* @since 2.0.0
*/
?>
<div class="wu-mt-6 wu-mb-0">
<div v-show="false" class="wu-text-center wu-rounded wu-flex wu-items-center wu-justify-center wu-uppercase wu-font-semibold wu-text-xs wu-h-full wu-text-gray-700" style="height: 300px;">
<span class="wu-blinking-animation">
<?php esc_html_e('Loading...', 'wp-multisite-waas'); ?>
</span>
</div>
<div id="chart_mrr_growth">
<apexchart
v-cloak
height="300"
:type="chart_options.mrr_growth.chartOptions.chart.type"
:options="chart_options.mrr_growth.chartOptions"
:series="chart_options.mrr_growth.series"
>
</apexchart>
</div>
</div>