63 lines
2.1 KiB
PHP
63 lines
2.1 KiB
PHP
<?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
|
|
// translators: placeholder is an order number.
|
|
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
|
|
$classes = array(
|
|
'order-status',
|
|
sanitize_html_class( 'status-' . $order->get_status() ),
|
|
);
|
|
|
|
if ( wcs_is_subscription( $order ) ) {
|
|
$status_name = wcs_get_subscription_status_name( $order->get_status() );
|
|
$classes[] = 'subscription-status';
|
|
} else {
|
|
$status_name = wc_get_order_status_name( $order->get_status() );
|
|
}
|
|
|
|
printf( '<mark class="%s"><span>%s</span></mark>', esc_attr( implode( ' ', $classes ) ), esc_html( $status_name ) );
|
|
?>
|
|
</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() ) ); // phpcs:ignore WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound ?></span>
|
|
</td>
|
|
</tr>
|