uc-packing-slip-page.tpl.php 635 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to display a printable Ubercart packing slip.
  5. *
  6. * @see template_preprocess_uc_order_invoice_page()
  7. */
  8. ?>
  9. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  10. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  11. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
  12. <head>
  13. <title><?php print t('Packing slip'); ?></title>
  14. <style>
  15. .page-break {
  16. page-break-before: always;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <?php print $content; ?>
  22. </body>
  23. </html>