2012-03-18 14:51:21 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-09-17 00:53:17 +00:00
|
|
|
* Email Order Items
|
2012-08-14 18:05:45 +00:00
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates/Emails
|
2013-06-17 11:21:06 +00:00
|
|
|
* @version 2.1.0
|
2012-03-18 14:51:21 +00:00
|
|
|
*/
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2012-03-18 14:51:21 +00:00
|
|
|
global $woocommerce;
|
|
|
|
|
2013-06-17 11:21:06 +00:00
|
|
|
foreach ( $items as $item ) :
|
|
|
|
$_product = apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item );
|
|
|
|
$item_meta = new WC_Order_Item_Meta( $item['item_meta'] );
|
2012-03-18 14:51:21 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
2013-03-28 12:30:17 +00:00
|
|
|
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee; word-wrap:break-word;"><?php
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-03-18 14:51:21 +00:00
|
|
|
// Show title/image etc
|
2013-06-17 11:21:06 +00:00
|
|
|
if ( $show_image )
|
|
|
|
echo apply_filters( 'woocommerce_order_item_thumbnail', '<img src="' . current( wp_get_attachment_image_src( get_post_thumbnail_id( $_product->id ), 'thumbnail') ) .'" alt="Product Image" height="' . $image_size[1] . '" width="' . $image_size[0] . '" style="vertical-align:middle; margin-right: 10px;" />', $item );
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-03-18 14:51:21 +00:00
|
|
|
// Product name
|
2013-06-17 11:21:06 +00:00
|
|
|
echo apply_filters( 'woocommerce_order_item_name', $item['name'], $item );
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-03-18 14:51:21 +00:00
|
|
|
// SKU
|
2013-06-17 11:21:06 +00:00
|
|
|
if ( $show_sku && $_product->get_sku() )
|
|
|
|
echo ' (#' . $_product->get_sku() . ')';
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-08-28 15:21:54 +00:00
|
|
|
// File URLs
|
2013-03-10 16:24:04 +00:00
|
|
|
if ( $show_download_links && $_product->exists() && $_product->is_downloadable() ) {
|
|
|
|
|
2012-10-23 16:41:42 +00:00
|
|
|
$download_file_urls = $order->get_downloadable_file_urls( $item['product_id'], $item['variation_id'], $item );
|
2013-03-10 16:24:04 +00:00
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
foreach ( $download_file_urls as $file_url => $download_file_url ) {
|
2012-08-28 15:21:54 +00:00
|
|
|
echo '<br/><small>';
|
2013-03-10 16:24:04 +00:00
|
|
|
|
2013-04-07 18:13:47 +00:00
|
|
|
$filename = woocommerce_get_filename_from_url( $file_url );
|
|
|
|
|
2012-09-06 15:16:16 +00:00
|
|
|
if ( count( $download_file_urls ) > 1 ) {
|
2013-06-17 11:21:06 +00:00
|
|
|
echo sprintf( __( 'Download %d:', 'woocommerce' ), $i + 1 );
|
2012-11-27 16:22:47 +00:00
|
|
|
} elseif ( $i == 0 )
|
2012-09-06 15:16:16 +00:00
|
|
|
echo __( 'Download:', 'woocommerce' );
|
2013-03-10 16:24:04 +00:00
|
|
|
|
2013-04-07 18:13:47 +00:00
|
|
|
echo ' <a href="' . $download_file_url . '" target="_blank">' . $filename . '</a></small>';
|
2013-03-10 16:24:04 +00:00
|
|
|
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-03-18 14:51:21 +00:00
|
|
|
// Variation
|
2013-06-17 11:21:06 +00:00
|
|
|
if ( $item_meta->meta )
|
|
|
|
echo '<br/><small>' . nl2br( $item_meta->display( true, true ) ) . '</small>';
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-03-18 14:51:21 +00:00
|
|
|
?></td>
|
|
|
|
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $item['qty'] ;?></td>
|
2012-04-27 07:00:47 +00:00
|
|
|
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $order->get_formatted_line_subtotal( $item ); ?></td>
|
2012-03-18 14:51:21 +00:00
|
|
|
</tr>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2013-06-17 11:21:06 +00:00
|
|
|
<?php if ( $show_purchase_note && $purchase_note = get_post_meta( $_product->id, '_purchase_note', true ) ) : ?>
|
2012-03-18 14:51:21 +00:00
|
|
|
<tr>
|
2013-06-17 11:21:06 +00:00
|
|
|
<td colspan="3" style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo apply_filters( 'the_content', $purchase_note ); ?></td>
|
2012-03-18 14:51:21 +00:00
|
|
|
</tr>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php endforeach; ?>
|