%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v1/profile/tabs/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v1/profile/tabs/orders.php |
<?php /** * Template for displaying user's orders * * @author ThimPress * @package LearnPress/Template * @version 1.0 */ defined( 'ABSPATH' ) || exit(); ?> <?php if( $orders = $user->get_orders() ): ?> <table class="table-orders"> <thead> <th><?php esc_html_e( 'Order', 'eduma' );?></th> <th><?php esc_html_e( 'Date', 'eduma' );?></th> <th><?php esc_html_e( 'Status', 'eduma' );?></th> <th><?php esc_html_e( 'Total', 'eduma' );?></th> <th><?php esc_html_e( 'Action', 'eduma' );?></th> </thead> <tbody> <?php foreach( $orders as $order ): $order = learn_press_get_order( $order );?> <tr> <td><?php echo $order->get_order_number();?></td> <td><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></td> <td><?php echo $order->get_order_status();?></td> <td><?php echo $order->get_formatted_order_total();?></td> <td> <?php $actions['view'] = array( 'url' => $order->get_view_order_url(), 'text' => esc_html__( 'View', 'eduma' ) ); $actions = apply_filters( 'learn_press_user_profile_order_actions', $actions, $order ); foreach( $actions as $slug => $option ){ printf( '<a href="%s">%s</a>', $option['url'], $option['text'] ); } ?> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php else: ?> <?php learn_press_display_message( esc_html__( 'No records.', 'eduma' ), 'notice' ); ?> <?php endif; ?>