@@ -1,11 +1,11 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // don't load directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 4 | - die( '-1' ); |
|
| 3 | +if (!defined('ABSPATH')) { |
|
| 4 | + die('-1'); |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | -$email_footer = apply_filters( 'wpinv_email_footer_text', wpinv_get_option( 'email_footer_text', get_bloginfo( 'name', 'display' ) . ' - ' . __( 'Powered by GetPaid', 'invoicing' ) ) ); |
|
| 8 | -$email_footer = $email_footer ? wp_kses_post( wpautop( wptexturize( $email_footer ) ) ) : ''; |
|
| 7 | +$email_footer = apply_filters('wpinv_email_footer_text', wpinv_get_option('email_footer_text', get_bloginfo('name', 'display') . ' - ' . __('Powered by GetPaid', 'invoicing'))); |
|
| 8 | +$email_footer = $email_footer ? wp_kses_post(wpautop(wptexturize($email_footer))) : ''; |
|
| 9 | 9 | ?> |
| 10 | 10 | </div> |
| 11 | 11 | </td> |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | <table border="0" cellpadding="10" cellspacing="0" width="100%"> |
| 28 | 28 | <tr> |
| 29 | 29 | <td colspan="2" valign="middle" id="credit"> |
| 30 | - <?php echo wp_kses_post( $email_footer ); ?> |
|
| 30 | + <?php echo wp_kses_post($email_footer); ?> |
|
| 31 | 31 | </td> |
| 32 | 32 | </tr> |
| 33 | 33 | </table> |
@@ -1,12 +1,12 @@ |
||
| 1 | -<?php |
|
| 2 | -// don't load directly |
|
| 3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 4 | - die( '-1' ); |
|
| 1 | + <?php |
|
| 2 | + // don't load directly |
|
| 3 | + if ( ! defined( 'ABSPATH' ) ) { |
|
| 4 | + die( '-1' ); |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | -$email_footer = apply_filters( 'wpinv_email_footer_text', wpinv_get_option( 'email_footer_text', get_bloginfo( 'name', 'display' ) . ' - ' . __( 'Powered by GetPaid', 'invoicing' ) ) ); |
|
| 8 | -$email_footer = $email_footer ? wp_kses_post( wpautop( wptexturize( $email_footer ) ) ) : ''; |
|
| 9 | -?> |
|
| 7 | + $email_footer = apply_filters( 'wpinv_email_footer_text', wpinv_get_option( 'email_footer_text', get_bloginfo( 'name', 'display' ) . ' - ' . __( 'Powered by GetPaid', 'invoicing' ) ) ); |
|
| 8 | + $email_footer = $email_footer ? wp_kses_post( wpautop( wptexturize( $email_footer ) ) ) : ''; |
|
| 9 | + ?> |
|
| 10 | 10 | </div> |
| 11 | 11 | </td> |
| 12 | 12 | </tr> |
@@ -30,40 +30,40 @@ |
||
| 30 | 30 | // Item name. |
| 31 | 31 | if ( 'name' == $column ) { |
| 32 | 32 | |
| 33 | - // Display the name. |
|
| 34 | - echo '<div class="wpinv_email_cart_item_title">' . esc_html( $item->get_name() ) . '</div>'; |
|
| 33 | + // Display the name. |
|
| 34 | + echo '<div class="wpinv_email_cart_item_title">' . esc_html( $item->get_name() ) . '</div>'; |
|
| 35 | 35 | |
| 36 | - // And an optional description. |
|
| 37 | - $description = $item->get_description(); |
|
| 36 | + // And an optional description. |
|
| 37 | + $description = $item->get_description(); |
|
| 38 | 38 | |
| 39 | - if ( ! empty( $description ) ) { |
|
| 40 | - echo "<p class='small'>" . wp_kses_post( $description ) . "</p>"; |
|
| 39 | + if ( ! empty( $description ) ) { |
|
| 40 | + echo "<p class='small'>" . wp_kses_post( $description ) . "</p>"; |
|
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | // Item price. |
| 45 | 45 | if ( 'price' == $column ) { |
| 46 | 46 | |
| 47 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 48 | - $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
|
| 49 | - wpinv_the_price( $price, $invoice->get_currency() ); |
|
| 47 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 48 | + $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
|
| 49 | + wpinv_the_price( $price, $invoice->get_currency() ); |
|
| 50 | 50 | |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | // Item quantity. |
| 54 | 54 | if ( 'quantity' == $column ) { |
| 55 | - echo (float) $item->get_quantity(); |
|
| 55 | + echo (float) $item->get_quantity(); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // Tax rate. |
| 59 | 59 | if ( 'tax_rate' == $column ) { |
| 60 | - echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
| 60 | + echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Item sub total. |
| 64 | 64 | if ( 'subtotal' == $column ) { |
| 65 | - $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
|
| 66 | - wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
| 65 | + $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
|
| 66 | + wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | // Fires when printing a line item column. |
@@ -10,64 +10,64 @@ discard block |
||
| 10 | 10 | * @var array $columns |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -defined( 'ABSPATH' ) || exit; |
|
| 13 | +defined('ABSPATH') || exit; |
|
| 14 | 14 | |
| 15 | 15 | ?> |
| 16 | 16 | |
| 17 | -<?php do_action( 'getpaid_before_email_line_item', $invoice, $item ); ?> |
|
| 17 | +<?php do_action('getpaid_before_email_line_item', $invoice, $item); ?> |
|
| 18 | 18 | |
| 19 | -<tr class="wpinv_cart_item item-type-<?php echo esc_attr( $item->get_type() ); ?>"> |
|
| 19 | +<tr class="wpinv_cart_item item-type-<?php echo esc_attr($item->get_type()); ?>"> |
|
| 20 | 20 | |
| 21 | - <?php foreach ( array_keys( $columns ) as $column ) : ?> |
|
| 21 | + <?php foreach (array_keys($columns) as $column) : ?> |
|
| 22 | 22 | |
| 23 | - <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr( $column ); ?>"> |
|
| 23 | + <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr($column); ?>"> |
|
| 24 | 24 | |
| 25 | 25 | <?php |
| 26 | 26 | |
| 27 | 27 | // Fires before printing a line item column. |
| 28 | - do_action( "getpaid_email_line_item_before_$column", $item, $invoice ); |
|
| 28 | + do_action("getpaid_email_line_item_before_$column", $item, $invoice); |
|
| 29 | 29 | |
| 30 | 30 | // Item name. |
| 31 | - if ( 'name' == $column ) { |
|
| 31 | + if ('name' == $column) { |
|
| 32 | 32 | |
| 33 | 33 | // Display the name. |
| 34 | - echo '<div class="wpinv_email_cart_item_title">' . esc_html( $item->get_name() ) . '</div>'; |
|
| 34 | + echo '<div class="wpinv_email_cart_item_title">' . esc_html($item->get_name()) . '</div>'; |
|
| 35 | 35 | |
| 36 | 36 | // And an optional description. |
| 37 | 37 | $description = $item->get_description(); |
| 38 | 38 | |
| 39 | - if ( ! empty( $description ) ) { |
|
| 40 | - echo "<p class='small'>" . wp_kses_post( $description ) . "</p>"; |
|
| 39 | + if (!empty($description)) { |
|
| 40 | + echo "<p class='small'>" . wp_kses_post($description) . "</p>"; |
|
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | // Item price. |
| 45 | - if ( 'price' == $column ) { |
|
| 45 | + if ('price' == $column) { |
|
| 46 | 46 | |
| 47 | 47 | // Display the item price (or recurring price if this is a renewal invoice) |
| 48 | 48 | $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
| 49 | - wpinv_the_price( $price, $invoice->get_currency() ); |
|
| 49 | + wpinv_the_price($price, $invoice->get_currency()); |
|
| 50 | 50 | |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | // Item quantity. |
| 54 | - if ( 'quantity' == $column ) { |
|
| 54 | + if ('quantity' == $column) { |
|
| 55 | 55 | echo (float) $item->get_quantity(); |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // Tax rate. |
| 59 | - if ( 'tax_rate' == $column ) { |
|
| 60 | - echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
| 59 | + if ('tax_rate' == $column) { |
|
| 60 | + echo floatval(round(getpaid_get_invoice_tax_rate($invoice, $item), 2)) . '%'; |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Item sub total. |
| 64 | - if ( 'subtotal' == $column ) { |
|
| 64 | + if ('subtotal' == $column) { |
|
| 65 | 65 | $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
| 66 | - wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
| 66 | + wpinv_the_price($subtotal, $invoice->get_currency()); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | // Fires when printing a line item column. |
| 70 | - do_action( "getpaid_email_line_item_$column", $item, $invoice ); |
|
| 70 | + do_action("getpaid_email_line_item_$column", $item, $invoice); |
|
| 71 | 71 | |
| 72 | 72 | ?> |
| 73 | 73 | |
@@ -77,4 +77,4 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | </tr> |
| 79 | 79 | |
| 80 | -<?php do_action( 'getpaid_after_email_line_item', $invoice, $item ); ?> |
|
| 80 | +<?php do_action('getpaid_after_email_line_item', $invoice, $item); ?> |
|
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays single line items in emails. |
| 4 | 4 | * |
@@ -10,11 +10,11 @@ discard block |
||
| 10 | 10 | * @var array $columns |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -defined( 'ABSPATH' ) || exit; |
|
| 13 | + defined( 'ABSPATH' ) || exit; |
|
| 14 | 14 | |
| 15 | -?> |
|
| 16 | - |
|
| 17 | -<?php do_action( 'getpaid_before_email_line_item', $invoice, $item ); ?> |
|
| 15 | + ?> |
|
| 16 | + |
|
| 17 | + <?php do_action( 'getpaid_before_email_line_item', $invoice, $item ); ?> |
|
| 18 | 18 | |
| 19 | 19 | <tr class="wpinv_cart_item item-type-<?php echo esc_attr( $item->get_type() ); ?>"> |
| 20 | 20 | |
@@ -24,52 +24,52 @@ discard block |
||
| 24 | 24 | |
| 25 | 25 | <?php |
| 26 | 26 | |
| 27 | - // Fires before printing a line item column. |
|
| 28 | - do_action( "getpaid_email_line_item_before_$column", $item, $invoice ); |
|
| 27 | + // Fires before printing a line item column. |
|
| 28 | + do_action( "getpaid_email_line_item_before_$column", $item, $invoice ); |
|
| 29 | 29 | |
| 30 | - // Item name. |
|
| 31 | - if ( 'name' == $column ) { |
|
| 30 | + // Item name. |
|
| 31 | + if ( 'name' == $column ) { |
|
| 32 | 32 | |
| 33 | - // Display the name. |
|
| 34 | - echo '<div class="wpinv_email_cart_item_title">' . esc_html( $item->get_name() ) . '</div>'; |
|
| 33 | + // Display the name. |
|
| 34 | + echo '<div class="wpinv_email_cart_item_title">' . esc_html( $item->get_name() ) . '</div>'; |
|
| 35 | 35 | |
| 36 | - // And an optional description. |
|
| 37 | - $description = $item->get_description(); |
|
| 36 | + // And an optional description. |
|
| 37 | + $description = $item->get_description(); |
|
| 38 | 38 | |
| 39 | - if ( ! empty( $description ) ) { |
|
| 40 | - echo "<p class='small'>" . wp_kses_post( $description ) . "</p>"; |
|
| 41 | - } |
|
| 39 | + if ( ! empty( $description ) ) { |
|
| 40 | + echo "<p class='small'>" . wp_kses_post( $description ) . "</p>"; |
|
| 41 | + } |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - // Item price. |
|
| 45 | - if ( 'price' == $column ) { |
|
| 44 | + // Item price. |
|
| 45 | + if ( 'price' == $column ) { |
|
| 46 | 46 | |
| 47 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 48 | - $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
|
| 49 | - wpinv_the_price( $price, $invoice->get_currency() ); |
|
| 47 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 48 | + $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
|
| 49 | + wpinv_the_price( $price, $invoice->get_currency() ); |
|
| 50 | 50 | |
| 51 | - } |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - // Item quantity. |
|
| 54 | - if ( 'quantity' == $column ) { |
|
| 55 | - echo (float) $item->get_quantity(); |
|
| 56 | - } |
|
| 53 | + // Item quantity. |
|
| 54 | + if ( 'quantity' == $column ) { |
|
| 55 | + echo (float) $item->get_quantity(); |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - // Tax rate. |
|
| 59 | - if ( 'tax_rate' == $column ) { |
|
| 60 | - echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
| 61 | - } |
|
| 58 | + // Tax rate. |
|
| 59 | + if ( 'tax_rate' == $column ) { |
|
| 60 | + echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
| 61 | + } |
|
| 62 | 62 | |
| 63 | - // Item sub total. |
|
| 64 | - if ( 'subtotal' == $column ) { |
|
| 65 | - $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
|
| 66 | - wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
| 67 | - } |
|
| 63 | + // Item sub total. |
|
| 64 | + if ( 'subtotal' == $column ) { |
|
| 65 | + $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
|
| 66 | + wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - // Fires when printing a line item column. |
|
| 70 | - do_action( "getpaid_email_line_item_$column", $item, $invoice ); |
|
| 69 | + // Fires when printing a line item column. |
|
| 70 | + do_action( "getpaid_email_line_item_$column", $item, $invoice ); |
|
| 71 | 71 | |
| 72 | - ?> |
|
| 72 | + ?> |
|
| 73 | 73 | |
| 74 | 74 | </td> |
| 75 | 75 | |
@@ -7,21 +7,21 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); |
|
| 12 | +do_action('wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin); |
|
| 13 | 13 | |
| 14 | -do_action( 'wpinv_email_before_note_details', $invoice, $email_type, $sent_to_admin, $customer_note ); |
|
| 14 | +do_action('wpinv_email_before_note_details', $invoice, $email_type, $sent_to_admin, $customer_note); |
|
| 15 | 15 | |
| 16 | 16 | // Generate the custom message body. |
| 17 | -echo wp_kses_post( wptexturize( str_replace( '{customer_note}', $customer_note, $message_body ) ) ); |
|
| 17 | +echo wp_kses_post(wptexturize(str_replace('{customer_note}', $customer_note, $message_body))); |
|
| 18 | 18 | |
| 19 | -do_action( 'wpinv_email_invoice_details', $invoice, $email_type, $sent_to_admin ); |
|
| 19 | +do_action('wpinv_email_invoice_details', $invoice, $email_type, $sent_to_admin); |
|
| 20 | 20 | |
| 21 | -do_action( 'wpinv_email_invoice_items', $invoice, $email_type, $sent_to_admin ); |
|
| 21 | +do_action('wpinv_email_invoice_items', $invoice, $email_type, $sent_to_admin); |
|
| 22 | 22 | |
| 23 | -do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); |
|
| 23 | +do_action('wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin); |
|
| 24 | 24 | |
| 25 | -do_action( 'wpinv_email_after_note_details', $invoice, $email_type, $sent_to_admin, $customer_note ); |
|
| 25 | +do_action('wpinv_email_after_note_details', $invoice, $email_type, $sent_to_admin, $customer_note); |
|
| 26 | 26 | |
| 27 | -do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); |
|
| 27 | +do_action('wpinv_email_footer', $invoice, $email_type, $sent_to_admin); |
|
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Template that generates the user note invoice email. |
| 4 | 4 | * |
@@ -7,21 +7,21 @@ 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( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); |
|
| 12 | + do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); |
|
| 13 | 13 | |
| 14 | -do_action( 'wpinv_email_before_note_details', $invoice, $email_type, $sent_to_admin, $customer_note ); |
|
| 14 | + do_action( 'wpinv_email_before_note_details', $invoice, $email_type, $sent_to_admin, $customer_note ); |
|
| 15 | 15 | |
| 16 | -// Generate the custom message body. |
|
| 17 | -echo wp_kses_post( wptexturize( str_replace( '{customer_note}', $customer_note, $message_body ) ) ); |
|
| 16 | + // Generate the custom message body. |
|
| 17 | + echo wp_kses_post( wptexturize( str_replace( '{customer_note}', $customer_note, $message_body ) ) ); |
|
| 18 | 18 | |
| 19 | -do_action( 'wpinv_email_invoice_details', $invoice, $email_type, $sent_to_admin ); |
|
| 19 | + do_action( 'wpinv_email_invoice_details', $invoice, $email_type, $sent_to_admin ); |
|
| 20 | 20 | |
| 21 | -do_action( 'wpinv_email_invoice_items', $invoice, $email_type, $sent_to_admin ); |
|
| 21 | + do_action( 'wpinv_email_invoice_items', $invoice, $email_type, $sent_to_admin ); |
|
| 22 | 22 | |
| 23 | -do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); |
|
| 23 | + do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); |
|
| 24 | 24 | |
| 25 | -do_action( 'wpinv_email_after_note_details', $invoice, $email_type, $sent_to_admin, $customer_note ); |
|
| 25 | + do_action( 'wpinv_email_after_note_details', $invoice, $email_type, $sent_to_admin, $customer_note ); |
|
| 26 | 26 | |
| 27 | -do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); |
|
| 27 | + do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); |
|
@@ -30,21 +30,21 @@ discard block |
||
| 30 | 30 | // Item name. |
| 31 | 31 | if ( 'name' == $column ) { |
| 32 | 32 | |
| 33 | - // Display the name. |
|
| 34 | - echo '<div class="wpinv_email_cart_item_title">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 33 | + // Display the name. |
|
| 34 | + echo '<div class="wpinv_email_cart_item_title">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 35 | 35 | |
| 36 | - // And an optional description. |
|
| 37 | - $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 38 | - echo wp_kses_post( "<p class='small'>$description</p>" ); |
|
| 36 | + // And an optional description. |
|
| 37 | + $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 38 | + echo wp_kses_post( "<p class='small'>$description</p>" ); |
|
| 39 | 39 | |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | // Item price. |
| 43 | 43 | if ( 'price' == $column ) { |
| 44 | 44 | |
| 45 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 46 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 47 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 45 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 46 | + if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 47 | + wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 48 | 48 | } else { |
| 49 | 49 | wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
| 50 | 50 | } |
@@ -52,18 +52,18 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | // Item quantity. |
| 54 | 54 | if ( 'quantity' == $column ) { |
| 55 | - echo '—'; |
|
| 55 | + echo '—'; |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // Item tax. |
| 59 | 59 | if ( 'tax_rate' == $column ) { |
| 60 | - echo '—'; |
|
| 60 | + echo '—'; |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Item sub total. |
| 64 | 64 | if ( 'subtotal' == $column ) { |
| 65 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 66 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 65 | + if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 66 | + wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 67 | 67 | } else { |
| 68 | 68 | wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
| 69 | 69 | } |
@@ -10,67 +10,67 @@ discard block |
||
| 10 | 10 | * @var array $columns |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -defined( 'ABSPATH' ) || exit; |
|
| 13 | +defined('ABSPATH') || exit; |
|
| 14 | 14 | |
| 15 | 15 | ?> |
| 16 | 16 | |
| 17 | -<?php do_action( 'getpaid_before_email_fee_item', $invoice, $fee ); ?> |
|
| 17 | +<?php do_action('getpaid_before_email_fee_item', $invoice, $fee); ?> |
|
| 18 | 18 | |
| 19 | 19 | <tr class="wpinv_cart_item item-fee"> |
| 20 | 20 | |
| 21 | - <?php foreach ( array_keys( $columns ) as $column ) : ?> |
|
| 21 | + <?php foreach (array_keys($columns) as $column) : ?> |
|
| 22 | 22 | |
| 23 | - <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr( $column ); ?>"> |
|
| 23 | + <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr($column); ?>"> |
|
| 24 | 24 | |
| 25 | 25 | <?php |
| 26 | 26 | |
| 27 | 27 | // Fires before printing a fee item column. |
| 28 | - do_action( "getpaid_email_fee_item_before_$column", $fee, $invoice ); |
|
| 28 | + do_action("getpaid_email_fee_item_before_$column", $fee, $invoice); |
|
| 29 | 29 | |
| 30 | 30 | // Item name. |
| 31 | - if ( 'name' == $column ) { |
|
| 31 | + if ('name' == $column) { |
|
| 32 | 32 | |
| 33 | 33 | // Display the name. |
| 34 | - echo '<div class="wpinv_email_cart_item_title">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 34 | + echo '<div class="wpinv_email_cart_item_title">' . esc_html($fee['name']) . '</div>'; |
|
| 35 | 35 | |
| 36 | 36 | // And an optional description. |
| 37 | - $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 38 | - echo wp_kses_post( "<p class='small'>$description</p>" ); |
|
| 37 | + $description = empty($fee['description']) ? esc_html__('Fee', 'invoicing') : esc_html($fee['description']); |
|
| 38 | + echo wp_kses_post("<p class='small'>$description</p>"); |
|
| 39 | 39 | |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | // Item price. |
| 43 | - if ( 'price' == $column ) { |
|
| 43 | + if ('price' == $column) { |
|
| 44 | 44 | |
| 45 | 45 | // Display the item price (or recurring price if this is a renewal invoice) |
| 46 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 47 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 46 | + if ($invoice->is_recurring() && $invoice->is_renewal()) { |
|
| 47 | + wpinv_the_price($fee['recurring_fee'], $invoice->get_currency()); |
|
| 48 | 48 | } else { |
| 49 | - wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 49 | + wpinv_the_price($fee['initial_fee'], $invoice->get_currency()); |
|
| 50 | 50 | } |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | // Item quantity. |
| 54 | - if ( 'quantity' == $column ) { |
|
| 54 | + if ('quantity' == $column) { |
|
| 55 | 55 | echo '—'; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // Item tax. |
| 59 | - if ( 'tax_rate' == $column ) { |
|
| 59 | + if ('tax_rate' == $column) { |
|
| 60 | 60 | echo '—'; |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Item sub total. |
| 64 | - if ( 'subtotal' == $column ) { |
|
| 65 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 66 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 64 | + if ('subtotal' == $column) { |
|
| 65 | + if ($invoice->is_recurring() && $invoice->is_renewal()) { |
|
| 66 | + wpinv_the_price($fee['recurring_fee'], $invoice->get_currency()); |
|
| 67 | 67 | } else { |
| 68 | - wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 68 | + wpinv_the_price($fee['initial_fee'], $invoice->get_currency()); |
|
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | // Fires when printing a line item column. |
| 73 | - do_action( "getpaid_email_fee_item_$column", $fee, $invoice ); |
|
| 73 | + do_action("getpaid_email_fee_item_$column", $fee, $invoice); |
|
| 74 | 74 | |
| 75 | 75 | ?> |
| 76 | 76 | |
@@ -80,4 +80,4 @@ discard block |
||
| 80 | 80 | |
| 81 | 81 | </tr> |
| 82 | 82 | |
| 83 | -<?php do_action( 'getpaid_after_email_fee_item', $invoice, $fee ); ?> |
|
| 83 | +<?php do_action('getpaid_after_email_fee_item', $invoice, $fee); ?> |
|
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Displays single fee items in emails. |
| 4 | 4 | * |
@@ -10,11 +10,11 @@ discard block |
||
| 10 | 10 | * @var array $columns |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -defined( 'ABSPATH' ) || exit; |
|
| 13 | + defined( 'ABSPATH' ) || exit; |
|
| 14 | 14 | |
| 15 | -?> |
|
| 16 | - |
|
| 17 | -<?php do_action( 'getpaid_before_email_fee_item', $invoice, $fee ); ?> |
|
| 15 | + ?> |
|
| 16 | + |
|
| 17 | + <?php do_action( 'getpaid_before_email_fee_item', $invoice, $fee ); ?> |
|
| 18 | 18 | |
| 19 | 19 | <tr class="wpinv_cart_item item-fee"> |
| 20 | 20 | |
@@ -24,55 +24,55 @@ discard block |
||
| 24 | 24 | |
| 25 | 25 | <?php |
| 26 | 26 | |
| 27 | - // Fires before printing a fee item column. |
|
| 28 | - do_action( "getpaid_email_fee_item_before_$column", $fee, $invoice ); |
|
| 27 | + // Fires before printing a fee item column. |
|
| 28 | + do_action( "getpaid_email_fee_item_before_$column", $fee, $invoice ); |
|
| 29 | + |
|
| 30 | + // Item name. |
|
| 31 | + if ( 'name' == $column ) { |
|
| 32 | + |
|
| 33 | + // Display the name. |
|
| 34 | + echo '<div class="wpinv_email_cart_item_title">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 29 | 35 | |
| 30 | - // Item name. |
|
| 31 | - if ( 'name' == $column ) { |
|
| 36 | + // And an optional description. |
|
| 37 | + $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 38 | + echo wp_kses_post( "<p class='small'>$description</p>" ); |
|
| 32 | 39 | |
| 33 | - // Display the name. |
|
| 34 | - echo '<div class="wpinv_email_cart_item_title">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 40 | + } |
|
| 35 | 41 | |
| 36 | - // And an optional description. |
|
| 37 | - $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 38 | - echo wp_kses_post( "<p class='small'>$description</p>" ); |
|
| 42 | + // Item price. |
|
| 43 | + if ( 'price' == $column ) { |
|
| 39 | 44 | |
| 40 | - } |
|
| 45 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 46 | + if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 47 | + wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 48 | + } else { |
|
| 49 | + wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 50 | + } |
|
| 51 | +} |
|
| 41 | 52 | |
| 42 | - // Item price. |
|
| 43 | - if ( 'price' == $column ) { |
|
| 53 | + // Item quantity. |
|
| 54 | + if ( 'quantity' == $column ) { |
|
| 55 | + echo '—'; |
|
| 56 | + } |
|
| 44 | 57 | |
| 45 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 46 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 47 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 58 | + // Item tax. |
|
| 59 | + if ( 'tax_rate' == $column ) { |
|
| 60 | + echo '—'; |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + // Item sub total. |
|
| 64 | + if ( 'subtotal' == $column ) { |
|
| 65 | + if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 66 | + wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 48 | 67 | } else { |
| 49 | 68 | wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
| 50 | 69 | } |
| 51 | -} |
|
| 70 | + } |
|
| 71 | + |
|
| 72 | + // Fires when printing a line item column. |
|
| 73 | + do_action( "getpaid_email_fee_item_$column", $fee, $invoice ); |
|
| 52 | 74 | |
| 53 | - // Item quantity. |
|
| 54 | - if ( 'quantity' == $column ) { |
|
| 55 | - echo '—'; |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - // Item tax. |
|
| 59 | - if ( 'tax_rate' == $column ) { |
|
| 60 | - echo '—'; |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - // Item sub total. |
|
| 64 | - if ( 'subtotal' == $column ) { |
|
| 65 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 66 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 67 | - } else { |
|
| 68 | - wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 69 | - } |
|
| 70 | - } |
|
| 71 | - |
|
| 72 | - // Fires when printing a line item column. |
|
| 73 | - do_action( "getpaid_email_fee_item_$column", $fee, $invoice ); |
|
| 74 | - |
|
| 75 | - ?> |
|
| 75 | + ?> |
|
| 76 | 76 | |
| 77 | 77 | </td> |
| 78 | 78 | |
@@ -126,25 +126,25 @@ |
||
| 126 | 126 | |
| 127 | 127 | if ( ! empty( $invoice_actions ) ) { |
| 128 | 128 | |
| 129 | - echo '<div class="wpinv-receipt-actions text-right mt-1 mb-4">'; |
|
| 129 | + echo '<div class="wpinv-receipt-actions text-right mt-1 mb-4">'; |
|
| 130 | 130 | |
| 131 | - foreach ( $invoice_actions as $key => $invoice_action ) { |
|
| 131 | + foreach ( $invoice_actions as $key => $invoice_action ) { |
|
| 132 | 132 | |
| 133 | - $key = sanitize_html_class( $key ); |
|
| 134 | - $class = empty( $invoice_action['class'] ) ? 'btn-dark' : sanitize_html_class( $invoice_action['class'] ); |
|
| 135 | - $url = empty( $invoice_action['url'] ) ? '#' : esc_url( $invoice_action['url'] ); |
|
| 136 | - $attrs = empty( $invoice_action['attrs'] ) ? '' : $invoice_action['attrs']; |
|
| 137 | - $anchor = esc_html( $invoice_action['name'] ); |
|
| 133 | + $key = sanitize_html_class( $key ); |
|
| 134 | + $class = empty( $invoice_action['class'] ) ? 'btn-dark' : sanitize_html_class( $invoice_action['class'] ); |
|
| 135 | + $url = empty( $invoice_action['url'] ) ? '#' : esc_url( $invoice_action['url'] ); |
|
| 136 | + $attrs = empty( $invoice_action['attrs'] ) ? '' : $invoice_action['attrs']; |
|
| 137 | + $anchor = esc_html( $invoice_action['name'] ); |
|
| 138 | 138 | |
| 139 | - echo wp_kses_post( "<a href='$url' class='btn btn-sm ml-1 $class $key' $attrs>$anchor</a>" ); |
|
| 139 | + echo wp_kses_post( "<a href='$url' class='btn btn-sm ml-1 $class $key' $attrs>$anchor</a>" ); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | - echo '</div>'; |
|
| 142 | + echo '</div>'; |
|
| 143 | 143 | |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | if ( ! empty( $alert ) ) { |
| 147 | - echo wp_kses_post( $alert ); |
|
| 147 | + echo wp_kses_post( $alert ); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | ?> |
@@ -7,64 +7,64 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | // Fetch the invoice. |
| 13 | -$invoice = new WPInv_Invoice( $invoice ); |
|
| 13 | +$invoice = new WPInv_Invoice($invoice); |
|
| 14 | 14 | |
| 15 | 15 | // @deprecated |
| 16 | -do_action( 'wpinv_success_content_before', $invoice ); |
|
| 17 | -do_action( 'wpinv_before_receipt', $invoice ); |
|
| 16 | +do_action('wpinv_success_content_before', $invoice); |
|
| 17 | +do_action('wpinv_before_receipt', $invoice); |
|
| 18 | 18 | |
| 19 | 19 | wpinv_print_errors(); |
| 20 | 20 | |
| 21 | 21 | // Prepare header text. |
| 22 | -if ( $invoice->is_paid() ) { |
|
| 22 | +if ($invoice->is_paid()) { |
|
| 23 | 23 | |
| 24 | 24 | $alert = aui()->alert( |
| 25 | 25 | array( |
| 26 | 26 | 'type' => 'success', |
| 27 | - 'content' => __( 'Thank you for your payment!', 'invoicing' ), |
|
| 27 | + 'content' => __('Thank you for your payment!', 'invoicing'), |
|
| 28 | 28 | ) |
| 29 | 29 | ); |
| 30 | 30 | |
| 31 | -} elseif ( $invoice->is_refunded() ) { |
|
| 31 | +} elseif ($invoice->is_refunded()) { |
|
| 32 | 32 | |
| 33 | 33 | $alert = aui()->alert( |
| 34 | 34 | array( |
| 35 | 35 | 'type' => 'info', |
| 36 | - 'content' => __( 'This invoice was refunded.', 'invoicing' ), |
|
| 36 | + 'content' => __('This invoice was refunded.', 'invoicing'), |
|
| 37 | 37 | ) |
| 38 | 38 | ); |
| 39 | 39 | |
| 40 | -} elseif ( $invoice->is_held() ) { |
|
| 40 | +} elseif ($invoice->is_held()) { |
|
| 41 | 41 | |
| 42 | 42 | $alert = aui()->alert( |
| 43 | 43 | array( |
| 44 | 44 | 'type' => 'info', |
| 45 | - 'content' => __( 'This invoice will be processed as soon we verify your payment.', 'invoicing' ), |
|
| 45 | + 'content' => __('This invoice will be processed as soon we verify your payment.', 'invoicing'), |
|
| 46 | 46 | ) |
| 47 | 47 | ); |
| 48 | 48 | |
| 49 | -} elseif ( $invoice->needs_payment() ) { |
|
| 49 | +} elseif ($invoice->needs_payment()) { |
|
| 50 | 50 | |
| 51 | - if ( ! empty( $_GET['token'] ) ) { |
|
| 51 | + if (!empty($_GET['token'])) { |
|
| 52 | 52 | |
| 53 | 53 | $alert = aui()->alert( |
| 54 | 54 | array( |
| 55 | 55 | 'type' => 'info', |
| 56 | - 'content' => __( "Sometimes it takes a few minutes for us to verify your payment. We'll notify you as soon as we've verified the payment.", 'invoicing' ), |
|
| 56 | + 'content' => __("Sometimes it takes a few minutes for us to verify your payment. We'll notify you as soon as we've verified the payment.", 'invoicing'), |
|
| 57 | 57 | ) |
| 58 | 58 | ); |
| 59 | 59 | |
| 60 | - } elseif ( $invoice->is_due() ) { |
|
| 60 | + } elseif ($invoice->is_due()) { |
|
| 61 | 61 | |
| 62 | 62 | $alert = aui()->alert( |
| 63 | 63 | array( |
| 64 | 64 | 'type' => 'danger', |
| 65 | 65 | 'content' => sprintf( |
| 66 | - __( 'This invoice was due on %.', 'invoicing' ), |
|
| 67 | - getpaid_format_date_value( $invoice->get_due_date() ) |
|
| 66 | + __('This invoice was due on %.', 'invoicing'), |
|
| 67 | + getpaid_format_date_value($invoice->get_due_date()) |
|
| 68 | 68 | ), |
| 69 | 69 | ) |
| 70 | 70 | ); |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | $alert = aui()->alert( |
| 75 | 75 | array( |
| 76 | 76 | 'type' => 'warning', |
| 77 | - 'content' => __( 'This invoice needs payment.', 'invoicing' ), |
|
| 77 | + 'content' => __('This invoice needs payment.', 'invoicing'), |
|
| 78 | 78 | ) |
| 79 | 79 | ); |
| 80 | 80 | |
@@ -88,19 +88,19 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | 'pay' => array( |
| 90 | 90 | 'url' => $invoice->get_checkout_payment_url(), |
| 91 | - 'name' => __( 'Pay For Invoice', 'invoicing' ), |
|
| 91 | + 'name' => __('Pay For Invoice', 'invoicing'), |
|
| 92 | 92 | 'class' => 'btn-success', |
| 93 | 93 | ), |
| 94 | 94 | |
| 95 | 95 | 'view' => array( |
| 96 | 96 | 'url' => $invoice->get_view_url(), |
| 97 | - 'name' => __( 'View Invoice', 'invoicing' ), |
|
| 97 | + 'name' => __('View Invoice', 'invoicing'), |
|
| 98 | 98 | 'class' => 'btn-primary', |
| 99 | 99 | ), |
| 100 | 100 | |
| 101 | 101 | 'history' => array( |
| 102 | 102 | 'url' => wpinv_get_history_page_uri(), |
| 103 | - 'name' => __( 'Invoice History', 'invoicing' ), |
|
| 103 | + 'name' => __('Invoice History', 'invoicing'), |
|
| 104 | 104 | 'class' => 'btn-warning', |
| 105 | 105 | ), |
| 106 | 106 | |
@@ -108,12 +108,12 @@ discard block |
||
| 108 | 108 | $invoice |
| 109 | 109 | ); |
| 110 | 110 | |
| 111 | -if ( ( ! $invoice->needs_payment() || $invoice->is_held() ) && isset( $invoice_actions['pay'] ) ) { |
|
| 112 | - unset( $invoice_actions['pay'] ); |
|
| 111 | +if ((!$invoice->needs_payment() || $invoice->is_held()) && isset($invoice_actions['pay'])) { |
|
| 112 | + unset($invoice_actions['pay']); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | -if ( ! is_user_logged_in() && isset( $invoice_actions['history'] ) ) { |
|
| 116 | - unset( $invoice_actions['history'] ); |
|
| 115 | +if (!is_user_logged_in() && isset($invoice_actions['history'])) { |
|
| 116 | + unset($invoice_actions['history']); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | ?> |
@@ -122,29 +122,29 @@ discard block |
||
| 122 | 122 | |
| 123 | 123 | <?php |
| 124 | 124 | |
| 125 | - do_action( 'wpinv_receipt_start', $invoice ); |
|
| 125 | + do_action('wpinv_receipt_start', $invoice); |
|
| 126 | 126 | |
| 127 | - if ( ! empty( $invoice_actions ) ) { |
|
| 127 | + if (!empty($invoice_actions)) { |
|
| 128 | 128 | |
| 129 | 129 | echo '<div class="wpinv-receipt-actions text-right mt-1 mb-4">'; |
| 130 | 130 | |
| 131 | - foreach ( $invoice_actions as $key => $invoice_action ) { |
|
| 131 | + foreach ($invoice_actions as $key => $invoice_action) { |
|
| 132 | 132 | |
| 133 | - $key = sanitize_html_class( $key ); |
|
| 134 | - $class = empty( $invoice_action['class'] ) ? 'btn-dark' : sanitize_html_class( $invoice_action['class'] ); |
|
| 135 | - $url = empty( $invoice_action['url'] ) ? '#' : esc_url( $invoice_action['url'] ); |
|
| 136 | - $attrs = empty( $invoice_action['attrs'] ) ? '' : $invoice_action['attrs']; |
|
| 137 | - $anchor = esc_html( $invoice_action['name'] ); |
|
| 133 | + $key = sanitize_html_class($key); |
|
| 134 | + $class = empty($invoice_action['class']) ? 'btn-dark' : sanitize_html_class($invoice_action['class']); |
|
| 135 | + $url = empty($invoice_action['url']) ? '#' : esc_url($invoice_action['url']); |
|
| 136 | + $attrs = empty($invoice_action['attrs']) ? '' : $invoice_action['attrs']; |
|
| 137 | + $anchor = esc_html($invoice_action['name']); |
|
| 138 | 138 | |
| 139 | - echo wp_kses_post( "<a href='$url' class='btn btn-sm ml-1 $class $key' $attrs>$anchor</a>" ); |
|
| 139 | + echo wp_kses_post("<a href='$url' class='btn btn-sm ml-1 $class $key' $attrs>$anchor</a>"); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | echo '</div>'; |
| 143 | 143 | |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - if ( ! empty( $alert ) ) { |
|
| 147 | - echo wp_kses_post( $alert ); |
|
| 146 | + if (!empty($alert)) { |
|
| 147 | + echo wp_kses_post($alert); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | ?> |
@@ -152,19 +152,19 @@ discard block |
||
| 152 | 152 | <div class="wpinv-receipt-details"> |
| 153 | 153 | |
| 154 | 154 | <h4 class="wpinv-details-t mb-3 mt-3"> |
| 155 | - <?php echo esc_html( apply_filters( 'wpinv_receipt_details_title', __( 'Invoice Details', 'invoicing' ), $invoice ) ); ?> |
|
| 155 | + <?php echo esc_html(apply_filters('wpinv_receipt_details_title', __('Invoice Details', 'invoicing'), $invoice)); ?> |
|
| 156 | 156 | </h4> |
| 157 | 157 | |
| 158 | - <?php getpaid_invoice_meta( $invoice ); ?> |
|
| 158 | + <?php getpaid_invoice_meta($invoice); ?> |
|
| 159 | 159 | |
| 160 | 160 | </div> |
| 161 | 161 | |
| 162 | - <?php do_action( 'wpinv_receipt_end', $invoice ); ?> |
|
| 162 | + <?php do_action('wpinv_receipt_end', $invoice); ?> |
|
| 163 | 163 | |
| 164 | 164 | </div> |
| 165 | 165 | |
| 166 | 166 | <?php |
| 167 | 167 | |
| 168 | 168 | // @deprecated |
| 169 | -do_action( 'wpinv_success_content_after', $invoice ); |
|
| 170 | -do_action( 'wpinv_after_receipt', $invoice ); |
|
| 169 | +do_action('wpinv_success_content_after', $invoice); |
|
| 170 | +do_action('wpinv_after_receipt', $invoice); |
|
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php |
|
| 1 | + <?php |
|
| 2 | 2 | /** |
| 3 | 3 | * Template that prints the invoice receipt page. |
| 4 | 4 | * |
@@ -7,153 +7,153 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | - |
|
| 12 | -// Fetch the invoice. |
|
| 13 | -$invoice = new WPInv_Invoice( $invoice ); |
|
| 14 | - |
|
| 15 | -// @deprecated |
|
| 16 | -do_action( 'wpinv_success_content_before', $invoice ); |
|
| 17 | -do_action( 'wpinv_before_receipt', $invoice ); |
|
| 10 | + defined( 'ABSPATH' ) || exit; |
|
| 18 | 11 | |
| 19 | -wpinv_print_errors(); |
|
| 12 | + // Fetch the invoice. |
|
| 13 | + $invoice = new WPInv_Invoice( $invoice ); |
|
| 20 | 14 | |
| 21 | -// Prepare header text. |
|
| 22 | -if ( $invoice->is_paid() ) { |
|
| 15 | + // @deprecated |
|
| 16 | + do_action( 'wpinv_success_content_before', $invoice ); |
|
| 17 | + do_action( 'wpinv_before_receipt', $invoice ); |
|
| 23 | 18 | |
| 24 | - $alert = aui()->alert( |
|
| 25 | - array( |
|
| 26 | - 'type' => 'success', |
|
| 27 | - 'content' => __( 'Thank you for your payment!', 'invoicing' ), |
|
| 28 | - ) |
|
| 29 | - ); |
|
| 30 | - |
|
| 31 | -} elseif ( $invoice->is_refunded() ) { |
|
| 32 | - |
|
| 33 | - $alert = aui()->alert( |
|
| 34 | - array( |
|
| 35 | - 'type' => 'info', |
|
| 36 | - 'content' => __( 'This invoice was refunded.', 'invoicing' ), |
|
| 37 | - ) |
|
| 38 | - ); |
|
| 39 | - |
|
| 40 | -} elseif ( $invoice->is_held() ) { |
|
| 41 | - |
|
| 42 | - $alert = aui()->alert( |
|
| 43 | - array( |
|
| 44 | - 'type' => 'info', |
|
| 45 | - 'content' => __( 'This invoice will be processed as soon we verify your payment.', 'invoicing' ), |
|
| 46 | - ) |
|
| 47 | - ); |
|
| 48 | - |
|
| 49 | -} elseif ( $invoice->needs_payment() ) { |
|
| 19 | + wpinv_print_errors(); |
|
| 50 | 20 | |
| 51 | - if ( ! empty( $_GET['token'] ) ) { |
|
| 21 | + // Prepare header text. |
|
| 22 | + if ( $invoice->is_paid() ) { |
|
| 52 | 23 | |
| 53 | 24 | $alert = aui()->alert( |
| 54 | 25 | array( |
| 55 | - 'type' => 'info', |
|
| 56 | - 'content' => __( "Sometimes it takes a few minutes for us to verify your payment. We'll notify you as soon as we've verified the payment.", 'invoicing' ), |
|
| 26 | + 'type' => 'success', |
|
| 27 | + 'content' => __( 'Thank you for your payment!', 'invoicing' ), |
|
| 57 | 28 | ) |
| 58 | 29 | ); |
| 59 | 30 | |
| 60 | - } elseif ( $invoice->is_due() ) { |
|
| 31 | +} elseif ( $invoice->is_refunded() ) { |
|
| 61 | 32 | |
| 62 | 33 | $alert = aui()->alert( |
| 63 | 34 | array( |
| 64 | - 'type' => 'danger', |
|
| 65 | - 'content' => sprintf( |
|
| 66 | - __( 'This invoice was due on %.', 'invoicing' ), |
|
| 67 | - getpaid_format_date_value( $invoice->get_due_date() ) |
|
| 68 | - ), |
|
| 35 | + 'type' => 'info', |
|
| 36 | + 'content' => __( 'This invoice was refunded.', 'invoicing' ), |
|
| 69 | 37 | ) |
| 70 | 38 | ); |
| 71 | 39 | |
| 72 | - } else { |
|
| 40 | +} elseif ( $invoice->is_held() ) { |
|
| 73 | 41 | |
| 74 | 42 | $alert = aui()->alert( |
| 75 | 43 | array( |
| 76 | - 'type' => 'warning', |
|
| 77 | - 'content' => __( 'This invoice needs payment.', 'invoicing' ), |
|
| 44 | + 'type' => 'info', |
|
| 45 | + 'content' => __( 'This invoice will be processed as soon we verify your payment.', 'invoicing' ), |
|
| 78 | 46 | ) |
| 79 | 47 | ); |
| 80 | 48 | |
| 81 | - } |
|
| 49 | +} elseif ( $invoice->needs_payment() ) { |
|
| 50 | + |
|
| 51 | + if ( ! empty( $_GET['token'] ) ) { |
|
| 52 | + |
|
| 53 | + $alert = aui()->alert( |
|
| 54 | + array( |
|
| 55 | + 'type' => 'info', |
|
| 56 | + 'content' => __( "Sometimes it takes a few minutes for us to verify your payment. We'll notify you as soon as we've verified the payment.", 'invoicing' ), |
|
| 57 | + ) |
|
| 58 | + ); |
|
| 59 | + |
|
| 60 | + } elseif ( $invoice->is_due() ) { |
|
| 61 | + |
|
| 62 | + $alert = aui()->alert( |
|
| 63 | + array( |
|
| 64 | + 'type' => 'danger', |
|
| 65 | + 'content' => sprintf( |
|
| 66 | + __( 'This invoice was due on %.', 'invoicing' ), |
|
| 67 | + getpaid_format_date_value( $invoice->get_due_date() ) |
|
| 68 | + ), |
|
| 69 | + ) |
|
| 70 | + ); |
|
| 71 | + |
|
| 72 | + } else { |
|
| 73 | + |
|
| 74 | + $alert = aui()->alert( |
|
| 75 | + array( |
|
| 76 | + 'type' => 'warning', |
|
| 77 | + 'content' => __( 'This invoice needs payment.', 'invoicing' ), |
|
| 78 | + ) |
|
| 79 | + ); |
|
| 80 | + |
|
| 81 | + } |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | -// Invoice actions. |
|
| 85 | -$invoice_actions = apply_filters( |
|
| 86 | - 'wpinv_invoice_receipt_actions', |
|
| 87 | - array( |
|
| 84 | + // Invoice actions. |
|
| 85 | + $invoice_actions = apply_filters( |
|
| 86 | + 'wpinv_invoice_receipt_actions', |
|
| 87 | + array( |
|
| 88 | + |
|
| 89 | + 'pay' => array( |
|
| 90 | + 'url' => $invoice->get_checkout_payment_url(), |
|
| 91 | + 'name' => __( 'Pay For Invoice', 'invoicing' ), |
|
| 92 | + 'class' => 'btn-success', |
|
| 93 | + ), |
|
| 88 | 94 | |
| 89 | - 'pay' => array( |
|
| 90 | - 'url' => $invoice->get_checkout_payment_url(), |
|
| 91 | - 'name' => __( 'Pay For Invoice', 'invoicing' ), |
|
| 92 | - 'class' => 'btn-success', |
|
| 93 | - ), |
|
| 95 | + 'view' => array( |
|
| 96 | + 'url' => $invoice->get_view_url(), |
|
| 97 | + 'name' => __( 'View Invoice', 'invoicing' ), |
|
| 98 | + 'class' => 'btn-primary', |
|
| 99 | + ), |
|
| 94 | 100 | |
| 95 | - 'view' => array( |
|
| 96 | - 'url' => $invoice->get_view_url(), |
|
| 97 | - 'name' => __( 'View Invoice', 'invoicing' ), |
|
| 98 | - 'class' => 'btn-primary', |
|
| 99 | - ), |
|
| 101 | + 'history' => array( |
|
| 102 | + 'url' => wpinv_get_history_page_uri(), |
|
| 103 | + 'name' => __( 'Invoice History', 'invoicing' ), |
|
| 104 | + 'class' => 'btn-warning', |
|
| 105 | + ), |
|
| 100 | 106 | |
| 101 | - 'history' => array( |
|
| 102 | - 'url' => wpinv_get_history_page_uri(), |
|
| 103 | - 'name' => __( 'Invoice History', 'invoicing' ), |
|
| 104 | - 'class' => 'btn-warning', |
|
| 105 | 107 | ), |
| 108 | + $invoice |
|
| 109 | + ); |
|
| 106 | 110 | |
| 107 | - ), |
|
| 108 | - $invoice |
|
| 109 | -); |
|
| 110 | - |
|
| 111 | -if ( ( ! $invoice->needs_payment() || $invoice->is_held() ) && isset( $invoice_actions['pay'] ) ) { |
|
| 112 | - unset( $invoice_actions['pay'] ); |
|
| 111 | + if ( ( ! $invoice->needs_payment() || $invoice->is_held() ) && isset( $invoice_actions['pay'] ) ) { |
|
| 112 | + unset( $invoice_actions['pay'] ); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | -if ( ! is_user_logged_in() && isset( $invoice_actions['history'] ) ) { |
|
| 116 | - unset( $invoice_actions['history'] ); |
|
| 115 | + if ( ! is_user_logged_in() && isset( $invoice_actions['history'] ) ) { |
|
| 116 | + unset( $invoice_actions['history'] ); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | -?> |
|
| 119 | + ?> |
|
| 120 | 120 | |
| 121 | 121 | <div class="wpinv-receipt"> |
| 122 | 122 | |
| 123 | 123 | <?php |
| 124 | 124 | |
| 125 | - do_action( 'wpinv_receipt_start', $invoice ); |
|
| 125 | + do_action( 'wpinv_receipt_start', $invoice ); |
|
| 126 | 126 | |
| 127 | - if ( ! empty( $invoice_actions ) ) { |
|
| 127 | + if ( ! empty( $invoice_actions ) ) { |
|
| 128 | 128 | |
| 129 | - echo '<div class="wpinv-receipt-actions text-right mt-1 mb-4">'; |
|
| 129 | + echo '<div class="wpinv-receipt-actions text-right mt-1 mb-4">'; |
|
| 130 | 130 | |
| 131 | - foreach ( $invoice_actions as $key => $invoice_action ) { |
|
| 131 | + foreach ( $invoice_actions as $key => $invoice_action ) { |
|
| 132 | 132 | |
| 133 | - $key = sanitize_html_class( $key ); |
|
| 134 | - $class = empty( $invoice_action['class'] ) ? 'btn-dark' : sanitize_html_class( $invoice_action['class'] ); |
|
| 135 | - $url = empty( $invoice_action['url'] ) ? '#' : esc_url( $invoice_action['url'] ); |
|
| 136 | - $attrs = empty( $invoice_action['attrs'] ) ? '' : $invoice_action['attrs']; |
|
| 137 | - $anchor = esc_html( $invoice_action['name'] ); |
|
| 133 | + $key = sanitize_html_class( $key ); |
|
| 134 | + $class = empty( $invoice_action['class'] ) ? 'btn-dark' : sanitize_html_class( $invoice_action['class'] ); |
|
| 135 | + $url = empty( $invoice_action['url'] ) ? '#' : esc_url( $invoice_action['url'] ); |
|
| 136 | + $attrs = empty( $invoice_action['attrs'] ) ? '' : $invoice_action['attrs']; |
|
| 137 | + $anchor = esc_html( $invoice_action['name'] ); |
|
| 138 | 138 | |
| 139 | - echo wp_kses_post( "<a href='$url' class='btn btn-sm ml-1 $class $key' $attrs>$anchor</a>" ); |
|
| 140 | - } |
|
| 139 | + echo wp_kses_post( "<a href='$url' class='btn btn-sm ml-1 $class $key' $attrs>$anchor</a>" ); |
|
| 140 | + } |
|
| 141 | 141 | |
| 142 | - echo '</div>'; |
|
| 142 | + echo '</div>'; |
|
| 143 | 143 | |
| 144 | - } |
|
| 144 | + } |
|
| 145 | 145 | |
| 146 | - if ( ! empty( $alert ) ) { |
|
| 147 | - echo wp_kses_post( $alert ); |
|
| 148 | - } |
|
| 146 | + if ( ! empty( $alert ) ) { |
|
| 147 | + echo wp_kses_post( $alert ); |
|
| 148 | + } |
|
| 149 | 149 | |
| 150 | - ?> |
|
| 150 | + ?> |
|
| 151 | 151 | |
| 152 | 152 | <div class="wpinv-receipt-details"> |
| 153 | 153 | |
| 154 | 154 | <h4 class="wpinv-details-t mb-3 mt-3"> |
| 155 | 155 | <?php echo esc_html( apply_filters( 'wpinv_receipt_details_title', __( 'Invoice Details', 'invoicing' ), $invoice ) ); ?> |
| 156 | - </h4> |
|
| 156 | + </h4> |
|
| 157 | 157 | |
| 158 | 158 | <?php getpaid_invoice_meta( $invoice ); ?> |
| 159 | 159 | |
@@ -165,6 +165,6 @@ discard block |
||
| 165 | 165 | |
| 166 | 166 | <?php |
| 167 | 167 | |
| 168 | -// @deprecated |
|
| 169 | -do_action( 'wpinv_success_content_after', $invoice ); |
|
| 170 | -do_action( 'wpinv_after_receipt', $invoice ); |
|
| 168 | + // @deprecated |
|
| 169 | + do_action( 'wpinv_success_content_after', $invoice ); |
|
| 170 | + do_action( 'wpinv_after_receipt', $invoice ); |
|
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | // MUST have WordPress. |
| 10 | -if ( ! defined( 'WPINC' ) ) { |
|
| 10 | +if (!defined('WPINC')) { |
|
| 11 | 11 | exit; |
| 12 | 12 | } |
| 13 | 13 | |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | private static $instance; |
| 16 | 16 | |
| 17 | 17 | public static function run() { |
| 18 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof WPInv_Admin_Users ) ) { |
|
| 18 | + if (!isset(self::$instance) && !(self::$instance instanceof WPInv_Admin_Users)) { |
|
| 19 | 19 | self::$instance = new WPInv_Admin_Users(); |
| 20 | 20 | } |
| 21 | 21 | |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public function __construct() { |
| 26 | - add_filter( 'manage_users_columns', array( $this, 'wpinv_add_user_column' ) ); |
|
| 27 | - add_filter( 'manage_users_custom_column', array( $this, 'wpinv_user_column_content' ), 10, 3 ); |
|
| 26 | + add_filter('manage_users_columns', array($this, 'wpinv_add_user_column')); |
|
| 27 | + add_filter('manage_users_custom_column', array($this, 'wpinv_user_column_content'), 10, 3); |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | /** |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | * |
| 35 | 35 | * @return mixed |
| 36 | 36 | */ |
| 37 | - public function wpinv_add_user_column( $column ) { |
|
| 38 | - $column['wpinvoicing'] = __( 'Invoicing', 'invoicing' ); |
|
| 37 | + public function wpinv_add_user_column($column) { |
|
| 38 | + $column['wpinvoicing'] = __('Invoicing', 'invoicing'); |
|
| 39 | 39 | return $column; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -48,10 +48,10 @@ discard block |
||
| 48 | 48 | * |
| 49 | 49 | * @return string |
| 50 | 50 | */ |
| 51 | - public function wpinv_user_column_content( $val, $column_name, $user_id ) { |
|
| 52 | - switch ( $column_name ) { |
|
| 51 | + public function wpinv_user_column_content($val, $column_name, $user_id) { |
|
| 52 | + switch ($column_name) { |
|
| 53 | 53 | case 'wpinvoicing': |
| 54 | - return $this->get_user_invoices( $user_id ); |
|
| 54 | + return $this->get_user_invoices($user_id); |
|
| 55 | 55 | break; |
| 56 | 56 | default: |
| 57 | 57 | } |
@@ -65,30 +65,30 @@ discard block |
||
| 65 | 65 | * |
| 66 | 66 | * @return string |
| 67 | 67 | */ |
| 68 | - public function get_user_invoices( $user_id ) { |
|
| 68 | + public function get_user_invoices($user_id) { |
|
| 69 | 69 | $output = ''; |
| 70 | 70 | $wp_query_args = array( |
| 71 | 71 | 'post_type' => 'wpi_invoice', |
| 72 | - 'post_status' => array( 'wpi-pending', 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-refunded', 'wpi-cancelled', 'wpi-failed', 'wpi-renewal' ), |
|
| 72 | + 'post_status' => array('wpi-pending', 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-refunded', 'wpi-cancelled', 'wpi-failed', 'wpi-renewal'), |
|
| 73 | 73 | 'posts_per_page' => -1, |
| 74 | 74 | 'fields' => 'ids', |
| 75 | 75 | 'author' => $user_id, |
| 76 | 76 | ); |
| 77 | 77 | |
| 78 | - $wp_query_args = apply_filters( 'wpinv_get_user_invoices_args', $wp_query_args, $user_id ); |
|
| 78 | + $wp_query_args = apply_filters('wpinv_get_user_invoices_args', $wp_query_args, $user_id); |
|
| 79 | 79 | |
| 80 | - $invoices = new WP_Query( $wp_query_args ); |
|
| 81 | - $count = absint( $invoices->found_posts ); |
|
| 80 | + $invoices = new WP_Query($wp_query_args); |
|
| 81 | + $count = absint($invoices->found_posts); |
|
| 82 | 82 | |
| 83 | - if ( empty( $count ) ) { |
|
| 84 | - $output .= __( 'No Invoice(s)', 'invoicing' ); |
|
| 83 | + if (empty($count)) { |
|
| 84 | + $output .= __('No Invoice(s)', 'invoicing'); |
|
| 85 | 85 | } else { |
| 86 | - $link_url = admin_url( 'edit.php?post_type=wpi_invoice&author=' . absint( $user_id ) ); |
|
| 87 | - $link_text = sprintf( __( 'Invoices ( %d )', 'invoicing' ), $count ); |
|
| 86 | + $link_url = admin_url('edit.php?post_type=wpi_invoice&author=' . absint($user_id)); |
|
| 87 | + $link_text = sprintf(__('Invoices ( %d )', 'invoicing'), $count); |
|
| 88 | 88 | $output .= "<a href='$link_url' >$link_text</a>"; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - return apply_filters( 'wpinv_user_invoice_content', $output, $user_id ); |
|
| 91 | + return apply_filters('wpinv_user_invoice_content', $output, $user_id); |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | } |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
| 141 | 141 | */ |
| 142 | 142 | function wpinv_get_template_html( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
| 143 | - return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
| 143 | + return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | * @return string |
| 159 | 159 | */ |
| 160 | 160 | function wpinv_get_theme_template_dir_name() { |
| 161 | - return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
| 161 | + return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -175,125 +175,125 @@ discard block |
||
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | function wpinv_get_template_part( $slug, $name = null, $load = true ) { |
| 178 | - do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
| 178 | + do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
| 179 | 179 | |
| 180 | - // Setup possible parts |
|
| 181 | - $templates = array(); |
|
| 182 | - if ( isset( $name ) ) { |
|
| 183 | - $templates[] = $slug . '-' . $name . '.php'; |
|
| 180 | + // Setup possible parts |
|
| 181 | + $templates = array(); |
|
| 182 | + if ( isset( $name ) ) { |
|
| 183 | + $templates[] = $slug . '-' . $name . '.php'; |
|
| 184 | 184 | } |
| 185 | - $templates[] = $slug . '.php'; |
|
| 185 | + $templates[] = $slug . '.php'; |
|
| 186 | 186 | |
| 187 | - // Allow template parts to be filtered |
|
| 188 | - $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
| 187 | + // Allow template parts to be filtered |
|
| 188 | + $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
| 189 | 189 | |
| 190 | - // Return the part that is found |
|
| 191 | - return wpinv_locate_tmpl( $templates, $load, false ); |
|
| 190 | + // Return the part that is found |
|
| 191 | + return wpinv_locate_tmpl( $templates, $load, false ); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | function wpinv_locate_tmpl( $template_names, $load = false, $require_once = true ) { |
| 195 | - // No file found yet |
|
| 196 | - $located = false; |
|
| 195 | + // No file found yet |
|
| 196 | + $located = false; |
|
| 197 | 197 | |
| 198 | - // Try to find a template file |
|
| 199 | - foreach ( (array)$template_names as $template_name ) { |
|
| 198 | + // Try to find a template file |
|
| 199 | + foreach ( (array)$template_names as $template_name ) { |
|
| 200 | 200 | |
| 201 | - // Continue if template is empty |
|
| 202 | - if ( empty( $template_name ) ) { |
|
| 203 | - continue; |
|
| 201 | + // Continue if template is empty |
|
| 202 | + if ( empty( $template_name ) ) { |
|
| 203 | + continue; |
|
| 204 | 204 | } |
| 205 | 205 | |
| 206 | - // Trim off any slashes from the template name |
|
| 207 | - $template_name = ltrim( $template_name, '/' ); |
|
| 206 | + // Trim off any slashes from the template name |
|
| 207 | + $template_name = ltrim( $template_name, '/' ); |
|
| 208 | 208 | |
| 209 | - // try locating this template file by looping through the template paths |
|
| 210 | - foreach ( wpinv_get_theme_template_paths() as $template_path ) { |
|
| 209 | + // try locating this template file by looping through the template paths |
|
| 210 | + foreach ( wpinv_get_theme_template_paths() as $template_path ) { |
|
| 211 | 211 | |
| 212 | - if ( file_exists( $template_path . $template_name ) ) { |
|
| 213 | - $located = $template_path . $template_name; |
|
| 214 | - break; |
|
| 215 | - } |
|
| 216 | - } |
|
| 212 | + if ( file_exists( $template_path . $template_name ) ) { |
|
| 213 | + $located = $template_path . $template_name; |
|
| 214 | + break; |
|
| 215 | + } |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - if ( ! empty( $located ) ) { |
|
| 219 | - break; |
|
| 220 | - } |
|
| 221 | - } |
|
| 218 | + if ( ! empty( $located ) ) { |
|
| 219 | + break; |
|
| 220 | + } |
|
| 221 | + } |
|
| 222 | 222 | |
| 223 | - if ( ( true == $load ) && ! empty( $located ) ) { |
|
| 224 | - load_template( $located, $require_once ); |
|
| 223 | + if ( ( true == $load ) && ! empty( $located ) ) { |
|
| 224 | + load_template( $located, $require_once ); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | - return $located; |
|
| 227 | + return $located; |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | function wpinv_get_theme_template_paths() { |
| 231 | - $template_dir = wpinv_get_theme_template_dir_name(); |
|
| 231 | + $template_dir = wpinv_get_theme_template_dir_name(); |
|
| 232 | 232 | |
| 233 | - $file_paths = array( |
|
| 234 | - 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
| 235 | - 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
| 236 | - 100 => wpinv_get_templates_dir(), |
|
| 237 | - ); |
|
| 233 | + $file_paths = array( |
|
| 234 | + 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
| 235 | + 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
| 236 | + 100 => wpinv_get_templates_dir(), |
|
| 237 | + ); |
|
| 238 | 238 | |
| 239 | - $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
| 239 | + $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
| 240 | 240 | |
| 241 | - // sort the file paths based on priority |
|
| 242 | - ksort( $file_paths, SORT_NUMERIC ); |
|
| 241 | + // sort the file paths based on priority |
|
| 242 | + ksort( $file_paths, SORT_NUMERIC ); |
|
| 243 | 243 | |
| 244 | - return array_map( 'trailingslashit', $file_paths ); |
|
| 244 | + return array_map( 'trailingslashit', $file_paths ); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | function wpinv_checkout_meta_tags() { |
| 248 | 248 | |
| 249 | - $pages = array(); |
|
| 250 | - $pages[] = wpinv_get_option( 'success_page' ); |
|
| 251 | - $pages[] = wpinv_get_option( 'failure_page' ); |
|
| 252 | - $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
| 253 | - $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
| 249 | + $pages = array(); |
|
| 250 | + $pages[] = wpinv_get_option( 'success_page' ); |
|
| 251 | + $pages[] = wpinv_get_option( 'failure_page' ); |
|
| 252 | + $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
| 253 | + $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
| 254 | 254 | |
| 255 | - if ( ! wpinv_is_checkout() && ! is_page( $pages ) ) { |
|
| 256 | - return; |
|
| 257 | - } |
|
| 255 | + if ( ! wpinv_is_checkout() && ! is_page( $pages ) ) { |
|
| 256 | + return; |
|
| 257 | + } |
|
| 258 | 258 | |
| 259 | - echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
|
| 259 | + echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
|
| 260 | 260 | } |
| 261 | 261 | add_action( 'wp_head', 'wpinv_checkout_meta_tags' ); |
| 262 | 262 | |
| 263 | 263 | function wpinv_add_body_classes( $class ) { |
| 264 | - $classes = (array)$class; |
|
| 264 | + $classes = (array)$class; |
|
| 265 | 265 | |
| 266 | - if ( wpinv_is_checkout() ) { |
|
| 267 | - $classes[] = 'wpinv-checkout'; |
|
| 268 | - $classes[] = 'wpinv-page'; |
|
| 269 | - } |
|
| 266 | + if ( wpinv_is_checkout() ) { |
|
| 267 | + $classes[] = 'wpinv-checkout'; |
|
| 268 | + $classes[] = 'wpinv-page'; |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - if ( wpinv_is_success_page() ) { |
|
| 272 | - $classes[] = 'wpinv-success'; |
|
| 273 | - $classes[] = 'wpinv-page'; |
|
| 274 | - } |
|
| 271 | + if ( wpinv_is_success_page() ) { |
|
| 272 | + $classes[] = 'wpinv-success'; |
|
| 273 | + $classes[] = 'wpinv-page'; |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | - if ( wpinv_is_failed_transaction_page() ) { |
|
| 277 | - $classes[] = 'wpinv-failed-transaction'; |
|
| 278 | - $classes[] = 'wpinv-page'; |
|
| 279 | - } |
|
| 276 | + if ( wpinv_is_failed_transaction_page() ) { |
|
| 277 | + $classes[] = 'wpinv-failed-transaction'; |
|
| 278 | + $classes[] = 'wpinv-page'; |
|
| 279 | + } |
|
| 280 | 280 | |
| 281 | - if ( wpinv_is_invoice_history_page() ) { |
|
| 282 | - $classes[] = 'wpinv-history'; |
|
| 283 | - $classes[] = 'wpinv-page'; |
|
| 284 | - } |
|
| 281 | + if ( wpinv_is_invoice_history_page() ) { |
|
| 282 | + $classes[] = 'wpinv-history'; |
|
| 283 | + $classes[] = 'wpinv-page'; |
|
| 284 | + } |
|
| 285 | 285 | |
| 286 | - if ( wpinv_is_subscriptions_history_page() ) { |
|
| 287 | - $classes[] = 'wpinv-subscription'; |
|
| 288 | - $classes[] = 'wpinv-page'; |
|
| 289 | - } |
|
| 286 | + if ( wpinv_is_subscriptions_history_page() ) { |
|
| 287 | + $classes[] = 'wpinv-subscription'; |
|
| 288 | + $classes[] = 'wpinv-page'; |
|
| 289 | + } |
|
| 290 | 290 | |
| 291 | - if ( wpinv_is_test_mode() ) { |
|
| 292 | - $classes[] = 'wpinv-test-mode'; |
|
| 293 | - $classes[] = 'wpinv-page'; |
|
| 294 | - } |
|
| 291 | + if ( wpinv_is_test_mode() ) { |
|
| 292 | + $classes[] = 'wpinv-test-mode'; |
|
| 293 | + $classes[] = 'wpinv-page'; |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | - return array_unique( $classes ); |
|
| 296 | + return array_unique( $classes ); |
|
| 297 | 297 | } |
| 298 | 298 | add_filter( 'body_class', 'wpinv_add_body_classes' ); |
| 299 | 299 | |
@@ -458,16 +458,16 @@ discard block |
||
| 458 | 458 | |
| 459 | 459 | wpinv_html_select( |
| 460 | 460 | array( |
| 461 | - 'name' => $args['name'], |
|
| 462 | - 'selected' => $args['selected'], |
|
| 463 | - 'id' => $args['id'], |
|
| 464 | - 'class' => $args['class'], |
|
| 465 | - 'options' => $options, |
|
| 466 | - 'multiple' => $args['multiple'], |
|
| 467 | - 'placeholder' => $args['placeholder'], |
|
| 468 | - 'show_option_all' => $args['show_option_all'], |
|
| 469 | - 'show_option_none' => $args['show_option_none'], |
|
| 470 | - 'data' => $args['data'], |
|
| 461 | + 'name' => $args['name'], |
|
| 462 | + 'selected' => $args['selected'], |
|
| 463 | + 'id' => $args['id'], |
|
| 464 | + 'class' => $args['class'], |
|
| 465 | + 'options' => $options, |
|
| 466 | + 'multiple' => $args['multiple'], |
|
| 467 | + 'placeholder' => $args['placeholder'], |
|
| 468 | + 'show_option_all' => $args['show_option_all'], |
|
| 469 | + 'show_option_none' => $args['show_option_none'], |
|
| 470 | + 'data' => $args['data'], |
|
| 471 | 471 | ) |
| 472 | 472 | ); |
| 473 | 473 | |
@@ -767,21 +767,21 @@ discard block |
||
| 767 | 767 | |
| 768 | 768 | $formatted_address = str_ireplace( array_keys( $replacements ), $replacements, $format ); |
| 769 | 769 | |
| 770 | - // Remove unavailable tags. |
|
| 770 | + // Remove unavailable tags. |
|
| 771 | 771 | $formatted_address = preg_replace( '/\{\{\w+\}\}/', '', $formatted_address ); |
| 772 | 772 | |
| 773 | 773 | // Clean up white space. |
| 774 | - $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
| 774 | + $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
| 775 | 775 | $formatted_address = preg_replace( '/\n\n+/', "\n", $formatted_address ); |
| 776 | 776 | |
| 777 | 777 | // Break newlines apart and remove empty lines/trim commas and white space. |
| 778 | - $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
| 778 | + $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
| 779 | 779 | |
| 780 | 780 | // Add html breaks. |
| 781 | - $formatted_address = implode( $separator, $formatted_address ); |
|
| 781 | + $formatted_address = implode( $separator, $formatted_address ); |
|
| 782 | 782 | |
| 783 | - // We're done! |
|
| 784 | - return $formatted_address; |
|
| 783 | + // We're done! |
|
| 784 | + return $formatted_address; |
|
| 785 | 785 | |
| 786 | 786 | } |
| 787 | 787 | |
@@ -827,7 +827,7 @@ discard block |
||
| 827 | 827 | function getpaid_display_invoice_subscriptions( $invoice ) { |
| 828 | 828 | |
| 829 | 829 | // Subscriptions. |
| 830 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 830 | + $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 831 | 831 | |
| 832 | 832 | if ( empty( $subscriptions ) || ! $invoice->is_recurring() ) { |
| 833 | 833 | return; |
@@ -1039,7 +1039,7 @@ discard block |
||
| 1039 | 1039 | } |
| 1040 | 1040 | |
| 1041 | 1041 | function wpinv_empty_cart_message() { |
| 1042 | - return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
| 1042 | + return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
| 1043 | 1043 | } |
| 1044 | 1044 | |
| 1045 | 1045 | /** |
@@ -1237,9 +1237,9 @@ discard block |
||
| 1237 | 1237 | |
| 1238 | 1238 | if ( 0 == count( $form->get_items() ) ) { |
| 1239 | 1239 | aui()->alert( |
| 1240 | - array( |
|
| 1241 | - 'type' => 'warning', |
|
| 1242 | - 'content' => __( 'No published items found', 'invoicing' ), |
|
| 1240 | + array( |
|
| 1241 | + 'type' => 'warning', |
|
| 1242 | + 'content' => __( 'No published items found', 'invoicing' ), |
|
| 1243 | 1243 | ), |
| 1244 | 1244 | true |
| 1245 | 1245 | ); |
@@ -1262,10 +1262,10 @@ discard block |
||
| 1262 | 1262 | $invoice = wpinv_get_invoice( $invoice_id ); |
| 1263 | 1263 | |
| 1264 | 1264 | if ( empty( $invoice ) ) { |
| 1265 | - aui()->alert( |
|
| 1266 | - array( |
|
| 1267 | - 'type' => 'warning', |
|
| 1268 | - 'content' => __( 'Invoice not found', 'invoicing' ), |
|
| 1265 | + aui()->alert( |
|
| 1266 | + array( |
|
| 1267 | + 'type' => 'warning', |
|
| 1268 | + 'content' => __( 'Invoice not found', 'invoicing' ), |
|
| 1269 | 1269 | ), |
| 1270 | 1270 | true |
| 1271 | 1271 | ); |
@@ -1273,10 +1273,10 @@ discard block |
||
| 1273 | 1273 | } |
| 1274 | 1274 | |
| 1275 | 1275 | if ( $invoice->is_paid() ) { |
| 1276 | - aui()->alert( |
|
| 1277 | - array( |
|
| 1278 | - 'type' => 'warning', |
|
| 1279 | - 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
| 1276 | + aui()->alert( |
|
| 1277 | + array( |
|
| 1278 | + 'type' => 'warning', |
|
| 1279 | + 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
| 1280 | 1280 | ), |
| 1281 | 1281 | true |
| 1282 | 1282 | ); |
@@ -1340,7 +1340,7 @@ discard block |
||
| 1340 | 1340 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-form='$form'>$label</button>"; |
| 1341 | 1341 | } |
| 1342 | 1342 | |
| 1343 | - if ( ! empty( $items ) ) { |
|
| 1343 | + if ( ! empty( $items ) ) { |
|
| 1344 | 1344 | $items = esc_attr( $items ); |
| 1345 | 1345 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-item='$items'>$label</button>"; |
| 1346 | 1346 | } |
@@ -1526,21 +1526,21 @@ discard block |
||
| 1526 | 1526 | |
| 1527 | 1527 | return aui()->select( |
| 1528 | 1528 | array( |
| 1529 | - 'options' => $states, |
|
| 1530 | - 'name' => esc_attr( $field_name ), |
|
| 1531 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 1532 | - 'value' => sanitize_text_field( $state ), |
|
| 1533 | - 'placeholder' => $placeholder, |
|
| 1534 | - 'required' => $required, |
|
| 1535 | - 'label' => wp_kses_post( $label ), |
|
| 1536 | - 'label_type' => 'vertical', |
|
| 1537 | - 'help_text' => $help_text, |
|
| 1538 | - 'class' => 'getpaid-address-field wpinv_state', |
|
| 1539 | - 'wrap_class' => "$wrapper_class getpaid-address-field-wrapper__state", |
|
| 1540 | - 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__state', |
|
| 1541 | - 'extra_attributes' => array( |
|
| 1542 | - 'autocomplete' => 'address-level1', |
|
| 1543 | - ), |
|
| 1529 | + 'options' => $states, |
|
| 1530 | + 'name' => esc_attr( $field_name ), |
|
| 1531 | + 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 1532 | + 'value' => sanitize_text_field( $state ), |
|
| 1533 | + 'placeholder' => $placeholder, |
|
| 1534 | + 'required' => $required, |
|
| 1535 | + 'label' => wp_kses_post( $label ), |
|
| 1536 | + 'label_type' => 'vertical', |
|
| 1537 | + 'help_text' => $help_text, |
|
| 1538 | + 'class' => 'getpaid-address-field wpinv_state', |
|
| 1539 | + 'wrap_class' => "$wrapper_class getpaid-address-field-wrapper__state", |
|
| 1540 | + 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__state', |
|
| 1541 | + 'extra_attributes' => array( |
|
| 1542 | + 'autocomplete' => 'address-level1', |
|
| 1543 | + ), |
|
| 1544 | 1544 | ), |
| 1545 | 1545 | $echo |
| 1546 | 1546 | ); |
@@ -4,99 +4,99 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Displays an invoice. |
| 11 | 11 | * |
| 12 | 12 | * @param WPInv_Invoice $invoice. |
| 13 | 13 | */ |
| 14 | -function getpaid_invoice( $invoice ) { |
|
| 15 | - if ( ! empty( $invoice ) ) { |
|
| 16 | - wpinv_get_template( 'invoice/invoice.php', compact( 'invoice' ) ); |
|
| 14 | +function getpaid_invoice($invoice) { |
|
| 15 | + if (!empty($invoice)) { |
|
| 16 | + wpinv_get_template('invoice/invoice.php', compact('invoice')); |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | -add_action( 'getpaid_invoice', 'getpaid_invoice', 10 ); |
|
| 19 | +add_action('getpaid_invoice', 'getpaid_invoice', 10); |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | 22 | * Displays the invoice footer. |
| 23 | 23 | */ |
| 24 | -function getpaid_invoice_footer( $invoice ) { |
|
| 25 | - if ( ! empty( $invoice ) ) { |
|
| 26 | - wpinv_get_template( 'invoice/footer.php', compact( 'invoice' ) ); |
|
| 24 | +function getpaid_invoice_footer($invoice) { |
|
| 25 | + if (!empty($invoice)) { |
|
| 26 | + wpinv_get_template('invoice/footer.php', compact('invoice')); |
|
| 27 | 27 | } |
| 28 | 28 | } |
| 29 | -add_action( 'getpaid_invoice_footer', 'getpaid_invoice_footer', 10 ); |
|
| 29 | +add_action('getpaid_invoice_footer', 'getpaid_invoice_footer', 10); |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * Displays the invoice top bar. |
| 33 | 33 | */ |
| 34 | -function getpaid_invoice_header( $invoice ) { |
|
| 35 | - if ( ! empty( $invoice ) ) { |
|
| 36 | - wpinv_get_template( 'invoice/header.php', compact( 'invoice' ) ); |
|
| 34 | +function getpaid_invoice_header($invoice) { |
|
| 35 | + if (!empty($invoice)) { |
|
| 36 | + wpinv_get_template('invoice/header.php', compact('invoice')); |
|
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | -add_action( 'getpaid_invoice_header', 'getpaid_invoice_header', 10 ); |
|
| 39 | +add_action('getpaid_invoice_header', 'getpaid_invoice_header', 10); |
|
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | * Displays actions on the left side of the header. |
| 43 | 43 | */ |
| 44 | -function getpaid_invoice_header_left_actions( $invoice ) { |
|
| 45 | - if ( ! empty( $invoice ) ) { |
|
| 46 | - wpinv_get_template( 'invoice/header-left-actions.php', compact( 'invoice' ) ); |
|
| 44 | +function getpaid_invoice_header_left_actions($invoice) { |
|
| 45 | + if (!empty($invoice)) { |
|
| 46 | + wpinv_get_template('invoice/header-left-actions.php', compact('invoice')); |
|
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | -add_action( 'getpaid_invoice_header_left', 'getpaid_invoice_header_left_actions', 10 ); |
|
| 49 | +add_action('getpaid_invoice_header_left', 'getpaid_invoice_header_left_actions', 10); |
|
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * Displays actions on the right side of the invoice top bar. |
| 53 | 53 | */ |
| 54 | -function getpaid_invoice_header_right_actions( $invoice ) { |
|
| 55 | - if ( ! empty( $invoice ) ) { |
|
| 56 | - wpinv_get_template( 'invoice/header-right-actions.php', compact( 'invoice' ) ); |
|
| 54 | +function getpaid_invoice_header_right_actions($invoice) { |
|
| 55 | + if (!empty($invoice)) { |
|
| 56 | + wpinv_get_template('invoice/header-right-actions.php', compact('invoice')); |
|
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | -add_action( 'getpaid_invoice_header_right', 'getpaid_invoice_header_right_actions', 10 ); |
|
| 59 | +add_action('getpaid_invoice_header_right', 'getpaid_invoice_header_right_actions', 10); |
|
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | 62 | * Displays the invoice title, logo etc. |
| 63 | 63 | */ |
| 64 | -function getpaid_invoice_details_top( $invoice ) { |
|
| 65 | - if ( ! empty( $invoice ) ) { |
|
| 66 | - wpinv_get_template( 'invoice/details-top.php', compact( 'invoice' ) ); |
|
| 64 | +function getpaid_invoice_details_top($invoice) { |
|
| 65 | + if (!empty($invoice)) { |
|
| 66 | + wpinv_get_template('invoice/details-top.php', compact('invoice')); |
|
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | -add_action( 'getpaid_invoice_details', 'getpaid_invoice_details_top', 10 ); |
|
| 69 | +add_action('getpaid_invoice_details', 'getpaid_invoice_details_top', 10); |
|
| 70 | 70 | |
| 71 | 71 | /** |
| 72 | 72 | * Displays the company logo. |
| 73 | 73 | */ |
| 74 | -function getpaid_invoice_logo( $invoice ) { |
|
| 75 | - if ( ! empty( $invoice ) ) { |
|
| 76 | - wpinv_get_template( 'invoice/invoice-logo.php', compact( 'invoice' ) ); |
|
| 74 | +function getpaid_invoice_logo($invoice) { |
|
| 75 | + if (!empty($invoice)) { |
|
| 76 | + wpinv_get_template('invoice/invoice-logo.php', compact('invoice')); |
|
| 77 | 77 | } |
| 78 | 78 | } |
| 79 | -add_action( 'getpaid_invoice_details_top_left', 'getpaid_invoice_logo' ); |
|
| 79 | +add_action('getpaid_invoice_details_top_left', 'getpaid_invoice_logo'); |
|
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | 82 | * Displays the type of invoice. |
| 83 | 83 | */ |
| 84 | -function getpaid_invoice_type( $invoice ) { |
|
| 85 | - if ( ! empty( $invoice ) ) { |
|
| 86 | - wpinv_get_template( 'invoice/invoice-type.php', compact( 'invoice' ) ); |
|
| 84 | +function getpaid_invoice_type($invoice) { |
|
| 85 | + if (!empty($invoice)) { |
|
| 86 | + wpinv_get_template('invoice/invoice-type.php', compact('invoice')); |
|
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | -add_action( 'getpaid_invoice_details_top_right', 'getpaid_invoice_type' ); |
|
| 89 | +add_action('getpaid_invoice_details_top_right', 'getpaid_invoice_type'); |
|
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | 92 | * Displays the invoice details. |
| 93 | 93 | */ |
| 94 | -function getpaid_invoice_details_main( $invoice ) { |
|
| 95 | - if ( ! empty( $invoice ) ) { |
|
| 96 | - wpinv_get_template( 'invoice/details.php', compact( 'invoice' ) ); |
|
| 94 | +function getpaid_invoice_details_main($invoice) { |
|
| 95 | + if (!empty($invoice)) { |
|
| 96 | + wpinv_get_template('invoice/details.php', compact('invoice')); |
|
| 97 | 97 | } |
| 98 | 98 | } |
| 99 | -add_action( 'getpaid_invoice_details', 'getpaid_invoice_details_main', 50 ); |
|
| 99 | +add_action('getpaid_invoice_details', 'getpaid_invoice_details_main', 50); |
|
| 100 | 100 | |
| 101 | 101 | /** |
| 102 | 102 | * Returns a path to the templates directory. |
@@ -125,8 +125,8 @@ discard block |
||
| 125 | 125 | * @param string $template_path The templates directory relative to the theme's root dir. Defaults to 'invoicing'. |
| 126 | 126 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
| 127 | 127 | */ |
| 128 | -function wpinv_get_template( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
|
| 129 | - getpaid_template()->display_template( $template_name, $args, $template_path, $default_path ); |
|
| 128 | +function wpinv_get_template($template_name, $args = array(), $template_path = '', $default_path = '') { |
|
| 129 | + getpaid_template()->display_template($template_name, $args, $template_path, $default_path); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -139,8 +139,8 @@ discard block |
||
| 139 | 139 | * @param string $template_path The templates directory relative to the theme's root dir. Defaults to 'invoicing'. |
| 140 | 140 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
| 141 | 141 | */ |
| 142 | -function wpinv_get_template_html( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
|
| 143 | - return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
| 142 | +function wpinv_get_template_html($template_name, $args = array(), $template_path = '', $default_path = '') { |
|
| 143 | + return getpaid_template()->get_template($template_name, $args, $template_path, $default_path); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | * @return string |
| 150 | 150 | */ |
| 151 | 151 | function wpinv_template_path() { |
| 152 | - return apply_filters( 'wpinv_template_path', wpinv_get_theme_template_dir_name() ); |
|
| 152 | + return apply_filters('wpinv_template_path', wpinv_get_theme_template_dir_name()); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | /** |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | * @return string |
| 159 | 159 | */ |
| 160 | 160 | function wpinv_get_theme_template_dir_name() { |
| 161 | - return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
| 161 | + return trailingslashit(apply_filters('wpinv_templates_dir', 'invoicing')); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -170,58 +170,58 @@ discard block |
||
| 170 | 170 | * @param string $template_path The template path relative to the theme's root dir. Defaults to 'invoicing'. |
| 171 | 171 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
| 172 | 172 | */ |
| 173 | -function wpinv_locate_template( $template_name, $template_path = '', $default_path = '' ) { |
|
| 174 | - return getpaid_template()->locate_template( $template_name, $template_path, $default_path ); |
|
| 173 | +function wpinv_locate_template($template_name, $template_path = '', $default_path = '') { |
|
| 174 | + return getpaid_template()->locate_template($template_name, $template_path, $default_path); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | -function wpinv_get_template_part( $slug, $name = null, $load = true ) { |
|
| 178 | - do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
| 177 | +function wpinv_get_template_part($slug, $name = null, $load = true) { |
|
| 178 | + do_action('get_template_part_' . $slug, $slug, $name); |
|
| 179 | 179 | |
| 180 | 180 | // Setup possible parts |
| 181 | 181 | $templates = array(); |
| 182 | - if ( isset( $name ) ) { |
|
| 182 | + if (isset($name)) { |
|
| 183 | 183 | $templates[] = $slug . '-' . $name . '.php'; |
| 184 | 184 | } |
| 185 | 185 | $templates[] = $slug . '.php'; |
| 186 | 186 | |
| 187 | 187 | // Allow template parts to be filtered |
| 188 | - $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
| 188 | + $templates = apply_filters('wpinv_get_template_part', $templates, $slug, $name); |
|
| 189 | 189 | |
| 190 | 190 | // Return the part that is found |
| 191 | - return wpinv_locate_tmpl( $templates, $load, false ); |
|
| 191 | + return wpinv_locate_tmpl($templates, $load, false); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | -function wpinv_locate_tmpl( $template_names, $load = false, $require_once = true ) { |
|
| 194 | +function wpinv_locate_tmpl($template_names, $load = false, $require_once = true) { |
|
| 195 | 195 | // No file found yet |
| 196 | 196 | $located = false; |
| 197 | 197 | |
| 198 | 198 | // Try to find a template file |
| 199 | - foreach ( (array)$template_names as $template_name ) { |
|
| 199 | + foreach ((array) $template_names as $template_name) { |
|
| 200 | 200 | |
| 201 | 201 | // Continue if template is empty |
| 202 | - if ( empty( $template_name ) ) { |
|
| 202 | + if (empty($template_name)) { |
|
| 203 | 203 | continue; |
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | // Trim off any slashes from the template name |
| 207 | - $template_name = ltrim( $template_name, '/' ); |
|
| 207 | + $template_name = ltrim($template_name, '/'); |
|
| 208 | 208 | |
| 209 | 209 | // try locating this template file by looping through the template paths |
| 210 | - foreach ( wpinv_get_theme_template_paths() as $template_path ) { |
|
| 210 | + foreach (wpinv_get_theme_template_paths() as $template_path) { |
|
| 211 | 211 | |
| 212 | - if ( file_exists( $template_path . $template_name ) ) { |
|
| 212 | + if (file_exists($template_path . $template_name)) { |
|
| 213 | 213 | $located = $template_path . $template_name; |
| 214 | 214 | break; |
| 215 | 215 | } |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - if ( ! empty( $located ) ) { |
|
| 218 | + if (!empty($located)) { |
|
| 219 | 219 | break; |
| 220 | 220 | } |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | - if ( ( true == $load ) && ! empty( $located ) ) { |
|
| 224 | - load_template( $located, $require_once ); |
|
| 223 | + if ((true == $load) && !empty($located)) { |
|
| 224 | + load_template($located, $require_once); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | return $located; |
@@ -231,73 +231,73 @@ discard block |
||
| 231 | 231 | $template_dir = wpinv_get_theme_template_dir_name(); |
| 232 | 232 | |
| 233 | 233 | $file_paths = array( |
| 234 | - 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
| 235 | - 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
| 234 | + 1 => trailingslashit(get_stylesheet_directory()) . $template_dir, |
|
| 235 | + 10 => trailingslashit(get_template_directory()) . $template_dir, |
|
| 236 | 236 | 100 => wpinv_get_templates_dir(), |
| 237 | 237 | ); |
| 238 | 238 | |
| 239 | - $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
| 239 | + $file_paths = apply_filters('wpinv_template_paths', $file_paths); |
|
| 240 | 240 | |
| 241 | 241 | // sort the file paths based on priority |
| 242 | - ksort( $file_paths, SORT_NUMERIC ); |
|
| 242 | + ksort($file_paths, SORT_NUMERIC); |
|
| 243 | 243 | |
| 244 | - return array_map( 'trailingslashit', $file_paths ); |
|
| 244 | + return array_map('trailingslashit', $file_paths); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | function wpinv_checkout_meta_tags() { |
| 248 | 248 | |
| 249 | 249 | $pages = array(); |
| 250 | - $pages[] = wpinv_get_option( 'success_page' ); |
|
| 251 | - $pages[] = wpinv_get_option( 'failure_page' ); |
|
| 252 | - $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
| 253 | - $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
| 250 | + $pages[] = wpinv_get_option('success_page'); |
|
| 251 | + $pages[] = wpinv_get_option('failure_page'); |
|
| 252 | + $pages[] = wpinv_get_option('invoice_history_page'); |
|
| 253 | + $pages[] = wpinv_get_option('invoice_subscription_page'); |
|
| 254 | 254 | |
| 255 | - if ( ! wpinv_is_checkout() && ! is_page( $pages ) ) { |
|
| 255 | + if (!wpinv_is_checkout() && !is_page($pages)) { |
|
| 256 | 256 | return; |
| 257 | 257 | } |
| 258 | 258 | |
| 259 | 259 | echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
| 260 | 260 | } |
| 261 | -add_action( 'wp_head', 'wpinv_checkout_meta_tags' ); |
|
| 261 | +add_action('wp_head', 'wpinv_checkout_meta_tags'); |
|
| 262 | 262 | |
| 263 | -function wpinv_add_body_classes( $class ) { |
|
| 264 | - $classes = (array)$class; |
|
| 263 | +function wpinv_add_body_classes($class) { |
|
| 264 | + $classes = (array) $class; |
|
| 265 | 265 | |
| 266 | - if ( wpinv_is_checkout() ) { |
|
| 266 | + if (wpinv_is_checkout()) { |
|
| 267 | 267 | $classes[] = 'wpinv-checkout'; |
| 268 | 268 | $classes[] = 'wpinv-page'; |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | - if ( wpinv_is_success_page() ) { |
|
| 271 | + if (wpinv_is_success_page()) { |
|
| 272 | 272 | $classes[] = 'wpinv-success'; |
| 273 | 273 | $classes[] = 'wpinv-page'; |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - if ( wpinv_is_failed_transaction_page() ) { |
|
| 276 | + if (wpinv_is_failed_transaction_page()) { |
|
| 277 | 277 | $classes[] = 'wpinv-failed-transaction'; |
| 278 | 278 | $classes[] = 'wpinv-page'; |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | - if ( wpinv_is_invoice_history_page() ) { |
|
| 281 | + if (wpinv_is_invoice_history_page()) { |
|
| 282 | 282 | $classes[] = 'wpinv-history'; |
| 283 | 283 | $classes[] = 'wpinv-page'; |
| 284 | 284 | } |
| 285 | 285 | |
| 286 | - if ( wpinv_is_subscriptions_history_page() ) { |
|
| 286 | + if (wpinv_is_subscriptions_history_page()) { |
|
| 287 | 287 | $classes[] = 'wpinv-subscription'; |
| 288 | 288 | $classes[] = 'wpinv-page'; |
| 289 | 289 | } |
| 290 | 290 | |
| 291 | - if ( wpinv_is_test_mode() ) { |
|
| 291 | + if (wpinv_is_test_mode()) { |
|
| 292 | 292 | $classes[] = 'wpinv-test-mode'; |
| 293 | 293 | $classes[] = 'wpinv-page'; |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | - return array_unique( $classes ); |
|
| 296 | + return array_unique($classes); |
|
| 297 | 297 | } |
| 298 | -add_filter( 'body_class', 'wpinv_add_body_classes' ); |
|
| 298 | +add_filter('body_class', 'wpinv_add_body_classes'); |
|
| 299 | 299 | |
| 300 | -function wpinv_html_select( $args = array() ) { |
|
| 300 | +function wpinv_html_select($args = array()) { |
|
| 301 | 301 | $defaults = array( |
| 302 | 302 | 'options' => array(), |
| 303 | 303 | 'name' => null, |
@@ -306,8 +306,8 @@ discard block |
||
| 306 | 306 | 'selected' => 0, |
| 307 | 307 | 'placeholder' => null, |
| 308 | 308 | 'multiple' => false, |
| 309 | - 'show_option_all' => _x( 'All', 'all dropdown items', 'invoicing' ), |
|
| 310 | - 'show_option_none' => _x( 'None', 'no dropdown items', 'invoicing' ), |
|
| 309 | + 'show_option_all' => _x('All', 'all dropdown items', 'invoicing'), |
|
| 310 | + 'show_option_none' => _x('None', 'no dropdown items', 'invoicing'), |
|
| 311 | 311 | 'data' => array(), |
| 312 | 312 | 'onchange' => null, |
| 313 | 313 | 'required' => false, |
@@ -315,79 +315,79 @@ discard block |
||
| 315 | 315 | 'readonly' => false, |
| 316 | 316 | ); |
| 317 | 317 | |
| 318 | - $args = wp_parse_args( $args, $defaults ); |
|
| 318 | + $args = wp_parse_args($args, $defaults); |
|
| 319 | 319 | |
| 320 | 320 | $attrs = array( |
| 321 | 321 | 'name' => $args['name'], |
| 322 | 322 | 'id' => $args['id'], |
| 323 | - 'class' => 'wpinv-select ' . implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ), |
|
| 324 | - 'multiple' => ! empty( $args['multiple'] ), |
|
| 325 | - 'readonly' => ! empty( $args['readonly'] ), |
|
| 326 | - 'disabled' => ! empty( $args['disabled'] ), |
|
| 327 | - 'required' => ! empty( $args['required'] ), |
|
| 328 | - 'onchange' => ! empty( $args['onchange'] ), |
|
| 323 | + 'class' => 'wpinv-select ' . implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))), |
|
| 324 | + 'multiple' => !empty($args['multiple']), |
|
| 325 | + 'readonly' => !empty($args['readonly']), |
|
| 326 | + 'disabled' => !empty($args['disabled']), |
|
| 327 | + 'required' => !empty($args['required']), |
|
| 328 | + 'onchange' => !empty($args['onchange']), |
|
| 329 | 329 | ); |
| 330 | 330 | |
| 331 | - if ( $args['placeholder'] ) { |
|
| 331 | + if ($args['placeholder']) { |
|
| 332 | 332 | $attrs['data-placeholder'] = $args['placeholder']; |
| 333 | 333 | } |
| 334 | 334 | |
| 335 | - if ( $args['onchange'] ) { |
|
| 335 | + if ($args['onchange']) { |
|
| 336 | 336 | $attrs['onchange'] = $args['onchange']; |
| 337 | 337 | } |
| 338 | 338 | |
| 339 | - foreach ( $args['data'] as $key => $value ) { |
|
| 339 | + foreach ($args['data'] as $key => $value) { |
|
| 340 | 340 | $attrs["data-$key"] = $value; |
| 341 | 341 | } |
| 342 | 342 | |
| 343 | 343 | echo '<select '; |
| 344 | 344 | |
| 345 | - foreach ( $attrs as $attr => $value ) { |
|
| 345 | + foreach ($attrs as $attr => $value) { |
|
| 346 | 346 | |
| 347 | - if ( false === $value ) { |
|
| 347 | + if (false === $value) { |
|
| 348 | 348 | continue; |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | - if ( true === $value ) { |
|
| 352 | - echo ' ' . esc_attr( $attr ); |
|
| 351 | + if (true === $value) { |
|
| 352 | + echo ' ' . esc_attr($attr); |
|
| 353 | 353 | } else { |
| 354 | - echo ' ' . esc_attr( $attr ) . '="' . esc_attr( $value ) . '"'; |
|
| 354 | + echo ' ' . esc_attr($attr) . '="' . esc_attr($value) . '"'; |
|
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | } |
| 358 | 358 | |
| 359 | 359 | echo '>'; |
| 360 | 360 | |
| 361 | - if ( $args['show_option_all'] ) { |
|
| 362 | - if ( $args['multiple'] ) { |
|
| 363 | - $selected = in_array( 0, $args['selected'] ); |
|
| 361 | + if ($args['show_option_all']) { |
|
| 362 | + if ($args['multiple']) { |
|
| 363 | + $selected = in_array(0, $args['selected']); |
|
| 364 | 364 | } else { |
| 365 | - $selected = empty( $args['selected'] ); |
|
| 365 | + $selected = empty($args['selected']); |
|
| 366 | 366 | } |
| 367 | - echo '<option value="all"' . selected( $selected, true, false ) . '>' . esc_html( $args['show_option_all'] ) . '</option>'; |
|
| 367 | + echo '<option value="all"' . selected($selected, true, false) . '>' . esc_html($args['show_option_all']) . '</option>'; |
|
| 368 | 368 | } |
| 369 | 369 | |
| 370 | - if ( ! empty( $args['options'] ) ) { |
|
| 370 | + if (!empty($args['options'])) { |
|
| 371 | 371 | |
| 372 | - if ( $args['show_option_none'] ) { |
|
| 373 | - if ( $args['multiple'] ) { |
|
| 374 | - $selected = in_array( '', $args['selected'], true ); |
|
| 372 | + if ($args['show_option_none']) { |
|
| 373 | + if ($args['multiple']) { |
|
| 374 | + $selected = in_array('', $args['selected'], true); |
|
| 375 | 375 | } else { |
| 376 | 376 | $selected = $args['selected'] === ''; |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | - echo '<option value=""' . selected( $selected, true, false ) . '>' . esc_html( $args['show_option_none'] ) . '</option>'; |
|
| 379 | + echo '<option value=""' . selected($selected, true, false) . '>' . esc_html($args['show_option_none']) . '</option>'; |
|
| 380 | 380 | } |
| 381 | 381 | |
| 382 | - foreach ( $args['options'] as $key => $option ) { |
|
| 382 | + foreach ($args['options'] as $key => $option) { |
|
| 383 | 383 | |
| 384 | - if ( $args['multiple'] && is_array( $args['selected'] ) ) { |
|
| 385 | - $selected = in_array( $key, $args['selected'], true ); |
|
| 384 | + if ($args['multiple'] && is_array($args['selected'])) { |
|
| 385 | + $selected = in_array($key, $args['selected'], true); |
|
| 386 | 386 | } else { |
| 387 | 387 | $selected = $args['selected'] === $key; |
| 388 | 388 | } |
| 389 | 389 | |
| 390 | - echo '<option value="' . esc_attr( $key ) . '"' . selected( $selected, true, false ) . '>' . esc_html( $option ) . '</option>'; |
|
| 390 | + echo '<option value="' . esc_attr($key) . '"' . selected($selected, true, false) . '>' . esc_html($option) . '</option>'; |
|
| 391 | 391 | } |
| 392 | 392 | } |
| 393 | 393 | |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | |
| 396 | 396 | } |
| 397 | 397 | |
| 398 | -function wpinv_item_dropdown( $args = array() ) { |
|
| 398 | +function wpinv_item_dropdown($args = array()) { |
|
| 399 | 399 | $defaults = array( |
| 400 | 400 | 'name' => 'wpi_item', |
| 401 | 401 | 'id' => 'wpi_item', |
@@ -403,14 +403,14 @@ discard block |
||
| 403 | 403 | 'multiple' => false, |
| 404 | 404 | 'selected' => 0, |
| 405 | 405 | 'number' => -1, |
| 406 | - 'placeholder' => __( 'Choose a item', 'invoicing' ), |
|
| 407 | - 'data' => array( 'search-type' => 'item' ), |
|
| 406 | + 'placeholder' => __('Choose a item', 'invoicing'), |
|
| 407 | + 'data' => array('search-type' => 'item'), |
|
| 408 | 408 | 'show_option_all' => false, |
| 409 | 409 | 'show_option_none' => false, |
| 410 | 410 | 'show_recurring' => false, |
| 411 | 411 | ); |
| 412 | 412 | |
| 413 | - $args = wp_parse_args( $args, $defaults ); |
|
| 413 | + $args = wp_parse_args($args, $defaults); |
|
| 414 | 414 | |
| 415 | 415 | $item_args = array( |
| 416 | 416 | 'post_type' => 'wpi_item', |
@@ -428,40 +428,40 @@ discard block |
||
| 428 | 428 | ), |
| 429 | 429 | ); |
| 430 | 430 | |
| 431 | - $item_args = apply_filters( 'wpinv_item_dropdown_query_args', $item_args, $args, $defaults ); |
|
| 431 | + $item_args = apply_filters('wpinv_item_dropdown_query_args', $item_args, $args, $defaults); |
|
| 432 | 432 | |
| 433 | - $items = get_posts( $item_args ); |
|
| 433 | + $items = get_posts($item_args); |
|
| 434 | 434 | $options = array(); |
| 435 | - if ( $items ) { |
|
| 436 | - foreach ( $items as $item ) { |
|
| 437 | - $title = esc_html( $item->post_title ); |
|
| 435 | + if ($items) { |
|
| 436 | + foreach ($items as $item) { |
|
| 437 | + $title = esc_html($item->post_title); |
|
| 438 | 438 | |
| 439 | - if ( ! empty( $args['show_recurring'] ) ) { |
|
| 440 | - $title .= wpinv_get_item_suffix( $item->ID, false ); |
|
| 439 | + if (!empty($args['show_recurring'])) { |
|
| 440 | + $title .= wpinv_get_item_suffix($item->ID, false); |
|
| 441 | 441 | } |
| 442 | 442 | |
| 443 | - $options[ absint( $item->ID ) ] = $title; |
|
| 443 | + $options[absint($item->ID)] = $title; |
|
| 444 | 444 | } |
| 445 | 445 | } |
| 446 | 446 | |
| 447 | 447 | // This ensures that any selected items are included in the drop down |
| 448 | - if ( is_array( $args['selected'] ) ) { |
|
| 449 | - foreach ( $args['selected'] as $item ) { |
|
| 450 | - if ( ! in_array( $item, $options ) ) { |
|
| 451 | - $title = get_the_title( $item ); |
|
| 452 | - if ( ! empty( $args['show_recurring'] ) ) { |
|
| 453 | - $title .= wpinv_get_item_suffix( $item, false ); |
|
| 448 | + if (is_array($args['selected'])) { |
|
| 449 | + foreach ($args['selected'] as $item) { |
|
| 450 | + if (!in_array($item, $options)) { |
|
| 451 | + $title = get_the_title($item); |
|
| 452 | + if (!empty($args['show_recurring'])) { |
|
| 453 | + $title .= wpinv_get_item_suffix($item, false); |
|
| 454 | 454 | } |
| 455 | - $options[ $item ] = $title; |
|
| 455 | + $options[$item] = $title; |
|
| 456 | 456 | } |
| 457 | 457 | } |
| 458 | - } elseif ( is_numeric( $args['selected'] ) && $args['selected'] !== 0 ) { |
|
| 459 | - if ( ! in_array( $args['selected'], $options ) ) { |
|
| 460 | - $title = get_the_title( $args['selected'] ); |
|
| 461 | - if ( ! empty( $args['show_recurring'] ) ) { |
|
| 462 | - $title .= wpinv_get_item_suffix( $args['selected'], false ); |
|
| 458 | + } elseif (is_numeric($args['selected']) && $args['selected'] !== 0) { |
|
| 459 | + if (!in_array($args['selected'], $options)) { |
|
| 460 | + $title = get_the_title($args['selected']); |
|
| 461 | + if (!empty($args['show_recurring'])) { |
|
| 462 | + $title .= wpinv_get_item_suffix($args['selected'], false); |
|
| 463 | 463 | } |
| 464 | - $options[ $args['selected'] ] = get_the_title( $args['selected'] ); |
|
| 464 | + $options[$args['selected']] = get_the_title($args['selected']); |
|
| 465 | 465 | } |
| 466 | 466 | } |
| 467 | 467 | |
@@ -497,16 +497,16 @@ discard block |
||
| 497 | 497 | ); |
| 498 | 498 | |
| 499 | 499 | $options = array(); |
| 500 | - if ( $items ) { |
|
| 501 | - foreach ( $items as $item ) { |
|
| 502 | - $options[ $item->ID ] = esc_html( $item->post_title ) . wpinv_get_item_suffix( $item->ID, false ); |
|
| 500 | + if ($items) { |
|
| 501 | + foreach ($items as $item) { |
|
| 502 | + $options[$item->ID] = esc_html($item->post_title) . wpinv_get_item_suffix($item->ID, false); |
|
| 503 | 503 | } |
| 504 | 504 | } |
| 505 | 505 | |
| 506 | 506 | return $options; |
| 507 | 507 | } |
| 508 | 508 | |
| 509 | -function wpinv_html_checkbox( $args = array() ) { |
|
| 509 | +function wpinv_html_checkbox($args = array()) { |
|
| 510 | 510 | $defaults = array( |
| 511 | 511 | 'name' => null, |
| 512 | 512 | 'current' => null, |
@@ -517,17 +517,17 @@ discard block |
||
| 517 | 517 | ), |
| 518 | 518 | ); |
| 519 | 519 | |
| 520 | - $args = wp_parse_args( $args, $defaults ); |
|
| 520 | + $args = wp_parse_args($args, $defaults); |
|
| 521 | 521 | |
| 522 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
| 522 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
| 523 | 523 | $attr = ''; |
| 524 | - if ( ! empty( $args['options']['disabled'] ) ) { |
|
| 524 | + if (!empty($args['options']['disabled'])) { |
|
| 525 | 525 | $attr .= ' disabled="disabled"'; |
| 526 | - } elseif ( ! empty( $args['options']['readonly'] ) ) { |
|
| 526 | + } elseif (!empty($args['options']['readonly'])) { |
|
| 527 | 527 | $attr .= ' readonly'; |
| 528 | 528 | } |
| 529 | 529 | |
| 530 | - $output = '<input type="checkbox"' . $attr . ' name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . esc_attr( $class ) . ' ' . esc_attr( $args['name'] ) . '" ' . checked( 1, $args['current'], false ) . ' />'; |
|
| 530 | + $output = '<input type="checkbox"' . $attr . ' name="' . esc_attr($args['name']) . '" id="' . esc_attr($args['name']) . '" class="' . esc_attr($class) . ' ' . esc_attr($args['name']) . '" ' . checked(1, $args['current'], false) . ' />'; |
|
| 531 | 531 | |
| 532 | 532 | return $output; |
| 533 | 533 | } |
@@ -535,34 +535,34 @@ discard block |
||
| 535 | 535 | /** |
| 536 | 536 | * Displays a hidden field. |
| 537 | 537 | */ |
| 538 | -function getpaid_hidden_field( $name, $value ) { |
|
| 539 | - echo "<input type='hidden' name='" . esc_attr( $name ) . "' value='" . esc_attr( $value ) . "' />"; |
|
| 538 | +function getpaid_hidden_field($name, $value) { |
|
| 539 | + echo "<input type='hidden' name='" . esc_attr($name) . "' value='" . esc_attr($value) . "' />"; |
|
| 540 | 540 | } |
| 541 | 541 | |
| 542 | 542 | /** |
| 543 | 543 | * Displays a submit field. |
| 544 | 544 | */ |
| 545 | -function getpaid_submit_field( $value, $name = 'submit', $class = 'btn-primary' ) { |
|
| 546 | - echo "<input type='submit' name='" . esc_attr( $name ) . "' value='" . esc_attr( $value ) . "' class='btn " . esc_attr( $class ) . "' />"; |
|
| 545 | +function getpaid_submit_field($value, $name = 'submit', $class = 'btn-primary') { |
|
| 546 | + echo "<input type='submit' name='" . esc_attr($name) . "' value='" . esc_attr($value) . "' class='btn " . esc_attr($class) . "' />"; |
|
| 547 | 547 | } |
| 548 | 548 | |
| 549 | -function wpinv_html_text( $args = array() ) { |
|
| 549 | +function wpinv_html_text($args = array()) { |
|
| 550 | 550 | // Backwards compatibility |
| 551 | - if ( func_num_args() > 1 ) { |
|
| 551 | + if (func_num_args() > 1) { |
|
| 552 | 552 | $args = func_get_args(); |
| 553 | 553 | |
| 554 | 554 | $name = $args[0]; |
| 555 | - $value = isset( $args[1] ) ? $args[1] : ''; |
|
| 556 | - $label = isset( $args[2] ) ? $args[2] : ''; |
|
| 557 | - $desc = isset( $args[3] ) ? $args[3] : ''; |
|
| 555 | + $value = isset($args[1]) ? $args[1] : ''; |
|
| 556 | + $label = isset($args[2]) ? $args[2] : ''; |
|
| 557 | + $desc = isset($args[3]) ? $args[3] : ''; |
|
| 558 | 558 | } |
| 559 | 559 | |
| 560 | 560 | $defaults = array( |
| 561 | 561 | 'id' => '', |
| 562 | - 'name' => isset( $name ) ? $name : 'text', |
|
| 563 | - 'value' => isset( $value ) ? $value : null, |
|
| 564 | - 'label' => isset( $label ) ? $label : null, |
|
| 565 | - 'desc' => isset( $desc ) ? $desc : null, |
|
| 562 | + 'name' => isset($name) ? $name : 'text', |
|
| 563 | + 'value' => isset($value) ? $value : null, |
|
| 564 | + 'label' => isset($label) ? $label : null, |
|
| 565 | + 'desc' => isset($desc) ? $desc : null, |
|
| 566 | 566 | 'placeholder' => '', |
| 567 | 567 | 'class' => 'regular-text', |
| 568 | 568 | 'disabled' => false, |
@@ -572,41 +572,41 @@ discard block |
||
| 572 | 572 | 'data' => false, |
| 573 | 573 | ); |
| 574 | 574 | |
| 575 | - $args = wp_parse_args( $args, $defaults ); |
|
| 575 | + $args = wp_parse_args($args, $defaults); |
|
| 576 | 576 | |
| 577 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
| 577 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
| 578 | 578 | $options = ''; |
| 579 | - if ( $args['required'] ) { |
|
| 579 | + if ($args['required']) { |
|
| 580 | 580 | $options .= ' required="required"'; |
| 581 | 581 | } |
| 582 | - if ( $args['readonly'] ) { |
|
| 582 | + if ($args['readonly']) { |
|
| 583 | 583 | $options .= ' readonly'; |
| 584 | 584 | } |
| 585 | - if ( $args['readonly'] ) { |
|
| 585 | + if ($args['readonly']) { |
|
| 586 | 586 | $options .= ' readonly'; |
| 587 | 587 | } |
| 588 | 588 | |
| 589 | 589 | $data = ''; |
| 590 | - if ( ! empty( $args['data'] ) ) { |
|
| 591 | - foreach ( $args['data'] as $key => $value ) { |
|
| 592 | - $data .= 'data-' . wpinv_sanitize_key( $key ) . '="' . esc_attr( $value ) . '" '; |
|
| 590 | + if (!empty($args['data'])) { |
|
| 591 | + foreach ($args['data'] as $key => $value) { |
|
| 592 | + $data .= 'data-' . wpinv_sanitize_key($key) . '="' . esc_attr($value) . '" '; |
|
| 593 | 593 | } |
| 594 | 594 | } |
| 595 | 595 | |
| 596 | - $output = '<span id="wpinv-' . wpinv_sanitize_key( $args['name'] ) . '-wrap">'; |
|
| 597 | - $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key( $args['id'] ) . '">' . esc_html( $args['label'] ) . '</label>'; |
|
| 598 | - if ( ! empty( $args['desc'] ) ) { |
|
| 599 | - $output .= '<span class="wpinv-description">' . esc_html( $args['desc'] ) . '</span>'; |
|
| 596 | + $output = '<span id="wpinv-' . wpinv_sanitize_key($args['name']) . '-wrap">'; |
|
| 597 | + $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key($args['id']) . '">' . esc_html($args['label']) . '</label>'; |
|
| 598 | + if (!empty($args['desc'])) { |
|
| 599 | + $output .= '<span class="wpinv-description">' . esc_html($args['desc']) . '</span>'; |
|
| 600 | 600 | } |
| 601 | 601 | |
| 602 | - $output .= '<input type="text" name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['id'] ) . '" autocomplete="' . esc_attr( $args['autocomplete'] ) . '" value="' . esc_attr( $args['value'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" class="' . $class . '" ' . $data . ' ' . trim( $options ) . '/>'; |
|
| 602 | + $output .= '<input type="text" name="' . esc_attr($args['name']) . '" id="' . esc_attr($args['id']) . '" autocomplete="' . esc_attr($args['autocomplete']) . '" value="' . esc_attr($args['value']) . '" placeholder="' . esc_attr($args['placeholder']) . '" class="' . $class . '" ' . $data . ' ' . trim($options) . '/>'; |
|
| 603 | 603 | |
| 604 | 604 | $output .= '</span>'; |
| 605 | 605 | |
| 606 | 606 | return $output; |
| 607 | 607 | } |
| 608 | 608 | |
| 609 | -function wpinv_html_textarea( $args = array() ) { |
|
| 609 | +function wpinv_html_textarea($args = array()) { |
|
| 610 | 610 | $defaults = array( |
| 611 | 611 | 'name' => 'textarea', |
| 612 | 612 | 'value' => null, |
@@ -617,31 +617,31 @@ discard block |
||
| 617 | 617 | 'placeholder' => '', |
| 618 | 618 | ); |
| 619 | 619 | |
| 620 | - $args = wp_parse_args( $args, $defaults ); |
|
| 620 | + $args = wp_parse_args($args, $defaults); |
|
| 621 | 621 | |
| 622 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
| 622 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
| 623 | 623 | $disabled = ''; |
| 624 | - if ( $args['disabled'] ) { |
|
| 624 | + if ($args['disabled']) { |
|
| 625 | 625 | $disabled = ' disabled="disabled"'; |
| 626 | 626 | } |
| 627 | 627 | |
| 628 | - $output = '<span id="wpinv-' . wpinv_sanitize_key( $args['name'] ) . '-wrap">'; |
|
| 629 | - $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>'; |
|
| 630 | - $output .= '<textarea name="' . esc_attr( $args['name'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" id="' . wpinv_sanitize_key( $args['name'] ) . '" class="' . $class . '"' . $disabled . '>' . esc_attr( $args['value'] ) . '</textarea>'; |
|
| 628 | + $output = '<span id="wpinv-' . wpinv_sanitize_key($args['name']) . '-wrap">'; |
|
| 629 | + $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key($args['name']) . '">' . esc_html($args['label']) . '</label>'; |
|
| 630 | + $output .= '<textarea name="' . esc_attr($args['name']) . '" placeholder="' . esc_attr($args['placeholder']) . '" id="' . wpinv_sanitize_key($args['name']) . '" class="' . $class . '"' . $disabled . '>' . esc_attr($args['value']) . '</textarea>'; |
|
| 631 | 631 | |
| 632 | - if ( ! empty( $args['desc'] ) ) { |
|
| 633 | - $output .= '<span class="wpinv-description">' . esc_html( $args['desc'] ) . '</span>'; |
|
| 632 | + if (!empty($args['desc'])) { |
|
| 633 | + $output .= '<span class="wpinv-description">' . esc_html($args['desc']) . '</span>'; |
|
| 634 | 634 | } |
| 635 | 635 | $output .= '</span>'; |
| 636 | 636 | |
| 637 | 637 | return $output; |
| 638 | 638 | } |
| 639 | 639 | |
| 640 | -function wpinv_html_ajax_user_search( $args = array() ) { |
|
| 640 | +function wpinv_html_ajax_user_search($args = array()) { |
|
| 641 | 641 | $defaults = array( |
| 642 | 642 | 'name' => 'user_id', |
| 643 | 643 | 'value' => null, |
| 644 | - 'placeholder' => __( 'Enter username', 'invoicing' ), |
|
| 644 | + 'placeholder' => __('Enter username', 'invoicing'), |
|
| 645 | 645 | 'label' => null, |
| 646 | 646 | 'desc' => null, |
| 647 | 647 | 'class' => '', |
@@ -650,13 +650,13 @@ discard block |
||
| 650 | 650 | 'data' => false, |
| 651 | 651 | ); |
| 652 | 652 | |
| 653 | - $args = wp_parse_args( $args, $defaults ); |
|
| 653 | + $args = wp_parse_args($args, $defaults); |
|
| 654 | 654 | |
| 655 | 655 | $args['class'] = 'wpinv-ajax-user-search ' . $args['class']; |
| 656 | 656 | |
| 657 | 657 | $output = '<span class="wpinv_user_search_wrap">'; |
| 658 | - $output .= wpinv_html_text( $args ); |
|
| 659 | - $output .= '<span class="wpinv_user_search_results hidden"><a class="wpinv-ajax-user-cancel" title="' . __( 'Cancel', 'invoicing' ) . '" aria-label="' . __( 'Cancel', 'invoicing' ) . '" href="#">x</a><span></span></span>'; |
|
| 658 | + $output .= wpinv_html_text($args); |
|
| 659 | + $output .= '<span class="wpinv_user_search_results hidden"><a class="wpinv-ajax-user-cancel" title="' . __('Cancel', 'invoicing') . '" aria-label="' . __('Cancel', 'invoicing') . '" href="#">x</a><span></span></span>'; |
|
| 660 | 660 | $output .= '</span>'; |
| 661 | 661 | |
| 662 | 662 | return $output; |
@@ -667,44 +667,44 @@ discard block |
||
| 667 | 667 | * |
| 668 | 668 | * @param string $template the template that is currently being used. |
| 669 | 669 | */ |
| 670 | -function wpinv_template( $template ) { |
|
| 670 | +function wpinv_template($template) { |
|
| 671 | 671 | global $post; |
| 672 | 672 | |
| 673 | - if ( ! is_admin() && ( is_single() || is_404() ) && ! empty( $post->ID ) && getpaid_is_invoice_post_type( get_post_type( $post->ID ) ) ) { |
|
| 673 | + if (!is_admin() && (is_single() || is_404()) && !empty($post->ID) && getpaid_is_invoice_post_type(get_post_type($post->ID))) { |
|
| 674 | 674 | |
| 675 | 675 | // If the user can view this invoice, display it. |
| 676 | - if ( wpinv_user_can_view_invoice( $post->ID ) ) { |
|
| 676 | + if (wpinv_user_can_view_invoice($post->ID)) { |
|
| 677 | 677 | |
| 678 | - return wpinv_get_template_part( 'wpinv-invoice-print', false, false ); |
|
| 678 | + return wpinv_get_template_part('wpinv-invoice-print', false, false); |
|
| 679 | 679 | |
| 680 | 680 | // Else display an error message. |
| 681 | 681 | } else { |
| 682 | 682 | |
| 683 | - return wpinv_get_template_part( 'wpinv-invalid-access', false, false ); |
|
| 683 | + return wpinv_get_template_part('wpinv-invalid-access', false, false); |
|
| 684 | 684 | |
| 685 | 685 | } |
| 686 | 686 | } |
| 687 | 687 | |
| 688 | 688 | return $template; |
| 689 | 689 | } |
| 690 | -add_filter( 'template_include', 'wpinv_template', 1000, 1 ); |
|
| 690 | +add_filter('template_include', 'wpinv_template', 1000, 1); |
|
| 691 | 691 | |
| 692 | 692 | function wpinv_get_business_address() { |
| 693 | 693 | $business_address = wpinv_store_address(); |
| 694 | - $business_address = ! empty( $business_address ) ? wp_kses_post( wpautop( $business_address ) ) : ''; |
|
| 694 | + $business_address = !empty($business_address) ? wp_kses_post(wpautop($business_address)) : ''; |
|
| 695 | 695 | |
| 696 | 696 | $business_address = $business_address ? '<div class="address">' . $business_address . '</div>' : ''; |
| 697 | 697 | |
| 698 | - return apply_filters( 'wpinv_get_business_address', $business_address ); |
|
| 698 | + return apply_filters('wpinv_get_business_address', $business_address); |
|
| 699 | 699 | } |
| 700 | 700 | |
| 701 | 701 | /** |
| 702 | 702 | * Displays the company address. |
| 703 | 703 | */ |
| 704 | 704 | function wpinv_display_from_address() { |
| 705 | - wpinv_get_template( 'invoice/company-address.php' ); |
|
| 705 | + wpinv_get_template('invoice/company-address.php'); |
|
| 706 | 706 | } |
| 707 | -add_action( 'getpaid_invoice_details_left', 'wpinv_display_from_address', 10 ); |
|
| 707 | +add_action('getpaid_invoice_details_left', 'wpinv_display_from_address', 10); |
|
| 708 | 708 | |
| 709 | 709 | /** |
| 710 | 710 | * Generates a watermark text for an invoice. |
@@ -712,9 +712,9 @@ discard block |
||
| 712 | 712 | * @param WPInv_Invoice $invoice |
| 713 | 713 | * @return string |
| 714 | 714 | */ |
| 715 | -function wpinv_watermark( $invoice ) { |
|
| 716 | - $watermark = wpinv_get_watermark( $invoice ); |
|
| 717 | - return apply_filters( 'wpinv_get_watermark', $watermark, $invoice ); |
|
| 715 | +function wpinv_watermark($invoice) { |
|
| 716 | + $watermark = wpinv_get_watermark($invoice); |
|
| 717 | + return apply_filters('wpinv_get_watermark', $watermark, $invoice); |
|
| 718 | 718 | } |
| 719 | 719 | |
| 720 | 720 | /** |
@@ -723,37 +723,37 @@ discard block |
||
| 723 | 723 | * @param WPInv_Invoice $invoice |
| 724 | 724 | * @return string |
| 725 | 725 | */ |
| 726 | -function wpinv_get_watermark( $invoice ) { |
|
| 726 | +function wpinv_get_watermark($invoice) { |
|
| 727 | 727 | return $invoice->get_status_nicename(); |
| 728 | 728 | } |
| 729 | 729 | |
| 730 | 730 | /** |
| 731 | 731 | * @deprecated |
| 732 | 732 | */ |
| 733 | -function wpinv_display_invoice_details( $invoice ) { |
|
| 734 | - return getpaid_invoice_meta( $invoice ); |
|
| 733 | +function wpinv_display_invoice_details($invoice) { |
|
| 734 | + return getpaid_invoice_meta($invoice); |
|
| 735 | 735 | } |
| 736 | 736 | |
| 737 | 737 | /** |
| 738 | 738 | * Displays invoice meta. |
| 739 | 739 | */ |
| 740 | -function getpaid_invoice_meta( $invoice ) { |
|
| 740 | +function getpaid_invoice_meta($invoice) { |
|
| 741 | 741 | |
| 742 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 742 | + $invoice = new WPInv_Invoice($invoice); |
|
| 743 | 743 | |
| 744 | 744 | // Ensure that we have an invoice. |
| 745 | - if ( 0 == $invoice->get_id() ) { |
|
| 745 | + if (0 == $invoice->get_id()) { |
|
| 746 | 746 | return; |
| 747 | 747 | } |
| 748 | 748 | |
| 749 | 749 | // Get the invoice meta. |
| 750 | - $meta = getpaid_get_invoice_meta( $invoice ); |
|
| 750 | + $meta = getpaid_get_invoice_meta($invoice); |
|
| 751 | 751 | |
| 752 | 752 | // Display the meta. |
| 753 | - wpinv_get_template( 'invoice/invoice-meta.php', compact( 'invoice', 'meta' ) ); |
|
| 753 | + wpinv_get_template('invoice/invoice-meta.php', compact('invoice', 'meta')); |
|
| 754 | 754 | |
| 755 | 755 | } |
| 756 | -add_action( 'getpaid_invoice_details_right', 'getpaid_invoice_meta', 10 ); |
|
| 756 | +add_action('getpaid_invoice_details_right', 'getpaid_invoice_meta', 10); |
|
| 757 | 757 | |
| 758 | 758 | /** |
| 759 | 759 | * Retrieves the address markup to use on Invoices. |
@@ -765,29 +765,29 @@ discard block |
||
| 765 | 765 | * @param string $separator How to separate address lines. |
| 766 | 766 | * @return string |
| 767 | 767 | */ |
| 768 | -function wpinv_get_invoice_address_markup( $billing_details, $separator = '<br/>' ) { |
|
| 768 | +function wpinv_get_invoice_address_markup($billing_details, $separator = '<br/>') { |
|
| 769 | 769 | |
| 770 | 770 | // Retrieve the address markup... |
| 771 | - $country = empty( $billing_details['country'] ) ? '' : $billing_details['country']; |
|
| 772 | - $format = wpinv_get_full_address_format( $country ); |
|
| 771 | + $country = empty($billing_details['country']) ? '' : $billing_details['country']; |
|
| 772 | + $format = wpinv_get_full_address_format($country); |
|
| 773 | 773 | |
| 774 | 774 | // ... and the replacements. |
| 775 | - $replacements = wpinv_get_invoice_address_replacements( $billing_details ); |
|
| 775 | + $replacements = wpinv_get_invoice_address_replacements($billing_details); |
|
| 776 | 776 | |
| 777 | - $formatted_address = str_ireplace( array_keys( $replacements ), $replacements, $format ); |
|
| 777 | + $formatted_address = str_ireplace(array_keys($replacements), $replacements, $format); |
|
| 778 | 778 | |
| 779 | 779 | // Remove unavailable tags. |
| 780 | - $formatted_address = preg_replace( '/\{\{\w+\}\}/', '', $formatted_address ); |
|
| 780 | + $formatted_address = preg_replace('/\{\{\w+\}\}/', '', $formatted_address); |
|
| 781 | 781 | |
| 782 | 782 | // Clean up white space. |
| 783 | - $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
| 784 | - $formatted_address = preg_replace( '/\n\n+/', "\n", $formatted_address ); |
|
| 783 | + $formatted_address = preg_replace('/ +/', ' ', trim($formatted_address)); |
|
| 784 | + $formatted_address = preg_replace('/\n\n+/', "\n", $formatted_address); |
|
| 785 | 785 | |
| 786 | 786 | // Break newlines apart and remove empty lines/trim commas and white space. |
| 787 | - $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
| 787 | + $formatted_address = array_filter(array_map('wpinv_trim_formatted_address_line', explode("\n", $formatted_address))); |
|
| 788 | 788 | |
| 789 | 789 | // Add html breaks. |
| 790 | - $formatted_address = implode( $separator, $formatted_address ); |
|
| 790 | + $formatted_address = implode($separator, $formatted_address); |
|
| 791 | 791 | |
| 792 | 792 | // We're done! |
| 793 | 793 | return $formatted_address; |
@@ -799,118 +799,118 @@ discard block |
||
| 799 | 799 | * |
| 800 | 800 | * @param WPInv_Invoice $invoice |
| 801 | 801 | */ |
| 802 | -function wpinv_display_to_address( $invoice = 0 ) { |
|
| 803 | - if ( ! empty( $invoice ) ) { |
|
| 804 | - wpinv_get_template( 'invoice/billing-address.php', compact( 'invoice' ) ); |
|
| 802 | +function wpinv_display_to_address($invoice = 0) { |
|
| 803 | + if (!empty($invoice)) { |
|
| 804 | + wpinv_get_template('invoice/billing-address.php', compact('invoice')); |
|
| 805 | 805 | } |
| 806 | 806 | } |
| 807 | -add_action( 'getpaid_invoice_details_left', 'wpinv_display_to_address', 40 ); |
|
| 807 | +add_action('getpaid_invoice_details_left', 'wpinv_display_to_address', 40); |
|
| 808 | 808 | |
| 809 | 809 | |
| 810 | 810 | /** |
| 811 | 811 | * Displays invoice line items. |
| 812 | 812 | */ |
| 813 | -function wpinv_display_line_items( $invoice_id = 0 ) { |
|
| 813 | +function wpinv_display_line_items($invoice_id = 0) { |
|
| 814 | 814 | |
| 815 | 815 | // Prepare the invoice. |
| 816 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 816 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 817 | 817 | |
| 818 | 818 | // Abort if there is no invoice. |
| 819 | - if ( 0 == $invoice->get_id() ) { |
|
| 819 | + if (0 == $invoice->get_id()) { |
|
| 820 | 820 | return; |
| 821 | 821 | } |
| 822 | 822 | |
| 823 | 823 | // Line item columns. |
| 824 | - $columns = getpaid_invoice_item_columns( $invoice ); |
|
| 825 | - $columns = apply_filters( 'getpaid_invoice_line_items_table_columns', $columns, $invoice ); |
|
| 824 | + $columns = getpaid_invoice_item_columns($invoice); |
|
| 825 | + $columns = apply_filters('getpaid_invoice_line_items_table_columns', $columns, $invoice); |
|
| 826 | 826 | |
| 827 | - wpinv_get_template( 'invoice/line-items.php', compact( 'invoice', 'columns' ) ); |
|
| 827 | + wpinv_get_template('invoice/line-items.php', compact('invoice', 'columns')); |
|
| 828 | 828 | } |
| 829 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_line_items', 10 ); |
|
| 829 | +add_action('getpaid_invoice_line_items', 'wpinv_display_line_items', 10); |
|
| 830 | 830 | |
| 831 | 831 | /** |
| 832 | 832 | * Displays invoice subscriptions. |
| 833 | 833 | * |
| 834 | 834 | * @param WPInv_Invoice $invoice |
| 835 | 835 | */ |
| 836 | -function getpaid_display_invoice_subscriptions( $invoice ) { |
|
| 836 | +function getpaid_display_invoice_subscriptions($invoice) { |
|
| 837 | 837 | |
| 838 | 838 | // Subscriptions. |
| 839 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 839 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
| 840 | 840 | |
| 841 | - if ( empty( $subscriptions ) || ! $invoice->is_recurring() ) { |
|
| 841 | + if (empty($subscriptions) || !$invoice->is_recurring()) { |
|
| 842 | 842 | return; |
| 843 | 843 | } |
| 844 | 844 | |
| 845 | - $main_subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 845 | + $main_subscription = getpaid_get_invoice_subscription($invoice); |
|
| 846 | 846 | |
| 847 | 847 | // Display related subscriptions. |
| 848 | - if ( is_array( $subscriptions ) ) { |
|
| 849 | - printf( '<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__( 'Related Subscriptions', 'invoicing' ) ); |
|
| 850 | - getpaid_admin_subscription_related_subscriptions_metabox( $main_subscription, false ); |
|
| 848 | + if (is_array($subscriptions)) { |
|
| 849 | + printf('<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__('Related Subscriptions', 'invoicing')); |
|
| 850 | + getpaid_admin_subscription_related_subscriptions_metabox($main_subscription, false); |
|
| 851 | 851 | } |
| 852 | 852 | |
| 853 | - if ( $main_subscription->get_total_payments() > 1 ) { |
|
| 854 | - printf( '<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__( 'Related Invoices', 'invoicing' ) ); |
|
| 855 | - getpaid_admin_subscription_invoice_details_metabox( $main_subscription, false ); |
|
| 853 | + if ($main_subscription->get_total_payments() > 1) { |
|
| 854 | + printf('<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__('Related Invoices', 'invoicing')); |
|
| 855 | + getpaid_admin_subscription_invoice_details_metabox($main_subscription, false); |
|
| 856 | 856 | } |
| 857 | 857 | |
| 858 | 858 | } |
| 859 | -add_action( 'getpaid_invoice_line_items', 'getpaid_display_invoice_subscriptions', 55 ); |
|
| 860 | -add_action( 'wpinv_receipt_end', 'getpaid_display_invoice_subscriptions', 11 ); |
|
| 859 | +add_action('getpaid_invoice_line_items', 'getpaid_display_invoice_subscriptions', 55); |
|
| 860 | +add_action('wpinv_receipt_end', 'getpaid_display_invoice_subscriptions', 11); |
|
| 861 | 861 | |
| 862 | 862 | /** |
| 863 | 863 | * Displays invoice notices on invoices. |
| 864 | 864 | */ |
| 865 | 865 | function wpinv_display_invoice_notice() { |
| 866 | 866 | |
| 867 | - $label = wpinv_get_option( 'vat_invoice_notice_label' ); |
|
| 868 | - $notice = wpinv_get_option( 'vat_invoice_notice' ); |
|
| 867 | + $label = wpinv_get_option('vat_invoice_notice_label'); |
|
| 868 | + $notice = wpinv_get_option('vat_invoice_notice'); |
|
| 869 | 869 | |
| 870 | - if ( empty( $label ) && empty( $notice ) ) { |
|
| 870 | + if (empty($label) && empty($notice)) { |
|
| 871 | 871 | return; |
| 872 | 872 | } |
| 873 | 873 | |
| 874 | 874 | echo '<div class="mt-4 mb-4 wpinv-vat-notice">'; |
| 875 | 875 | |
| 876 | - if ( ! empty( $label ) ) { |
|
| 877 | - echo "<h5>" . esc_html( $label ) . "</h5>"; |
|
| 876 | + if (!empty($label)) { |
|
| 877 | + echo "<h5>" . esc_html($label) . "</h5>"; |
|
| 878 | 878 | } |
| 879 | 879 | |
| 880 | - if ( ! empty( $notice ) ) { |
|
| 881 | - echo '<small class="form-text text-muted">' . wp_kses_post( wpautop( wptexturize( $notice ) ) ) . '</small>'; |
|
| 880 | + if (!empty($notice)) { |
|
| 881 | + echo '<small class="form-text text-muted">' . wp_kses_post(wpautop(wptexturize($notice))) . '</small>'; |
|
| 882 | 882 | } |
| 883 | 883 | |
| 884 | 884 | echo '</div>'; |
| 885 | 885 | } |
| 886 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_invoice_notice', 100 ); |
|
| 886 | +add_action('getpaid_invoice_line_items', 'wpinv_display_invoice_notice', 100); |
|
| 887 | 887 | |
| 888 | 888 | /** |
| 889 | 889 | * @param WPInv_Invoice $invoice |
| 890 | 890 | */ |
| 891 | -function wpinv_display_invoice_notes( $invoice ) { |
|
| 891 | +function wpinv_display_invoice_notes($invoice) { |
|
| 892 | 892 | |
| 893 | 893 | // Retrieve the notes. |
| 894 | - $notes = wpinv_get_invoice_notes( $invoice->get_id(), 'customer' ); |
|
| 894 | + $notes = wpinv_get_invoice_notes($invoice->get_id(), 'customer'); |
|
| 895 | 895 | |
| 896 | 896 | // Abort if we have non. |
| 897 | - if ( empty( $notes ) ) { |
|
| 897 | + if (empty($notes)) { |
|
| 898 | 898 | return; |
| 899 | 899 | } |
| 900 | 900 | |
| 901 | 901 | // Echo the note. |
| 902 | 902 | echo '<div class="getpaid-invoice-notes-wrapper position-relative my-4">'; |
| 903 | - echo '<h2 class="getpaid-invoice-notes-title mb-1 p-0 h4">' . esc_html__( 'Notes', 'invoicing' ) . '</h2>'; |
|
| 903 | + echo '<h2 class="getpaid-invoice-notes-title mb-1 p-0 h4">' . esc_html__('Notes', 'invoicing') . '</h2>'; |
|
| 904 | 904 | echo '<ul class="getpaid-invoice-notes text-break overflow-auto list-unstyled p-0 m-0">'; |
| 905 | 905 | |
| 906 | - foreach ( $notes as $note ) { |
|
| 907 | - wpinv_get_invoice_note_line_item( $note ); |
|
| 906 | + foreach ($notes as $note) { |
|
| 907 | + wpinv_get_invoice_note_line_item($note); |
|
| 908 | 908 | } |
| 909 | 909 | |
| 910 | 910 | echo '</ul>'; |
| 911 | 911 | echo '</div>'; |
| 912 | 912 | } |
| 913 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_invoice_notes', 60 ); |
|
| 913 | +add_action('getpaid_invoice_line_items', 'wpinv_display_invoice_notes', 60); |
|
| 914 | 914 | |
| 915 | 915 | /** |
| 916 | 916 | * Loads scripts on our invoice templates. |
@@ -918,37 +918,37 @@ discard block |
||
| 918 | 918 | function wpinv_display_style() { |
| 919 | 919 | |
| 920 | 920 | // Make sure that all scripts have been loaded. |
| 921 | - if ( ! did_action( 'wp_enqueue_scripts' ) ) { |
|
| 922 | - do_action( 'wp_enqueue_scripts' ); |
|
| 921 | + if (!did_action('wp_enqueue_scripts')) { |
|
| 922 | + do_action('wp_enqueue_scripts'); |
|
| 923 | 923 | } |
| 924 | 924 | |
| 925 | 925 | // Add global styles. |
| 926 | - if ( wp_is_block_theme() ) { |
|
| 927 | - wp_print_styles( 'global-styles' ); |
|
| 926 | + if (wp_is_block_theme()) { |
|
| 927 | + wp_print_styles('global-styles'); |
|
| 928 | 928 | } |
| 929 | 929 | |
| 930 | 930 | // Register the invoices style. |
| 931 | - wp_register_style( 'wpinv-single-style', WPINV_PLUGIN_URL . 'assets/css/invoice.css', array(), filemtime( WPINV_PLUGIN_DIR . 'assets/css/invoice.css' ) ); |
|
| 931 | + wp_register_style('wpinv-single-style', WPINV_PLUGIN_URL . 'assets/css/invoice.css', array(), filemtime(WPINV_PLUGIN_DIR . 'assets/css/invoice.css')); |
|
| 932 | 932 | |
| 933 | 933 | // Load required styles |
| 934 | - wp_print_styles( 'wpinv-single-style' ); |
|
| 935 | - wp_print_styles( 'ayecode-ui' ); |
|
| 934 | + wp_print_styles('wpinv-single-style'); |
|
| 935 | + wp_print_styles('ayecode-ui'); |
|
| 936 | 936 | |
| 937 | 937 | // Maybe load custom css. |
| 938 | - $custom_css = wpinv_get_option( 'template_custom_css' ); |
|
| 938 | + $custom_css = wpinv_get_option('template_custom_css'); |
|
| 939 | 939 | |
| 940 | - if ( isset( $custom_css ) && ! empty( $custom_css ) ) { |
|
| 941 | - $custom_css = wp_kses( $custom_css, array( '\'', '\"' ) ); |
|
| 942 | - $custom_css = str_replace( '>', '>', $custom_css ); |
|
| 940 | + if (isset($custom_css) && !empty($custom_css)) { |
|
| 941 | + $custom_css = wp_kses($custom_css, array('\'', '\"')); |
|
| 942 | + $custom_css = str_replace('>', '>', $custom_css); |
|
| 943 | 943 | echo '<style type="text/css">'; |
| 944 | - echo wp_kses_post( $custom_css ); |
|
| 944 | + echo wp_kses_post($custom_css); |
|
| 945 | 945 | echo '</style>'; |
| 946 | 946 | } |
| 947 | 947 | |
| 948 | 948 | wp_site_icon(); |
| 949 | 949 | } |
| 950 | -add_action( 'wpinv_invoice_print_head', 'wpinv_display_style' ); |
|
| 951 | -add_action( 'wpinv_invalid_invoice_head', 'wpinv_display_style' ); |
|
| 950 | +add_action('wpinv_invoice_print_head', 'wpinv_display_style'); |
|
| 951 | +add_action('wpinv_invalid_invoice_head', 'wpinv_display_style'); |
|
| 952 | 952 | |
| 953 | 953 | |
| 954 | 954 | /** |
@@ -960,41 +960,41 @@ discard block |
||
| 960 | 960 | // Retrieve the current invoice. |
| 961 | 961 | $invoice_id = getpaid_get_current_invoice_id(); |
| 962 | 962 | |
| 963 | - if ( empty( $invoice_id ) ) { |
|
| 963 | + if (empty($invoice_id)) { |
|
| 964 | 964 | |
| 965 | 965 | return aui()->alert( |
| 966 | 966 | array( |
| 967 | 967 | 'type' => 'warning', |
| 968 | - 'content' => __( 'Invalid invoice', 'invoicing' ), |
|
| 968 | + 'content' => __('Invalid invoice', 'invoicing'), |
|
| 969 | 969 | ) |
| 970 | 970 | ); |
| 971 | 971 | |
| 972 | 972 | } |
| 973 | 973 | |
| 974 | 974 | // Can the user view this invoice? |
| 975 | - if ( ! wpinv_user_can_view_invoice( $invoice_id ) ) { |
|
| 975 | + if (!wpinv_user_can_view_invoice($invoice_id)) { |
|
| 976 | 976 | |
| 977 | 977 | return aui()->alert( |
| 978 | 978 | array( |
| 979 | 979 | 'type' => 'warning', |
| 980 | - 'content' => __( 'You are not allowed to view this invoice', 'invoicing' ), |
|
| 980 | + 'content' => __('You are not allowed to view this invoice', 'invoicing'), |
|
| 981 | 981 | ) |
| 982 | 982 | ); |
| 983 | 983 | |
| 984 | 984 | } |
| 985 | 985 | |
| 986 | 986 | // Ensure that it is not yet paid for. |
| 987 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 987 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 988 | 988 | |
| 989 | 989 | // Maybe mark it as viewed. |
| 990 | - getpaid_maybe_mark_invoice_as_viewed( $invoice ); |
|
| 990 | + getpaid_maybe_mark_invoice_as_viewed($invoice); |
|
| 991 | 991 | |
| 992 | - if ( $invoice->is_paid() ) { |
|
| 992 | + if ($invoice->is_paid()) { |
|
| 993 | 993 | |
| 994 | 994 | return aui()->alert( |
| 995 | 995 | array( |
| 996 | 996 | 'type' => 'success', |
| 997 | - 'content' => __( 'This invoice has already been paid.', 'invoicing' ), |
|
| 997 | + 'content' => __('This invoice has already been paid.', 'invoicing'), |
|
| 998 | 998 | ) |
| 999 | 999 | ); |
| 1000 | 1000 | |
@@ -1004,15 +1004,15 @@ discard block |
||
| 1004 | 1004 | $wpi_checkout_id = $invoice_id; |
| 1005 | 1005 | |
| 1006 | 1006 | // Retrieve appropriate payment form. |
| 1007 | - $payment_form = new GetPaid_Payment_Form( wpinv_translate_post_id( $invoice->get_meta( 'force_payment_form' ) ) ); |
|
| 1008 | - $payment_form = $payment_form->exists() ? $payment_form : new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
| 1007 | + $payment_form = new GetPaid_Payment_Form(wpinv_translate_post_id($invoice->get_meta('force_payment_form'))); |
|
| 1008 | + $payment_form = $payment_form->exists() ? $payment_form : new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
| 1009 | 1009 | |
| 1010 | - if ( ! $payment_form->exists() ) { |
|
| 1010 | + if (!$payment_form->exists()) { |
|
| 1011 | 1011 | |
| 1012 | 1012 | return aui()->alert( |
| 1013 | 1013 | array( |
| 1014 | 1014 | 'type' => 'warning', |
| 1015 | - 'content' => __( 'Error loading the payment form', 'invoicing' ), |
|
| 1015 | + 'content' => __('Error loading the payment form', 'invoicing'), |
|
| 1016 | 1016 | ) |
| 1017 | 1017 | ); |
| 1018 | 1018 | |
@@ -1021,29 +1021,29 @@ discard block |
||
| 1021 | 1021 | // Set the invoice. |
| 1022 | 1022 | $payment_form->invoice = $invoice; |
| 1023 | 1023 | |
| 1024 | - if ( ! $payment_form->is_default() ) { |
|
| 1024 | + if (!$payment_form->is_default()) { |
|
| 1025 | 1025 | |
| 1026 | 1026 | $items = array(); |
| 1027 | 1027 | $item_ids = array(); |
| 1028 | 1028 | |
| 1029 | - foreach ( $invoice->get_items() as $item ) { |
|
| 1030 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 1029 | + foreach ($invoice->get_items() as $item) { |
|
| 1030 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 1031 | 1031 | $item_ids[] = $item->get_id(); |
| 1032 | 1032 | $items[] = $item; |
| 1033 | 1033 | } |
| 1034 | 1034 | } |
| 1035 | 1035 | |
| 1036 | - foreach ( $payment_form->get_items() as $item ) { |
|
| 1037 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 1036 | + foreach ($payment_form->get_items() as $item) { |
|
| 1037 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 1038 | 1038 | $item_ids[] = $item->get_id(); |
| 1039 | 1039 | $items[] = $item; |
| 1040 | 1040 | } |
| 1041 | 1041 | } |
| 1042 | 1042 | |
| 1043 | - $payment_form->set_items( $items ); |
|
| 1043 | + $payment_form->set_items($items); |
|
| 1044 | 1044 | |
| 1045 | 1045 | } else { |
| 1046 | - $payment_form->set_items( $invoice->get_items() ); |
|
| 1046 | + $payment_form->set_items($invoice->get_items()); |
|
| 1047 | 1047 | } |
| 1048 | 1048 | |
| 1049 | 1049 | // Generate the html. |
@@ -1052,7 +1052,7 @@ discard block |
||
| 1052 | 1052 | } |
| 1053 | 1053 | |
| 1054 | 1054 | function wpinv_empty_cart_message() { |
| 1055 | - return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
| 1055 | + return apply_filters('wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __('Your cart is empty.', 'invoicing') . '</span>'); |
|
| 1056 | 1056 | } |
| 1057 | 1057 | |
| 1058 | 1058 | /** |
@@ -1070,76 +1070,76 @@ discard block |
||
| 1070 | 1070 | true |
| 1071 | 1071 | ); |
| 1072 | 1072 | } |
| 1073 | -add_action( 'wpinv_cart_empty', 'wpinv_empty_checkout_cart' ); |
|
| 1073 | +add_action('wpinv_cart_empty', 'wpinv_empty_checkout_cart'); |
|
| 1074 | 1074 | |
| 1075 | 1075 | /** |
| 1076 | 1076 | * Filters the receipt page. |
| 1077 | 1077 | */ |
| 1078 | -function wpinv_filter_success_page_content( $content ) { |
|
| 1078 | +function wpinv_filter_success_page_content($content) { |
|
| 1079 | 1079 | |
| 1080 | 1080 | // Maybe abort early. |
| 1081 | - if ( is_admin() || ! is_singular() || ! in_the_loop() || ! is_main_query() || is_preview() ) { |
|
| 1081 | + if (is_admin() || !is_singular() || !in_the_loop() || !is_main_query() || is_preview()) { |
|
| 1082 | 1082 | return $content; |
| 1083 | 1083 | } |
| 1084 | 1084 | |
| 1085 | 1085 | // Ensure this is our page. |
| 1086 | - if ( isset( $_GET['payment-confirm'] ) && wpinv_is_success_page() ) { |
|
| 1086 | + if (isset($_GET['payment-confirm']) && wpinv_is_success_page()) { |
|
| 1087 | 1087 | |
| 1088 | - $gateway = sanitize_text_field( $_GET['payment-confirm'] ); |
|
| 1089 | - return apply_filters( "wpinv_payment_confirm_$gateway", $content ); |
|
| 1088 | + $gateway = sanitize_text_field($_GET['payment-confirm']); |
|
| 1089 | + return apply_filters("wpinv_payment_confirm_$gateway", $content); |
|
| 1090 | 1090 | |
| 1091 | 1091 | } |
| 1092 | 1092 | |
| 1093 | 1093 | return $content; |
| 1094 | 1094 | } |
| 1095 | -add_filter( 'the_content', 'wpinv_filter_success_page_content', 99999 ); |
|
| 1095 | +add_filter('the_content', 'wpinv_filter_success_page_content', 99999); |
|
| 1096 | 1096 | |
| 1097 | -function wpinv_invoice_link( $invoice_id ) { |
|
| 1098 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 1097 | +function wpinv_invoice_link($invoice_id) { |
|
| 1098 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 1099 | 1099 | |
| 1100 | - if ( empty( $invoice ) ) { |
|
| 1100 | + if (empty($invoice)) { |
|
| 1101 | 1101 | return null; |
| 1102 | 1102 | } |
| 1103 | 1103 | |
| 1104 | - $invoice_link = '<a href="' . esc_url( $invoice->get_view_url() ) . '">' . $invoice->get_number() . '</a>'; |
|
| 1104 | + $invoice_link = '<a href="' . esc_url($invoice->get_view_url()) . '">' . $invoice->get_number() . '</a>'; |
|
| 1105 | 1105 | |
| 1106 | - return apply_filters( 'wpinv_get_invoice_link', $invoice_link, $invoice ); |
|
| 1106 | + return apply_filters('wpinv_get_invoice_link', $invoice_link, $invoice); |
|
| 1107 | 1107 | } |
| 1108 | 1108 | |
| 1109 | -function wpinv_get_invoice_note_line_item( $note, $echo = true ) { |
|
| 1110 | - if ( empty( $note ) ) { |
|
| 1109 | +function wpinv_get_invoice_note_line_item($note, $echo = true) { |
|
| 1110 | + if (empty($note)) { |
|
| 1111 | 1111 | return null; |
| 1112 | 1112 | } |
| 1113 | 1113 | |
| 1114 | - if ( is_int( $note ) ) { |
|
| 1115 | - $note = get_comment( $note ); |
|
| 1114 | + if (is_int($note)) { |
|
| 1115 | + $note = get_comment($note); |
|
| 1116 | 1116 | } |
| 1117 | 1117 | |
| 1118 | - if ( ! ( is_object( $note ) && is_a( $note, 'WP_Comment' ) ) ) { |
|
| 1118 | + if (!(is_object($note) && is_a($note, 'WP_Comment'))) { |
|
| 1119 | 1119 | return null; |
| 1120 | 1120 | } |
| 1121 | 1121 | |
| 1122 | - $note_classes = array( 'note' ); |
|
| 1123 | - $note_classes[] = get_comment_meta( $note->comment_ID, '_wpi_customer_note', true ) ? 'customer-note' : ''; |
|
| 1122 | + $note_classes = array('note'); |
|
| 1123 | + $note_classes[] = get_comment_meta($note->comment_ID, '_wpi_customer_note', true) ? 'customer-note' : ''; |
|
| 1124 | 1124 | $note_classes[] = $note->comment_author === 'System' ? 'system-note' : ''; |
| 1125 | - $note_classes = apply_filters( 'wpinv_invoice_note_class', array_filter( $note_classes ), $note ); |
|
| 1126 | - $note_classes = ! empty( $note_classes ) ? implode( ' ', $note_classes ) : ''; |
|
| 1125 | + $note_classes = apply_filters('wpinv_invoice_note_class', array_filter($note_classes), $note); |
|
| 1126 | + $note_classes = !empty($note_classes) ? implode(' ', $note_classes) : ''; |
|
| 1127 | 1127 | |
| 1128 | 1128 | ob_start(); |
| 1129 | 1129 | ?> |
| 1130 | - <li rel="<?php echo absint( $note->comment_ID ); ?>" class="<?php echo esc_attr( $note_classes ); ?> mb-2"> |
|
| 1130 | + <li rel="<?php echo absint($note->comment_ID); ?>" class="<?php echo esc_attr($note_classes); ?> mb-2"> |
|
| 1131 | 1131 | <div class="note_content"> |
| 1132 | 1132 | |
| 1133 | - <?php echo wp_kses_post( wptexturize( $note->comment_content ) ); ?> |
|
| 1133 | + <?php echo wp_kses_post(wptexturize($note->comment_content)); ?> |
|
| 1134 | 1134 | |
| 1135 | - <?php if ( ! is_admin() ) : ?> |
|
| 1135 | + <?php if (!is_admin()) : ?> |
|
| 1136 | 1136 | <em class="small form-text text-muted mt-0"> |
| 1137 | 1137 | <?php |
| 1138 | 1138 | printf( |
| 1139 | - esc_html__( '%1$s - %2$s at %3$s', 'invoicing' ), |
|
| 1140 | - esc_html( $note->comment_author ), |
|
| 1141 | - esc_html( getpaid_format_date_value( $note->comment_date ) ), |
|
| 1142 | - esc_html( date_i18n( get_option( 'time_format' ), strtotime( $note->comment_date ) ) ) |
|
| 1139 | + esc_html__('%1$s - %2$s at %3$s', 'invoicing'), |
|
| 1140 | + esc_html($note->comment_author), |
|
| 1141 | + esc_html(getpaid_format_date_value($note->comment_date)), |
|
| 1142 | + esc_html(date_i18n(get_option('time_format'), strtotime($note->comment_date))) |
|
| 1143 | 1143 | ); |
| 1144 | 1144 | ?> |
| 1145 | 1145 | </em> |
@@ -1147,21 +1147,21 @@ discard block |
||
| 1147 | 1147 | |
| 1148 | 1148 | </div> |
| 1149 | 1149 | |
| 1150 | - <?php if ( is_admin() ) : ?> |
|
| 1150 | + <?php if (is_admin()) : ?> |
|
| 1151 | 1151 | |
| 1152 | 1152 | <p class="meta px-4 py-2"> |
| 1153 | - <abbr class="exact-date" title="<?php echo esc_attr( $note->comment_date ); ?>"> |
|
| 1153 | + <abbr class="exact-date" title="<?php echo esc_attr($note->comment_date); ?>"> |
|
| 1154 | 1154 | <?php |
| 1155 | 1155 | printf( |
| 1156 | - esc_html__( '%1$s - %2$s at %3$s', 'invoicing' ), |
|
| 1157 | - esc_html( $note->comment_author ), |
|
| 1158 | - esc_html( getpaid_format_date_value( $note->comment_date ) ), |
|
| 1159 | - esc_html( date_i18n( get_option( 'time_format' ), strtotime( $note->comment_date ) ) ) |
|
| 1156 | + esc_html__('%1$s - %2$s at %3$s', 'invoicing'), |
|
| 1157 | + esc_html($note->comment_author), |
|
| 1158 | + esc_html(getpaid_format_date_value($note->comment_date)), |
|
| 1159 | + esc_html(date_i18n(get_option('time_format'), strtotime($note->comment_date))) |
|
| 1160 | 1160 | ); |
| 1161 | 1161 | ?> |
| 1162 | 1162 | </abbr> |
| 1163 | - <?php if ( $note->comment_author !== 'System' && wpinv_current_user_can_manage_invoicing() ) { ?> |
|
| 1164 | - <a href="#" class="delete_note" data-id="<?php echo esc_attr( $note->comment_ID ); ?>"><?php esc_html_e( 'Delete note', 'invoicing' ); ?></a> |
|
| 1163 | + <?php if ($note->comment_author !== 'System' && wpinv_current_user_can_manage_invoicing()) { ?> |
|
| 1164 | + <a href="#" class="delete_note" data-id="<?php echo esc_attr($note->comment_ID); ?>"><?php esc_html_e('Delete note', 'invoicing'); ?></a> |
|
| 1165 | 1165 | <?php } ?> |
| 1166 | 1166 | </p> |
| 1167 | 1167 | |
@@ -1170,10 +1170,10 @@ discard block |
||
| 1170 | 1170 | </li> |
| 1171 | 1171 | <?php |
| 1172 | 1172 | $note_content = ob_get_clean(); |
| 1173 | - $note_content = apply_filters( 'wpinv_get_invoice_note_line_item', $note_content, $note, $echo ); |
|
| 1173 | + $note_content = apply_filters('wpinv_get_invoice_note_line_item', $note_content, $note, $echo); |
|
| 1174 | 1174 | |
| 1175 | - if ( $echo ) { |
|
| 1176 | - echo wp_kses_post( $note_content ); |
|
| 1175 | + if ($echo) { |
|
| 1176 | + echo wp_kses_post($note_content); |
|
| 1177 | 1177 | } else { |
| 1178 | 1178 | return $note_content; |
| 1179 | 1179 | } |
@@ -1186,43 +1186,43 @@ discard block |
||
| 1186 | 1186 | * @return string |
| 1187 | 1187 | */ |
| 1188 | 1188 | function wpinv_get_policy_text() { |
| 1189 | - $privacy_page_id = get_option( 'wp_page_for_privacy_policy', 0 ); |
|
| 1189 | + $privacy_page_id = get_option('wp_page_for_privacy_policy', 0); |
|
| 1190 | 1190 | |
| 1191 | - $text = wpinv_get_option( 'invoicing_privacy_checkout_message', sprintf( __( 'Your personal data will be used to process your invoice, payment and for other purposes described in our %s.', 'invoicing' ), '[wpinv_privacy_policy]' ) ); |
|
| 1191 | + $text = wpinv_get_option('invoicing_privacy_checkout_message', sprintf(__('Your personal data will be used to process your invoice, payment and for other purposes described in our %s.', 'invoicing'), '[wpinv_privacy_policy]')); |
|
| 1192 | 1192 | |
| 1193 | - if ( ! $privacy_page_id ) { |
|
| 1194 | - $privacy_page_id = wpinv_get_option( 'privacy_page', 0 ); |
|
| 1193 | + if (!$privacy_page_id) { |
|
| 1194 | + $privacy_page_id = wpinv_get_option('privacy_page', 0); |
|
| 1195 | 1195 | } |
| 1196 | 1196 | |
| 1197 | - $privacy_link = $privacy_page_id ? '<a href="' . esc_url( get_permalink( $privacy_page_id ) ) . '" class="wpinv-privacy-policy-link" target="_blank">' . __( 'privacy policy', 'invoicing' ) . '</a>' : __( 'privacy policy', 'invoicing' ); |
|
| 1197 | + $privacy_link = $privacy_page_id ? '<a href="' . esc_url(get_permalink($privacy_page_id)) . '" class="wpinv-privacy-policy-link" target="_blank">' . __('privacy policy', 'invoicing') . '</a>' : __('privacy policy', 'invoicing'); |
|
| 1198 | 1198 | |
| 1199 | 1199 | $find_replace = array( |
| 1200 | 1200 | '[wpinv_privacy_policy]' => $privacy_link, |
| 1201 | 1201 | ); |
| 1202 | 1202 | |
| 1203 | - $privacy_text = str_replace( array_keys( $find_replace ), array_values( $find_replace ), $text ); |
|
| 1203 | + $privacy_text = str_replace(array_keys($find_replace), array_values($find_replace), $text); |
|
| 1204 | 1204 | |
| 1205 | - return wp_kses_post( wpautop( $privacy_text ) ); |
|
| 1205 | + return wp_kses_post(wpautop($privacy_text)); |
|
| 1206 | 1206 | } |
| 1207 | 1207 | |
| 1208 | 1208 | function wpinv_oxygen_fix_conflict() { |
| 1209 | 1209 | global $ct_ignore_post_types; |
| 1210 | 1210 | |
| 1211 | - if ( ! is_array( $ct_ignore_post_types ) ) { |
|
| 1211 | + if (!is_array($ct_ignore_post_types)) { |
|
| 1212 | 1212 | $ct_ignore_post_types = array(); |
| 1213 | 1213 | } |
| 1214 | 1214 | |
| 1215 | - $post_types = array( 'wpi_discount', 'wpi_invoice', 'wpi_item', 'wpi_payment_form' ); |
|
| 1215 | + $post_types = array('wpi_discount', 'wpi_invoice', 'wpi_item', 'wpi_payment_form'); |
|
| 1216 | 1216 | |
| 1217 | - foreach ( $post_types as $post_type ) { |
|
| 1217 | + foreach ($post_types as $post_type) { |
|
| 1218 | 1218 | $ct_ignore_post_types[] = $post_type; |
| 1219 | 1219 | |
| 1220 | 1220 | // Ignore post type |
| 1221 | - add_filter( 'pre_option_oxygen_vsb_ignore_post_type_' . $post_type, '__return_true', 999 ); |
|
| 1221 | + add_filter('pre_option_oxygen_vsb_ignore_post_type_' . $post_type, '__return_true', 999); |
|
| 1222 | 1222 | } |
| 1223 | 1223 | |
| 1224 | - remove_filter( 'template_include', 'wpinv_template', 10, 1 ); |
|
| 1225 | - add_filter( 'template_include', 'wpinv_template', 999, 1 ); |
|
| 1224 | + remove_filter('template_include', 'wpinv_template', 10, 1); |
|
| 1225 | + add_filter('template_include', 'wpinv_template', 999, 1); |
|
| 1226 | 1226 | } |
| 1227 | 1227 | |
| 1228 | 1228 | /** |
@@ -1230,10 +1230,10 @@ discard block |
||
| 1230 | 1230 | * |
| 1231 | 1231 | * @param GetPaid_Payment_Form $form |
| 1232 | 1232 | */ |
| 1233 | -function getpaid_display_payment_form( $form ) { |
|
| 1233 | +function getpaid_display_payment_form($form) { |
|
| 1234 | 1234 | |
| 1235 | - if ( is_numeric( $form ) ) { |
|
| 1236 | - $form = new GetPaid_Payment_Form( wpinv_translate_post_id( $form ) ); |
|
| 1235 | + if (is_numeric($form)) { |
|
| 1236 | + $form = new GetPaid_Payment_Form(wpinv_translate_post_id($form)); |
|
| 1237 | 1237 | } |
| 1238 | 1238 | |
| 1239 | 1239 | $form->display(); |
@@ -1243,61 +1243,61 @@ discard block |
||
| 1243 | 1243 | /** |
| 1244 | 1244 | * Helper function to display a item payment form on the frontend. |
| 1245 | 1245 | */ |
| 1246 | -function getpaid_display_item_payment_form( $items ) { |
|
| 1246 | +function getpaid_display_item_payment_form($items) { |
|
| 1247 | 1247 | |
| 1248 | - $form = new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
| 1249 | - $form->set_items( $items ); |
|
| 1248 | + $form = new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
| 1249 | + $form->set_items($items); |
|
| 1250 | 1250 | |
| 1251 | - if ( 0 == count( $form->get_items() ) ) { |
|
| 1251 | + if (0 == count($form->get_items())) { |
|
| 1252 | 1252 | aui()->alert( |
| 1253 | 1253 | array( |
| 1254 | 1254 | 'type' => 'warning', |
| 1255 | - 'content' => __( 'No published items found', 'invoicing' ), |
|
| 1255 | + 'content' => __('No published items found', 'invoicing'), |
|
| 1256 | 1256 | ), |
| 1257 | 1257 | true |
| 1258 | 1258 | ); |
| 1259 | 1259 | return; |
| 1260 | 1260 | } |
| 1261 | 1261 | |
| 1262 | - $extra_items = esc_attr( getpaid_convert_items_to_string( $items ) ); |
|
| 1263 | - $extra_items_key = md5( NONCE_KEY . AUTH_KEY . $extra_items ); |
|
| 1262 | + $extra_items = esc_attr(getpaid_convert_items_to_string($items)); |
|
| 1263 | + $extra_items_key = md5(NONCE_KEY . AUTH_KEY . $extra_items); |
|
| 1264 | 1264 | $extra_items = "<input type='hidden' name='getpaid-form-items' value='$extra_items' />"; |
| 1265 | 1265 | $extra_items .= "<input type='hidden' name='getpaid-form-items-key' value='$extra_items_key' />"; |
| 1266 | 1266 | |
| 1267 | - $form->display( $extra_items ); |
|
| 1267 | + $form->display($extra_items); |
|
| 1268 | 1268 | } |
| 1269 | 1269 | |
| 1270 | 1270 | /** |
| 1271 | 1271 | * Helper function to display an invoice payment form on the frontend. |
| 1272 | 1272 | */ |
| 1273 | -function getpaid_display_invoice_payment_form( $invoice_id ) { |
|
| 1273 | +function getpaid_display_invoice_payment_form($invoice_id) { |
|
| 1274 | 1274 | |
| 1275 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 1275 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 1276 | 1276 | |
| 1277 | - if ( empty( $invoice ) ) { |
|
| 1277 | + if (empty($invoice)) { |
|
| 1278 | 1278 | aui()->alert( |
| 1279 | 1279 | array( |
| 1280 | 1280 | 'type' => 'warning', |
| 1281 | - 'content' => __( 'Invoice not found', 'invoicing' ), |
|
| 1281 | + 'content' => __('Invoice not found', 'invoicing'), |
|
| 1282 | 1282 | ), |
| 1283 | 1283 | true |
| 1284 | 1284 | ); |
| 1285 | 1285 | return; |
| 1286 | 1286 | } |
| 1287 | 1287 | |
| 1288 | - if ( $invoice->is_paid() ) { |
|
| 1288 | + if ($invoice->is_paid()) { |
|
| 1289 | 1289 | aui()->alert( |
| 1290 | 1290 | array( |
| 1291 | 1291 | 'type' => 'warning', |
| 1292 | - 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
| 1292 | + 'content' => __('Invoice has already been paid', 'invoicing'), |
|
| 1293 | 1293 | ), |
| 1294 | 1294 | true |
| 1295 | 1295 | ); |
| 1296 | 1296 | return; |
| 1297 | 1297 | } |
| 1298 | 1298 | |
| 1299 | - $form = new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
| 1300 | - $form->set_items( $invoice->get_items() ); |
|
| 1299 | + $form = new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
| 1300 | + $form->set_items($invoice->get_items()); |
|
| 1301 | 1301 | |
| 1302 | 1302 | $form->display(); |
| 1303 | 1303 | } |
@@ -1305,24 +1305,24 @@ discard block |
||
| 1305 | 1305 | /** |
| 1306 | 1306 | * Helper function to convert item string to array. |
| 1307 | 1307 | */ |
| 1308 | -function getpaid_convert_items_to_array( $items ) { |
|
| 1309 | - $items = array_filter( array_map( 'trim', explode( ',', $items ) ) ); |
|
| 1308 | +function getpaid_convert_items_to_array($items) { |
|
| 1309 | + $items = array_filter(array_map('trim', explode(',', $items))); |
|
| 1310 | 1310 | $prepared = array(); |
| 1311 | 1311 | |
| 1312 | - foreach ( $items as $item ) { |
|
| 1313 | - $data = array_map( 'trim', explode( '|', $item ) ); |
|
| 1312 | + foreach ($items as $item) { |
|
| 1313 | + $data = array_map('trim', explode('|', $item)); |
|
| 1314 | 1314 | |
| 1315 | - if ( empty( $data[0] ) || ! is_numeric( $data[0] ) ) { |
|
| 1315 | + if (empty($data[0]) || !is_numeric($data[0])) { |
|
| 1316 | 1316 | continue; |
| 1317 | 1317 | } |
| 1318 | 1318 | |
| 1319 | 1319 | $quantity = 1; |
| 1320 | - if ( isset( $data[1] ) && is_numeric( $data[1] ) ) { |
|
| 1320 | + if (isset($data[1]) && is_numeric($data[1])) { |
|
| 1321 | 1321 | $quantity = (float) $data[1]; |
| 1322 | 1322 | } |
| 1323 | 1323 | |
| 1324 | 1324 | // WPML support. |
| 1325 | - $prepared[ wpinv_translate_post_id( $data[0] ) ] = $quantity; |
|
| 1325 | + $prepared[wpinv_translate_post_id($data[0])] = $quantity; |
|
| 1326 | 1326 | |
| 1327 | 1327 | } |
| 1328 | 1328 | |
@@ -1332,13 +1332,13 @@ discard block |
||
| 1332 | 1332 | /** |
| 1333 | 1333 | * Helper function to convert item array to string. |
| 1334 | 1334 | */ |
| 1335 | -function getpaid_convert_items_to_string( $items ) { |
|
| 1335 | +function getpaid_convert_items_to_string($items) { |
|
| 1336 | 1336 | $prepared = array(); |
| 1337 | 1337 | |
| 1338 | - foreach ( $items as $item => $quantity ) { |
|
| 1338 | + foreach ($items as $item => $quantity) { |
|
| 1339 | 1339 | $prepared[] = "$item|$quantity"; |
| 1340 | 1340 | } |
| 1341 | - return implode( ',', $prepared ); |
|
| 1341 | + return implode(',', $prepared); |
|
| 1342 | 1342 | } |
| 1343 | 1343 | |
| 1344 | 1344 | /** |
@@ -1346,21 +1346,21 @@ discard block |
||
| 1346 | 1346 | * |
| 1347 | 1347 | * Provide a label and one of $form, $items or $invoice. |
| 1348 | 1348 | */ |
| 1349 | -function getpaid_get_payment_button( $label, $form = null, $items = null, $invoice = null ) { |
|
| 1350 | - $label = sanitize_text_field( $label ); |
|
| 1349 | +function getpaid_get_payment_button($label, $form = null, $items = null, $invoice = null) { |
|
| 1350 | + $label = sanitize_text_field($label); |
|
| 1351 | 1351 | |
| 1352 | - if ( ! empty( $form ) ) { |
|
| 1353 | - $form = esc_attr( $form ); |
|
| 1352 | + if (!empty($form)) { |
|
| 1353 | + $form = esc_attr($form); |
|
| 1354 | 1354 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-form='$form'>$label</button>"; |
| 1355 | 1355 | } |
| 1356 | 1356 | |
| 1357 | - if ( ! empty( $items ) ) { |
|
| 1358 | - $items = esc_attr( $items ); |
|
| 1357 | + if (!empty($items)) { |
|
| 1358 | + $items = esc_attr($items); |
|
| 1359 | 1359 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-item='$items'>$label</button>"; |
| 1360 | 1360 | } |
| 1361 | 1361 | |
| 1362 | - if ( ! empty( $invoice ) ) { |
|
| 1363 | - $invoice = esc_attr( $invoice ); |
|
| 1362 | + if (!empty($invoice)) { |
|
| 1363 | + $invoice = esc_attr($invoice); |
|
| 1364 | 1364 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-invoice='$invoice'>$label</button>"; |
| 1365 | 1365 | } |
| 1366 | 1366 | |
@@ -1371,17 +1371,17 @@ discard block |
||
| 1371 | 1371 | * |
| 1372 | 1372 | * @param WPInv_Invoice $invoice |
| 1373 | 1373 | */ |
| 1374 | -function getpaid_the_invoice_description( $invoice ) { |
|
| 1374 | +function getpaid_the_invoice_description($invoice) { |
|
| 1375 | 1375 | $description = $invoice->get_description(); |
| 1376 | 1376 | |
| 1377 | - if ( empty( $description ) ) { |
|
| 1377 | + if (empty($description)) { |
|
| 1378 | 1378 | return; |
| 1379 | 1379 | } |
| 1380 | 1380 | |
| 1381 | - echo "<small class='getpaid-invoice-description text-dark p-2 form-text' style='margin-bottom: 20px; border-left: 2px solid #2196F3;'><em>" . wp_kses_post( wpautop( $description ) ) . "</em></small>"; |
|
| 1381 | + echo "<small class='getpaid-invoice-description text-dark p-2 form-text' style='margin-bottom: 20px; border-left: 2px solid #2196F3;'><em>" . wp_kses_post(wpautop($description)) . "</em></small>"; |
|
| 1382 | 1382 | } |
| 1383 | -add_action( 'getpaid_invoice_line_items', 'getpaid_the_invoice_description', 100 ); |
|
| 1384 | -add_action( 'wpinv_email_billing_details', 'getpaid_the_invoice_description', 100 ); |
|
| 1383 | +add_action('getpaid_invoice_line_items', 'getpaid_the_invoice_description', 100); |
|
| 1384 | +add_action('wpinv_email_billing_details', 'getpaid_the_invoice_description', 100); |
|
| 1385 | 1385 | |
| 1386 | 1386 | /** |
| 1387 | 1387 | * Render element on a form. |
@@ -1389,79 +1389,79 @@ discard block |
||
| 1389 | 1389 | * @param array $element |
| 1390 | 1390 | * @param GetPaid_Payment_Form $form |
| 1391 | 1391 | */ |
| 1392 | -function getpaid_payment_form_element( $element, $form ) { |
|
| 1392 | +function getpaid_payment_form_element($element, $form) { |
|
| 1393 | 1393 | |
| 1394 | 1394 | // Set up the args. |
| 1395 | - $element_type = trim( $element['type'] ); |
|
| 1395 | + $element_type = trim($element['type']); |
|
| 1396 | 1396 | $element['form'] = $form; |
| 1397 | - extract( $element ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract |
|
| 1397 | + extract($element); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract |
|
| 1398 | 1398 | |
| 1399 | 1399 | // Try to locate the appropriate template. |
| 1400 | - $located = wpinv_locate_template( "payment-forms/elements/$element_type.php" ); |
|
| 1400 | + $located = wpinv_locate_template("payment-forms/elements/$element_type.php"); |
|
| 1401 | 1401 | |
| 1402 | 1402 | // Abort if this is not our element. |
| 1403 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
| 1403 | + if (empty($located) || !file_exists($located)) { |
|
| 1404 | 1404 | return; |
| 1405 | 1405 | } |
| 1406 | 1406 | |
| 1407 | 1407 | // Generate the class and id of the element. |
| 1408 | - $wrapper_class = 'getpaid-payment-form-element-' . trim( esc_attr( $element_type ) ); |
|
| 1409 | - $id = isset( $id ) ? $id : uniqid( 'gp' ); |
|
| 1408 | + $wrapper_class = 'getpaid-payment-form-element-' . trim(esc_attr($element_type)); |
|
| 1409 | + $id = isset($id) ? $id : uniqid('gp'); |
|
| 1410 | 1410 | |
| 1411 | - $element_id = ! empty( $element['label'] ) ? sanitize_title( $element['label'] ) : $id; |
|
| 1412 | - $query_value = isset( $_GET[ $element_id ] ) ? wpinv_clean( urldecode_deep( $_GET[ $element_id ] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 1411 | + $element_id = !empty($element['label']) ? sanitize_title($element['label']) : $id; |
|
| 1412 | + $query_value = isset($_GET[$element_id]) ? wpinv_clean(urldecode_deep($_GET[$element_id])) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 1413 | 1413 | |
| 1414 | 1414 | $element_id = 'getpaid-' . $element_id; |
| 1415 | - if ( ! empty( $GLOBALS['rendered_getpaid_forms'][ $form->get_id() ] ) ) { |
|
| 1416 | - $element_id = $element_id . '-' . $GLOBALS['rendered_getpaid_forms'][ $form->get_id() ]; |
|
| 1415 | + if (!empty($GLOBALS['rendered_getpaid_forms'][$form->get_id()])) { |
|
| 1416 | + $element_id = $element_id . '-' . $GLOBALS['rendered_getpaid_forms'][$form->get_id()]; |
|
| 1417 | 1417 | } |
| 1418 | 1418 | |
| 1419 | 1419 | // Echo the opening wrapper. |
| 1420 | - echo "<div class='getpaid-payment-form-element " . esc_attr( $wrapper_class ) . "'>"; |
|
| 1420 | + echo "<div class='getpaid-payment-form-element " . esc_attr($wrapper_class) . "'>"; |
|
| 1421 | 1421 | |
| 1422 | 1422 | // Fires before displaying a given element type's content. |
| 1423 | - do_action( "getpaid_before_payment_form_{$element_type}_element", $element, $form ); |
|
| 1423 | + do_action("getpaid_before_payment_form_{$element_type}_element", $element, $form); |
|
| 1424 | 1424 | |
| 1425 | 1425 | // Include the template for the element. |
| 1426 | 1426 | include $located; |
| 1427 | 1427 | |
| 1428 | 1428 | // Fires after displaying a given element type's content. |
| 1429 | - do_action( "getpaid_payment_form_{$element_type}_element", $element, $form ); |
|
| 1429 | + do_action("getpaid_payment_form_{$element_type}_element", $element, $form); |
|
| 1430 | 1430 | |
| 1431 | 1431 | // Echo the closing wrapper. |
| 1432 | 1432 | echo '</div>'; |
| 1433 | 1433 | } |
| 1434 | -add_action( 'getpaid_payment_form_element', 'getpaid_payment_form_element', 10, 2 ); |
|
| 1434 | +add_action('getpaid_payment_form_element', 'getpaid_payment_form_element', 10, 2); |
|
| 1435 | 1435 | |
| 1436 | 1436 | /** |
| 1437 | 1437 | * Render an element's edit page. |
| 1438 | 1438 | * |
| 1439 | 1439 | * @param WP_Post $post |
| 1440 | 1440 | */ |
| 1441 | -function getpaid_payment_form_edit_element_template( $post ) { |
|
| 1441 | +function getpaid_payment_form_edit_element_template($post) { |
|
| 1442 | 1442 | |
| 1443 | 1443 | // Retrieve all elements. |
| 1444 | - $all_elements = wp_list_pluck( wpinv_get_data( 'payment-form-elements' ), 'type' ); |
|
| 1444 | + $all_elements = wp_list_pluck(wpinv_get_data('payment-form-elements'), 'type'); |
|
| 1445 | 1445 | |
| 1446 | - foreach ( $all_elements as $element ) { |
|
| 1446 | + foreach ($all_elements as $element) { |
|
| 1447 | 1447 | |
| 1448 | 1448 | // Try to locate the appropriate template. |
| 1449 | - $element = esc_attr( sanitize_key( $element ) ); |
|
| 1450 | - $located = wpinv_locate_template( "payment-forms-admin/edit/$element.php" ); |
|
| 1449 | + $element = esc_attr(sanitize_key($element)); |
|
| 1450 | + $located = wpinv_locate_template("payment-forms-admin/edit/$element.php"); |
|
| 1451 | 1451 | |
| 1452 | 1452 | // Continue if this is not our element. |
| 1453 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
| 1453 | + if (empty($located) || !file_exists($located)) { |
|
| 1454 | 1454 | continue; |
| 1455 | 1455 | } |
| 1456 | 1456 | |
| 1457 | 1457 | // Include the template for the element. |
| 1458 | - echo "<div v-if=\"active_form_element.type=='" . esc_attr( $element ) . "'\">"; |
|
| 1458 | + echo "<div v-if=\"active_form_element.type=='" . esc_attr($element) . "'\">"; |
|
| 1459 | 1459 | include $located; |
| 1460 | 1460 | echo '</div>'; |
| 1461 | 1461 | } |
| 1462 | 1462 | |
| 1463 | 1463 | } |
| 1464 | -add_action( 'getpaid_payment_form_edit_element_template', 'getpaid_payment_form_edit_element_template' ); |
|
| 1464 | +add_action('getpaid_payment_form_edit_element_template', 'getpaid_payment_form_edit_element_template'); |
|
| 1465 | 1465 | |
| 1466 | 1466 | /** |
| 1467 | 1467 | * Render an element's preview. |
@@ -1470,27 +1470,27 @@ discard block |
||
| 1470 | 1470 | function getpaid_payment_form_render_element_preview_template() { |
| 1471 | 1471 | |
| 1472 | 1472 | // Retrieve all elements. |
| 1473 | - $all_elements = wp_list_pluck( wpinv_get_data( 'payment-form-elements' ), 'type' ); |
|
| 1473 | + $all_elements = wp_list_pluck(wpinv_get_data('payment-form-elements'), 'type'); |
|
| 1474 | 1474 | |
| 1475 | - foreach ( $all_elements as $element ) { |
|
| 1475 | + foreach ($all_elements as $element) { |
|
| 1476 | 1476 | |
| 1477 | 1477 | // Try to locate the appropriate template. |
| 1478 | - $element = sanitize_key( $element ); |
|
| 1479 | - $located = wpinv_locate_template( "payment-forms-admin/previews/$element.php" ); |
|
| 1478 | + $element = sanitize_key($element); |
|
| 1479 | + $located = wpinv_locate_template("payment-forms-admin/previews/$element.php"); |
|
| 1480 | 1480 | |
| 1481 | 1481 | // Continue if this is not our element. |
| 1482 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
| 1482 | + if (empty($located) || !file_exists($located)) { |
|
| 1483 | 1483 | continue; |
| 1484 | 1484 | } |
| 1485 | 1485 | |
| 1486 | 1486 | // Include the template for the element. |
| 1487 | - echo "<div v-if=\"form_element.type=='" . esc_html( $element ) . "'\">"; |
|
| 1487 | + echo "<div v-if=\"form_element.type=='" . esc_html($element) . "'\">"; |
|
| 1488 | 1488 | include $located; |
| 1489 | 1489 | echo '</div>'; |
| 1490 | 1490 | } |
| 1491 | 1491 | |
| 1492 | 1492 | } |
| 1493 | -add_action( 'wpinv_payment_form_render_element_template', 'getpaid_payment_form_render_element_preview_template' ); |
|
| 1493 | +add_action('wpinv_payment_form_render_element_template', 'getpaid_payment_form_render_element_preview_template'); |
|
| 1494 | 1494 | |
| 1495 | 1495 | /** |
| 1496 | 1496 | * Shows a list of gateways that support recurring payments. |
@@ -1498,17 +1498,17 @@ discard block |
||
| 1498 | 1498 | function wpinv_get_recurring_gateways_text() { |
| 1499 | 1499 | $gateways = array(); |
| 1500 | 1500 | |
| 1501 | - foreach ( wpinv_get_payment_gateways() as $key => $gateway ) { |
|
| 1502 | - if ( wpinv_gateway_support_subscription( $key ) ) { |
|
| 1503 | - $gateways[] = sanitize_text_field( $gateway['admin_label'] ); |
|
| 1501 | + foreach (wpinv_get_payment_gateways() as $key => $gateway) { |
|
| 1502 | + if (wpinv_gateway_support_subscription($key)) { |
|
| 1503 | + $gateways[] = sanitize_text_field($gateway['admin_label']); |
|
| 1504 | 1504 | } |
| 1505 | 1505 | } |
| 1506 | 1506 | |
| 1507 | - if ( empty( $gateways ) ) { |
|
| 1508 | - return "<span class='form-text text-danger'>" . __( 'No active gateways support subscription payments.', 'invoicing' ) . '</span>'; |
|
| 1507 | + if (empty($gateways)) { |
|
| 1508 | + return "<span class='form-text text-danger'>" . __('No active gateways support subscription payments.', 'invoicing') . '</span>'; |
|
| 1509 | 1509 | } |
| 1510 | 1510 | |
| 1511 | - return "<span class='form-text text-muted'>" . wp_sprintf( __( 'Subscription payments only supported by: %s', 'invoicing' ), implode( ', ', $gateways ) ) . '</span>'; |
|
| 1511 | + return "<span class='form-text text-muted'>" . wp_sprintf(__('Subscription payments only supported by: %s', 'invoicing'), implode(', ', $gateways)) . '</span>'; |
|
| 1512 | 1512 | |
| 1513 | 1513 | } |
| 1514 | 1514 | |
@@ -1518,7 +1518,7 @@ discard block |
||
| 1518 | 1518 | * @return GetPaid_Template |
| 1519 | 1519 | */ |
| 1520 | 1520 | function getpaid_template() { |
| 1521 | - return getpaid()->get( 'template' ); |
|
| 1521 | + return getpaid()->get('template'); |
|
| 1522 | 1522 | } |
| 1523 | 1523 | |
| 1524 | 1524 | /** |
@@ -1527,8 +1527,8 @@ discard block |
||
| 1527 | 1527 | * @param array args |
| 1528 | 1528 | * @return string |
| 1529 | 1529 | */ |
| 1530 | -function getpaid_paginate_links( $args ) { |
|
| 1531 | - return str_replace( 'page-link dots', 'page-link text-dark', aui()->pagination( $args ) ); |
|
| 1530 | +function getpaid_paginate_links($args) { |
|
| 1531 | + return str_replace('page-link dots', 'page-link text-dark', aui()->pagination($args)); |
|
| 1532 | 1532 | } |
| 1533 | 1533 | |
| 1534 | 1534 | /** |
@@ -1538,22 +1538,22 @@ discard block |
||
| 1538 | 1538 | * @param string state |
| 1539 | 1539 | * @return string |
| 1540 | 1540 | */ |
| 1541 | -function getpaid_get_states_select_markup( $country, $state, $placeholder, $label, $help_text, $required = false, $wrapper_class = 'col-12', $field_name = 'wpinv_state', $echo = false ) { |
|
| 1541 | +function getpaid_get_states_select_markup($country, $state, $placeholder, $label, $help_text, $required = false, $wrapper_class = 'col-12', $field_name = 'wpinv_state', $echo = false) { |
|
| 1542 | 1542 | |
| 1543 | - $states = wpinv_get_country_states( $country ); |
|
| 1544 | - $uniqid = uniqid( '_' ); |
|
| 1543 | + $states = wpinv_get_country_states($country); |
|
| 1544 | + $uniqid = uniqid('_'); |
|
| 1545 | 1545 | |
| 1546 | - if ( ! empty( $states ) ) { |
|
| 1546 | + if (!empty($states)) { |
|
| 1547 | 1547 | |
| 1548 | 1548 | return aui()->select( |
| 1549 | 1549 | array( |
| 1550 | 1550 | 'options' => $states, |
| 1551 | - 'name' => esc_attr( $field_name ), |
|
| 1552 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 1553 | - 'value' => sanitize_text_field( $state ), |
|
| 1551 | + 'name' => esc_attr($field_name), |
|
| 1552 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
| 1553 | + 'value' => sanitize_text_field($state), |
|
| 1554 | 1554 | 'placeholder' => $placeholder, |
| 1555 | 1555 | 'required' => $required, |
| 1556 | - 'label' => wp_kses_post( $label ), |
|
| 1556 | + 'label' => wp_kses_post($label), |
|
| 1557 | 1557 | 'label_type' => 'vertical', |
| 1558 | 1558 | 'help_text' => $help_text, |
| 1559 | 1559 | 'class' => 'getpaid-address-field wpinv_state', |
@@ -1570,14 +1570,14 @@ discard block |
||
| 1570 | 1570 | |
| 1571 | 1571 | return aui()->input( |
| 1572 | 1572 | array( |
| 1573 | - 'name' => esc_attr( $field_name ), |
|
| 1574 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 1573 | + 'name' => esc_attr($field_name), |
|
| 1574 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
| 1575 | 1575 | 'placeholder' => $placeholder, |
| 1576 | 1576 | 'required' => $required, |
| 1577 | - 'label' => wp_kses_post( $label ), |
|
| 1577 | + 'label' => wp_kses_post($label), |
|
| 1578 | 1578 | 'label_type' => 'vertical', |
| 1579 | 1579 | 'help_text' => $help_text, |
| 1580 | - 'value' => sanitize_text_field( $state ), |
|
| 1580 | + 'value' => sanitize_text_field($state), |
|
| 1581 | 1581 | 'class' => 'getpaid-address-field wpinv_state', |
| 1582 | 1582 | 'wrap_class' => "$wrapper_class getpaid-address-field-wrapper__state", |
| 1583 | 1583 | 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__state', |
@@ -1596,16 +1596,16 @@ discard block |
||
| 1596 | 1596 | * @param array $element |
| 1597 | 1597 | * @return string |
| 1598 | 1598 | */ |
| 1599 | -function getpaid_get_form_element_grid_class( $element ) { |
|
| 1599 | +function getpaid_get_form_element_grid_class($element) { |
|
| 1600 | 1600 | |
| 1601 | 1601 | $class = 'col-12'; |
| 1602 | - $width = empty( $element['grid_width'] ) ? 'full' : $element['grid_width']; |
|
| 1602 | + $width = empty($element['grid_width']) ? 'full' : $element['grid_width']; |
|
| 1603 | 1603 | |
| 1604 | - if ( $width == 'half' ) { |
|
| 1604 | + if ($width == 'half') { |
|
| 1605 | 1605 | $class .= ' col-md-6'; |
| 1606 | 1606 | } |
| 1607 | 1607 | |
| 1608 | - if ( $width == 'third' ) { |
|
| 1608 | + if ($width == 'third') { |
|
| 1609 | 1609 | $class .= ' col-md-4'; |
| 1610 | 1610 | } |
| 1611 | 1611 | |
@@ -1620,15 +1620,15 @@ discard block |
||
| 1620 | 1620 | * |
| 1621 | 1621 | * @return string |
| 1622 | 1622 | */ |
| 1623 | -function getpaid_embed_url( $payment_form = false, $items = false ) { |
|
| 1623 | +function getpaid_embed_url($payment_form = false, $items = false) { |
|
| 1624 | 1624 | |
| 1625 | 1625 | return add_query_arg( |
| 1626 | 1626 | array( |
| 1627 | 1627 | 'getpaid_embed' => 1, |
| 1628 | - 'form' => $payment_form ? absint( $payment_form ) : false, |
|
| 1629 | - 'item' => $items ? urlencode( $items ) : false, |
|
| 1628 | + 'form' => $payment_form ? absint($payment_form) : false, |
|
| 1629 | + 'item' => $items ? urlencode($items) : false, |
|
| 1630 | 1630 | ), |
| 1631 | - home_url( 'index.php' ) |
|
| 1631 | + home_url('index.php') |
|
| 1632 | 1632 | ); |
| 1633 | 1633 | |
| 1634 | 1634 | } |
@@ -1638,13 +1638,13 @@ discard block |
||
| 1638 | 1638 | * |
| 1639 | 1639 | * @return string |
| 1640 | 1640 | */ |
| 1641 | -function getpaid_filter_embed_template( $template ) { |
|
| 1641 | +function getpaid_filter_embed_template($template) { |
|
| 1642 | 1642 | |
| 1643 | - if ( isset( $_GET['getpaid_embed'] ) ) { |
|
| 1644 | - wpinv_get_template( 'payment-forms/embed.php' ); |
|
| 1643 | + if (isset($_GET['getpaid_embed'])) { |
|
| 1644 | + wpinv_get_template('payment-forms/embed.php'); |
|
| 1645 | 1645 | exit; |
| 1646 | 1646 | } |
| 1647 | 1647 | |
| 1648 | 1648 | return $template; |
| 1649 | 1649 | } |
| 1650 | -add_filter( 'template_include', 'getpaid_filter_embed_template' ); |
|
| 1650 | +add_filter('template_include', 'getpaid_filter_embed_template'); |
|
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | $tax_rates = GetPaid_Tax::get_all_tax_rates(); |
| 10 | 10 | $dummy_rate = array( |
@@ -13,11 +13,11 @@ discard block |
||
| 13 | 13 | 'global' => true, |
| 14 | 14 | 'rate' => wpinv_get_default_tax_rate(), |
| 15 | 15 | 'reduced_rate' => 5, |
| 16 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 16 | + 'name' => __('VAT', 'invoicing'), |
|
| 17 | 17 | ); |
| 18 | 18 | |
| 19 | 19 | $reset_url = wp_nonce_url( |
| 20 | - add_query_arg( 'getpaid-admin-action', 'reset_tax_rates' ), |
|
| 20 | + add_query_arg('getpaid-admin-action', 'reset_tax_rates'), |
|
| 21 | 21 | 'getpaid-nonce', |
| 22 | 22 | 'getpaid-nonce' |
| 23 | 23 | ); |
@@ -25,34 +25,34 @@ discard block |
||
| 25 | 25 | ?> |
| 26 | 26 | <div class="table-responsive"> |
| 27 | 27 | <table id="wpinv_tax_rates" class="widefat fixed table"> |
| 28 | - <caption><?php echo esc_html_e( 'Enter tax rates for specific regions.', 'invoicing' ); ?></caption> |
|
| 28 | + <caption><?php echo esc_html_e('Enter tax rates for specific regions.', 'invoicing'); ?></caption> |
|
| 29 | 29 | |
| 30 | 30 | <thead> |
| 31 | 31 | <tr class="table-light"> |
| 32 | 32 | |
| 33 | 33 | <th scope="col" class="border-bottom border-top"> |
| 34 | - <?php esc_html_e( 'Country', 'invoicing' ); ?> |
|
| 35 | - <?php getpaid_get_help_tip( __( 'Optionally limit this tax rate to a specific country.', 'invoicing' ), 'position-static', true ); ?> |
|
| 34 | + <?php esc_html_e('Country', 'invoicing'); ?> |
|
| 35 | + <?php getpaid_get_help_tip(__('Optionally limit this tax rate to a specific country.', 'invoicing'), 'position-static', true); ?> |
|
| 36 | 36 | </th> |
| 37 | 37 | |
| 38 | 38 | <th scope="col" class="border-bottom border-top"> |
| 39 | - <?php esc_html_e( 'State', 'invoicing' ); ?> |
|
| 40 | - <?php getpaid_get_help_tip( __( 'Separate state codes using a comma or leave blank to apply country wide.', 'invoicing' ), 'position-static', true ); ?> |
|
| 39 | + <?php esc_html_e('State', 'invoicing'); ?> |
|
| 40 | + <?php getpaid_get_help_tip(__('Separate state codes using a comma or leave blank to apply country wide.', 'invoicing'), 'position-static', true); ?> |
|
| 41 | 41 | </th> |
| 42 | 42 | |
| 43 | 43 | <th scope="col" class="border-bottom border-top"> |
| 44 | - <?php esc_html_e( 'Standard Rate %', 'invoicing' ); ?> |
|
| 45 | - <?php getpaid_get_help_tip( __( 'The tax rate (percentage) to charge on items that use the "Standard rate" tax class.', 'invoicing' ), 'position-static', true ); ?> |
|
| 44 | + <?php esc_html_e('Standard Rate %', 'invoicing'); ?> |
|
| 45 | + <?php getpaid_get_help_tip(__('The tax rate (percentage) to charge on items that use the "Standard rate" tax class.', 'invoicing'), 'position-static', true); ?> |
|
| 46 | 46 | </th> |
| 47 | 47 | |
| 48 | 48 | <th scope="col" class="border-bottom border-top"> |
| 49 | - <?php esc_html_e( 'Reduced Rate %', 'invoicing' ); ?> |
|
| 50 | - <?php getpaid_get_help_tip( __( 'The tax rate (percentage) to charge on items that use the "Reduced rate" tax class.', 'invoicing' ), 'position-static', true ); ?> |
|
| 49 | + <?php esc_html_e('Reduced Rate %', 'invoicing'); ?> |
|
| 50 | + <?php getpaid_get_help_tip(__('The tax rate (percentage) to charge on items that use the "Reduced rate" tax class.', 'invoicing'), 'position-static', true); ?> |
|
| 51 | 51 | </th> |
| 52 | 52 | |
| 53 | 53 | <th scope="col" class="border-bottom border-top"> |
| 54 | - <?php esc_html_e( 'Tax Name', 'invoicing' ); ?> |
|
| 55 | - <?php getpaid_get_help_tip( __( 'The name of this tax, e.g VAT.', 'invoicing' ), 'position-static', true ); ?> |
|
| 54 | + <?php esc_html_e('Tax Name', 'invoicing'); ?> |
|
| 55 | + <?php getpaid_get_help_tip(__('The name of this tax, e.g VAT.', 'invoicing'), 'position-static', true); ?> |
|
| 56 | 56 | </th> |
| 57 | 57 | |
| 58 | 58 | <th scope="col" class="border-bottom border-top" style="width:32px"> </th> |
@@ -61,19 +61,19 @@ discard block |
||
| 61 | 61 | </thead> |
| 62 | 62 | |
| 63 | 63 | <tbody> |
| 64 | - <?php array_walk( $tax_rates, 'wpinv_tax_rate_callback' ); ?> |
|
| 64 | + <?php array_walk($tax_rates, 'wpinv_tax_rate_callback'); ?> |
|
| 65 | 65 | </tbody> |
| 66 | 66 | |
| 67 | 67 | <tfoot> |
| 68 | 68 | <tr class="table-light"> |
| 69 | 69 | <td colspan="6" class="border-top"> |
| 70 | 70 | |
| 71 | - <button type="button" class="button button-secondary wpinv_add_tax_rate" aria-label="<?php esc_attr_e( 'Add Tax Rate', 'invoicing' ); ?>"> |
|
| 72 | - <span><?php esc_html_e( 'Add Tax Rate', 'invoicing' ); ?></span> |
|
| 71 | + <button type="button" class="button button-secondary wpinv_add_tax_rate" aria-label="<?php esc_attr_e('Add Tax Rate', 'invoicing'); ?>"> |
|
| 72 | + <span><?php esc_html_e('Add Tax Rate', 'invoicing'); ?></span> |
|
| 73 | 73 | </button> |
| 74 | 74 | |
| 75 | - <a href="<?php echo esc_url( $reset_url ); ?>" class="button button-secondary wpinv_reset_tax_rates" aria-label="<?php esc_attr_e( 'Reset Tax Rates', 'invoicing' ); ?>"> |
|
| 76 | - <span><?php esc_html_e( 'Reset Tax Rates', 'invoicing' ); ?></span> |
|
| 75 | + <a href="<?php echo esc_url($reset_url); ?>" class="button button-secondary wpinv_reset_tax_rates" aria-label="<?php esc_attr_e('Reset Tax Rates', 'invoicing'); ?>"> |
|
| 76 | + <span><?php esc_html_e('Reset Tax Rates', 'invoicing'); ?></span> |
|
| 77 | 77 | </a> |
| 78 | 78 | </td> |
| 79 | 79 | </tr> |
@@ -82,6 +82,6 @@ discard block |
||
| 82 | 82 | </div> |
| 83 | 83 | |
| 84 | 84 | <script type="text/html" id="tmpl-wpinv-tax-rate-row"> |
| 85 | - <?php wpinv_tax_rate_callback( $dummy_rate, 0, true ); ?> |
|
| 85 | + <?php wpinv_tax_rate_callback($dummy_rate, 0, true); ?> |
|
| 86 | 86 | </script> |
| 87 | 87 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; // Exit if accessed directly |
| 4 | 4 | } |
| 5 | 5 | |
@@ -14,18 +14,18 @@ discard block |
||
| 14 | 14 | * Hook in methods. |
| 15 | 15 | */ |
| 16 | 16 | public static function init() { |
| 17 | - add_action( 'init', array( __CLASS__, 'init_hooks' ), 0 ); |
|
| 18 | - add_action( 'admin_notices', array( __CLASS__, 'notices' ) ); |
|
| 17 | + add_action('init', array(__CLASS__, 'init_hooks'), 0); |
|
| 18 | + add_action('admin_notices', array(__CLASS__, 'notices')); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | public static function init_hooks() { |
| 22 | - if ( false === ( $page_uris = get_transient( 'wpinv_cache_excluded_uris' ) ) ) { |
|
| 23 | - $checkout_page = wpinv_get_option( 'checkout_page', '' ); |
|
| 24 | - $success_page = wpinv_get_option( 'success_page', '' ); |
|
| 25 | - $failure_page = wpinv_get_option( 'failure_page', '' ); |
|
| 26 | - $history_page = wpinv_get_option( 'invoice_history_page', '' ); |
|
| 27 | - $subscr_page = wpinv_get_option( 'invoice_subscription_page', '' ); |
|
| 28 | - if ( empty( $checkout_page ) || empty( $success_page ) || empty( $failure_page ) || empty( $history_page ) || empty( $subscr_page ) ) { |
|
| 22 | + if (false === ($page_uris = get_transient('wpinv_cache_excluded_uris'))) { |
|
| 23 | + $checkout_page = wpinv_get_option('checkout_page', ''); |
|
| 24 | + $success_page = wpinv_get_option('success_page', ''); |
|
| 25 | + $failure_page = wpinv_get_option('failure_page', ''); |
|
| 26 | + $history_page = wpinv_get_option('invoice_history_page', ''); |
|
| 27 | + $subscr_page = wpinv_get_option('invoice_subscription_page', ''); |
|
| 28 | + if (empty($checkout_page) || empty($success_page) || empty($failure_page) || empty($history_page) || empty($subscr_page)) { |
|
| 29 | 29 | return; |
| 30 | 30 | } |
| 31 | 31 | |
@@ -39,34 +39,34 @@ discard block |
||
| 39 | 39 | $page_uris[] = 'p=' . $subscr_page; |
| 40 | 40 | |
| 41 | 41 | // Exclude permalinks |
| 42 | - $checkout_page = get_post( $checkout_page ); |
|
| 43 | - $success_page = get_post( $success_page ); |
|
| 44 | - $failure_page = get_post( $failure_page ); |
|
| 45 | - $history_page = get_post( $history_page ); |
|
| 46 | - $subscr_page = get_post( $subscr_page ); |
|
| 42 | + $checkout_page = get_post($checkout_page); |
|
| 43 | + $success_page = get_post($success_page); |
|
| 44 | + $failure_page = get_post($failure_page); |
|
| 45 | + $history_page = get_post($history_page); |
|
| 46 | + $subscr_page = get_post($subscr_page); |
|
| 47 | 47 | |
| 48 | - if ( ! is_null( $checkout_page ) ) { |
|
| 48 | + if (!is_null($checkout_page)) { |
|
| 49 | 49 | $page_uris[] = '/' . $checkout_page->post_name; |
| 50 | 50 | } |
| 51 | - if ( ! is_null( $success_page ) ) { |
|
| 51 | + if (!is_null($success_page)) { |
|
| 52 | 52 | $page_uris[] = '/' . $success_page->post_name; |
| 53 | 53 | } |
| 54 | - if ( ! is_null( $failure_page ) ) { |
|
| 54 | + if (!is_null($failure_page)) { |
|
| 55 | 55 | $page_uris[] = '/' . $failure_page->post_name; |
| 56 | 56 | } |
| 57 | - if ( ! is_null( $history_page ) ) { |
|
| 57 | + if (!is_null($history_page)) { |
|
| 58 | 58 | $page_uris[] = '/' . $history_page->post_name; |
| 59 | 59 | } |
| 60 | - if ( ! is_null( $subscr_page ) ) { |
|
| 60 | + if (!is_null($subscr_page)) { |
|
| 61 | 61 | $page_uris[] = '/' . $subscr_page->post_name; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - set_transient( 'wpinv_cache_excluded_uris', $page_uris ); |
|
| 64 | + set_transient('wpinv_cache_excluded_uris', $page_uris); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - if ( is_array( $page_uris ) ) { |
|
| 68 | - foreach ( $page_uris as $uri ) { |
|
| 69 | - if ( strstr( $_SERVER['REQUEST_URI'], $uri ) ) { |
|
| 67 | + if (is_array($page_uris)) { |
|
| 68 | + foreach ($page_uris as $uri) { |
|
| 69 | + if (strstr($_SERVER['REQUEST_URI'], $uri)) { |
|
| 70 | 70 | self::nocache(); |
| 71 | 71 | break; |
| 72 | 72 | } |
@@ -79,14 +79,14 @@ discard block |
||
| 79 | 79 | * @access private |
| 80 | 80 | */ |
| 81 | 81 | private static function nocache() { |
| 82 | - if ( ! defined( 'DONOTCACHEPAGE' ) ) { |
|
| 83 | - define( 'DONOTCACHEPAGE', true ); |
|
| 82 | + if (!defined('DONOTCACHEPAGE')) { |
|
| 83 | + define('DONOTCACHEPAGE', true); |
|
| 84 | 84 | } |
| 85 | - if ( ! defined( 'DONOTCACHEOBJECT' ) ) { |
|
| 86 | - define( 'DONOTCACHEOBJECT', true ); |
|
| 85 | + if (!defined('DONOTCACHEOBJECT')) { |
|
| 86 | + define('DONOTCACHEOBJECT', true); |
|
| 87 | 87 | } |
| 88 | - if ( ! defined( 'DONOTCACHEDB' ) ) { |
|
| 89 | - define( 'DONOTCACHEDB', true ); |
|
| 88 | + if (!defined('DONOTCACHEDB')) { |
|
| 89 | + define('DONOTCACHEDB', true); |
|
| 90 | 90 | } |
| 91 | 91 | nocache_headers(); |
| 92 | 92 | } |
@@ -95,18 +95,18 @@ discard block |
||
| 95 | 95 | * notices function. |
| 96 | 96 | */ |
| 97 | 97 | public static function notices() { |
| 98 | - if ( ! function_exists( 'w3tc_pgcache_flush' ) || ! function_exists( 'w3_instance' ) ) { |
|
| 98 | + if (!function_exists('w3tc_pgcache_flush') || !function_exists('w3_instance')) { |
|
| 99 | 99 | return; |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - $config = w3_instance( 'W3_Config' ); |
|
| 103 | - $enabled = $config->get_integer( 'dbcache.enabled' ); |
|
| 104 | - $settings = array_map( 'trim', $config->get_array( 'dbcache.reject.sql' ) ); |
|
| 102 | + $config = w3_instance('W3_Config'); |
|
| 103 | + $enabled = $config->get_integer('dbcache.enabled'); |
|
| 104 | + $settings = array_map('trim', $config->get_array('dbcache.reject.sql')); |
|
| 105 | 105 | |
| 106 | - if ( $enabled && ! in_array( '_wp_session_', $settings ) ) { |
|
| 106 | + if ($enabled && !in_array('_wp_session_', $settings)) { |
|
| 107 | 107 | ?> |
| 108 | 108 | <div class="error"> |
| 109 | - <p><?php printf( wp_kses_post( __( 'In order for <strong>database caching</strong> to work with Invoicing you must add %1$s to the "Ignored Query Strings" option in <a href="%2$s">W3 Total Cache settings</a>.', 'invoicing' ) ), '<code>_wp_session_</code>', esc_url( admin_url( 'admin.php?page=w3tc_dbcache' ) ) ); ?></p> |
|
| 109 | + <p><?php printf(wp_kses_post(__('In order for <strong>database caching</strong> to work with Invoicing you must add %1$s to the "Ignored Query Strings" option in <a href="%2$s">W3 Total Cache settings</a>.', 'invoicing')), '<code>_wp_session_</code>', esc_url(admin_url('admin.php?page=w3tc_dbcache'))); ?></p> |
|
| 110 | 110 | </div> |
| 111 | 111 | <?php |
| 112 | 112 | } |