mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-17 06:42:55 +00:00
46 lines
1.6 KiB
PHP
46 lines
1.6 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 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 = 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 echo esc_html( ucwords( $order->get_status() ) ); ?>
|
|
</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>
|