@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * @package Invoicing |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -defined( 'ABSPATH' ) || exit; |
|
| 9 | +defined('ABSPATH') || exit; |
|
| 10 | 10 | |
| 11 | 11 | /** |
| 12 | 12 | * @deprecated |
@@ -19,48 +19,48 @@ discard block |
||
| 19 | 19 | * @deprecated |
| 20 | 20 | */ |
| 21 | 21 | function wpinv_get_invoice_cart() { |
| 22 | - return wpinv_get_invoice( getpaid_get_current_invoice_id() ); |
|
| 22 | + return wpinv_get_invoice(getpaid_get_current_invoice_id()); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * @deprecated |
| 27 | 27 | */ |
| 28 | -function wpinv_get_invoice_description( $invoice ) { |
|
| 29 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 28 | +function wpinv_get_invoice_description($invoice) { |
|
| 29 | + $invoice = new WPInv_Invoice($invoice); |
|
| 30 | 30 | return $invoice->get_description(); |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * @deprecated |
| 35 | 35 | */ |
| 36 | -function wpinv_get_invoice_currency_code( $invoice ) { |
|
| 37 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 36 | +function wpinv_get_invoice_currency_code($invoice) { |
|
| 37 | + $invoice = new WPInv_Invoice($invoice); |
|
| 38 | 38 | return $invoice->get_currency(); |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | * @deprecated |
| 43 | 43 | */ |
| 44 | -function wpinv_get_payment_user_email( $invoice ) { |
|
| 45 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 44 | +function wpinv_get_payment_user_email($invoice) { |
|
| 45 | + $invoice = new WPInv_Invoice($invoice); |
|
| 46 | 46 | return $invoice->get_email(); |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * @deprecated |
| 51 | 51 | */ |
| 52 | -function wpinv_get_user_id( $invoice ) { |
|
| 53 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 52 | +function wpinv_get_user_id($invoice) { |
|
| 53 | + $invoice = new WPInv_Invoice($invoice); |
|
| 54 | 54 | return $invoice->get_user_id(); |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | 58 | * @deprecated |
| 59 | 59 | */ |
| 60 | -function wpinv_get_invoice_status( $invoice, $return_label = false ) { |
|
| 61 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 60 | +function wpinv_get_invoice_status($invoice, $return_label = false) { |
|
| 61 | + $invoice = new WPInv_Invoice($invoice); |
|
| 62 | 62 | |
| 63 | - if ( $return_label ) { |
|
| 63 | + if ($return_label) { |
|
| 64 | 64 | return $invoice->get_status_nicename(); |
| 65 | 65 | } |
| 66 | 66 | |
@@ -70,10 +70,10 @@ discard block |
||
| 70 | 70 | /** |
| 71 | 71 | * @deprecated |
| 72 | 72 | */ |
| 73 | -function wpinv_get_payment_gateway( $invoice, $return_label = false ) { |
|
| 74 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 73 | +function wpinv_get_payment_gateway($invoice, $return_label = false) { |
|
| 74 | + $invoice = new WPInv_Invoice($invoice); |
|
| 75 | 75 | |
| 76 | - if ( $return_label ) { |
|
| 76 | + if ($return_label) { |
|
| 77 | 77 | return $invoice->get_gateway_title(); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -83,75 +83,75 @@ discard block |
||
| 83 | 83 | /** |
| 84 | 84 | * @deprecated |
| 85 | 85 | */ |
| 86 | -function wpinv_get_payment_gateway_name( $invoice ) { |
|
| 87 | - return wpinv_get_payment_gateway( $invoice, true ); |
|
| 86 | +function wpinv_get_payment_gateway_name($invoice) { |
|
| 87 | + return wpinv_get_payment_gateway($invoice, true); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
| 91 | 91 | * @deprecated |
| 92 | 92 | */ |
| 93 | -function wpinv_get_payment_transaction_id( $invoice ) { |
|
| 94 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 93 | +function wpinv_get_payment_transaction_id($invoice) { |
|
| 94 | + $invoice = new WPInv_Invoice($invoice); |
|
| 95 | 95 | return $invoice->get_transaction_id(); |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
| 99 | 99 | * @deprecated |
| 100 | 100 | */ |
| 101 | -function wpinv_get_invoice_meta( $invoice_id = 0, $meta_key = '_wpinv_payment_meta', $single = true ) { |
|
| 102 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 103 | - return $invoice->get_meta( $meta_key, $single ); |
|
| 101 | +function wpinv_get_invoice_meta($invoice_id = 0, $meta_key = '_wpinv_payment_meta', $single = true) { |
|
| 102 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 103 | + return $invoice->get_meta($meta_key, $single); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
| 107 | 107 | * @deprecated |
| 108 | 108 | */ |
| 109 | -function wpinv_update_invoice_meta( $invoice_id = 0, $meta_key = '', $meta_value = '' ) { |
|
| 110 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 111 | - return $invoice->update_meta_data( $meta_key, $meta_value ); |
|
| 109 | +function wpinv_update_invoice_meta($invoice_id = 0, $meta_key = '', $meta_value = '') { |
|
| 110 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 111 | + return $invoice->update_meta_data($meta_key, $meta_value); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * @deprecated |
| 116 | 116 | */ |
| 117 | -function wpinv_get_items( $invoice = 0 ) { |
|
| 118 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 117 | +function wpinv_get_items($invoice = 0) { |
|
| 118 | + $invoice = new WPInv_Invoice($invoice); |
|
| 119 | 119 | return $invoice->get_items(); |
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
| 123 | 123 | * @deprecated |
| 124 | 124 | */ |
| 125 | -function wpinv_get_fees( $invoice = 0 ) { |
|
| 126 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 125 | +function wpinv_get_fees($invoice = 0) { |
|
| 126 | + $invoice = new WPInv_Invoice($invoice); |
|
| 127 | 127 | return $invoice->get_fees(); |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
| 131 | 131 | * @deprecated |
| 132 | 132 | */ |
| 133 | -function wpinv_get_invoice_ip( $invoice ) { |
|
| 134 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 133 | +function wpinv_get_invoice_ip($invoice) { |
|
| 134 | + $invoice = new WPInv_Invoice($invoice); |
|
| 135 | 135 | return $invoice->get_ip(); |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
| 139 | 139 | * @deprecated |
| 140 | 140 | */ |
| 141 | -function wpinv_get_invoice_user_info( $invoice ) { |
|
| 142 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 141 | +function wpinv_get_invoice_user_info($invoice) { |
|
| 142 | + $invoice = new WPInv_Invoice($invoice); |
|
| 143 | 143 | return $invoice->get_user_info(); |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | 147 | * @deprecated |
| 148 | 148 | */ |
| 149 | -function wpinv_subtotal( $invoice = 0, $currency = false ) { |
|
| 150 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 149 | +function wpinv_subtotal($invoice = 0, $currency = false) { |
|
| 150 | + $invoice = new WPInv_Invoice($invoice); |
|
| 151 | 151 | $subtotal = $invoice->get_subtotal(); |
| 152 | 152 | |
| 153 | - if ( $currency ) { |
|
| 154 | - return wpinv_price( $subtotal, $invoice->get_currency() ); |
|
| 153 | + if ($currency) { |
|
| 154 | + return wpinv_price($subtotal, $invoice->get_currency()); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | return $subtotal; |
@@ -160,12 +160,12 @@ discard block |
||
| 160 | 160 | /** |
| 161 | 161 | * @deprecated |
| 162 | 162 | */ |
| 163 | -function wpinv_tax( $invoice = 0, $currency = false ) { |
|
| 164 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 163 | +function wpinv_tax($invoice = 0, $currency = false) { |
|
| 164 | + $invoice = new WPInv_Invoice($invoice); |
|
| 165 | 165 | $tax = $invoice->get_total_tax(); |
| 166 | 166 | |
| 167 | - if ( $currency ) { |
|
| 168 | - return wpinv_price( $tax, $invoice->get_currency() ); |
|
| 167 | + if ($currency) { |
|
| 168 | + return wpinv_price($tax, $invoice->get_currency()); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | return $tax; |
@@ -174,12 +174,12 @@ discard block |
||
| 174 | 174 | /** |
| 175 | 175 | * @deprecated |
| 176 | 176 | */ |
| 177 | -function wpinv_discount( $invoice = 0, $currency = false ) { |
|
| 178 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 177 | +function wpinv_discount($invoice = 0, $currency = false) { |
|
| 178 | + $invoice = new WPInv_Invoice($invoice); |
|
| 179 | 179 | $discount = $invoice->get_total_discount(); |
| 180 | 180 | |
| 181 | - if ( $currency ) { |
|
| 182 | - return wpinv_price( $discount, $invoice->get_currency() ); |
|
| 181 | + if ($currency) { |
|
| 182 | + return wpinv_price($discount, $invoice->get_currency()); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | return $discount; |
@@ -188,20 +188,20 @@ discard block |
||
| 188 | 188 | /** |
| 189 | 189 | * @deprecated |
| 190 | 190 | */ |
| 191 | -function wpinv_discount_code( $invoice = 0 ) { |
|
| 192 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 191 | +function wpinv_discount_code($invoice = 0) { |
|
| 192 | + $invoice = new WPInv_Invoice($invoice); |
|
| 193 | 193 | return $invoice->get_discount_code(); |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | /** |
| 197 | 197 | * @deprecated |
| 198 | 198 | */ |
| 199 | -function wpinv_payment_total( $invoice = 0, $currency = false ) { |
|
| 200 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 199 | +function wpinv_payment_total($invoice = 0, $currency = false) { |
|
| 200 | + $invoice = new WPInv_Invoice($invoice); |
|
| 201 | 201 | $total = $invoice->get_total(); |
| 202 | 202 | |
| 203 | - if ( $currency ) { |
|
| 204 | - return wpinv_price( $total, $invoice->get_currency() ); |
|
| 203 | + if ($currency) { |
|
| 204 | + return wpinv_price($total, $invoice->get_currency()); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | return $total; |
@@ -210,51 +210,51 @@ discard block |
||
| 210 | 210 | /** |
| 211 | 211 | * @deprecated |
| 212 | 212 | */ |
| 213 | -function wpinv_get_date_created( $invoice = 0, $format = '' ) { |
|
| 214 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 213 | +function wpinv_get_date_created($invoice = 0, $format = '') { |
|
| 214 | + $invoice = new WPInv_Invoice($invoice); |
|
| 215 | 215 | |
| 216 | - $format = ! empty( $format ) ? $format : get_option( 'date_format' ); |
|
| 216 | + $format = !empty($format) ? $format : get_option('date_format'); |
|
| 217 | 217 | $date_created = $invoice->get_created_date(); |
| 218 | 218 | |
| 219 | - return empty( $date_created ) ? date_i18n( $format, strtotime( $date_created ) ) : ''; |
|
| 219 | + return empty($date_created) ? date_i18n($format, strtotime($date_created)) : ''; |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | /** |
| 223 | 223 | * @deprecated |
| 224 | 224 | */ |
| 225 | -function wpinv_get_invoice_date( $invoice = 0, $format = '' ) { |
|
| 226 | - wpinv_get_date_created( $invoice, $format ); |
|
| 225 | +function wpinv_get_invoice_date($invoice = 0, $format = '') { |
|
| 226 | + wpinv_get_date_created($invoice, $format); |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | /** |
| 230 | 230 | * @deprecated |
| 231 | 231 | */ |
| 232 | -function wpinv_get_invoice_vat_number( $invoice = 0 ) { |
|
| 233 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 232 | +function wpinv_get_invoice_vat_number($invoice = 0) { |
|
| 233 | + $invoice = new WPInv_Invoice($invoice); |
|
| 234 | 234 | return $invoice->get_vat_number(); |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
| 238 | 238 | * @deprecated |
| 239 | 239 | */ |
| 240 | -function wpinv_insert_payment_note( $invoice = 0, $note = '', $user_type = false, $added_by_user = false, $system = false ) { |
|
| 241 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 242 | - return $invoice->add_note( $note, $user_type, $added_by_user, $system ); |
|
| 240 | +function wpinv_insert_payment_note($invoice = 0, $note = '', $user_type = false, $added_by_user = false, $system = false) { |
|
| 241 | + $invoice = new WPInv_Invoice($invoice); |
|
| 242 | + return $invoice->add_note($note, $user_type, $added_by_user, $system); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
| 246 | 246 | * @deprecated |
| 247 | 247 | */ |
| 248 | -function wpinv_get_payment_key( $invoice = 0 ) { |
|
| 249 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 248 | +function wpinv_get_payment_key($invoice = 0) { |
|
| 249 | + $invoice = new WPInv_Invoice($invoice); |
|
| 250 | 250 | return $invoice->get_key(); |
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | /** |
| 254 | 254 | * @deprecated |
| 255 | 255 | */ |
| 256 | -function wpinv_get_invoice_number( $invoice = 0 ) { |
|
| 257 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 256 | +function wpinv_get_invoice_number($invoice = 0) { |
|
| 257 | + $invoice = new WPInv_Invoice($invoice); |
|
| 258 | 258 | return $invoice->get_number(); |
| 259 | 259 | } |
| 260 | 260 | |
@@ -401,9 +401,9 @@ discard block |
||
| 401 | 401 | /** |
| 402 | 402 | * @deprecated |
| 403 | 403 | */ |
| 404 | -function wpinv_update_payment_status( $invoice, $new_status = 'publish' ) { |
|
| 405 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 406 | - return $invoice->update_status( $new_status ); |
|
| 404 | +function wpinv_update_payment_status($invoice, $new_status = 'publish') { |
|
| 405 | + $invoice = new WPInv_Invoice($invoice); |
|
| 406 | + return $invoice->update_status($new_status); |
|
| 407 | 407 | } |
| 408 | 408 | |
| 409 | 409 | /** |
@@ -456,22 +456,22 @@ discard block |
||
| 456 | 456 | /** |
| 457 | 457 | * @deprecated |
| 458 | 458 | */ |
| 459 | -function wpinv_set_payment_transaction_id( $invoice_id = 0, $transaction_id = '' ) { |
|
| 459 | +function wpinv_set_payment_transaction_id($invoice_id = 0, $transaction_id = '') { |
|
| 460 | 460 | |
| 461 | 461 | // Fetch the invoice. |
| 462 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 462 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 463 | 463 | |
| 464 | - if ( 0 == $invoice->get_id() ) { |
|
| 464 | + if (0 == $invoice->get_id()) { |
|
| 465 | 465 | return false; |
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | // Prepare the transaction id. |
| 469 | - if ( empty( $transaction_id ) ) { |
|
| 469 | + if (empty($transaction_id)) { |
|
| 470 | 470 | $transaction_id = $invoice_id; |
| 471 | 471 | } |
| 472 | 472 | |
| 473 | 473 | // Set the transaction id; |
| 474 | - $invoice->set_transaction_id( apply_filters( 'wpinv_set_payment_transaction_id', $transaction_id, $invoice ) ); |
|
| 474 | + $invoice->set_transaction_id(apply_filters('wpinv_set_payment_transaction_id', $transaction_id, $invoice)); |
|
| 475 | 475 | |
| 476 | 476 | // Save the invoice. |
| 477 | 477 | return $invoice->save(); |
@@ -484,12 +484,12 @@ discard block |
||
| 484 | 484 | * @param WPInv_Invoice $invoice |
| 485 | 485 | * @param string $gateway |
| 486 | 486 | */ |
| 487 | -function wpinv_send_to_gateway( $gateway, $invoice ) { |
|
| 487 | +function wpinv_send_to_gateway($gateway, $invoice) { |
|
| 488 | 488 | |
| 489 | 489 | $payment_data = array( |
| 490 | 490 | 'invoice_id' => $invoice->get_id(), |
| 491 | 491 | 'items' => $invoice->get_cart_details(), |
| 492 | - 'cart_discounts' => array( $invoice->get_discount_code() ), |
|
| 492 | + 'cart_discounts' => array($invoice->get_discount_code()), |
|
| 493 | 493 | 'fees' => $invoice->get_total_fees(), |
| 494 | 494 | 'subtotal' => $invoice->get_subtotal(), |
| 495 | 495 | 'discount' => $invoice->get_total_discount(), |
@@ -497,16 +497,16 @@ discard block |
||
| 497 | 497 | 'price' => $invoice->get_total(), |
| 498 | 498 | 'invoice_key' => $invoice->get_key(), |
| 499 | 499 | 'user_email' => $invoice->get_email(), |
| 500 | - 'date' => gmdate( 'Y-m-d H:i:s', time() ), |
|
| 500 | + 'date' => gmdate('Y-m-d H:i:s', time()), |
|
| 501 | 501 | 'user_info' => $invoice->get_user_info(), |
| 502 | - 'post_data' => wp_kses_post_deep( wp_unslash( $_POST ) ), |
|
| 502 | + 'post_data' => wp_kses_post_deep(wp_unslash($_POST)), |
|
| 503 | 503 | 'cart_details' => $invoice->get_cart_details(), |
| 504 | 504 | 'gateway' => $gateway, |
| 505 | 505 | 'card_info' => array(), |
| 506 | - 'gateway_nonce' => wp_create_nonce( 'wpi-gateway' ), |
|
| 506 | + 'gateway_nonce' => wp_create_nonce('wpi-gateway'), |
|
| 507 | 507 | ); |
| 508 | 508 | |
| 509 | - do_action( 'wpinv_gateway_' . $gateway, $payment_data ); |
|
| 509 | + do_action('wpinv_gateway_' . $gateway, $payment_data); |
|
| 510 | 510 | } |
| 511 | 511 | |
| 512 | 512 | /** |
@@ -519,10 +519,10 @@ discard block |
||
| 519 | 519 | /** |
| 520 | 520 | * @deprecated |
| 521 | 521 | */ |
| 522 | -function wpinv_die( $message = '', $title = '', $status = 400 ) { |
|
| 523 | - add_filter( 'wp_die_ajax_handler', 'wpinv_die_handler', 10, 3 ); |
|
| 524 | - add_filter( 'wp_die_handler', 'wpinv_die_handler', 10, 3 ); |
|
| 525 | - wp_die( esc_html( $message ), esc_html( $title ), array( 'response' => (int) $status ) ); |
|
| 522 | +function wpinv_die($message = '', $title = '', $status = 400) { |
|
| 523 | + add_filter('wp_die_ajax_handler', 'wpinv_die_handler', 10, 3); |
|
| 524 | + add_filter('wp_die_handler', 'wpinv_die_handler', 10, 3); |
|
| 525 | + wp_die(esc_html($message), esc_html($title), array('response' => (int) $status)); |
|
| 526 | 526 | } |
| 527 | 527 | |
| 528 | 528 | /** |
@@ -640,14 +640,14 @@ discard block |
||
| 640 | 640 | /** |
| 641 | 641 | * @deprecated |
| 642 | 642 | */ |
| 643 | -function wpinv_invoice_status_label( $status, $status_display = '' ) { |
|
| 644 | - return empty( $status_display ) ? sanitize_text_field( $status ) : sanitize_text_field( $status_display ); |
|
| 643 | +function wpinv_invoice_status_label($status, $status_display = '') { |
|
| 644 | + return empty($status_display) ? sanitize_text_field($status) : sanitize_text_field($status_display); |
|
| 645 | 645 | } |
| 646 | 646 | |
| 647 | 647 | /** |
| 648 | 648 | * @deprecated |
| 649 | 649 | */ |
| 650 | -function wpinv_clean_invoice_number( $number ) { |
|
| 650 | +function wpinv_clean_invoice_number($number) { |
|
| 651 | 651 | return $number; |
| 652 | 652 | } |
| 653 | 653 | |
@@ -852,12 +852,12 @@ discard block |
||
| 852 | 852 | /** |
| 853 | 853 | * @deprecated |
| 854 | 854 | */ |
| 855 | -function wpinv_item_show_price( $item_id = 0, $echo = true ) { |
|
| 855 | +function wpinv_item_show_price($item_id = 0, $echo = true) { |
|
| 856 | 856 | |
| 857 | - if ( $echo ) { |
|
| 858 | - echo wp_kses_post( wpinv_item_price( $item_id ) ); |
|
| 857 | + if ($echo) { |
|
| 858 | + echo wp_kses_post(wpinv_item_price($item_id)); |
|
| 859 | 859 | } else { |
| 860 | - return wpinv_item_price( $item_id ); |
|
| 860 | + return wpinv_item_price($item_id); |
|
| 861 | 861 | } |
| 862 | 862 | |
| 863 | 863 | } |
@@ -1272,6 +1272,6 @@ discard block |
||
| 1272 | 1272 | * @return WPInv_Subscription|bool |
| 1273 | 1273 | * @deprecated |
| 1274 | 1274 | */ |
| 1275 | -function wpinv_get_subscription( $invoice ) { |
|
| 1276 | - return wpinv_get_invoice_subscription( $invoice ); |
|
| 1275 | +function wpinv_get_subscription($invoice) { |
|
| 1276 | + return wpinv_get_invoice_subscription($invoice); |
|
| 1277 | 1277 | } |