You are here

uc-order--admin.tpl.php in Ubercart 7.3

This file is the default admin notification template for Ubercart.

File

uc_order/templates/uc-order--admin.tpl.php
View source
<?php

/**
 * @file
 * This file is the default admin notification template for Ubercart.
 */
?>

<p>
<?php

print t('Order number:');
?> <?php

print $order_admin_link;
?><br />
<?php

print t('Customer:');
?> <?php

print $order_first_name;
?> <?php

print $order_last_name;
?> - <?php

print $order_email;
?><br />
<?php

print t('Order total:');
?> <?php

print $order_total;
?><br />
<?php

print t('Shipping method:');
?> <?php

print $order_shipping_method;
?>
</p>

<p>
<?php

print t('Products:');
?><br />
<?php

foreach ($products as $product) {
  ?>
- <?php

  print $product->qty;
  ?> x <?php

  print $product->title;
  ?> - <?php

  print $product->total_price;
  ?><br />
&nbsp;&nbsp;<?php

  print t('SKU');
  ?>: <?php

  print $product->model;
  ?><br />
    <?php

  if (!empty($product->data['attributes'])) {
    ?>
    <?php

    foreach ($product->data['attributes'] as $attribute => $option) {
      ?>
    &nbsp;&nbsp;<?php

      print t('@attribute: @options', array(
        '@attribute' => $attribute,
        '@options' => implode(', ', (array) $option),
      ));
      ?><br />
    <?php

    }
    ?>
    <?php

  }
  ?>
<br />
<?php

}
?>
</p>

<p>
<?php

print t('Order comments:');
?><br />
<?php

print $order_comments;
?>
</p>