function theme_commerce_email_order_items in Commerce Email 7.2
Theme function for the commerce order.
1 theme call to theme_commerce_email_order_items()
- commerce_email_order_items in ./
commerce_email.module - Returns a rendered email of the commerce order or an array of the table details
File
- ./
commerce_email.module, line 52 - Defines additional menu item and order html email functonality.
Code
function theme_commerce_email_order_items($variables) {
$table = commerce_email_prepare_table($variables['commerce_order_wrapper']);
return theme('table', $table);
}