%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/plugins/paid-memberships-pro/adminpages/templates/ |
Current File : /var/www/html/higroup/wp-content/plugins/paid-memberships-pro/adminpages/templates/orders-print.php |
<?php /** * Template for Print Invoices * * @since 1.8.6 */ ?> <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <style> .main, .header { display: block; } .right { display: inline-block; float: right; } .alignright { text-align: right; } .aligncenter { text-align: center; } .invoice, .invoice tr, .invoice th, .invoice td { border: 1px solid; border-collapse: collapse; padding: 4px; } .invoice { width: 100%; } @media screen { body { max-width: 50%; margin: 0 auto; } } </style> </head> <body> <header class="header"> <div> <h2><?php bloginfo( 'sitename' ); ?></h2> </div> <div class="right"> <table> <tr> <td><?php echo __('Invoice #: ', 'paid-memberships-pro' ) . ' ' . $order->code; ?></td> </tr> <tr> <td> <?php echo __( 'Date:', 'paid-memberships-pro' ) . ' ' . date_i18n( get_option( 'date_format' ), $order->getTimestamp() ); ?> </td> </tr> </table> </div> </header> <main class="main"> <p> <?php echo pmpro_formatAddress( $order->billing->name, $order->billing->street, '', $order->billing->city, $order->billing->state, $order->billing->zip, $order->billing->country, $order->billing->phone ); ?> </p> <table class="invoice"> <tr> <th><?php _e('ID', 'paid-memberships-pro' ); ?></th> <th><?php _e('Item', 'paid-memberships-pro' ); ?></th> <th><?php _e('Price', 'paid-memberships-pro' ); ?></th> </tr> <tr> <td class="aligncenter"><?php echo $level->id; ?></td> <td><?php echo $level->name; ?></td> <td class="alignright"><?php echo $order->subtotal; ?></td> </tr> <tr> <th colspan="2" class="alignright"><?php _e('Subtotal', 'paid-memberships-pro' ); ?></th> <td class="alignright"><?php echo $order->subtotal; ?></td> </tr> <tr> <th colspan="2" class="alignright"><?php _e('Tax', 'paid-memberships-pro' ); ?></th> <td class="alignright"><?php echo $order->tax; ?></td> </tr> <tr> <th colspan="2" class="alignright"><?php _e('Total', 'paid-memberships-pro' ); ?></th> <th class="alignright"><?php echo pmpro_escape_price( pmpro_formatPrice( $order->total ) ); ?></th> </tr> </table> </main> </body> </html>