@@ -41,55 +41,55 @@ |
||
| 41 | 41 | |
| 42 | 42 | switch ( $key ) { |
| 43 | 43 | |
| 44 | - case 'status': |
|
| 45 | - echo esc_html( $subscription->get_status_label() ); |
|
| 46 | - break; |
|
| 44 | + case 'status': |
|
| 45 | + echo esc_html( $subscription->get_status_label() ); |
|
| 46 | + break; |
|
| 47 | 47 | |
| 48 | - case 'start_date': |
|
| 49 | - echo esc_html( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
| 50 | - break; |
|
| 48 | + case 'start_date': |
|
| 49 | + echo esc_html( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
| 50 | + break; |
|
| 51 | 51 | |
| 52 | - case 'expiry_date': |
|
| 53 | - echo esc_html( getpaid_format_date_value( $subscription->get_next_renewal_date() ) ); |
|
| 54 | - break; |
|
| 52 | + case 'expiry_date': |
|
| 53 | + echo esc_html( getpaid_format_date_value( $subscription->get_next_renewal_date() ) ); |
|
| 54 | + break; |
|
| 55 | 55 | |
| 56 | - case 'initial_amount': |
|
| 57 | - echo wp_kses_post( wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ) ); |
|
| 56 | + case 'initial_amount': |
|
| 57 | + echo wp_kses_post( wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ) ); |
|
| 58 | 58 | |
| 59 | - if ( $subscription->has_trial_period() ) { |
|
| 59 | + if ( $subscription->has_trial_period() ) { |
|
| 60 | 60 | |
| 61 | - echo "<small class='text-muted'> "; |
|
| 62 | - printf( |
|
| 63 | - esc_html_x( '( %1$s trial )', 'Subscription trial period. (e.g.: 1 month trial)', 'invoicing' ), |
|
| 64 | - esc_html( $subscription->get_trial_period() ) |
|
| 65 | - ); |
|
| 66 | - echo '</small>'; |
|
| 61 | + echo "<small class='text-muted'> "; |
|
| 62 | + printf( |
|
| 63 | + esc_html_x( '( %1$s trial )', 'Subscription trial period. (e.g.: 1 month trial)', 'invoicing' ), |
|
| 64 | + esc_html( $subscription->get_trial_period() ) |
|
| 65 | + ); |
|
| 66 | + echo '</small>'; |
|
| 67 | 67 | |
| 68 | - } |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - break; |
|
| 70 | + break; |
|
| 71 | 71 | |
| 72 | - case 'recurring_amount': |
|
| 73 | - $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 74 | - $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 75 | - echo wp_kses_post( strtolower( "<strong style='font-weight: 500;'>$amount</strong> / <span class='getpaid-item-recurring-period'>$frequency</span>" ) ); |
|
| 76 | - break; |
|
| 72 | + case 'recurring_amount': |
|
| 73 | + $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 74 | + $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 75 | + echo wp_kses_post( strtolower( "<strong style='font-weight: 500;'>$amount</strong> / <span class='getpaid-item-recurring-period'>$frequency</span>" ) ); |
|
| 76 | + break; |
|
| 77 | 77 | |
| 78 | - case 'item': |
|
| 79 | - if ( empty( $subscription_group ) ) { |
|
| 80 | - echo wp_kses_post( WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ) ); |
|
| 81 | - } else { |
|
| 82 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 83 | - echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 84 | - } |
|
| 78 | + case 'item': |
|
| 79 | + if ( empty( $subscription_group ) ) { |
|
| 80 | + echo wp_kses_post( WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ) ); |
|
| 81 | + } else { |
|
| 82 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 83 | + echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - break; |
|
| 86 | + break; |
|
| 87 | 87 | |
| 88 | - case 'payments': |
|
| 89 | - $max_activations = (int) $subscription->get_bill_times(); |
|
| 90 | - echo ( (int) $subscription->get_times_billed() ) . ' / ' . ( empty( $max_activations ) ? '∞' : (int) $max_activations ); |
|
| 88 | + case 'payments': |
|
| 89 | + $max_activations = (int) $subscription->get_bill_times(); |
|
| 90 | + echo ( (int) $subscription->get_times_billed() ) . ' / ' . ( empty( $max_activations ) ? '∞' : (int) $max_activations ); |
|
| 91 | 91 | |
| 92 | - break; |
|
| 92 | + break; |
|
| 93 | 93 | |
| 94 | 94 | } |
| 95 | 95 | do_action( "getpaid_render_single_subscription_column_$key", $subscription ); |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays right side of the type of invoice. |
| 4 | 4 | * |
@@ -7,11 +7,11 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | + defined( 'ABSPATH' ) || exit; |
|
| 11 | 11 | |
| 12 | -?> |
|
| 13 | -<h2 class="h3 text-dark"> |
|
| 12 | + ?> |
|
| 13 | + <h2 class="h3 text-dark"> |
|
| 14 | 14 | <?php echo esc_html( apply_filters( 'getpaid_invoice_type_label', esc_html( ucfirst( $invoice->get_invoice_quote_type() ) ), $invoice ) ); ?> |
| 15 | -</h2> |
|
| 15 | + </h2> |
|
| 16 | 16 | |
| 17 | -<?php |
|
| 17 | + <?php |
|
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays the company address. |
| 4 | 4 | * |
@@ -7,19 +7,19 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | + defined( 'ABSPATH' ) || exit; |
|
| 11 | 11 | |
| 12 | -// Prepare the company name. |
|
| 13 | -$company_name = wpinv_get_option( 'vat_company_name' ); |
|
| 12 | + // Prepare the company name. |
|
| 13 | + $company_name = wpinv_get_option( 'vat_company_name' ); |
|
| 14 | 14 | |
| 15 | -if ( empty( $company_name ) ) { |
|
| 16 | - $company_name = wpinv_get_business_name(); |
|
| 15 | + if ( empty( $company_name ) ) { |
|
| 16 | + $company_name = wpinv_get_business_name(); |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | -// Prepare the VAT number. |
|
| 20 | -$vat_number = wpinv_get_option( 'vat_number' ); |
|
| 19 | + // Prepare the VAT number. |
|
| 20 | + $vat_number = wpinv_get_option( 'vat_number' ); |
|
| 21 | 21 | |
| 22 | -?> |
|
| 22 | + ?> |
|
| 23 | 23 | <div class="getpaid-company-address form-group mb-3"> |
| 24 | 24 | |
| 25 | 25 | <div class="row"> |
@@ -39,21 +39,21 @@ discard block |
||
| 39 | 39 | </div> |
| 40 | 40 | |
| 41 | 41 | <?php if ( $address = wpinv_get_business_address() ) { ?> |
| 42 | - <?php echo wp_kses_post( $address ); ?> |
|
| 43 | - <?php } ?> |
|
| 44 | - |
|
| 42 | + <?php echo wp_kses_post( $address ); ?> |
|
| 43 | + <?php } ?> |
|
| 44 | + |
|
| 45 | 45 | <?php if ( $email_from = wpinv_mail_get_from_address() ) { ?> |
| 46 | - <div class="email_from"> |
|
| 46 | + <div class="email_from"> |
|
| 47 | 47 | <?php echo wp_sprintf( esc_html__( 'Email: %s', 'invoicing' ), esc_html( $email_from ) ); ?> |
| 48 | - </div> |
|
| 48 | + </div> |
|
| 49 | 49 | <?php } ?> |
| 50 | - |
|
| 50 | + |
|
| 51 | 51 | <?php if ( ! empty( $vat_number ) ) { ?> |
| 52 | - <div class="email_from"> |
|
| 52 | + <div class="email_from"> |
|
| 53 | 53 | <?php echo wp_sprintf( esc_html__( 'VAT Number: %s', 'invoicing' ), esc_html( $vat_number ) ); ?> |
| 54 | - </div> |
|
| 54 | + </div> |
|
| 55 | 55 | <?php } ?> |
| 56 | - |
|
| 56 | + |
|
| 57 | 57 | <?php do_action( 'getpaid_company_address_bottom' ); ?> |
| 58 | 58 | |
| 59 | 59 | </div> |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays the invoice header. |
| 4 | 4 | * |
@@ -7,9 +7,9 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | + defined( 'ABSPATH' ) || exit; |
|
| 11 | 11 | |
| 12 | -?> |
|
| 12 | + ?> |
|
| 13 | 13 | |
| 14 | 14 | <div class="d-print-none border-bottom pt-3 pb-3 bg-white"> |
| 15 | 15 | <div class="container"> |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays the invoice title, type etc. |
| 4 | 4 | * |
@@ -7,10 +7,10 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | - |
|
| 12 | -?> |
|
| 10 | + defined( 'ABSPATH' ) || exit; |
|
| 13 | 11 | |
| 12 | + ?> |
|
| 13 | + |
|
| 14 | 14 | <?php do_action( 'getpaid_before_invoice_details_top', $invoice ); ?> |
| 15 | 15 | |
| 16 | 16 | <div class="getpaid-invoice-details-top mb-5"> |
@@ -26,5 +26,5 @@ discard block |
||
| 26 | 26 | </div> |
| 27 | 27 | |
| 28 | 28 | <?php do_action( 'getpaid_after_invoice_details_top', $invoice ); ?> |
| 29 | - |
|
| 30 | -<?php |
|
| 29 | + |
|
| 30 | + <?php |
|
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays the invoice footer. |
| 4 | 4 | * |
@@ -7,17 +7,17 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | + defined( 'ABSPATH' ) || exit; |
|
| 11 | 11 | |
| 12 | -?> |
|
| 12 | + ?> |
|
| 13 | 13 | |
| 14 | 14 | <div class="border-top pt-4 bg-white"> |
| 15 | 15 | <div class="container pr-0 pl-0"> |
| 16 | 16 | |
| 17 | 17 | <?php if ( $term_text = wpinv_get_terms_text() ) : ?> |
| 18 | - <div class="terms-text"> |
|
| 18 | + <div class="terms-text"> |
|
| 19 | 19 | <?php echo wp_kses_post( wpautop( $term_text ) ); ?> |
| 20 | - </div> |
|
| 20 | + </div> |
|
| 21 | 21 | <?php endif; ?> |
| 22 | 22 | |
| 23 | 23 | <div class="footer-text d-print-none"> |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays the invoice meta data. |
| 4 | 4 | * |
@@ -7,23 +7,23 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | - |
|
| 12 | -$class = ! is_singular( 'page' ) ? 'px-1' : ''; |
|
| 13 | -?> |
|
| 10 | + defined( 'ABSPATH' ) || exit; |
|
| 14 | 11 | |
| 12 | + $class = ! is_singular( 'page' ) ? 'px-1' : ''; |
|
| 13 | + ?> |
|
| 14 | + |
|
| 15 | 15 | <?php do_action( 'getpaid_before_invoice_meta', $invoice ); ?> |
| 16 | - <div class="getpaid-invoice-meta-data"> |
|
| 16 | + <div class="getpaid-invoice-meta-data"> |
|
| 17 | 17 | |
| 18 | 18 | <?php do_action( 'getpaid_before_invoice_meta_table', $invoice ); ?> |
| 19 | 19 | <table class="table table-bordered"> |
| 20 | 20 | <tbody> |
| 21 | 21 | |
| 22 | 22 | <?php do_action( 'getpaid_before_invoice_meta_rows', $invoice ); ?> |
| 23 | - <?php foreach ( $meta as $key => $data ) : ?> |
|
| 24 | - |
|
| 23 | + <?php foreach ( $meta as $key => $data ) : ?> |
|
| 24 | + |
|
| 25 | 25 | <?php if ( ! empty( $data['value'] ) ) : ?> |
| 26 | - |
|
| 26 | + |
|
| 27 | 27 | <?php do_action( "getpaid_before_invoice_meta_$key", $invoice, $data ); ?> |
| 28 | 28 | |
| 29 | 29 | <tr class="getpaid-invoice-meta-<?php echo esc_attr( $key ); ?>"> |
@@ -39,11 +39,11 @@ discard block |
||
| 39 | 39 | </tr> |
| 40 | 40 | |
| 41 | 41 | <?php do_action( "getpaid_after_invoice_meta_$key", $invoice, $data ); ?> |
| 42 | - |
|
| 42 | + |
|
| 43 | 43 | <?php endif; ?> |
| 44 | - |
|
| 44 | + |
|
| 45 | 45 | <?php endforeach; ?> |
| 46 | - <?php do_action( 'getpaid_after_invoice_meta_rows', $invoice ); ?> |
|
| 46 | + <?php do_action( 'getpaid_after_invoice_meta_rows', $invoice ); ?> |
|
| 47 | 47 | |
| 48 | 48 | </tbody> |
| 49 | 49 | </table> |
@@ -52,5 +52,5 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | </div> |
| 54 | 54 | <?php do_action( 'getpaid_after_invoice_meta', $invoice ); ?> |
| 55 | - |
|
| 56 | -<?php |
|
| 55 | + |
|
| 56 | + <?php |
|
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays a single fee item in an invoice. |
| 4 | 4 | * |
@@ -9,11 +9,11 @@ discard block |
||
| 9 | 9 | * @var array $fee |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | + defined( 'ABSPATH' ) || exit; |
|
| 13 | 13 | |
| 14 | -do_action( 'getpaid_before_invoice_fee_item', $invoice, $fee ); |
|
| 14 | + do_action( 'getpaid_before_invoice_fee_item', $invoice, $fee ); |
|
| 15 | 15 | |
| 16 | -?> |
|
| 16 | + ?> |
|
| 17 | 17 | |
| 18 | 18 | <div class='getpaid-invoice-item item-fee border-bottom'> |
| 19 | 19 | |
@@ -25,60 +25,60 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | <?php |
| 27 | 27 | |
| 28 | - // Fires before printing a fee item column. |
|
| 29 | - do_action( "getpaid_invoice_fee_item_before_$column", $fee, $invoice ); |
|
| 28 | + // Fires before printing a fee item column. |
|
| 29 | + do_action( "getpaid_invoice_fee_item_before_$column", $fee, $invoice ); |
|
| 30 | 30 | |
| 31 | - // Item name. |
|
| 32 | - if ( 'name' == $column ) { |
|
| 31 | + // Item name. |
|
| 32 | + if ( 'name' == $column ) { |
|
| 33 | 33 | |
| 34 | - // Display the name. |
|
| 35 | - echo '<div class="mb-1">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 34 | + // Display the name. |
|
| 35 | + echo '<div class="mb-1">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 36 | 36 | |
| 37 | - // And an optional description. |
|
| 38 | - $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 39 | - echo wp_kses_post( "<small class='form-text text-muted pr-2 m-0'>$description</small>" ); |
|
| 37 | + // And an optional description. |
|
| 38 | + $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 39 | + echo wp_kses_post( "<small class='form-text text-muted pr-2 m-0'>$description</small>" ); |
|
| 40 | 40 | |
| 41 | - } |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - // Item price. |
|
| 44 | - if ( 'price' == $column ) { |
|
| 43 | + // Item price. |
|
| 44 | + if ( 'price' == $column ) { |
|
| 45 | 45 | |
| 46 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 47 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 48 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 49 | - } else { |
|
| 50 | - wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 51 | - } |
|
| 46 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 47 | + if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 48 | + wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 49 | + } else { |
|
| 50 | + wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 51 | + } |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - // Item quantity. |
|
| 55 | - if ( 'quantity' == $column ) { |
|
| 56 | - echo '—'; |
|
| 57 | - } |
|
| 54 | + // Item quantity. |
|
| 55 | + if ( 'quantity' == $column ) { |
|
| 56 | + echo '—'; |
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | - // Item tax. |
|
| 60 | - if ( 'tax_rate' == $column ) { |
|
| 61 | - echo '—'; |
|
| 62 | - } |
|
| 59 | + // Item tax. |
|
| 60 | + if ( 'tax_rate' == $column ) { |
|
| 61 | + echo '—'; |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - // Item sub total. |
|
| 65 | - if ( 'subtotal' == $column ) { |
|
| 64 | + // Item sub total. |
|
| 65 | + if ( 'subtotal' == $column ) { |
|
| 66 | 66 | |
| 67 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 68 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 69 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 70 | - } else { |
|
| 71 | - wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 72 | - } |
|
| 67 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 68 | + if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 69 | + wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 70 | + } else { |
|
| 71 | + wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 72 | + } |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - // Fires when printing a fee item column. |
|
| 76 | - do_action( "getpaid_invoice_fee_item_$column", $fee, $invoice ); |
|
| 75 | + // Fires when printing a fee item column. |
|
| 76 | + do_action( "getpaid_invoice_fee_item_$column", $fee, $invoice ); |
|
| 77 | 77 | |
| 78 | - // Fires after printing a fee item column. |
|
| 79 | - do_action( "getpaid_invoice_fee_item_after_$column", $fee, $invoice ); |
|
| 78 | + // Fires after printing a fee item column. |
|
| 79 | + do_action( "getpaid_invoice_fee_item_after_$column", $fee, $invoice ); |
|
| 80 | 80 | |
| 81 | - ?> |
|
| 81 | + ?> |
|
| 82 | 82 | |
| 83 | 83 | </div> |
| 84 | 84 | |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays a line items in an invoice. |
| 4 | 4 | * |
@@ -8,11 +8,11 @@ discard block |
||
| 8 | 8 | * @var WPInv_Invoice $invoice |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | + defined( 'ABSPATH' ) || exit; |
|
| 12 | 12 | |
| 13 | -?> |
|
| 14 | - |
|
| 15 | -<?php do_action( 'getpaid_invoice_before_line_items', $invoice ); ?> |
|
| 13 | + ?> |
|
| 14 | + |
|
| 15 | + <?php do_action( 'getpaid_invoice_before_line_items', $invoice ); ?> |
|
| 16 | 16 | |
| 17 | 17 | <h2 class="mt-5 mb-1 h4"><?php echo sprintf( esc_html__( '%s Items', 'invoicing' ), esc_html( ucfirst( $invoice->get_invoice_quote_type() ) ) ); ?></h2> |
| 18 | 18 | <div class="getpaid-invoice-items mb-4 border"> |
@@ -21,9 +21,9 @@ discard block |
||
| 21 | 21 | <div class="getpaid-invoice-items-header <?php echo esc_attr( $invoice->get_template() ); ?>"> |
| 22 | 22 | <div class="form-row row"> |
| 23 | 23 | <?php foreach ( $columns as $key => $label ) : ?> |
| 24 | - <div class="<?php echo 'name' == $key ? 'col-12 col-sm-6' : 'col-12 col-sm'; ?> getpaid-invoice-line-item-col-<?php echo esc_attr( $key ); ?>"> |
|
| 24 | + <div class="<?php echo 'name' == $key ? 'col-12 col-sm-6' : 'col-12 col-sm'; ?> getpaid-invoice-line-item-col-<?php echo esc_attr( $key ); ?>"> |
|
| 25 | 25 | <?php echo esc_html( $label ); ?> |
| 26 | - </div> |
|
| 26 | + </div> |
|
| 27 | 27 | <?php endforeach; ?> |
| 28 | 28 | </div> |
| 29 | 29 | </div> |
@@ -31,20 +31,20 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | <?php |
| 33 | 33 | |
| 34 | - // Display the item totals. |
|
| 35 | - foreach ( $invoice->get_items() as $item ) { |
|
| 36 | - wpinv_get_template( 'invoice/line-item.php', compact( 'invoice', 'item', 'columns' ) ); |
|
| 37 | - } |
|
| 34 | + // Display the item totals. |
|
| 35 | + foreach ( $invoice->get_items() as $item ) { |
|
| 36 | + wpinv_get_template( 'invoice/line-item.php', compact( 'invoice', 'item', 'columns' ) ); |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | - // Display the fee totals. |
|
| 40 | - foreach ( $invoice->get_fees() as $fee ) { |
|
| 41 | - wpinv_get_template( 'invoice/fee-item.php', compact( 'invoice', 'fee', 'columns' ) ); |
|
| 42 | - } |
|
| 39 | + // Display the fee totals. |
|
| 40 | + foreach ( $invoice->get_fees() as $fee ) { |
|
| 41 | + wpinv_get_template( 'invoice/fee-item.php', compact( 'invoice', 'fee', 'columns' ) ); |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | - // Display the cart totals. |
|
| 45 | - wpinv_get_template( 'invoice/line-totals.php', compact( 'invoice' ) ); |
|
| 44 | + // Display the cart totals. |
|
| 45 | + wpinv_get_template( 'invoice/line-totals.php', compact( 'invoice' ) ); |
|
| 46 | 46 | |
| 47 | - ?> |
|
| 47 | + ?> |
|
| 48 | 48 | |
| 49 | 49 | </div> |
| 50 | 50 | |