Files
wp-multisite-waas/views/dashboard-statistics/widget-tax-by-code.php
2025-02-07 19:02:33 -07:00

95 lines
1.6 KiB
PHP

<?php
/**
* Total widget view.
*
* @since 2.0.0
*/
?>
<div class="wu-styling">
<div class="wu-widget-inset">
<?php
$data = array();
$slug = 'taxes_by_code';
$headers = array(
__('Tax', 'wp-ultimo'),
__('Rate', 'wp-ultimo'),
__('Orders', 'wp-ultimo'),
__('Tax Total', 'wp-ultimo'),
);
foreach ($taxes_by_rate as $tax_line) {
$line = array(
wu_get_isset($tax_line, 'title', 'No Name'),
$tax_line['tax_rate'],
$tax_line['order_count'],
wu_format_currency($tax_line['tax_total']),
);
$data[] = $line;
} // end foreach;
$page->render_csv_button(
array(
'headers' => $headers,
'data' => $data,
'slug' => $slug,
)
);
?>
<table class="wp-list-table widefat fixed striped wu-border-none">
<thead>
<tr>
<th><?php _e('Tax', 'wp-ultimo'); ?></th>
<th><?php _e('Rate', 'wp-ultimo'); ?></th>
<th><?php _e('Orders', 'wp-ultimo'); ?></th>
<th><?php _e('Tax Total', 'wp-ultimo'); ?></th>
</tr>
</thead>
<tbody>
<?php if ($taxes_by_rate) : ?>
<?php foreach ($taxes_by_rate as $tax_line) : ?>
<tr>
<td>
<?php echo wu_get_isset($tax_line, 'title', 'No Name'); ?>
</td>
<td>
<?php echo $tax_line['tax_rate']; ?>%
</td>
<td>
<?php echo $tax_line['order_count']; ?>
</td>
<td>
<?php echo wu_format_currency($tax_line['tax_total']); ?>
</td>
</tr>
<?php endforeach; ?>
<?php else : ?>
<tr>
<td colspan="4">
<?php _e('No Taxes found.', 'wp-ultimo'); ?>
</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
</div>