@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -87,9 +87,9 @@ discard block |
||
87 | 87 | * @param string $context View or edit context. |
88 | 88 | * @return string |
89 | 89 | */ |
90 | - public function get_name( $context = 'view' ) { |
|
91 | - $name = parent::get_name( $context ); |
|
92 | - return $name . wpinv_get_item_suffix( $this ); |
|
90 | + public function get_name($context = 'view') { |
|
91 | + $name = parent::get_name($context); |
|
92 | + return $name . wpinv_get_item_suffix($this); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
@@ -99,8 +99,8 @@ discard block |
||
99 | 99 | * @param string $context View or edit context. |
100 | 100 | * @return string |
101 | 101 | */ |
102 | - public function get_raw_name( $context = 'view' ) { |
|
103 | - return parent::get_name( $context ); |
|
102 | + public function get_raw_name($context = 'view') { |
|
103 | + return parent::get_name($context); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | /** |
@@ -110,13 +110,13 @@ discard block |
||
110 | 110 | * @param string $context View or edit context. |
111 | 111 | * @return string |
112 | 112 | */ |
113 | - public function get_description( $context = 'view' ) { |
|
113 | + public function get_description($context = 'view') { |
|
114 | 114 | |
115 | - if ( isset( $this->custom_description ) ) { |
|
115 | + if (isset($this->custom_description)) { |
|
116 | 116 | return $this->custom_description; |
117 | 117 | } |
118 | 118 | |
119 | - return parent::get_description( $context ); |
|
119 | + return parent::get_description($context); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | * @param string $context View or edit context. |
127 | 127 | * @return int |
128 | 128 | */ |
129 | - public function get_sub_total( $context = 'view' ) { |
|
130 | - return $this->get_quantity( $context ) * $this->get_initial_price( $context ); |
|
129 | + public function get_sub_total($context = 'view') { |
|
130 | + return $this->get_quantity($context) * $this->get_initial_price($context); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -137,15 +137,15 @@ discard block |
||
137 | 137 | * @param string $context View or edit context. |
138 | 138 | * @return int |
139 | 139 | */ |
140 | - public function get_recurring_sub_total( $context = 'view' ) { |
|
141 | - return $this->get_quantity( $context ) * $this->get_price( $context ); |
|
140 | + public function get_recurring_sub_total($context = 'view') { |
|
141 | + return $this->get_quantity($context) * $this->get_price($context); |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | /** |
145 | 145 | * @deprecated |
146 | 146 | */ |
147 | - public function get_qantity( $context = 'view' ) { |
|
148 | - return $this->get_quantity( $context ); |
|
147 | + public function get_qantity($context = 'view') { |
|
148 | + return $this->get_quantity($context); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | /** |
@@ -155,15 +155,15 @@ discard block |
||
155 | 155 | * @param string $context View or edit context. |
156 | 156 | * @return int |
157 | 157 | */ |
158 | - public function get_quantity( $context = 'view' ) { |
|
158 | + public function get_quantity($context = 'view') { |
|
159 | 159 | $quantity = (int) $this->quantity; |
160 | 160 | |
161 | - if ( empty( $quantity ) || 1 > $quantity ) { |
|
161 | + if (empty($quantity) || 1 > $quantity) { |
|
162 | 162 | $quantity = 1; |
163 | 163 | } |
164 | 164 | |
165 | - if ( 'view' == $context ) { |
|
166 | - return apply_filters( 'getpaid_payment_form_item_quantity', $quantity, $this ); |
|
165 | + if ('view' == $context) { |
|
166 | + return apply_filters('getpaid_payment_form_item_quantity', $quantity, $this); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | return $quantity; |
@@ -177,11 +177,11 @@ discard block |
||
177 | 177 | * @param string $context View or edit context. |
178 | 178 | * @return meta |
179 | 179 | */ |
180 | - public function get_item_meta( $context = 'view' ) { |
|
180 | + public function get_item_meta($context = 'view') { |
|
181 | 181 | $meta = $this->meta; |
182 | 182 | |
183 | - if ( 'view' == $context ) { |
|
184 | - return apply_filters( 'getpaid_payment_form_item_meta', $meta, $this ); |
|
183 | + if ('view' == $context) { |
|
184 | + return apply_filters('getpaid_payment_form_item_meta', $meta, $this); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | return $meta; |
@@ -195,11 +195,11 @@ discard block |
||
195 | 195 | * @param string $context View or edit context. |
196 | 196 | * @return bool |
197 | 197 | */ |
198 | - public function get_allow_quantities( $context = 'view' ) { |
|
198 | + public function get_allow_quantities($context = 'view') { |
|
199 | 199 | $allow_quantities = (bool) $this->allow_quantities; |
200 | 200 | |
201 | - if ( 'view' == $context ) { |
|
202 | - return apply_filters( 'getpaid_payment_form_item_allow_quantities', $allow_quantities, $this ); |
|
201 | + if ('view' == $context) { |
|
202 | + return apply_filters('getpaid_payment_form_item_allow_quantities', $allow_quantities, $this); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | return $allow_quantities; |
@@ -213,11 +213,11 @@ discard block |
||
213 | 213 | * @param string $context View or edit context. |
214 | 214 | * @return bool |
215 | 215 | */ |
216 | - public function get_is_required( $context = 'view' ) { |
|
216 | + public function get_is_required($context = 'view') { |
|
217 | 217 | $is_required = (bool) $this->is_required; |
218 | 218 | |
219 | - if ( 'view' == $context ) { |
|
220 | - return apply_filters( 'getpaid_payment_form_item_is_required', $is_required, $this ); |
|
219 | + if ('view' == $context) { |
|
220 | + return apply_filters('getpaid_payment_form_item_is_required', $is_required, $this); |
|
221 | 221 | } |
222 | 222 | |
223 | 223 | return $is_required; |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | public function prepare_data_for_use() { |
234 | 234 | |
235 | 235 | return array( |
236 | - 'title' => sanitize_text_field( $this->get_name() ), |
|
236 | + 'title' => sanitize_text_field($this->get_name()), |
|
237 | 237 | 'id' => $this->get_id(), |
238 | 238 | 'price' => $this->get_price(), |
239 | 239 | 'recurring' => $this->is_recurring(), |
@@ -250,28 +250,28 @@ discard block |
||
250 | 250 | * @since 1.0.19 |
251 | 251 | * @return array |
252 | 252 | */ |
253 | - public function prepare_data_for_invoice_edit_ajax( $currency = '' ) { |
|
253 | + public function prepare_data_for_invoice_edit_ajax($currency = '') { |
|
254 | 254 | |
255 | - $description = getpaid_item_recurring_price_help_text( $this, $currency ); |
|
255 | + $description = getpaid_item_recurring_price_help_text($this, $currency); |
|
256 | 256 | |
257 | - if ( $description ) { |
|
257 | + if ($description) { |
|
258 | 258 | $description = "<div class='getpaid-subscription-help-text'>$description</div>"; |
259 | 259 | } |
260 | 260 | |
261 | 261 | return array( |
262 | 262 | 'id' => $this->get_id(), |
263 | 263 | 'texts' => array( |
264 | - 'item-name' => sanitize_text_field( $this->get_name() ), |
|
265 | - 'item-description' => wp_kses_post( $this->get_description() ) . $description, |
|
266 | - 'item-quantity' => absint( $this->get_quantity() ), |
|
267 | - 'item-price' => wpinv_price( wpinv_format_amount ( $this->get_price() ), $currency ), |
|
268 | - 'item-total' => wpinv_price( wpinv_format_amount( $this->get_sub_total() ), $currency ), |
|
264 | + 'item-name' => sanitize_text_field($this->get_name()), |
|
265 | + 'item-description' => wp_kses_post($this->get_description()) . $description, |
|
266 | + 'item-quantity' => absint($this->get_quantity()), |
|
267 | + 'item-price' => wpinv_price(wpinv_format_amount($this->get_price()), $currency), |
|
268 | + 'item-total' => wpinv_price(wpinv_format_amount($this->get_sub_total()), $currency), |
|
269 | 269 | ), |
270 | 270 | 'inputs' => array( |
271 | 271 | 'item-id' => $this->get_id(), |
272 | - 'item-name' => sanitize_text_field( $this->get_name() ), |
|
273 | - 'item-description' => wp_kses_post( $this->get_description() ), |
|
274 | - 'item-quantity' => absint( $this->get_quantity() ), |
|
272 | + 'item-name' => sanitize_text_field($this->get_name()), |
|
273 | + 'item-description' => wp_kses_post($this->get_description()), |
|
274 | + 'item-quantity' => absint($this->get_quantity()), |
|
275 | 275 | 'item-price' => $this->get_price(), |
276 | 276 | ) |
277 | 277 | ); |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | return array( |
290 | 290 | 'post_id' => $this->invoice_id, |
291 | 291 | 'item_id' => $this->get_id(), |
292 | - 'item_name' => sanitize_text_field( $this->get_raw_name() ), |
|
292 | + 'item_name' => sanitize_text_field($this->get_raw_name()), |
|
293 | 293 | 'item_description' => $this->get_description(), |
294 | 294 | 'tax' => $this->item_tax, |
295 | 295 | 'item_price' => $this->get_price(), |
@@ -318,9 +318,9 @@ discard block |
||
318 | 318 | * @since 1.0.19 |
319 | 319 | * @param int $quantity The item quantity. |
320 | 320 | */ |
321 | - public function set_quantity( $quantity ) { |
|
321 | + public function set_quantity($quantity) { |
|
322 | 322 | |
323 | - if ( empty( $quantity ) || ! is_numeric( $quantity ) ) { |
|
323 | + if (empty($quantity) || !is_numeric($quantity)) { |
|
324 | 324 | $quantity = 1; |
325 | 325 | } |
326 | 326 | |
@@ -334,8 +334,8 @@ discard block |
||
334 | 334 | * @since 1.0.19 |
335 | 335 | * @param array $meta The item meta data. |
336 | 336 | */ |
337 | - public function set_item_meta( $meta ) { |
|
338 | - $this->meta = maybe_unserialize( $meta ); |
|
337 | + public function set_item_meta($meta) { |
|
338 | + $this->meta = maybe_unserialize($meta); |
|
339 | 339 | } |
340 | 340 | |
341 | 341 | /** |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | * @since 1.0.19 |
345 | 345 | * @param bool $allow_quantities |
346 | 346 | */ |
347 | - public function set_allow_quantities( $allow_quantities ) { |
|
347 | + public function set_allow_quantities($allow_quantities) { |
|
348 | 348 | $this->allow_quantities = (bool) $allow_quantities; |
349 | 349 | } |
350 | 350 | |
@@ -354,7 +354,7 @@ discard block |
||
354 | 354 | * @since 1.0.19 |
355 | 355 | * @param bool $is_required |
356 | 356 | */ |
357 | - public function set_is_required( $is_required ) { |
|
357 | + public function set_is_required($is_required) { |
|
358 | 358 | $this->is_required = (bool) $is_required; |
359 | 359 | } |
360 | 360 | |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | * @since 1.0.19 |
365 | 365 | * @param string $description |
366 | 366 | */ |
367 | - public function set_custom_description( $description ) { |
|
367 | + public function set_custom_description($description) { |
|
368 | 368 | $this->custom_description = $description; |
369 | 369 | } |
370 | 370 | |
@@ -373,7 +373,7 @@ discard block |
||
373 | 373 | * |
374 | 374 | * @return int item id |
375 | 375 | */ |
376 | - public function save( $data = array() ) { |
|
376 | + public function save($data = array()) { |
|
377 | 377 | return $this->get_id(); |
378 | 378 | } |
379 | 379 |
@@ -7,18 +7,18 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -$column_count = count( $columns ); |
|
12 | +$column_count = count($columns); |
|
13 | 13 | ?> |
14 | 14 | |
15 | -<?php do_action( 'wpinv_before_email_items', $invoice ); ?> |
|
15 | +<?php do_action('wpinv_before_email_items', $invoice); ?> |
|
16 | 16 | |
17 | 17 | |
18 | 18 | <div id="wpinv-email-items"> |
19 | 19 | |
20 | 20 | <h3 class="wpinv-items-t"> |
21 | - <?php echo apply_filters( 'wpinv_email_items_title', __( 'Items', 'invoicing' ) ); ?> |
|
21 | + <?php echo apply_filters('wpinv_email_items_title', __('Items', 'invoicing')); ?> |
|
22 | 22 | </h3> |
23 | 23 | |
24 | 24 | <table id="wpinv_checkout_cart" class="table table-bordered table-hover"> |
@@ -27,9 +27,9 @@ discard block |
||
27 | 27 | |
28 | 28 | <tr class="wpinv_cart_header_row"> |
29 | 29 | |
30 | - <?php foreach ( $columns as $key => $label ) : ?> |
|
31 | - <th class="<?php echo 'name' == $key ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class( $key ); ?>"> |
|
32 | - <?php echo sanitize_text_field( $label ); ?> |
|
30 | + <?php foreach ($columns as $key => $label) : ?> |
|
31 | + <th class="<?php echo 'name' == $key ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class($key); ?>"> |
|
32 | + <?php echo sanitize_text_field($label); ?> |
|
33 | 33 | </th> |
34 | 34 | <?php endforeach; ?> |
35 | 35 | |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | <?php |
43 | 43 | |
44 | 44 | // Display the item totals. |
45 | - foreach ( $invoice->get_items() as $item ) { |
|
46 | - wpinv_get_template( 'emails/invoice-item.php', compact( 'invoice', 'item', 'columns' ) ); |
|
45 | + foreach ($invoice->get_items() as $item) { |
|
46 | + wpinv_get_template('emails/invoice-item.php', compact('invoice', 'item', 'columns')); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | ?> |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | </tbody> |
52 | 52 | |
53 | 53 | <tfoot> |
54 | - <?php wpinv_get_template( 'emails/invoice-totals.php', compact( 'invoice', 'column_count' ) ); ?> |
|
54 | + <?php wpinv_get_template('emails/invoice-totals.php', compact('invoice', 'column_count')); ?> |
|
55 | 55 | </tfoot> |
56 | 56 | |
57 | 57 | </table> |
@@ -7,16 +7,16 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | // Totals rows. |
13 | 13 | $totals = apply_filters( |
14 | 14 | 'getpaid_payment_form_cart_table_totals', |
15 | 15 | array( |
16 | - 'subtotal' => __( 'Subtotal', 'invoicing' ), |
|
17 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
18 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
19 | - 'total' => __( 'Total', 'invoicing' ), |
|
16 | + 'subtotal' => __('Subtotal', 'invoicing'), |
|
17 | + 'tax' => __('Tax', 'invoicing'), |
|
18 | + 'discount' => __('Discount', 'invoicing'), |
|
19 | + 'total' => __('Total', 'invoicing'), |
|
20 | 20 | ), |
21 | 21 | $form |
22 | 22 | ); |
@@ -24,15 +24,15 @@ discard block |
||
24 | 24 | $currency = $form->get_currency(); |
25 | 25 | $country = wpinv_get_default_country(); |
26 | 26 | |
27 | -if ( ! empty( $form->invoice ) ) { |
|
28 | - $country = $form->invoice->get_country(); |
|
27 | +if (!empty($form->invoice)) { |
|
28 | + $country = $form->invoice->get_country(); |
|
29 | 29 | } |
30 | 30 | |
31 | -if ( ! wpinv_use_taxes() && isset( $totals['tax'] ) ) { |
|
32 | - unset( $totals['tax'] ); |
|
31 | +if (!wpinv_use_taxes() && isset($totals['tax'])) { |
|
32 | + unset($totals['tax']); |
|
33 | 33 | } |
34 | 34 | |
35 | -do_action( 'getpaid_before_payment_form_cart_totals', $form, $totals ); |
|
35 | +do_action('getpaid_before_payment_form_cart_totals', $form, $totals); |
|
36 | 36 | |
37 | 37 | $tax = 0; |
38 | 38 | $sub_total = 0; |
@@ -40,9 +40,9 @@ discard block |
||
40 | 40 | $discount = 0; |
41 | 41 | |
42 | 42 | // Calculate totals. |
43 | -foreach ( $form->get_items() as $item ) { |
|
43 | +foreach ($form->get_items() as $item) { |
|
44 | 44 | |
45 | - if ( ! empty( $form->invoice ) && 'amount' == $form->invoice->get_template() ) { |
|
45 | + if (!empty($form->invoice) && 'amount' == $form->invoice->get_template()) { |
|
46 | 46 | $amount = $item->get_price(); |
47 | 47 | } else { |
48 | 48 | $amount = $item->get_sub_total(); |
@@ -50,11 +50,11 @@ discard block |
||
50 | 50 | |
51 | 51 | |
52 | 52 | // Include the tax. |
53 | - if ( wpinv_use_taxes() ) { |
|
54 | - $rate = wpinv_get_tax_rate( $country, false, $item->get_id() ); |
|
53 | + if (wpinv_use_taxes()) { |
|
54 | + $rate = wpinv_get_tax_rate($country, false, $item->get_id()); |
|
55 | 55 | |
56 | - if ( wpinv_prices_include_tax() ) { |
|
57 | - $pre_tax = ( $amount - $amount * $rate * 0.01 ); |
|
56 | + if (wpinv_prices_include_tax()) { |
|
57 | + $pre_tax = ($amount - $amount * $rate * 0.01); |
|
58 | 58 | $item_tax = $amount - $pre_tax; |
59 | 59 | } else { |
60 | 60 | $pre_tax = $amount; |
@@ -66,41 +66,41 @@ discard block |
||
66 | 66 | $total = $sub_total + $tax; |
67 | 67 | |
68 | 68 | } else { |
69 | - $total = $total + $amount; |
|
69 | + $total = $total + $amount; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | } |
73 | 73 | |
74 | 74 | ?> |
75 | 75 | <div class='border-top getpaid-payment-form-items-cart-totals'> |
76 | - <?php foreach ( $totals as $key => $label ) : ?> |
|
77 | - <div class="getpaid-form-cart-totals-col getpaid-form-cart-totals-<?php echo esc_attr( $key ); ?>"> |
|
76 | + <?php foreach ($totals as $key => $label) : ?> |
|
77 | + <div class="getpaid-form-cart-totals-col getpaid-form-cart-totals-<?php echo esc_attr($key); ?>"> |
|
78 | 78 | <div class="row"> |
79 | 79 | <div class="col-12 offset-sm-5 col-sm-4"> |
80 | - <?php echo sanitize_text_field( $label ); ?> |
|
80 | + <?php echo sanitize_text_field($label); ?> |
|
81 | 81 | </div> |
82 | - <div class="col-12 col-sm-3 getpaid-form-cart-totals-total-<?php echo esc_attr( $key ); ?>"> |
|
82 | + <div class="col-12 col-sm-3 getpaid-form-cart-totals-total-<?php echo esc_attr($key); ?>"> |
|
83 | 83 | <?php |
84 | - do_action( "getpaid_payment_form_cart_totals_$key", $form ); |
|
84 | + do_action("getpaid_payment_form_cart_totals_$key", $form); |
|
85 | 85 | |
86 | 86 | // Total tax. |
87 | - if ( 'tax' == $key ) { |
|
88 | - echo wpinv_price( wpinv_format_amount( $tax ), $currency ); |
|
87 | + if ('tax' == $key) { |
|
88 | + echo wpinv_price(wpinv_format_amount($tax), $currency); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | // Total discount. |
92 | - if ( 'discount' == $key ) { |
|
93 | - echo wpinv_price( wpinv_format_amount( $discount ), $currency ); |
|
92 | + if ('discount' == $key) { |
|
93 | + echo wpinv_price(wpinv_format_amount($discount), $currency); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | // Sub total. |
97 | - if ( 'subtotal' == $key ) { |
|
98 | - echo wpinv_price( wpinv_format_amount( $sub_total ), $currency ); |
|
97 | + if ('subtotal' == $key) { |
|
98 | + echo wpinv_price(wpinv_format_amount($sub_total), $currency); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | // Total. |
102 | - if ( 'total' == $key ) { |
|
103 | - echo wpinv_price( wpinv_format_amount( $total ), $currency ); |
|
102 | + if ('total' == $key) { |
|
103 | + echo wpinv_price(wpinv_format_amount($total), $currency); |
|
104 | 104 | } |
105 | 105 | ?> |
106 | 106 | </div> |
@@ -110,4 +110,4 @@ discard block |
||
110 | 110 | </div> |
111 | 111 | |
112 | 112 | <?php |
113 | -do_action( 'getpaid_payment_form_cart_totals', $form, $totals ); |
|
113 | +do_action('getpaid_payment_form_cart_totals', $form, $totals); |
@@ -7,80 +7,80 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -do_action( 'getpaid_before_payment_form_cart_item', $form, $item ); |
|
12 | +do_action('getpaid_before_payment_form_cart_item', $form, $item); |
|
13 | 13 | |
14 | 14 | $currency = $form->get_currency(); |
15 | 15 | |
16 | 16 | ?> |
17 | -<div class='getpaid-payment-form-items-cart-item getpaid-<?php echo $item->is_required() ? 'required' : 'selectable'; ?> item-<?php echo $item->get_id(); ?>'> |
|
17 | +<div class='getpaid-payment-form-items-cart-item getpaid-<?php echo $item->is_required() ? 'required' : 'selectable'; ?> item-<?php echo $item->get_id(); ?>'> |
|
18 | 18 | <div class="form-row"> |
19 | - <?php foreach ( $columns as $key => $label ) : ?> |
|
20 | - <div class="<?php echo 'name' == $key ? 'col-12 col-sm-5' : 'col-12 col-sm' ?> getpaid-form-cart-item-<?php echo esc_attr( $key ); ?> getpaid-form-cart-item-<?php echo esc_attr( $key ); ?>-<?php echo $item->get_id(); ?>"> |
|
19 | + <?php foreach ($columns as $key => $label) : ?> |
|
20 | + <div class="<?php echo 'name' == $key ? 'col-12 col-sm-5' : 'col-12 col-sm' ?> getpaid-form-cart-item-<?php echo esc_attr($key); ?> getpaid-form-cart-item-<?php echo esc_attr($key); ?>-<?php echo $item->get_id(); ?>"> |
|
21 | 21 | <?php |
22 | - do_action( "getpaid_payment_form_cart_item_$key", $form, $item ); |
|
22 | + do_action("getpaid_payment_form_cart_item_$key", $form, $item); |
|
23 | 23 | |
24 | 24 | // Item name. |
25 | - if ( 'name' == $key ) { |
|
26 | - echo sanitize_text_field( $item->get_name() ); |
|
25 | + if ('name' == $key) { |
|
26 | + echo sanitize_text_field($item->get_name()); |
|
27 | 27 | $description = $item->get_description(); |
28 | 28 | |
29 | - if ( ! empty( $description ) ) { |
|
30 | - $description = wp_kses_post( $description ); |
|
29 | + if (!empty($description)) { |
|
30 | + $description = wp_kses_post($description); |
|
31 | 31 | echo "<small class='form-text text-muted pr-2 m-0'>$description</small>"; |
32 | 32 | } |
33 | 33 | |
34 | - $description = getpaid_item_recurring_price_help_text( $item, $currency ); |
|
34 | + $description = getpaid_item_recurring_price_help_text($item, $currency); |
|
35 | 35 | |
36 | - if ( $description ) { |
|
36 | + if ($description) { |
|
37 | 37 | echo "<small class='form-text text-muted pr-2 m-0'>$description</small>"; |
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
41 | 41 | // Item price. |
42 | - if ( 'price' == $key ) { |
|
42 | + if ('price' == $key) { |
|
43 | 43 | |
44 | 44 | // Set the currency position. |
45 | 45 | $position = wpinv_currency_position(); |
46 | 46 | |
47 | - if ( $position == 'left_space' ) { |
|
47 | + if ($position == 'left_space') { |
|
48 | 48 | $position = 'left'; |
49 | 49 | } |
50 | 50 | |
51 | - if ( $position == 'right_space' ) { |
|
51 | + if ($position == 'right_space') { |
|
52 | 52 | $position = 'right'; |
53 | 53 | } |
54 | 54 | |
55 | - if ( $item->user_can_set_their_price() ) { |
|
55 | + if ($item->user_can_set_their_price()) { |
|
56 | 56 | ?> |
57 | 57 | <div class="input-group input-group-sm"> |
58 | - <?php if( 'left' == $position ) : ?> |
|
58 | + <?php if ('left' == $position) : ?> |
|
59 | 59 | <div class="input-group-prepend"> |
60 | - <span class="input-group-text"><?php echo wpinv_currency_symbol( $currency ); ?></span> |
|
60 | + <span class="input-group-text"><?php echo wpinv_currency_symbol($currency); ?></span> |
|
61 | 61 | </div> |
62 | 62 | <?php endif; ?> |
63 | - <input type="text" name="getpaid-items[<?php echo (int) $item->get_id(); ?>][price]" value="<?php echo esc_attr( $item->get_price() ); ?>" placeholder="<?php echo esc_attr( $item->get_minimum_price() ); ?>" class="getpaid-item-price-input"> |
|
63 | + <input type="text" name="getpaid-items[<?php echo (int) $item->get_id(); ?>][price]" value="<?php echo esc_attr($item->get_price()); ?>" placeholder="<?php echo esc_attr($item->get_minimum_price()); ?>" class="getpaid-item-price-input"> |
|
64 | 64 | |
65 | - <?php if( 'left' != $position ) : ?> |
|
65 | + <?php if ('left' != $position) : ?> |
|
66 | 66 | <div class="input-group-append"> |
67 | - <span class="input-group-text"><?php echo wpinv_currency_symbol( $currency ); ?></span> |
|
67 | + <span class="input-group-text"><?php echo wpinv_currency_symbol($currency); ?></span> |
|
68 | 68 | </div> |
69 | 69 | <?php endif; ?> |
70 | 70 | </div> |
71 | 71 | <?php |
72 | 72 | } else { |
73 | - echo wpinv_price( wpinv_format_amount( $item->get_price() ), $currency ); |
|
73 | + echo wpinv_price(wpinv_format_amount($item->get_price()), $currency); |
|
74 | 74 | ?> |
75 | - <input name='getpaid-items[<?php echo (int) $item->get_id(); ?>][price]' type='hidden' class='getpaid-item-price-input' value='<?php echo esc_attr( $item->get_price() ); ?>'> |
|
75 | + <input name='getpaid-items[<?php echo (int) $item->get_id(); ?>][price]' type='hidden' class='getpaid-item-price-input' value='<?php echo esc_attr($item->get_price()); ?>'> |
|
76 | 76 | <?php |
77 | 77 | } |
78 | 78 | } |
79 | 79 | |
80 | 80 | // Item quantity. |
81 | - if ( 'quantity' == $key ) { |
|
81 | + if ('quantity' == $key) { |
|
82 | 82 | |
83 | - if ( $item->allows_quantities() ) { |
|
83 | + if ($item->allows_quantities()) { |
|
84 | 84 | ?> |
85 | 85 | <input name='getpaid-items[<?php echo (int) $item->get_id(); ?>][quantity]' type='number' class='getpaid-item-quantity-input pr-1' value='<?php echo (int) $item->get_qantity(); ?>' min='1' required> |
86 | 86 | <?php |
@@ -94,8 +94,8 @@ discard block |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | // Item sub total. |
97 | - if ( 'subtotal' == $key ) { |
|
98 | - echo wpinv_price( wpinv_format_amount( $item->get_sub_total() ), $currency ); |
|
97 | + if ('subtotal' == $key) { |
|
98 | + echo wpinv_price(wpinv_format_amount($item->get_sub_total()), $currency); |
|
99 | 99 | } |
100 | 100 | ?> |
101 | 101 | </div> |
@@ -103,4 +103,4 @@ discard block |
||
103 | 103 | </div> |
104 | 104 | </div> |
105 | 105 | <?php |
106 | -do_action( 'getpaid_payment_form_cart_item', $form, $item ); |
|
106 | +do_action('getpaid_payment_form_cart_item', $form, $item); |
@@ -7,29 +7,29 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | // Set the currency position. |
13 | 13 | $position = wpinv_currency_position(); |
14 | 14 | |
15 | -if ( $position == 'left_space' ) { |
|
15 | +if ($position == 'left_space') { |
|
16 | 16 | $position = 'left'; |
17 | 17 | } |
18 | 18 | |
19 | -if ( $position == 'right_space' ) { |
|
19 | +if ($position == 'right_space') { |
|
20 | 20 | $position = 'right'; |
21 | 21 | } |
22 | 22 | |
23 | 23 | echo aui()->input( |
24 | 24 | array( |
25 | - 'name' => esc_attr( $id ), |
|
26 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
27 | - 'placeholder' => empty( $placeholder ) ? wpinv_format_amount(0) : wpinv_format_amount( $placeholder ), |
|
28 | - 'value' => empty( $value ) ? wpinv_format_amount(0) : wpinv_format_amount( $value ), |
|
29 | - 'label' => empty( $label ) ? '' : wp_kses_post( $label ), |
|
25 | + 'name' => esc_attr($id), |
|
26 | + 'id' => esc_attr($id) . uniqid('_'), |
|
27 | + 'placeholder' => empty($placeholder) ? wpinv_format_amount(0) : wpinv_format_amount($placeholder), |
|
28 | + 'value' => empty($value) ? wpinv_format_amount(0) : wpinv_format_amount($value), |
|
29 | + 'label' => empty($label) ? '' : wp_kses_post($label), |
|
30 | 30 | 'label_type' => 'vertical', |
31 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
32 | - 'input_group_right' => $position == 'right' ? wpinv_currency_symbol( $form->get_currency() ) : '', |
|
33 | - 'input_group_left' => $position == 'left' ? wpinv_currency_symbol( $form->get_currency() ) : '', |
|
31 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
32 | + 'input_group_right' => $position == 'right' ? wpinv_currency_symbol($form->get_currency()) : '', |
|
33 | + 'input_group_left' => $position == 'left' ? wpinv_currency_symbol($form->get_currency()) : '', |
|
34 | 34 | ) |
35 | 35 | ); |
@@ -7,27 +7,27 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | // The payment methods select title. |
13 | -if ( empty( $text ) ) { |
|
14 | - $text = __( 'Select Payment Method', 'invoicing' ); |
|
13 | +if (empty($text)) { |
|
14 | + $text = __('Select Payment Method', 'invoicing'); |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | // An array of active payment methods. |
18 | -$gateways = wpinv_get_enabled_payment_gateways( true ); |
|
18 | +$gateways = wpinv_get_enabled_payment_gateways(true); |
|
19 | 19 | |
20 | 20 | // Make it possible to filter active gateways. |
21 | -$gateways = apply_filters( 'getpaid_payment_form_gateways', $gateways, $form ); |
|
21 | +$gateways = apply_filters('getpaid_payment_form_gateways', $gateways, $form); |
|
22 | 22 | |
23 | 23 | //@deprecated |
24 | -$gateways = apply_filters( 'wpinv_payment_gateways_on_cart', $gateways ); |
|
24 | +$gateways = apply_filters('wpinv_payment_gateways_on_cart', $gateways); |
|
25 | 25 | |
26 | 26 | // The current invoice id. |
27 | 27 | $invoice_id = 0; |
28 | 28 | $chosen_gateway = wpinv_get_default_gateway(); |
29 | 29 | |
30 | -if ( ! empty( $form->invoice ) ) { |
|
30 | +if (!empty($form->invoice)) { |
|
31 | 31 | $invoice_id = $form->invoice->get_id(); |
32 | 32 | $chosen_gateway = $form->invoice->get_gateway(); |
33 | 33 | } |
@@ -36,36 +36,36 @@ discard block |
||
36 | 36 | |
37 | 37 | <div class="mt-4 mb-4"> |
38 | 38 | |
39 | - <?php do_action( 'wpinv_payment_mode_top', $invoice_id, $chosen_gateway, $gateways, $form ); ?> |
|
39 | + <?php do_action('wpinv_payment_mode_top', $invoice_id, $chosen_gateway, $gateways, $form); ?> |
|
40 | 40 | |
41 | 41 | <div class="getpaid-gateways-select-title-div"> |
42 | - <h6><?php echo sanitize_text_field( $text ); ?></h6> |
|
42 | + <h6><?php echo sanitize_text_field($text); ?></h6> |
|
43 | 43 | </div> |
44 | 44 | |
45 | 45 | |
46 | 46 | <div class="getpaid-gateways-select-gateways-div"> |
47 | 47 | |
48 | - <?php foreach ( array_keys( $gateways ) as $gateway ) : ?> |
|
48 | + <?php foreach (array_keys($gateways) as $gateway) : ?> |
|
49 | 49 | |
50 | - <div class="pt-2 pb-2 getpaid-gateways-select-gateway getpaid-gateways-select-gateway-<?php echo sanitize_html_class( $gateway ) ;?>" data-checkout-label='<?php echo esc_attr( apply_filters( "getpaid_gateway_{$gateway}_checkout_button_label", '' ) ); ?>'> |
|
50 | + <div class="pt-2 pb-2 getpaid-gateways-select-gateway getpaid-gateways-select-gateway-<?php echo sanitize_html_class($gateway); ?>" data-checkout-label='<?php echo esc_attr(apply_filters("getpaid_gateway_{$gateway}_checkout_button_label", '')); ?>'> |
|
51 | 51 | |
52 | 52 | <div class="getpaid-gateway-radio-div"> |
53 | 53 | <label> |
54 | - <input type="radio" value="<?php echo esc_attr( $gateway ) ;?>" <?php checked( $gateway, $chosen_gateway ) ;?> name="wpi-gateway"> |
|
55 | - <span><?php echo sanitize_text_field( wpinv_get_gateway_checkout_label( $gateway ) ); ?></span> |
|
54 | + <input type="radio" value="<?php echo esc_attr($gateway); ?>" <?php checked($gateway, $chosen_gateway); ?> name="wpi-gateway"> |
|
55 | + <span><?php echo sanitize_text_field(wpinv_get_gateway_checkout_label($gateway)); ?></span> |
|
56 | 56 | </label> |
57 | 57 | </div> |
58 | 58 | |
59 | 59 | <div class="getpaid-gateway-description-div" style="display: none;"> |
60 | - <?php do_action( 'wpinv_' . $gateway . '_checkout_fields', $invoice_id ) ;?> |
|
61 | - <?php if ( wpinv_get_gateway_description( $gateway ) ) : ?> |
|
60 | + <?php do_action('wpinv_' . $gateway . '_checkout_fields', $invoice_id); ?> |
|
61 | + <?php if (wpinv_get_gateway_description($gateway)) : ?> |
|
62 | 62 | <div class="getpaid-gateway-description"> |
63 | - <?php echo wpinv_get_gateway_description( $gateway ); ?> |
|
63 | + <?php echo wpinv_get_gateway_description($gateway); ?> |
|
64 | 64 | </div> |
65 | 65 | <?php endif; ?> |
66 | 66 | |
67 | - <?php do_action( 'getpaid_after_gateway_description', $invoice_id, $gateway, $form ) ;?> |
|
68 | - <?php do_action( 'wpinv_' . $gateway . '_cc_form', $invoice_id, $form ) ;?> |
|
67 | + <?php do_action('getpaid_after_gateway_description', $invoice_id, $gateway, $form); ?> |
|
68 | + <?php do_action('wpinv_' . $gateway . '_cc_form', $invoice_id, $form); ?> |
|
69 | 69 | |
70 | 70 | </div> |
71 | 71 | |
@@ -76,16 +76,16 @@ discard block |
||
76 | 76 | <?php |
77 | 77 | |
78 | 78 | |
79 | - if ( empty( $gateways ) ) { |
|
79 | + if (empty($gateways)) { |
|
80 | 80 | |
81 | - $enabled_gateways = wpinv_get_enabled_payment_gateways( true ); |
|
81 | + $enabled_gateways = wpinv_get_enabled_payment_gateways(true); |
|
82 | 82 | |
83 | - if ( ! empty( $enabled_gateways ) && $form->is_recurring() ) { |
|
83 | + if (!empty($enabled_gateways) && $form->is_recurring()) { |
|
84 | 84 | |
85 | 85 | |
86 | 86 | echo aui()->alert( |
87 | 87 | array( |
88 | - 'content' => __( 'Non of the available payment gateways support subscriptions.', 'invoicing' ), |
|
88 | + 'content' => __('Non of the available payment gateways support subscriptions.', 'invoicing'), |
|
89 | 89 | 'type' => 'danger', |
90 | 90 | ) |
91 | 91 | ); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | echo aui()->alert( |
97 | 97 | array( |
98 | - 'content' => __( 'No active payment gateway available.', 'invoicing' ), |
|
98 | + 'content' => __('No active payment gateway available.', 'invoicing'), |
|
99 | 99 | 'type' => 'danger', |
100 | 100 | ) |
101 | 101 | ); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | |
111 | 111 | </div> |
112 | 112 | |
113 | - <?php do_action( 'wpinv_payment_mode_bottom', $invoice_id, $chosen_gateway, $gateways, $form ); ?> |
|
113 | + <?php do_action('wpinv_payment_mode_bottom', $invoice_id, $chosen_gateway, $gateways, $form); ?> |
|
114 | 114 | |
115 | 115 | </div> |
116 | 116 |
@@ -1,68 +1,68 @@ |
||
1 | 1 | <?php |
2 | 2 | // don't load directly |
3 | -if ( !defined('ABSPATH') ) |
|
3 | +if (!defined('ABSPATH')) |
|
4 | 4 | die('-1'); |
5 | 5 | |
6 | 6 | global $wpinv_euvat; |
7 | 7 | |
8 | -$sent_to_admin = !empty( $sent_to_admin ) ? true : false; |
|
9 | -$invoice_url = $invoice->get_view_url( true ); |
|
8 | +$sent_to_admin = !empty($sent_to_admin) ? true : false; |
|
9 | +$invoice_url = $invoice->get_view_url(true); |
|
10 | 10 | $use_taxes = wpinv_use_taxes(); |
11 | 11 | $vat_name = getpaid_tax()->get_vat_name(); |
12 | 12 | |
13 | -do_action( 'wpinv_email_before_invoice_details', $invoice, $sent_to_admin ); ?> |
|
13 | +do_action('wpinv_email_before_invoice_details', $invoice, $sent_to_admin); ?> |
|
14 | 14 | <div id="wpinv-email-details"> |
15 | - <h3 class="wpinv-details-t"><?php echo apply_filters( 'wpinv_email_details_title', __( 'Invoice Details', 'invoicing' ), $invoice ); ?></h3> |
|
15 | + <h3 class="wpinv-details-t"><?php echo apply_filters('wpinv_email_details_title', __('Invoice Details', 'invoicing'), $invoice); ?></h3> |
|
16 | 16 | <table class="table table-bordered table-sm"> |
17 | - <?php if ( $invoice_number = $invoice->get_number() ) { ?> |
|
17 | + <?php if ($invoice_number = $invoice->get_number()) { ?> |
|
18 | 18 | <tr> |
19 | - <td><?php echo apply_filters( 'wpinv_invoice_number_label', __( 'Invoice Number', 'invoicing' ), $invoice ); ?></td> |
|
20 | - <td><a href="<?php echo esc_url( $invoice_url ) ;?>"><?php echo $invoice_number; ?></a></td> |
|
19 | + <td><?php echo apply_filters('wpinv_invoice_number_label', __('Invoice Number', 'invoicing'), $invoice); ?></td> |
|
20 | + <td><a href="<?php echo esc_url($invoice_url); ?>"><?php echo $invoice_number; ?></a></td> |
|
21 | 21 | </tr> |
22 | 22 | <?php } ?> |
23 | 23 | <tr> |
24 | - <td><?php echo apply_filters( 'wpinv_invoice_status_title', __( 'Invoice Status', 'invoicing' ), $invoice ); ?></td> |
|
25 | - <td><?php echo $invoice->get_status( true ); ?></td> |
|
24 | + <td><?php echo apply_filters('wpinv_invoice_status_title', __('Invoice Status', 'invoicing'), $invoice); ?></td> |
|
25 | + <td><?php echo $invoice->get_status(true); ?></td> |
|
26 | 26 | </tr> |
27 | - <?php if ( $invoice->is_renewal() ) { ?> |
|
27 | + <?php if ($invoice->is_renewal()) { ?> |
|
28 | 28 | <tr> |
29 | - <td><?php echo apply_filters( 'wpinv_invoice_parent_invoice_label', __( 'Parent Invoice', 'invoicing' ), $invoice ); ?></td> |
|
30 | - <td><?php echo wpinv_invoice_link( $invoice->parent_invoice ); ?></td> |
|
29 | + <td><?php echo apply_filters('wpinv_invoice_parent_invoice_label', __('Parent Invoice', 'invoicing'), $invoice); ?></td> |
|
30 | + <td><?php echo wpinv_invoice_link($invoice->parent_invoice); ?></td> |
|
31 | 31 | </tr> |
32 | 32 | <?php } ?> |
33 | - <?php if ( ( $gateway_title = $invoice->get_gateway_title() ) && ( $invoice->is_paid() || $invoice->is_refunded() ) ) { ?> |
|
34 | - <td><?php echo apply_filters( 'wpinv_invoice_payment_method_label', __( 'Payment Method', 'invoicing' ), $invoice ); ?></td> |
|
33 | + <?php if (($gateway_title = $invoice->get_gateway_title()) && ($invoice->is_paid() || $invoice->is_refunded())) { ?> |
|
34 | + <td><?php echo apply_filters('wpinv_invoice_payment_method_label', __('Payment Method', 'invoicing'), $invoice); ?></td> |
|
35 | 35 | <td><?php echo $gateway_title; ?></td> |
36 | 36 | <?php } ?> |
37 | - <?php if ( $invoice_date = $invoice->get_invoice_date( false ) ) { ?> |
|
37 | + <?php if ($invoice_date = $invoice->get_invoice_date(false)) { ?> |
|
38 | 38 | <tr> |
39 | - <td><?php echo apply_filters( 'wpinv_invoice_date_label', __( 'Invoice Date', 'invoicing' ), $invoice ); ?></td> |
|
40 | - <td><?php echo wp_sprintf( '<time datetime="%s">%s</time>', date_i18n( 'c', strtotime( $invoice_date ) ), $invoice->get_invoice_date() ); ?></td> |
|
39 | + <td><?php echo apply_filters('wpinv_invoice_date_label', __('Invoice Date', 'invoicing'), $invoice); ?></td> |
|
40 | + <td><?php echo wp_sprintf('<time datetime="%s">%s</time>', date_i18n('c', strtotime($invoice_date)), $invoice->get_invoice_date()); ?></td> |
|
41 | 41 | </tr> |
42 | 42 | <?php } ?> |
43 | - <?php if ( wpinv_get_option( 'overdue_active' ) && $invoice->needs_payment() && ( $due_date = $invoice->get_due_date() ) ) { ?> |
|
43 | + <?php if (wpinv_get_option('overdue_active') && $invoice->needs_payment() && ($due_date = $invoice->get_due_date())) { ?> |
|
44 | 44 | <tr> |
45 | - <td><?php echo apply_filters( 'wpinv_invoice_due_date_label', __( 'Due Date', 'invoicing' ), $invoice ); ?></td> |
|
46 | - <td><?php echo wp_sprintf( '<time datetime="%s">%s</time>', date_i18n( 'c', strtotime( $due_date ) ), $invoice->get_due_date( true ) ); ?></td> |
|
45 | + <td><?php echo apply_filters('wpinv_invoice_due_date_label', __('Due Date', 'invoicing'), $invoice); ?></td> |
|
46 | + <td><?php echo wp_sprintf('<time datetime="%s">%s</time>', date_i18n('c', strtotime($due_date)), $invoice->get_due_date(true)); ?></td> |
|
47 | 47 | </tr> |
48 | 48 | <?php } ?> |
49 | - <?php do_action( 'wpinv_email_invoice_details_after_due_date', $invoice->ID ); ?> |
|
50 | - <?php if ( empty( $sent_to_admin ) && ( $owner_vat_number = $wpinv_euvat->get_vat_number() ) ) { ?> |
|
49 | + <?php do_action('wpinv_email_invoice_details_after_due_date', $invoice->ID); ?> |
|
50 | + <?php if (empty($sent_to_admin) && ($owner_vat_number = $wpinv_euvat->get_vat_number())) { ?> |
|
51 | 51 | <tr> |
52 | - <td><?php echo apply_filters( 'wpinv_invoice_owner_vat_number_label', wp_sprintf( __( 'Owner %s Number', 'invoicing' ), $vat_name ), $invoice, $vat_name ); ?></td> |
|
52 | + <td><?php echo apply_filters('wpinv_invoice_owner_vat_number_label', wp_sprintf(__('Owner %s Number', 'invoicing'), $vat_name), $invoice, $vat_name); ?></td> |
|
53 | 53 | <td><?php echo $owner_vat_number; ?></td> |
54 | 54 | </tr> |
55 | 55 | <?php } ?> |
56 | - <?php if ( $use_taxes && ( $user_vat_number = $invoice->vat_number ) ) { ?> |
|
56 | + <?php if ($use_taxes && ($user_vat_number = $invoice->vat_number)) { ?> |
|
57 | 57 | <tr> |
58 | - <td><?php echo apply_filters( 'wpinv_invoice_user_vat_number_label', wp_sprintf( __( 'Invoice %s Number', 'invoicing' ), $vat_name ), $invoice, $vat_name ); ?></td> |
|
58 | + <td><?php echo apply_filters('wpinv_invoice_user_vat_number_label', wp_sprintf(__('Invoice %s Number', 'invoicing'), $vat_name), $invoice, $vat_name); ?></td> |
|
59 | 59 | <td><?php echo $user_vat_number; ?></td> |
60 | 60 | </tr> |
61 | 61 | <?php } ?> |
62 | 62 | <tr class="table-active"> |
63 | - <td><strong><?php _e( 'Total Amount', 'invoicing' ) ?></strong></td> |
|
64 | - <td><strong><?php echo $invoice->get_total( true ); ?></strong></td> |
|
63 | + <td><strong><?php _e('Total Amount', 'invoicing') ?></strong></td> |
|
64 | + <td><strong><?php echo $invoice->get_total(true); ?></strong></td> |
|
65 | 65 | </tr> |
66 | 66 | </table> |
67 | 67 | </div> |
68 | -<?php do_action( 'wpinv_email_after_invoice_details', $invoice, $sent_to_admin ); ?> |
|
69 | 68 | \ No newline at end of file |
69 | +<?php do_action('wpinv_email_after_invoice_details', $invoice, $sent_to_admin); ?> |
|
70 | 70 | \ No newline at end of file |
@@ -7,19 +7,19 @@ |
||
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="getpaid-header-left-actions"> |
15 | 15 | |
16 | - <?php if ( $invoice->is_type( 'invoice' ) && $invoice->needs_payment() && ! $invoice->is_held() ): ?> |
|
17 | - <a class="btn btn-primary invoice-action-pay" href="<?php echo esc_url( $invoice->get_checkout_payment_url() ); ?>"> |
|
18 | - <?php _e( 'Pay For Invoice', 'invoicing' ); ?> |
|
16 | + <?php if ($invoice->is_type('invoice') && $invoice->needs_payment() && !$invoice->is_held()): ?> |
|
17 | + <a class="btn btn-primary invoice-action-pay" href="<?php echo esc_url($invoice->get_checkout_payment_url()); ?>"> |
|
18 | + <?php _e('Pay For Invoice', 'invoicing'); ?> |
|
19 | 19 | </a> |
20 | 20 | <?php endif; ?> |
21 | 21 | |
22 | - <?php do_action('wpinv_invoice_display_left_actions', $invoice ); ?> |
|
22 | + <?php do_action('wpinv_invoice_display_left_actions', $invoice); ?> |
|
23 | 23 | |
24 | 24 | </div> |
25 | 25 |
@@ -7,50 +7,50 @@ |
||
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 | - <?php do_action( 'getpaid_before_invoice_meta', $invoice ); ?> |
|
14 | + <?php do_action('getpaid_before_invoice_meta', $invoice); ?> |
|
15 | 15 | <div class="getpaid-invoice-meta-data"> |
16 | 16 | |
17 | 17 | |
18 | - <?php do_action( 'getpaid_before_invoice_meta_table', $invoice ); ?> |
|
18 | + <?php do_action('getpaid_before_invoice_meta_table', $invoice); ?> |
|
19 | 19 | <table class="table table-bordered"> |
20 | 20 | <tbody> |
21 | 21 | |
22 | - <?php do_action( "getpaid_before_invoice_meta_rows", $invoice ); ?> |
|
23 | - <?php foreach ( $meta as $key => $data ) : ?> |
|
22 | + <?php do_action("getpaid_before_invoice_meta_rows", $invoice); ?> |
|
23 | + <?php foreach ($meta as $key => $data) : ?> |
|
24 | 24 | |
25 | - <?php if ( ! empty( $data['value'] ) ) : ?> |
|
25 | + <?php if (!empty($data['value'])) : ?> |
|
26 | 26 | |
27 | - <?php do_action( "getpaid_before_invoice_meta_$key", $invoice, $data ); ?> |
|
27 | + <?php do_action("getpaid_before_invoice_meta_$key", $invoice, $data); ?> |
|
28 | 28 | |
29 | - <tr class="getpaid-invoice-meta-<?php echo sanitize_html_class( $key ); ?>"> |
|
29 | + <tr class="getpaid-invoice-meta-<?php echo sanitize_html_class($key); ?>"> |
|
30 | 30 | |
31 | 31 | <th> |
32 | - <?php echo sanitize_text_field( $data['label'] ); ?> |
|
32 | + <?php echo sanitize_text_field($data['label']); ?> |
|
33 | 33 | </th> |
34 | 34 | |
35 | 35 | <td> |
36 | - <span class="getpaid-invoice-meta-<?php echo sanitize_html_class( $key ); ?>-value"><?php echo wp_kses_post( $data['value'] ); ?></span> |
|
36 | + <span class="getpaid-invoice-meta-<?php echo sanitize_html_class($key); ?>-value"><?php echo wp_kses_post($data['value']); ?></span> |
|
37 | 37 | </td> |
38 | 38 | |
39 | 39 | </tr> |
40 | 40 | |
41 | - <?php do_action( "getpaid_after_invoice_meta_$key", $invoice, $data ); ?> |
|
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> |
50 | - <?php do_action( 'getpaid_after_invoice_meta_table', $invoice ); ?> |
|
50 | + <?php do_action('getpaid_after_invoice_meta_table', $invoice); ?> |
|
51 | 51 | |
52 | 52 | |
53 | 53 | </div> |
54 | - <?php do_action( 'getpaid_after_invoice_meta', $invoice ); ?> |
|
54 | + <?php do_action('getpaid_after_invoice_meta', $invoice); ?> |
|
55 | 55 | |
56 | 56 | <?php |