woocommerce/templates/emails/email-order-items.php

61 lines
2.4 KiB
PHP
Raw Normal View History

<?php
/**
* Email Order Items
2012-08-14 18:05:45 +00:00
*
* @author WooThemes
* @package WooCommerce/Templates/Emails
* @version 1.6.4
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $woocommerce;
2012-08-14 18:05:45 +00:00
foreach ($items as $item) :
// Get/prep product data
2012-08-14 18:05:45 +00:00
$_product = $order->get_product_from_item( $item );
2012-08-15 17:08:42 +00:00
$item_meta = new WC_Order_Item_Meta( $item['item_meta'] );
$image = ($show_image) ? '<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;" />' : '';
2012-08-14 18:05:45 +00:00
?>
<tr>
2012-08-14 18:05:45 +00:00
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php
// Show title/image etc
echo apply_filters( 'woocommerce_order_product_image', $image, $_product, $show_image);
2012-08-14 18:05:45 +00:00
// Product name
echo apply_filters( 'woocommerce_order_product_title', $item['name'], $_product );
2012-08-14 18:05:45 +00:00
// SKU
echo ($show_sku && $_product->get_sku()) ? ' (#' . $_product->get_sku() . ')' : '';
2012-08-14 18:05:45 +00:00
// File URLs
if ( $show_download_links && $_product->exists() && $_product->is_downloadable() ) :
$download_file_urls = $order->get_downloadable_file_urls( $item['product_id'], $item['variation_id'], $item );
foreach ( $download_file_urls as $i => $download_file_url ) :
echo '<br/><small>';
if ( count( $download_file_urls ) > 1 ) {
echo sprintf( __('Download %d:', 'woocommerce' ), $i + 1 );
2012-11-27 16:22:47 +00:00
} elseif ( $i == 0 )
echo __( 'Download:', 'woocommerce' );
echo ' <a href="' . $download_file_url . '" target="_blank">' . $download_file_url . '</a></small>';
endforeach;
endif;
2012-08-14 18:05:45 +00:00
// Variation
echo ($item_meta->meta) ? '<br/><small>' . nl2br( $item_meta->display( true, true ) ) . '</small>' : '';
2012-08-14 18:05:45 +00:00
?></td>
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $item['qty'] ;?></td>
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $order->get_formatted_line_subtotal( $item ); ?></td>
</tr>
2012-08-14 18:05:45 +00:00
<?php if ($show_purchase_note && $purchase_note = get_post_meta( $_product->id, '_purchase_note', true)) : ?>
<tr>
<td colspan="3" style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo apply_filters('the_content', $purchase_note); ?></td>
</tr>
<?php endif; ?>
<?php endforeach; ?>