woocommerce-subscriptions/includes/admin/meta-boxes/views/html-related-orders-row.php

52 lines
1.7 KiB
PHP
Executable File

<?php
/**
* Display a row in the related orders table for a subscription or order
*
* @var array $order A WC_Order or WC_Subscription order object to display
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
// WC 3.0+ compatibility
$order_post = wcs_get_objects_property( $order, 'post' );
?>
<tr>
<td>
<a href="<?php echo esc_url( get_edit_post_link( wcs_get_objects_property( $order, 'id' ) ) ); ?>">
<?php echo sprintf( esc_html_x( '#%s', 'hash before order number', 'woocommerce-subscriptions' ), esc_html( $order->get_order_number() ) ); ?>
</a>
</td>
<td>
<?php echo esc_html( wcs_get_objects_property( $order, 'relationship' ) ); ?>
</td>
<td>
<?php
$timestamp_gmt = wcs_get_objects_property( $order, 'date_created' )->getTimestamp();
if ( $timestamp_gmt > 0 ) {
// translators: php date format
$t_time = get_the_time( _x( 'Y/m/d g:i:s A', 'post date', 'woocommerce-subscriptions' ), $order_post );
$date_to_display = ucfirst( wcs_get_human_time_diff( $timestamp_gmt ) );
} else {
$t_time = $date_to_display = __( 'Unpublished', 'woocommerce-subscriptions' );
} ?>
<abbr title="<?php echo esc_attr( $t_time ); ?>">
<?php echo esc_html( apply_filters( 'post_date_column_time', $date_to_display, $order_post ) ); ?>
</abbr>
</td>
<td>
<?php
if ( wcs_is_subscription( $order ) ) {
echo esc_html( wcs_get_subscription_status_name( $order->get_status( 'view' ) ) );
} else {
echo esc_html( wc_get_order_status_name( $order->get_status( 'view' ) ) );
}
?>
</td>
<td>
<span class="amount"><?php echo wp_kses( $order->get_formatted_order_total(), array( 'small' => array(), 'span' => array( 'class' => array() ), 'del' => array(), 'ins' => array() ) ); ?></span>
</td>
</tr>