Files
medicalalert-web-reloaded/wp/wp-content/plugins/woocommerce/templates/order/customer-history.php
Tony Volpe be83910651 Merged in feature/280-dev-dev01 (pull request #21)
auto-patch  280-dev-dev01-2024-01-19T16_41_58

* auto-patch  280-dev-dev01-2024-01-19T16_41_58
2024-01-19 16:44:43 +00:00

60 lines
1.6 KiB
PHP

<?php
/**
* Display the Customer History metabox.
*
* This template is used to display the customer history metabox on the edit order screen.
*
* @see Automattic\WooCommerce\Internal\Admin\Orders\MetaBoxes\CustomerHistory
* @package WooCommerce\Templates
* @version 8.4.0
*/
declare( strict_types=1 );
defined( 'ABSPATH' ) || exit;
/**
* Variables used in this file.
*
* @var int $order_count The number of paid orders placed by the current customer.
* @var float $total_spent The total money spent by the current customer.
* @var float $average_spent The average money spent by the current customer.
*/
?>
<div class="customer-history order-attribution-metabox">
<h4>
<?php
esc_html_e( 'Total orders', 'woocommerce' );
echo wp_kses_post(
wc_help_tip(
__( 'Total number of non-cancelled, non-failed orders for this customer, including the current one.', 'woocommerce' )
)
);
?>
</h4>
<span class="order-attribution-total-orders">
<?php echo esc_html( $order_count ); ?>
</span>
<h4>
<?php
esc_html_e( 'Total revenue', 'woocommerce' );
echo wp_kses_post(
wc_help_tip(
__( "This is the Customer Lifetime Value, or the total amount you have earned from this customer's orders.", 'woocommerce' )
)
);
?>
</h4>
<span class="order-attribution-total-spend">
<?php echo wp_kses_post( wc_price( $total_spent ) ); ?>
</span>
<h4><?php esc_html_e( 'Average order value', 'woocommerce' ); ?></h4>
<span class="order-attribution-average-order-value">
<?php echo wp_kses_post( wc_price( $average_spent ) ); ?>
</span>
</div>