2014-10-29 14:05:43 +00:00
< ? php
/**
* Admin cancelled order email
*
2015-01-30 14:11:32 +00:00
* @ author WooThemes
* @ package WooCommerce / Templates / Emails
2015-07-13 10:44:18 +00:00
* @ version 2.4 . 0
2014-10-29 14:05:43 +00:00
*/
if ( ! defined ( 'ABSPATH' ) ) exit ; // Exit if accessed directly ?>
< ? php do_action ( 'woocommerce_email_header' , $email_heading ); ?>
2015-07-08 21:00:19 +00:00
< p >< ? php printf ( __ ( 'The order #%d from %s has been cancelled. The order was as follows:' , 'woocommerce' ), $order -> get_order_number (), $order -> get_formatted_billing_full_name () ); ?> </p>
2014-10-29 14:05:43 +00:00
< ? php do_action ( 'woocommerce_email_before_order_table' , $order , true , false ); ?>
2015-06-18 12:35:28 +00:00
< h2 >< a class = " link " href = " <?php echo admin_url( 'post.php?post=' . $order->id . '&action=edit' ); ?> " >< ? php printf ( __ ( 'Order: %s' , 'woocommerce' ), $order -> get_order_number () ); ?> </a> (<?php printf( '<time datetime="%s">%s</time>', date_i18n( 'c', strtotime( $order->order_date ) ), date_i18n( wc_date_format(), strtotime( $order->order_date ) ) ); ?>)</h2>
2014-10-29 14:05:43 +00:00
2015-06-18 13:22:40 +00:00
< table class = " td " cellspacing = " 0 " cellpadding = " 6 " style = " width: 100%; " border = " 1 " >
2014-10-29 14:05:43 +00:00
< thead >
< tr >
2015-06-18 13:22:40 +00:00
< th class = " td " scope = " col " style = " text-align:left; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; " >< ? php _e ( 'Product' , 'woocommerce' ); ?> </th>
< th class = " td " scope = " col " style = " text-align:left; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; " >< ? php _e ( 'Quantity' , 'woocommerce' ); ?> </th>
< th class = " td " scope = " col " style = " text-align:left; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; " >< ? php _e ( 'Price' , 'woocommerce' ); ?> </th>
2014-10-29 14:05:43 +00:00
</ tr >
</ thead >
< tbody >
< ? php echo $order -> email_order_items_table ( false , true ); ?>
</ tbody >
< tfoot >
< ? php
if ( $totals = $order -> get_order_item_totals () ) {
$i = 0 ;
foreach ( $totals as $total ) {
$i ++ ;
?> <tr>
2015-06-18 13:22:40 +00:00
< th class = " td " scope = " row " colspan = " 2 " style = " text-align:left; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; <?php if ( $i == 1 ) echo 'border-top-width: 4px;'; ?> " >< ? php echo $total [ 'label' ]; ?> </th>
< td class = " td " style = " text-align:left; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; <?php if ( $i == 1 ) echo 'border-top-width: 4px;'; ?> " >< ? php echo $total [ 'value' ]; ?> </td>
2014-10-29 14:05:43 +00:00
</ tr >< ? php
}
}
?>
</ tfoot >
</ table >
< ? php do_action ( 'woocommerce_email_after_order_table' , $order , true , false ); ?>
< ? php do_action ( 'woocommerce_email_order_meta' , $order , true , false ); ?>
2015-01-30 14:11:32 +00:00
< ? php do_action ( 'woocommerce_email_customer_details' , $order , $sent_to_admin , $plain_text ); ?>
2014-10-29 14:05:43 +00:00
< ? php do_action ( 'woocommerce_email_footer' ); ?>