@@ -9,26 +9,26 @@ discard block |
||
| 9 | 9 | * @var WPInv_Invoice $invoice |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | +defined('ABSPATH') || exit; |
|
| 13 | 13 | |
| 14 | 14 | // Totals rows. |
| 15 | -$totals = getpaid_invoice_totals_rows( $invoice ); |
|
| 15 | +$totals = getpaid_invoice_totals_rows($invoice); |
|
| 16 | 16 | |
| 17 | -do_action( 'getpaid_before_invoice_line_totals', $invoice, $totals ); |
|
| 17 | +do_action('getpaid_before_invoice_line_totals', $invoice, $totals); |
|
| 18 | 18 | |
| 19 | 19 | ?> |
| 20 | 20 | <div class='getpaid-invoice-line-totals'> |
| 21 | 21 | <div class="row"> |
| 22 | 22 | <div class="col-12 offset-sm-6 col-sm-6 border-sm-left pl-sm-0"> |
| 23 | 23 | |
| 24 | - <?php foreach ( $totals as $key => $label ) : ?> |
|
| 24 | + <?php foreach ($totals as $key => $label) : ?> |
|
| 25 | 25 | |
| 26 | - <div class="getpaid-invoice-line-totals-col <?php echo sanitize_html_class( $key ); ?>"> |
|
| 26 | + <div class="getpaid-invoice-line-totals-col <?php echo sanitize_html_class($key); ?>"> |
|
| 27 | 27 | |
| 28 | 28 | <div class="form-row"> |
| 29 | 29 | |
| 30 | 30 | <div class="col-8 getpaid-invoice-line-totals-label"> |
| 31 | - <?php echo sanitize_text_field( $label ); ?> |
|
| 31 | + <?php echo sanitize_text_field($label); ?> |
|
| 32 | 32 | </div> |
| 33 | 33 | |
| 34 | 34 | <div class="col-4 getpaid-invoice-line-totals-value pl-0"> |
@@ -36,15 +36,15 @@ discard block |
||
| 36 | 36 | <?php |
| 37 | 37 | |
| 38 | 38 | // Total tax. |
| 39 | - if ( 'tax' == $key ) { |
|
| 40 | - echo wpinv_price( $invoice->get_total_tax(), $invoice->get_currency() ); |
|
| 39 | + if ('tax' == $key) { |
|
| 40 | + echo wpinv_price($invoice->get_total_tax(), $invoice->get_currency()); |
|
| 41 | 41 | |
| 42 | - if ( wpinv_use_taxes() && ! $invoice->get_disable_taxes() ) { |
|
| 42 | + if (wpinv_use_taxes() && !$invoice->get_disable_taxes()) { |
|
| 43 | 43 | |
| 44 | 44 | $taxes = $invoice->get_total_tax(); |
| 45 | - if ( empty( $taxes ) && GetPaid_Payment_Form_Submission_Taxes::is_eu_transaction( $invoice->get_country() ) ) { |
|
| 45 | + if (empty($taxes) && GetPaid_Payment_Form_Submission_Taxes::is_eu_transaction($invoice->get_country())) { |
|
| 46 | 46 | echo ' <em class="text-muted small">'; |
| 47 | - _e( '(Reverse charged)', 'invoicing' ); |
|
| 47 | + _e('(Reverse charged)', 'invoicing'); |
|
| 48 | 48 | echo '</em>'; |
| 49 | 49 | } |
| 50 | 50 | |
@@ -53,27 +53,27 @@ discard block |
||
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | // Total Fee. |
| 56 | - if ( 'fee' == $key ) { |
|
| 57 | - echo wpinv_price( $invoice->get_total_fees(), $invoice->get_currency() ); |
|
| 56 | + if ('fee' == $key) { |
|
| 57 | + echo wpinv_price($invoice->get_total_fees(), $invoice->get_currency()); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | // Total discount. |
| 61 | - if ( 'discount' == $key ) { |
|
| 62 | - echo wpinv_price( $invoice->get_total_discount(), $invoice->get_currency() ); |
|
| 61 | + if ('discount' == $key) { |
|
| 62 | + echo wpinv_price($invoice->get_total_discount(), $invoice->get_currency()); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | // Sub total. |
| 66 | - if ( 'subtotal' == $key ) { |
|
| 67 | - echo wpinv_price( $invoice->get_subtotal(), $invoice->get_currency() ); |
|
| 66 | + if ('subtotal' == $key) { |
|
| 67 | + echo wpinv_price($invoice->get_subtotal(), $invoice->get_currency()); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | // Total. |
| 71 | - if ( 'total' == $key ) { |
|
| 72 | - echo wpinv_price( $invoice->get_total(), $invoice->get_currency() ); |
|
| 71 | + if ('total' == $key) { |
|
| 72 | + echo wpinv_price($invoice->get_total(), $invoice->get_currency()); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | // Fires when printing a cart total. |
| 76 | - do_action( "getpaid_invoice_cart_totals_$key", $invoice ); |
|
| 76 | + do_action("getpaid_invoice_cart_totals_$key", $invoice); |
|
| 77 | 77 | |
| 78 | 78 | ?> |
| 79 | 79 | |
@@ -87,4 +87,4 @@ discard block |
||
| 87 | 87 | </div> |
| 88 | 88 | </div> <!-- end .getpaid-invoice-line-totals --> |
| 89 | 89 | |
| 90 | -<?php do_action( 'getpaid_after_invoice_line_totals', $invoice, $totals ); ?> |
|
| 90 | +<?php do_action('getpaid_after_invoice_line_totals', $invoice, $totals); ?> |
|