@@ -7,12 +7,12 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | // MUST have WordPress. |
| 10 | -if ( !defined( 'WPINC' ) ) { |
|
| 11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
| 10 | +if (!defined('WPINC')) { |
|
| 11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | function wpinv_init_transactional_emails() { |
| 15 | - $email_actions = apply_filters( 'wpinv_email_actions', array( |
|
| 15 | + $email_actions = apply_filters('wpinv_email_actions', array( |
|
| 16 | 16 | 'wpinv_status_wpi-pending_to_wpi-processing', |
| 17 | 17 | 'wpinv_status_wpi-pending_to_publish', |
| 18 | 18 | 'wpinv_status_wpi-pending_to_wpi-cancelled', |
@@ -30,381 +30,381 @@ discard block |
||
| 30 | 30 | 'wpinv_fully_refunded', |
| 31 | 31 | 'wpinv_partially_refunded', |
| 32 | 32 | 'wpinv_new_invoice_note' |
| 33 | - ) ); |
|
| 33 | + )); |
|
| 34 | 34 | |
| 35 | - foreach ( $email_actions as $action ) { |
|
| 36 | - add_action( $action, 'wpinv_send_transactional_email', 10, 10 ); |
|
| 35 | + foreach ($email_actions as $action) { |
|
| 36 | + add_action($action, 'wpinv_send_transactional_email', 10, 10); |
|
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | -add_action( 'init', 'wpinv_init_transactional_emails' ); |
|
| 39 | +add_action('init', 'wpinv_init_transactional_emails'); |
|
| 40 | 40 | |
| 41 | 41 | // New invoice email |
| 42 | -add_action( 'wpinv_status_wpi-pending_to_wpi-processing_notification', 'wpinv_new_invoice_notification' ); |
|
| 43 | -add_action( 'wpinv_status_wpi-pending_to_publish_notification', 'wpinv_new_invoice_notification' ); |
|
| 44 | -add_action( 'wpinv_status_wpi-pending_to_wpi-onhold_notification', 'wpinv_new_invoice_notification' ); |
|
| 45 | -add_action( 'wpinv_status_wpi-failed_to_wpi-processing_notification', 'wpinv_new_invoice_notification' ); |
|
| 46 | -add_action( 'wpinv_status_wpi-failed_to_publish_notification', 'wpinv_new_invoice_notification' ); |
|
| 47 | -add_action( 'wpinv_status_wpi-failed_to_wpi-onhold_notification', 'wpinv_new_invoice_notification' ); |
|
| 42 | +add_action('wpinv_status_wpi-pending_to_wpi-processing_notification', 'wpinv_new_invoice_notification'); |
|
| 43 | +add_action('wpinv_status_wpi-pending_to_publish_notification', 'wpinv_new_invoice_notification'); |
|
| 44 | +add_action('wpinv_status_wpi-pending_to_wpi-onhold_notification', 'wpinv_new_invoice_notification'); |
|
| 45 | +add_action('wpinv_status_wpi-failed_to_wpi-processing_notification', 'wpinv_new_invoice_notification'); |
|
| 46 | +add_action('wpinv_status_wpi-failed_to_publish_notification', 'wpinv_new_invoice_notification'); |
|
| 47 | +add_action('wpinv_status_wpi-failed_to_wpi-onhold_notification', 'wpinv_new_invoice_notification'); |
|
| 48 | 48 | |
| 49 | 49 | // Cancelled invoice email |
| 50 | -add_action( 'wpinv_status_wpi-pending_to_wpi-cancelled_notification', 'wpinv_cancelled_invoice_notification' ); |
|
| 51 | -add_action( 'wpinv_status_wpi-onhold_to_wpi-cancelled_notification', 'wpinv_cancelled_invoice_notification' ); |
|
| 50 | +add_action('wpinv_status_wpi-pending_to_wpi-cancelled_notification', 'wpinv_cancelled_invoice_notification'); |
|
| 51 | +add_action('wpinv_status_wpi-onhold_to_wpi-cancelled_notification', 'wpinv_cancelled_invoice_notification'); |
|
| 52 | 52 | |
| 53 | 53 | // Failed invoice email |
| 54 | -add_action( 'wpinv_status_wpi-pending_to_wpi-failed_notification', 'wpinv_failed_invoice_notification' ); |
|
| 55 | -add_action( 'wpinv_status_wpi-onhold_to_wpi-failed_notification', 'wpinv_failed_invoice_notification' ); |
|
| 54 | +add_action('wpinv_status_wpi-pending_to_wpi-failed_notification', 'wpinv_failed_invoice_notification'); |
|
| 55 | +add_action('wpinv_status_wpi-onhold_to_wpi-failed_notification', 'wpinv_failed_invoice_notification'); |
|
| 56 | 56 | |
| 57 | 57 | // On hold invoice email |
| 58 | -add_action( 'wpinv_status_wpi-pending_to_wpi-onhold_notification', 'wpinv_onhold_invoice_notification' ); |
|
| 59 | -add_action( 'wpinv_status_wpi-failed_to_wpi-onhold_notification', 'wpinv_onhold_invoice_notification' ); |
|
| 58 | +add_action('wpinv_status_wpi-pending_to_wpi-onhold_notification', 'wpinv_onhold_invoice_notification'); |
|
| 59 | +add_action('wpinv_status_wpi-failed_to_wpi-onhold_notification', 'wpinv_onhold_invoice_notification'); |
|
| 60 | 60 | |
| 61 | 61 | // Processing invoice email |
| 62 | -add_action( 'wpinv_status_wpi-pending_to_wpi-processing_notification', 'wpinv_processing_invoice_notification' ); |
|
| 62 | +add_action('wpinv_status_wpi-pending_to_wpi-processing_notification', 'wpinv_processing_invoice_notification'); |
|
| 63 | 63 | |
| 64 | 64 | // Paid invoice email |
| 65 | -add_action( 'wpinv_status_publish_notification', 'wpinv_completed_invoice_notification' ); |
|
| 65 | +add_action('wpinv_status_publish_notification', 'wpinv_completed_invoice_notification'); |
|
| 66 | 66 | |
| 67 | 67 | // Refunded invoice email |
| 68 | -add_action( 'wpinv_fully_refunded_notification', 'wpinv_fully_refunded_notification' ); |
|
| 69 | -add_action( 'wpinv_partially_refunded_notification', 'wpinv_partially_refunded_notification' ); |
|
| 70 | -add_action( 'wpinv_status_publish_to_wpi-refunded_notification', 'wpinv_fully_refunded_notification' ); |
|
| 71 | -add_action( 'wpinv_status_wpi-processing_to_wpi-refunded_notification', 'wpinv_fully_refunded_notification' ); |
|
| 68 | +add_action('wpinv_fully_refunded_notification', 'wpinv_fully_refunded_notification'); |
|
| 69 | +add_action('wpinv_partially_refunded_notification', 'wpinv_partially_refunded_notification'); |
|
| 70 | +add_action('wpinv_status_publish_to_wpi-refunded_notification', 'wpinv_fully_refunded_notification'); |
|
| 71 | +add_action('wpinv_status_wpi-processing_to_wpi-refunded_notification', 'wpinv_fully_refunded_notification'); |
|
| 72 | 72 | |
| 73 | 73 | // Invoice note |
| 74 | -add_action( 'wpinv_new_invoice_note_notification', 'wpinv_new_invoice_note_notification' ); |
|
| 74 | +add_action('wpinv_new_invoice_note_notification', 'wpinv_new_invoice_note_notification'); |
|
| 75 | 75 | |
| 76 | -add_action( 'wpinv_email_header', 'wpinv_email_header' ); |
|
| 77 | -add_action( 'wpinv_email_footer', 'wpinv_email_footer' ); |
|
| 78 | -add_action( 'wpinv_email_invoice_details', 'wpinv_email_invoice_details', 10, 3 ); |
|
| 79 | -add_action( 'wpinv_email_invoice_items', 'wpinv_email_invoice_items', 10, 3 ); |
|
| 80 | -add_action( 'wpinv_email_billing_details', 'wpinv_email_billing_details', 10, 3 ); |
|
| 76 | +add_action('wpinv_email_header', 'wpinv_email_header'); |
|
| 77 | +add_action('wpinv_email_footer', 'wpinv_email_footer'); |
|
| 78 | +add_action('wpinv_email_invoice_details', 'wpinv_email_invoice_details', 10, 3); |
|
| 79 | +add_action('wpinv_email_invoice_items', 'wpinv_email_invoice_items', 10, 3); |
|
| 80 | +add_action('wpinv_email_billing_details', 'wpinv_email_billing_details', 10, 3); |
|
| 81 | 81 | |
| 82 | 82 | function wpinv_send_transactional_email() { |
| 83 | 83 | $args = func_get_args(); |
| 84 | 84 | $function = current_filter() . '_notification'; |
| 85 | - do_action_ref_array( $function, $args ); |
|
| 85 | + do_action_ref_array($function, $args); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | -function wpinv_new_invoice_notification( $invoice_id, $new_status = '' ) { |
|
| 88 | +function wpinv_new_invoice_notification($invoice_id, $new_status = '') { |
|
| 89 | 89 | $email_type = 'new_invoice'; |
| 90 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 90 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 91 | 91 | return false; |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 95 | - if ( empty( $invoice ) ) { |
|
| 94 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 95 | + if (empty($invoice)) { |
|
| 96 | 96 | return false; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 99 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 100 | 100 | return false; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 104 | - if ( !is_email( $recipient ) ) { |
|
| 103 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 104 | + if (!is_email($recipient)) { |
|
| 105 | 105 | return false; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type, true ); |
|
| 108 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type, true); |
|
| 109 | 109 | |
| 110 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 111 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 112 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 113 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 114 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 110 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 111 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 112 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 113 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 114 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 115 | 115 | |
| 116 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 116 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 117 | 117 | 'invoice' => $invoice, |
| 118 | 118 | 'email_type' => $email_type, |
| 119 | 119 | 'email_heading' => $email_heading, |
| 120 | 120 | 'sent_to_admin' => true, |
| 121 | 121 | 'plain_text' => false, |
| 122 | 122 | 'message_body' => $message_body, |
| 123 | - ) ); |
|
| 123 | + )); |
|
| 124 | 124 | |
| 125 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 125 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 126 | 126 | |
| 127 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type, true ); |
|
| 127 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type, true); |
|
| 128 | 128 | |
| 129 | 129 | return $sent; |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | -function wpinv_cancelled_invoice_notification( $invoice_id, $new_status = '' ) { |
|
| 132 | +function wpinv_cancelled_invoice_notification($invoice_id, $new_status = '') { |
|
| 133 | 133 | $email_type = 'cancelled_invoice'; |
| 134 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 134 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 135 | 135 | return false; |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 139 | - if ( empty( $invoice ) ) { |
|
| 138 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 139 | + if (empty($invoice)) { |
|
| 140 | 140 | return false; |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 143 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 144 | 144 | return false; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 148 | - if ( !is_email( $recipient ) ) { |
|
| 147 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 148 | + if (!is_email($recipient)) { |
|
| 149 | 149 | return false; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type, true ); |
|
| 152 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type, true); |
|
| 153 | 153 | |
| 154 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 155 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 156 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 157 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 158 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 154 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 155 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 156 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 157 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 158 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 159 | 159 | |
| 160 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 160 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 161 | 161 | 'invoice' => $invoice, |
| 162 | 162 | 'email_type' => $email_type, |
| 163 | 163 | 'email_heading' => $email_heading, |
| 164 | 164 | 'sent_to_admin' => true, |
| 165 | 165 | 'plain_text' => false, |
| 166 | 166 | 'message_body' => $message_body, |
| 167 | - ) ); |
|
| 167 | + )); |
|
| 168 | 168 | |
| 169 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 169 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 170 | 170 | |
| 171 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type, true ); |
|
| 171 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type, true); |
|
| 172 | 172 | |
| 173 | 173 | return $sent; |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | -function wpinv_failed_invoice_notification( $invoice_id, $new_status = '' ) { |
|
| 176 | +function wpinv_failed_invoice_notification($invoice_id, $new_status = '') { |
|
| 177 | 177 | $email_type = 'failed_invoice'; |
| 178 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 178 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 179 | 179 | return false; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 183 | - if ( empty( $invoice ) ) { |
|
| 182 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 183 | + if (empty($invoice)) { |
|
| 184 | 184 | return false; |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 187 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 188 | 188 | return false; |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 192 | - if ( !is_email( $recipient ) ) { |
|
| 191 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 192 | + if (!is_email($recipient)) { |
|
| 193 | 193 | return false; |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type, true ); |
|
| 196 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type, true); |
|
| 197 | 197 | |
| 198 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 199 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 200 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 201 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 202 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 198 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 199 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 200 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 201 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 202 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 203 | 203 | |
| 204 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 204 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 205 | 205 | 'invoice' => $invoice, |
| 206 | 206 | 'email_type' => $email_type, |
| 207 | 207 | 'email_heading' => $email_heading, |
| 208 | 208 | 'sent_to_admin' => true, |
| 209 | 209 | 'plain_text' => false, |
| 210 | 210 | 'message_body' => $message_body, |
| 211 | - ) ); |
|
| 211 | + )); |
|
| 212 | 212 | |
| 213 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 213 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 214 | 214 | |
| 215 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type, true ); |
|
| 215 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type, true); |
|
| 216 | 216 | |
| 217 | 217 | return $sent; |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | -function wpinv_onhold_invoice_notification( $invoice_id, $new_status = '' ) { |
|
| 220 | +function wpinv_onhold_invoice_notification($invoice_id, $new_status = '') { |
|
| 221 | 221 | $email_type = 'onhold_invoice'; |
| 222 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 222 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 223 | 223 | return false; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 227 | - if ( empty( $invoice ) ) { |
|
| 226 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 227 | + if (empty($invoice)) { |
|
| 228 | 228 | return false; |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 231 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 232 | 232 | return false; |
| 233 | 233 | } |
| 234 | 234 | |
| 235 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 236 | - if ( !is_email( $recipient ) ) { |
|
| 235 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 236 | + if (!is_email($recipient)) { |
|
| 237 | 237 | return false; |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
| 240 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
| 241 | 241 | |
| 242 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 243 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 244 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 245 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 246 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 242 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 243 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 244 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 245 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 246 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 247 | 247 | |
| 248 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 248 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 249 | 249 | 'invoice' => $invoice, |
| 250 | 250 | 'email_type' => $email_type, |
| 251 | 251 | 'email_heading' => $email_heading, |
| 252 | 252 | 'sent_to_admin' => false, |
| 253 | 253 | 'plain_text' => false, |
| 254 | 254 | 'message_body' => $message_body, |
| 255 | - ) ); |
|
| 255 | + )); |
|
| 256 | 256 | |
| 257 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 257 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 258 | 258 | |
| 259 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
| 260 | - $recipient = wpinv_get_admin_email(); |
|
| 261 | - $subject .= ' - ADMIN BCC COPY'; |
|
| 262 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 259 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
| 260 | + $recipient = wpinv_get_admin_email(); |
|
| 261 | + $subject .= ' - ADMIN BCC COPY'; |
|
| 262 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
| 265 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
| 266 | 266 | |
| 267 | 267 | return $sent; |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | -function wpinv_processing_invoice_notification( $invoice_id, $new_status = '' ) { |
|
| 270 | +function wpinv_processing_invoice_notification($invoice_id, $new_status = '') { |
|
| 271 | 271 | $email_type = 'processing_invoice'; |
| 272 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 272 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 273 | 273 | return false; |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 277 | - if ( empty( $invoice ) ) { |
|
| 276 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 277 | + if (empty($invoice)) { |
|
| 278 | 278 | return false; |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 281 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 282 | 282 | return false; |
| 283 | 283 | } |
| 284 | 284 | |
| 285 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 286 | - if ( !is_email( $recipient ) ) { |
|
| 285 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 286 | + if (!is_email($recipient)) { |
|
| 287 | 287 | return false; |
| 288 | 288 | } |
| 289 | 289 | |
| 290 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
| 290 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
| 291 | 291 | |
| 292 | 292 | $search = array(); |
| 293 | 293 | $search['invoice_number'] = '{invoice_number}'; |
| 294 | 294 | $search['invoice_date'] = '{invoice_date}'; |
| 295 | 295 | $search['name'] = '{name}'; |
| 296 | 296 | |
| 297 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 298 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 299 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 300 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 301 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 297 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 298 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 299 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 300 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 301 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 302 | 302 | |
| 303 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 303 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 304 | 304 | 'invoice' => $invoice, |
| 305 | 305 | 'email_type' => $email_type, |
| 306 | 306 | 'email_heading' => $email_heading, |
| 307 | 307 | 'sent_to_admin' => false, |
| 308 | 308 | 'plain_text' => false, |
| 309 | 309 | 'message_body' => $message_body, |
| 310 | - ) ); |
|
| 310 | + )); |
|
| 311 | 311 | |
| 312 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 312 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 313 | 313 | |
| 314 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
| 315 | - $recipient = wpinv_get_admin_email(); |
|
| 316 | - $subject .= ' - ADMIN BCC COPY'; |
|
| 317 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 314 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
| 315 | + $recipient = wpinv_get_admin_email(); |
|
| 316 | + $subject .= ' - ADMIN BCC COPY'; |
|
| 317 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
| 320 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
| 321 | 321 | |
| 322 | 322 | return $sent; |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | -function wpinv_completed_invoice_notification( $invoice_id, $new_status = '' ) { |
|
| 325 | +function wpinv_completed_invoice_notification($invoice_id, $new_status = '') { |
|
| 326 | 326 | $email_type = 'completed_invoice'; |
| 327 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 327 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 328 | 328 | return false; |
| 329 | 329 | } |
| 330 | 330 | |
| 331 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 332 | - if ( empty( $invoice ) ) { |
|
| 331 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 332 | + if (empty($invoice)) { |
|
| 333 | 333 | return false; |
| 334 | 334 | } |
| 335 | 335 | |
| 336 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 336 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 337 | 337 | return false; |
| 338 | 338 | } |
| 339 | 339 | |
| 340 | - if($invoice->is_renewal() && wpinv_email_is_enabled( 'completed_invoice_renewal' )){ |
|
| 340 | + if ($invoice->is_renewal() && wpinv_email_is_enabled('completed_invoice_renewal')) { |
|
| 341 | 341 | return false; |
| 342 | 342 | } |
| 343 | 343 | |
| 344 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 345 | - if ( !is_email( $recipient ) ) { |
|
| 344 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 345 | + if (!is_email($recipient)) { |
|
| 346 | 346 | return false; |
| 347 | 347 | } |
| 348 | 348 | |
| 349 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
| 349 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
| 350 | 350 | |
| 351 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 352 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 353 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 354 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 355 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 351 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 352 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 353 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 354 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 355 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 356 | 356 | |
| 357 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 357 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 358 | 358 | 'invoice' => $invoice, |
| 359 | 359 | 'email_type' => $email_type, |
| 360 | 360 | 'email_heading' => $email_heading, |
| 361 | 361 | 'sent_to_admin' => false, |
| 362 | 362 | 'plain_text' => false, |
| 363 | 363 | 'message_body' => $message_body, |
| 364 | - ) ); |
|
| 364 | + )); |
|
| 365 | 365 | |
| 366 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 366 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 367 | 367 | |
| 368 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
| 369 | - $recipient = wpinv_get_admin_email(); |
|
| 370 | - $subject .= ' - ADMIN BCC COPY'; |
|
| 371 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 368 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
| 369 | + $recipient = wpinv_get_admin_email(); |
|
| 370 | + $subject .= ' - ADMIN BCC COPY'; |
|
| 371 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 372 | 372 | } |
| 373 | 373 | |
| 374 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
| 374 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
| 375 | 375 | |
| 376 | 376 | return $sent; |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | -function wpinv_fully_refunded_notification( $invoice_id, $new_status = '' ) { |
|
| 379 | +function wpinv_fully_refunded_notification($invoice_id, $new_status = '') { |
|
| 380 | 380 | $email_type = 'refunded_invoice'; |
| 381 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 381 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 382 | 382 | return false; |
| 383 | 383 | } |
| 384 | 384 | |
| 385 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 386 | - if ( empty( $invoice ) ) { |
|
| 385 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 386 | + if (empty($invoice)) { |
|
| 387 | 387 | return false; |
| 388 | 388 | } |
| 389 | 389 | |
| 390 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 390 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 391 | 391 | return false; |
| 392 | 392 | } |
| 393 | 393 | |
| 394 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 395 | - if ( !is_email( $recipient ) ) { |
|
| 394 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 395 | + if (!is_email($recipient)) { |
|
| 396 | 396 | return false; |
| 397 | 397 | } |
| 398 | 398 | |
| 399 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
| 399 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
| 400 | 400 | |
| 401 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 402 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 403 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 404 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 405 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 401 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 402 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 403 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 404 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 405 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 406 | 406 | |
| 407 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 407 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 408 | 408 | 'invoice' => $invoice, |
| 409 | 409 | 'email_type' => $email_type, |
| 410 | 410 | 'email_heading' => $email_heading, |
@@ -412,50 +412,50 @@ discard block |
||
| 412 | 412 | 'plain_text' => false, |
| 413 | 413 | 'partial_refund' => false, |
| 414 | 414 | 'message_body' => $message_body, |
| 415 | - ) ); |
|
| 415 | + )); |
|
| 416 | 416 | |
| 417 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 417 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 418 | 418 | |
| 419 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
| 420 | - $recipient = wpinv_get_admin_email(); |
|
| 421 | - $subject .= ' - ADMIN BCC COPY'; |
|
| 422 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 419 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
| 420 | + $recipient = wpinv_get_admin_email(); |
|
| 421 | + $subject .= ' - ADMIN BCC COPY'; |
|
| 422 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 423 | 423 | } |
| 424 | 424 | |
| 425 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
| 425 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
| 426 | 426 | |
| 427 | 427 | return $sent; |
| 428 | 428 | } |
| 429 | 429 | |
| 430 | -function wpinv_partially_refunded_notification( $invoice_id, $new_status = '' ) { |
|
| 430 | +function wpinv_partially_refunded_notification($invoice_id, $new_status = '') { |
|
| 431 | 431 | $email_type = 'refunded_invoice'; |
| 432 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 432 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 433 | 433 | return false; |
| 434 | 434 | } |
| 435 | 435 | |
| 436 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 437 | - if ( empty( $invoice ) ) { |
|
| 436 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 437 | + if (empty($invoice)) { |
|
| 438 | 438 | return false; |
| 439 | 439 | } |
| 440 | 440 | |
| 441 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 441 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 442 | 442 | return false; |
| 443 | 443 | } |
| 444 | 444 | |
| 445 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 446 | - if ( !is_email( $recipient ) ) { |
|
| 445 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 446 | + if (!is_email($recipient)) { |
|
| 447 | 447 | return false; |
| 448 | 448 | } |
| 449 | 449 | |
| 450 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
| 450 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
| 451 | 451 | |
| 452 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 453 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 454 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 455 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 456 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 452 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 453 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 454 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 455 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 456 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 457 | 457 | |
| 458 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 458 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 459 | 459 | 'invoice' => $invoice, |
| 460 | 460 | 'email_type' => $email_type, |
| 461 | 461 | 'email_heading' => $email_heading, |
@@ -463,95 +463,95 @@ discard block |
||
| 463 | 463 | 'plain_text' => false, |
| 464 | 464 | 'partial_refund' => true, |
| 465 | 465 | 'message_body' => $message_body, |
| 466 | - ) ); |
|
| 466 | + )); |
|
| 467 | 467 | |
| 468 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 468 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 469 | 469 | |
| 470 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
| 471 | - $recipient = wpinv_get_admin_email(); |
|
| 472 | - $subject .= ' - ADMIN BCC COPY'; |
|
| 473 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 470 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
| 471 | + $recipient = wpinv_get_admin_email(); |
|
| 472 | + $subject .= ' - ADMIN BCC COPY'; |
|
| 473 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 474 | 474 | } |
| 475 | 475 | |
| 476 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
| 476 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
| 477 | 477 | |
| 478 | 478 | return $sent; |
| 479 | 479 | } |
| 480 | 480 | |
| 481 | -function wpinv_new_invoice_note_notification( $invoice_id, $new_status = '' ) { |
|
| 481 | +function wpinv_new_invoice_note_notification($invoice_id, $new_status = '') { |
|
| 482 | 482 | } |
| 483 | 483 | |
| 484 | -function wpinv_user_invoice_notification( $invoice_id ) { |
|
| 484 | +function wpinv_user_invoice_notification($invoice_id) { |
|
| 485 | 485 | $email_type = 'user_invoice'; |
| 486 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 486 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 487 | 487 | return -1; |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 491 | - if ( empty( $invoice ) ) { |
|
| 490 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 491 | + if (empty($invoice)) { |
|
| 492 | 492 | return false; |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
| 495 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
| 496 | 496 | return false; |
| 497 | 497 | } |
| 498 | 498 | |
| 499 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 500 | - if ( !is_email( $recipient ) ) { |
|
| 499 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 500 | + if (!is_email($recipient)) { |
|
| 501 | 501 | return false; |
| 502 | 502 | } |
| 503 | 503 | |
| 504 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
| 504 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
| 505 | 505 | |
| 506 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 507 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 508 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 509 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 510 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 506 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 507 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 508 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 509 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 510 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 511 | 511 | |
| 512 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 512 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 513 | 513 | 'invoice' => $invoice, |
| 514 | 514 | 'email_type' => $email_type, |
| 515 | 515 | 'email_heading' => $email_heading, |
| 516 | 516 | 'sent_to_admin' => false, |
| 517 | 517 | 'plain_text' => false, |
| 518 | 518 | 'message_body' => $message_body, |
| 519 | - ) ); |
|
| 519 | + )); |
|
| 520 | 520 | |
| 521 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 521 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 522 | 522 | |
| 523 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
| 524 | - $recipient = wpinv_get_admin_email(); |
|
| 525 | - $subject .= ' - ADMIN BCC COPY'; |
|
| 526 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 523 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
| 524 | + $recipient = wpinv_get_admin_email(); |
|
| 525 | + $subject .= ' - ADMIN BCC COPY'; |
|
| 526 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 527 | 527 | } |
| 528 | 528 | |
| 529 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
| 529 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
| 530 | 530 | |
| 531 | - if ( $sent ) { |
|
| 532 | - $note = __( 'Invoice has been emailed to the user.', 'invoicing' ); |
|
| 531 | + if ($sent) { |
|
| 532 | + $note = __('Invoice has been emailed to the user.', 'invoicing'); |
|
| 533 | 533 | } else { |
| 534 | - $note = __( 'Fail to send invoice to the user!', 'invoicing' ); |
|
| 534 | + $note = __('Fail to send invoice to the user!', 'invoicing'); |
|
| 535 | 535 | } |
| 536 | 536 | |
| 537 | - $invoice->add_note( $note, '', '', true ); // Add system note. |
|
| 537 | + $invoice->add_note($note, '', '', true); // Add system note. |
|
| 538 | 538 | |
| 539 | 539 | return $sent; |
| 540 | 540 | } |
| 541 | 541 | |
| 542 | -function wpinv_user_note_notification( $invoice_id, $args = array() ) { |
|
| 542 | +function wpinv_user_note_notification($invoice_id, $args = array()) { |
|
| 543 | 543 | $email_type = 'user_note'; |
| 544 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 544 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 545 | 545 | return false; |
| 546 | 546 | } |
| 547 | 547 | |
| 548 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 549 | - if ( empty( $invoice ) ) { |
|
| 548 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 549 | + if (empty($invoice)) { |
|
| 550 | 550 | return false; |
| 551 | 551 | } |
| 552 | 552 | |
| 553 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 554 | - if ( !is_email( $recipient ) ) { |
|
| 553 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 554 | + if (!is_email($recipient)) { |
|
| 555 | 555 | return false; |
| 556 | 556 | } |
| 557 | 557 | |
@@ -559,19 +559,19 @@ discard block |
||
| 559 | 559 | 'user_note' => '' |
| 560 | 560 | ); |
| 561 | 561 | |
| 562 | - $args = wp_parse_args( $args, $defaults ); |
|
| 562 | + $args = wp_parse_args($args, $defaults); |
|
| 563 | 563 | |
| 564 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
| 564 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
| 565 | 565 | |
| 566 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 567 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 568 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 569 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 570 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 566 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 567 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 568 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 569 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 570 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 571 | 571 | |
| 572 | - $message_body = str_replace( '{customer_note}', $args['user_note'], $message_body ); |
|
| 572 | + $message_body = str_replace('{customer_note}', $args['user_note'], $message_body); |
|
| 573 | 573 | |
| 574 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 574 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 575 | 575 | 'invoice' => $invoice, |
| 576 | 576 | 'email_type' => $email_type, |
| 577 | 577 | 'email_heading' => $email_heading, |
@@ -579,36 +579,36 @@ discard block |
||
| 579 | 579 | 'plain_text' => false, |
| 580 | 580 | 'message_body' => $message_body, |
| 581 | 581 | 'customer_note' => $args['user_note'] |
| 582 | - ) ); |
|
| 582 | + )); |
|
| 583 | 583 | |
| 584 | - $content = wpinv_email_format_text( $content, $invoice ); |
|
| 584 | + $content = wpinv_email_format_text($content, $invoice); |
|
| 585 | 585 | |
| 586 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 586 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 587 | 587 | |
| 588 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
| 588 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
| 589 | 589 | |
| 590 | 590 | return $sent; |
| 591 | 591 | } |
| 592 | 592 | |
| 593 | 593 | function wpinv_mail_get_from_address() { |
| 594 | - $from_address = apply_filters( 'wpinv_mail_from_address', wpinv_get_option( 'email_from' ) ); |
|
| 595 | - return sanitize_email( $from_address ); |
|
| 594 | + $from_address = apply_filters('wpinv_mail_from_address', wpinv_get_option('email_from')); |
|
| 595 | + return sanitize_email($from_address); |
|
| 596 | 596 | } |
| 597 | 597 | |
| 598 | 598 | function wpinv_mail_get_from_name() { |
| 599 | - $from_name = apply_filters( 'wpinv_mail_from_name', wpinv_get_option( 'email_from_name' ) ); |
|
| 600 | - return wp_specialchars_decode( esc_html( $from_name ), ENT_QUOTES ); |
|
| 599 | + $from_name = apply_filters('wpinv_mail_from_name', wpinv_get_option('email_from_name')); |
|
| 600 | + return wp_specialchars_decode(esc_html($from_name), ENT_QUOTES); |
|
| 601 | 601 | } |
| 602 | 602 | |
| 603 | -function wpinv_mail_admin_bcc_active( $mail_type = '' ) { |
|
| 604 | - $active = apply_filters( 'wpinv_mail_admin_bcc_active', wpinv_get_option( 'email_' . $mail_type . '_admin_bcc' ) ); |
|
| 605 | - return ( $active ? true : false ); |
|
| 603 | +function wpinv_mail_admin_bcc_active($mail_type = '') { |
|
| 604 | + $active = apply_filters('wpinv_mail_admin_bcc_active', wpinv_get_option('email_' . $mail_type . '_admin_bcc')); |
|
| 605 | + return ($active ? true : false); |
|
| 606 | 606 | } |
| 607 | 607 | |
| 608 | -function wpinv_mail_get_content_type( $content_type = 'text/html', $email_type = 'html' ) { |
|
| 609 | - $email_type = apply_filters( 'wpinv_mail_content_type', $email_type ); |
|
| 608 | +function wpinv_mail_get_content_type($content_type = 'text/html', $email_type = 'html') { |
|
| 609 | + $email_type = apply_filters('wpinv_mail_content_type', $email_type); |
|
| 610 | 610 | |
| 611 | - switch ( $email_type ) { |
|
| 611 | + switch ($email_type) { |
|
| 612 | 612 | case 'html' : |
| 613 | 613 | $content_type = 'text/html'; |
| 614 | 614 | break; |
@@ -623,35 +623,35 @@ discard block |
||
| 623 | 623 | return $content_type; |
| 624 | 624 | } |
| 625 | 625 | |
| 626 | -function wpinv_mail_send( $to, $subject, $message, $headers, $attachments ) { |
|
| 627 | - add_filter( 'wp_mail_from', 'wpinv_mail_get_from_address' ); |
|
| 628 | - add_filter( 'wp_mail_from_name', 'wpinv_mail_get_from_name' ); |
|
| 629 | - add_filter( 'wp_mail_content_type', 'wpinv_mail_get_content_type' ); |
|
| 626 | +function wpinv_mail_send($to, $subject, $message, $headers, $attachments) { |
|
| 627 | + add_filter('wp_mail_from', 'wpinv_mail_get_from_address'); |
|
| 628 | + add_filter('wp_mail_from_name', 'wpinv_mail_get_from_name'); |
|
| 629 | + add_filter('wp_mail_content_type', 'wpinv_mail_get_content_type'); |
|
| 630 | 630 | |
| 631 | - $message = wpinv_email_style_body( $message ); |
|
| 632 | - $message = apply_filters( 'wpinv_mail_content', $message ); |
|
| 631 | + $message = wpinv_email_style_body($message); |
|
| 632 | + $message = apply_filters('wpinv_mail_content', $message); |
|
| 633 | 633 | |
| 634 | - $sent = wp_mail( $to, $subject, $message, $headers, $attachments ); |
|
| 634 | + $sent = wp_mail($to, $subject, $message, $headers, $attachments); |
|
| 635 | 635 | |
| 636 | - if ( !$sent ) { |
|
| 637 | - $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), ( is_array( $to ) ? implode( ', ', $to ) : $to ), $subject ); |
|
| 638 | - wpinv_error_log( $log_message, __( "Email from Invoicing plugin failed to send", 'invoicing' ), __FILE__, __LINE__ ); |
|
| 636 | + if (!$sent) { |
|
| 637 | + $log_message = wp_sprintf(__("\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing'), date_i18n('F j Y H:i:s', current_time('timestamp')), (is_array($to) ? implode(', ', $to) : $to), $subject); |
|
| 638 | + wpinv_error_log($log_message, __("Email from Invoicing plugin failed to send", 'invoicing'), __FILE__, __LINE__); |
|
| 639 | 639 | } |
| 640 | 640 | |
| 641 | - remove_filter( 'wp_mail_from', 'wpinv_mail_get_from_address' ); |
|
| 642 | - remove_filter( 'wp_mail_from_name', 'wpinv_mail_get_from_name' ); |
|
| 643 | - remove_filter( 'wp_mail_content_type', 'wpinv_mail_get_content_type' ); |
|
| 641 | + remove_filter('wp_mail_from', 'wpinv_mail_get_from_address'); |
|
| 642 | + remove_filter('wp_mail_from_name', 'wpinv_mail_get_from_name'); |
|
| 643 | + remove_filter('wp_mail_content_type', 'wpinv_mail_get_content_type'); |
|
| 644 | 644 | |
| 645 | 645 | return $sent; |
| 646 | 646 | } |
| 647 | 647 | |
| 648 | 648 | function wpinv_get_emails() { |
| 649 | 649 | $overdue_days_options = array(); |
| 650 | - $overdue_days_options[0] = __( 'On the Due Date', 'invoicing' ); |
|
| 651 | - $overdue_days_options[1] = __( '1 day after Due Date', 'invoicing' ); |
|
| 650 | + $overdue_days_options[0] = __('On the Due Date', 'invoicing'); |
|
| 651 | + $overdue_days_options[1] = __('1 day after Due Date', 'invoicing'); |
|
| 652 | 652 | |
| 653 | - for ( $i = 2; $i <= 10; $i++ ) { |
|
| 654 | - $overdue_days_options[$i] = wp_sprintf( __( '%d days after Due Date', 'invoicing' ), $i ); |
|
| 653 | + for ($i = 2; $i <= 10; $i++) { |
|
| 654 | + $overdue_days_options[$i] = wp_sprintf(__('%d days after Due Date', 'invoicing'), $i); |
|
| 655 | 655 | } |
| 656 | 656 | |
| 657 | 657 | // Default, built-in gateways |
@@ -659,39 +659,39 @@ discard block |
||
| 659 | 659 | 'new_invoice' => array( |
| 660 | 660 | 'email_new_invoice_header' => array( |
| 661 | 661 | 'id' => 'email_new_invoice_header', |
| 662 | - 'name' => '<h3>' . __( 'New Invoice', 'invoicing' ) . '</h3>', |
|
| 663 | - 'desc' => __( 'New invoice emails are sent to admin when a new invoice is received.', 'invoicing' ), |
|
| 662 | + 'name' => '<h3>' . __('New Invoice', 'invoicing') . '</h3>', |
|
| 663 | + 'desc' => __('New invoice emails are sent to admin when a new invoice is received.', 'invoicing'), |
|
| 664 | 664 | 'type' => 'header', |
| 665 | 665 | ), |
| 666 | 666 | 'email_new_invoice_active' => array( |
| 667 | 667 | 'id' => 'email_new_invoice_active', |
| 668 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 669 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 668 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 669 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 670 | 670 | 'type' => 'checkbox', |
| 671 | 671 | 'std' => 1 |
| 672 | 672 | ), |
| 673 | 673 | 'email_new_invoice_subject' => array( |
| 674 | 674 | 'id' => 'email_new_invoice_subject', |
| 675 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 676 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 675 | + 'name' => __('Subject', 'invoicing'), |
|
| 676 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 677 | 677 | 'type' => 'text', |
| 678 | - 'std' => __( '[{site_title}] New payment invoice ({invoice_number}) - {invoice_date}', 'invoicing' ), |
|
| 678 | + 'std' => __('[{site_title}] New payment invoice ({invoice_number}) - {invoice_date}', 'invoicing'), |
|
| 679 | 679 | 'size' => 'large' |
| 680 | 680 | ), |
| 681 | 681 | 'email_new_invoice_heading' => array( |
| 682 | 682 | 'id' => 'email_new_invoice_heading', |
| 683 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 684 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
| 683 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 684 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
| 685 | 685 | 'type' => 'text', |
| 686 | - 'std' => __( 'New payment invoice', 'invoicing' ), |
|
| 686 | + 'std' => __('New payment invoice', 'invoicing'), |
|
| 687 | 687 | 'size' => 'large' |
| 688 | 688 | ), |
| 689 | 689 | 'email_new_invoice_body' => array( |
| 690 | 690 | 'id' => 'email_new_invoice_body', |
| 691 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 692 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 691 | + 'name' => __('Email Content', 'invoicing'), |
|
| 692 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 693 | 693 | 'type' => 'rich_editor', |
| 694 | - 'std' => __( '<p>Hi Admin,</p><p>You have received payment invoice from {name}.</p>', 'invoicing' ), |
|
| 694 | + 'std' => __('<p>Hi Admin,</p><p>You have received payment invoice from {name}.</p>', 'invoicing'), |
|
| 695 | 695 | 'class' => 'large', |
| 696 | 696 | 'size' => '10' |
| 697 | 697 | ), |
@@ -699,39 +699,39 @@ discard block |
||
| 699 | 699 | 'cancelled_invoice' => array( |
| 700 | 700 | 'email_cancelled_invoice_header' => array( |
| 701 | 701 | 'id' => 'email_cancelled_invoice_header', |
| 702 | - 'name' => '<h3>' . __( 'Cancelled Invoice', 'invoicing' ) . '</h3>', |
|
| 703 | - 'desc' => __( 'Cancelled invoice emails are sent to admin when invoices have been marked cancelled.', 'invoicing' ), |
|
| 702 | + 'name' => '<h3>' . __('Cancelled Invoice', 'invoicing') . '</h3>', |
|
| 703 | + 'desc' => __('Cancelled invoice emails are sent to admin when invoices have been marked cancelled.', 'invoicing'), |
|
| 704 | 704 | 'type' => 'header', |
| 705 | 705 | ), |
| 706 | 706 | 'email_cancelled_invoice_active' => array( |
| 707 | 707 | 'id' => 'email_cancelled_invoice_active', |
| 708 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 709 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 708 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 709 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 710 | 710 | 'type' => 'checkbox', |
| 711 | 711 | 'std' => 1 |
| 712 | 712 | ), |
| 713 | 713 | 'email_cancelled_invoice_subject' => array( |
| 714 | 714 | 'id' => 'email_cancelled_invoice_subject', |
| 715 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 716 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 715 | + 'name' => __('Subject', 'invoicing'), |
|
| 716 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 717 | 717 | 'type' => 'text', |
| 718 | - 'std' => __( '[{site_title}] Cancelled invoice ({invoice_number})', 'invoicing' ), |
|
| 718 | + 'std' => __('[{site_title}] Cancelled invoice ({invoice_number})', 'invoicing'), |
|
| 719 | 719 | 'size' => 'large' |
| 720 | 720 | ), |
| 721 | 721 | 'email_cancelled_invoice_heading' => array( |
| 722 | 722 | 'id' => 'email_cancelled_invoice_heading', |
| 723 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 724 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
| 723 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 724 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
| 725 | 725 | 'type' => 'text', |
| 726 | - 'std' => __( 'Cancelled invoice', 'invoicing' ), |
|
| 726 | + 'std' => __('Cancelled invoice', 'invoicing'), |
|
| 727 | 727 | 'size' => 'large' |
| 728 | 728 | ), |
| 729 | 729 | 'email_cancelled_invoice_body' => array( |
| 730 | 730 | 'id' => 'email_cancelled_invoice_body', |
| 731 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 732 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 731 | + 'name' => __('Email Content', 'invoicing'), |
|
| 732 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 733 | 733 | 'type' => 'rich_editor', |
| 734 | - 'std' => __( '<p>Hi Admin,</p><p>The invoice #{invoice_number} from {site_title} has been cancelled.</p>', 'invoicing' ), |
|
| 734 | + 'std' => __('<p>Hi Admin,</p><p>The invoice #{invoice_number} from {site_title} has been cancelled.</p>', 'invoicing'), |
|
| 735 | 735 | 'class' => 'large', |
| 736 | 736 | 'size' => '10' |
| 737 | 737 | ), |
@@ -739,39 +739,39 @@ discard block |
||
| 739 | 739 | 'failed_invoice' => array( |
| 740 | 740 | 'email_failed_invoice_header' => array( |
| 741 | 741 | 'id' => 'email_failed_invoice_header', |
| 742 | - 'name' => '<h3>' . __( 'Failed Invoice', 'invoicing' ) . '</h3>', |
|
| 743 | - 'desc' => __( 'Failed invoice emails are sent to admin when invoices have been marked failed (if they were previously processing or on-hold).', 'invoicing' ), |
|
| 742 | + 'name' => '<h3>' . __('Failed Invoice', 'invoicing') . '</h3>', |
|
| 743 | + 'desc' => __('Failed invoice emails are sent to admin when invoices have been marked failed (if they were previously processing or on-hold).', 'invoicing'), |
|
| 744 | 744 | 'type' => 'header', |
| 745 | 745 | ), |
| 746 | 746 | 'email_failed_invoice_active' => array( |
| 747 | 747 | 'id' => 'email_failed_invoice_active', |
| 748 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 749 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 748 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 749 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 750 | 750 | 'type' => 'checkbox', |
| 751 | 751 | 'std' => 1 |
| 752 | 752 | ), |
| 753 | 753 | 'email_failed_invoice_subject' => array( |
| 754 | 754 | 'id' => 'email_failed_invoice_subject', |
| 755 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 756 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 755 | + 'name' => __('Subject', 'invoicing'), |
|
| 756 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 757 | 757 | 'type' => 'text', |
| 758 | - 'std' => __( '[{site_title}] Failed invoice ({invoice_number})', 'invoicing' ), |
|
| 758 | + 'std' => __('[{site_title}] Failed invoice ({invoice_number})', 'invoicing'), |
|
| 759 | 759 | 'size' => 'large' |
| 760 | 760 | ), |
| 761 | 761 | 'email_failed_invoice_heading' => array( |
| 762 | 762 | 'id' => 'email_failed_invoice_heading', |
| 763 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 764 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
| 763 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 764 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
| 765 | 765 | 'type' => 'text', |
| 766 | - 'std' => __( 'Failed invoice', 'invoicing' ), |
|
| 766 | + 'std' => __('Failed invoice', 'invoicing'), |
|
| 767 | 767 | 'size' => 'large' |
| 768 | 768 | ), |
| 769 | 769 | 'email_failed_invoice_body' => array( |
| 770 | 770 | 'id' => 'email_failed_invoice_body', |
| 771 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 772 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 771 | + 'name' => __('Email Content', 'invoicing'), |
|
| 772 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 773 | 773 | 'type' => 'rich_editor', |
| 774 | - 'std' => __( '<p>Hi Admin,</p><p>Payment for invoice #{invoice_number} from {site_title} has been failed.</p>', 'invoicing' ), |
|
| 774 | + 'std' => __('<p>Hi Admin,</p><p>Payment for invoice #{invoice_number} from {site_title} has been failed.</p>', 'invoicing'), |
|
| 775 | 775 | 'class' => 'large', |
| 776 | 776 | 'size' => '10' |
| 777 | 777 | ), |
@@ -779,46 +779,46 @@ discard block |
||
| 779 | 779 | 'onhold_invoice' => array( |
| 780 | 780 | 'email_onhold_invoice_header' => array( |
| 781 | 781 | 'id' => 'email_onhold_invoice_header', |
| 782 | - 'name' => '<h3>' . __( 'On Hold Invoice', 'invoicing' ) . '</h3>', |
|
| 783 | - 'desc' => __( 'This is an invoice notification sent to users containing invoice details after an invoice is placed on-hold.', 'invoicing' ), |
|
| 782 | + 'name' => '<h3>' . __('On Hold Invoice', 'invoicing') . '</h3>', |
|
| 783 | + 'desc' => __('This is an invoice notification sent to users containing invoice details after an invoice is placed on-hold.', 'invoicing'), |
|
| 784 | 784 | 'type' => 'header', |
| 785 | 785 | ), |
| 786 | 786 | 'email_onhold_invoice_active' => array( |
| 787 | 787 | 'id' => 'email_onhold_invoice_active', |
| 788 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 789 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 788 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 789 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 790 | 790 | 'type' => 'checkbox', |
| 791 | 791 | 'std' => 1 |
| 792 | 792 | ), |
| 793 | 793 | 'email_onhold_invoice_subject' => array( |
| 794 | 794 | 'id' => 'email_onhold_invoice_subject', |
| 795 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 796 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 795 | + 'name' => __('Subject', 'invoicing'), |
|
| 796 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 797 | 797 | 'type' => 'text', |
| 798 | - 'std' => __( '[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing' ), |
|
| 798 | + 'std' => __('[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing'), |
|
| 799 | 799 | 'size' => 'large' |
| 800 | 800 | ), |
| 801 | 801 | 'email_onhold_invoice_heading' => array( |
| 802 | 802 | 'id' => 'email_onhold_invoice_heading', |
| 803 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 804 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
| 803 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 804 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
| 805 | 805 | 'type' => 'text', |
| 806 | - 'std' => __( 'Thank you for your invoice', 'invoicing' ), |
|
| 806 | + 'std' => __('Thank you for your invoice', 'invoicing'), |
|
| 807 | 807 | 'size' => 'large' |
| 808 | 808 | ), |
| 809 | 809 | 'email_onhold_invoice_admin_bcc' => array( |
| 810 | 810 | 'id' => 'email_onhold_invoice_admin_bcc', |
| 811 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
| 812 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
| 811 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
| 812 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
| 813 | 813 | 'type' => 'checkbox', |
| 814 | 814 | 'std' => 1 |
| 815 | 815 | ), |
| 816 | 816 | 'email_onhold_invoice_body' => array( |
| 817 | 817 | 'id' => 'email_onhold_invoice_body', |
| 818 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 819 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 818 | + 'name' => __('Email Content', 'invoicing'), |
|
| 819 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 820 | 820 | 'type' => 'rich_editor', |
| 821 | - 'std' => __( '<p>Hi {name},</p><p>Your invoice is on-hold until we confirm your payment has been received.</p>', 'invoicing' ), |
|
| 821 | + 'std' => __('<p>Hi {name},</p><p>Your invoice is on-hold until we confirm your payment has been received.</p>', 'invoicing'), |
|
| 822 | 822 | 'class' => 'large', |
| 823 | 823 | 'size' => '10' |
| 824 | 824 | ), |
@@ -826,46 +826,46 @@ discard block |
||
| 826 | 826 | 'processing_invoice' => array( |
| 827 | 827 | 'email_processing_invoice_header' => array( |
| 828 | 828 | 'id' => 'email_processing_invoice_header', |
| 829 | - 'name' => '<h3>' . __( 'Processing Invoice', 'invoicing' ) . '</h3>', |
|
| 830 | - 'desc' => __( 'This is an invoice notification sent to users containing invoice details after payment.', 'invoicing' ), |
|
| 829 | + 'name' => '<h3>' . __('Processing Invoice', 'invoicing') . '</h3>', |
|
| 830 | + 'desc' => __('This is an invoice notification sent to users containing invoice details after payment.', 'invoicing'), |
|
| 831 | 831 | 'type' => 'header', |
| 832 | 832 | ), |
| 833 | 833 | 'email_processing_invoice_active' => array( |
| 834 | 834 | 'id' => 'email_processing_invoice_active', |
| 835 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 836 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 835 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 836 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 837 | 837 | 'type' => 'checkbox', |
| 838 | 838 | 'std' => 1 |
| 839 | 839 | ), |
| 840 | 840 | 'email_processing_invoice_subject' => array( |
| 841 | 841 | 'id' => 'email_processing_invoice_subject', |
| 842 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 843 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 842 | + 'name' => __('Subject', 'invoicing'), |
|
| 843 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 844 | 844 | 'type' => 'text', |
| 845 | - 'std' => __( '[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing' ), |
|
| 845 | + 'std' => __('[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing'), |
|
| 846 | 846 | 'size' => 'large' |
| 847 | 847 | ), |
| 848 | 848 | 'email_processing_invoice_heading' => array( |
| 849 | 849 | 'id' => 'email_processing_invoice_heading', |
| 850 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 851 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
| 850 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 851 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
| 852 | 852 | 'type' => 'text', |
| 853 | - 'std' => __( 'Thank you for your invoice', 'invoicing' ), |
|
| 853 | + 'std' => __('Thank you for your invoice', 'invoicing'), |
|
| 854 | 854 | 'size' => 'large' |
| 855 | 855 | ), |
| 856 | 856 | 'email_processing_invoice_admin_bcc' => array( |
| 857 | 857 | 'id' => 'email_processing_invoice_admin_bcc', |
| 858 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
| 859 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
| 858 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
| 859 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
| 860 | 860 | 'type' => 'checkbox', |
| 861 | 861 | 'std' => 1 |
| 862 | 862 | ), |
| 863 | 863 | 'email_processing_invoice_body' => array( |
| 864 | 864 | 'id' => 'email_processing_invoice_body', |
| 865 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 866 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 865 | + 'name' => __('Email Content', 'invoicing'), |
|
| 866 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 867 | 867 | 'type' => 'rich_editor', |
| 868 | - 'std' => __( '<p>Hi {name},</p><p>Your invoice has been received at {site_title} and is now being processed.</p>', 'invoicing' ), |
|
| 868 | + 'std' => __('<p>Hi {name},</p><p>Your invoice has been received at {site_title} and is now being processed.</p>', 'invoicing'), |
|
| 869 | 869 | 'class' => 'large', |
| 870 | 870 | 'size' => '10' |
| 871 | 871 | ), |
@@ -873,52 +873,52 @@ discard block |
||
| 873 | 873 | 'completed_invoice' => array( |
| 874 | 874 | 'email_completed_invoice_header' => array( |
| 875 | 875 | 'id' => 'email_completed_invoice_header', |
| 876 | - 'name' => '<h3>' . __( 'Paid Invoice', 'invoicing' ) . '</h3>', |
|
| 877 | - 'desc' => __( 'Invoice paid emails are sent to users when their invoices are marked paid and usually indicate that their payment has been done.', 'invoicing' ), |
|
| 876 | + 'name' => '<h3>' . __('Paid Invoice', 'invoicing') . '</h3>', |
|
| 877 | + 'desc' => __('Invoice paid emails are sent to users when their invoices are marked paid and usually indicate that their payment has been done.', 'invoicing'), |
|
| 878 | 878 | 'type' => 'header', |
| 879 | 879 | ), |
| 880 | 880 | 'email_completed_invoice_active' => array( |
| 881 | 881 | 'id' => 'email_completed_invoice_active', |
| 882 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 883 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 882 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 883 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 884 | 884 | 'type' => 'checkbox', |
| 885 | 885 | 'std' => 1 |
| 886 | 886 | ), |
| 887 | 887 | 'email_completed_invoice_renewal_active' => array( |
| 888 | 888 | 'id' => 'email_completed_invoice_renewal_active', |
| 889 | - 'name' => __( 'Enable renewal notification', 'invoicing' ), |
|
| 890 | - 'desc' => __( 'Enable renewal invoice email notification. This notification will be sent on renewal.', 'invoicing' ), |
|
| 889 | + 'name' => __('Enable renewal notification', 'invoicing'), |
|
| 890 | + 'desc' => __('Enable renewal invoice email notification. This notification will be sent on renewal.', 'invoicing'), |
|
| 891 | 891 | 'type' => 'checkbox', |
| 892 | 892 | 'std' => 0 |
| 893 | 893 | ), |
| 894 | 894 | 'email_completed_invoice_subject' => array( |
| 895 | 895 | 'id' => 'email_completed_invoice_subject', |
| 896 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 897 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 896 | + 'name' => __('Subject', 'invoicing'), |
|
| 897 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 898 | 898 | 'type' => 'text', |
| 899 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date} has been paid', 'invoicing' ), |
|
| 899 | + 'std' => __('[{site_title}] Your invoice from {invoice_date} has been paid', 'invoicing'), |
|
| 900 | 900 | 'size' => 'large' |
| 901 | 901 | ), |
| 902 | 902 | 'email_completed_invoice_heading' => array( |
| 903 | 903 | 'id' => 'email_completed_invoice_heading', |
| 904 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 905 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
| 904 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 905 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
| 906 | 906 | 'type' => 'text', |
| 907 | - 'std' => __( 'Your invoice has been paid', 'invoicing' ), |
|
| 907 | + 'std' => __('Your invoice has been paid', 'invoicing'), |
|
| 908 | 908 | 'size' => 'large' |
| 909 | 909 | ), |
| 910 | 910 | 'email_completed_invoice_admin_bcc' => array( |
| 911 | 911 | 'id' => 'email_completed_invoice_admin_bcc', |
| 912 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
| 913 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
| 912 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
| 913 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
| 914 | 914 | 'type' => 'checkbox', |
| 915 | 915 | ), |
| 916 | 916 | 'email_completed_invoice_body' => array( |
| 917 | 917 | 'id' => 'email_completed_invoice_body', |
| 918 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 919 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 918 | + 'name' => __('Email Content', 'invoicing'), |
|
| 919 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 920 | 920 | 'type' => 'rich_editor', |
| 921 | - 'std' => __( '<p>Hi {name},</p><p>Your recent invoice on {site_title} has been paid.</p>', 'invoicing' ), |
|
| 921 | + 'std' => __('<p>Hi {name},</p><p>Your recent invoice on {site_title} has been paid.</p>', 'invoicing'), |
|
| 922 | 922 | 'class' => 'large', |
| 923 | 923 | 'size' => '10' |
| 924 | 924 | ), |
@@ -927,46 +927,46 @@ discard block |
||
| 927 | 927 | 'refunded_invoice' => array( |
| 928 | 928 | 'email_refunded_invoice_header' => array( |
| 929 | 929 | 'id' => 'email_refunded_invoice_header', |
| 930 | - 'name' => '<h3>' . __( 'Refunded Invoice', 'invoicing' ) . '</h3>', |
|
| 931 | - 'desc' => __( 'Invoice refunded emails are sent to users when their invoices are marked refunded.', 'invoicing' ), |
|
| 930 | + 'name' => '<h3>' . __('Refunded Invoice', 'invoicing') . '</h3>', |
|
| 931 | + 'desc' => __('Invoice refunded emails are sent to users when their invoices are marked refunded.', 'invoicing'), |
|
| 932 | 932 | 'type' => 'header', |
| 933 | 933 | ), |
| 934 | 934 | 'email_refunded_invoice_active' => array( |
| 935 | 935 | 'id' => 'email_refunded_invoice_active', |
| 936 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 937 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 936 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 937 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 938 | 938 | 'type' => 'checkbox', |
| 939 | 939 | 'std' => 1 |
| 940 | 940 | ), |
| 941 | 941 | 'email_refunded_invoice_subject' => array( |
| 942 | 942 | 'id' => 'email_refunded_invoice_subject', |
| 943 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 944 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 943 | + 'name' => __('Subject', 'invoicing'), |
|
| 944 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 945 | 945 | 'type' => 'text', |
| 946 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date} has been refunded', 'invoicing' ), |
|
| 946 | + 'std' => __('[{site_title}] Your invoice from {invoice_date} has been refunded', 'invoicing'), |
|
| 947 | 947 | 'size' => 'large' |
| 948 | 948 | ), |
| 949 | 949 | 'email_refunded_invoice_heading' => array( |
| 950 | 950 | 'id' => 'email_refunded_invoice_heading', |
| 951 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 952 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
| 951 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 952 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
| 953 | 953 | 'type' => 'text', |
| 954 | - 'std' => __( 'Your invoice has been refunded', 'invoicing' ), |
|
| 954 | + 'std' => __('Your invoice has been refunded', 'invoicing'), |
|
| 955 | 955 | 'size' => 'large' |
| 956 | 956 | ), |
| 957 | 957 | 'email_refunded_invoice_admin_bcc' => array( |
| 958 | 958 | 'id' => 'email_refunded_invoice_admin_bcc', |
| 959 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
| 960 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
| 959 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
| 960 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
| 961 | 961 | 'type' => 'checkbox', |
| 962 | 962 | 'std' => 1 |
| 963 | 963 | ), |
| 964 | 964 | 'email_refunded_invoice_body' => array( |
| 965 | 965 | 'id' => 'email_refunded_invoice_body', |
| 966 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 967 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 966 | + 'name' => __('Email Content', 'invoicing'), |
|
| 967 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 968 | 968 | 'type' => 'rich_editor', |
| 969 | - 'std' => __( '<p>Hi {name},</p><p>Your invoice on {site_title} has been refunded.</p>', 'invoicing' ), |
|
| 969 | + 'std' => __('<p>Hi {name},</p><p>Your invoice on {site_title} has been refunded.</p>', 'invoicing'), |
|
| 970 | 970 | 'class' => 'large', |
| 971 | 971 | 'size' => '10' |
| 972 | 972 | ), |
@@ -974,46 +974,46 @@ discard block |
||
| 974 | 974 | 'user_invoice' => array( |
| 975 | 975 | 'email_user_invoice_header' => array( |
| 976 | 976 | 'id' => 'email_user_invoice_header', |
| 977 | - 'name' => '<h3>' . __( 'Customer Invoice', 'invoicing' ) . '</h3>', |
|
| 978 | - 'desc' => __( 'Customer invoice emails can be sent to customers containing their invoice information and payment links.', 'invoicing' ), |
|
| 977 | + 'name' => '<h3>' . __('Customer Invoice', 'invoicing') . '</h3>', |
|
| 978 | + 'desc' => __('Customer invoice emails can be sent to customers containing their invoice information and payment links.', 'invoicing'), |
|
| 979 | 979 | 'type' => 'header', |
| 980 | 980 | ), |
| 981 | 981 | 'email_user_invoice_active' => array( |
| 982 | 982 | 'id' => 'email_user_invoice_active', |
| 983 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 984 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 983 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 984 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 985 | 985 | 'type' => 'checkbox', |
| 986 | 986 | 'std' => 1 |
| 987 | 987 | ), |
| 988 | 988 | 'email_user_invoice_subject' => array( |
| 989 | 989 | 'id' => 'email_user_invoice_subject', |
| 990 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 991 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 990 | + 'name' => __('Subject', 'invoicing'), |
|
| 991 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 992 | 992 | 'type' => 'text', |
| 993 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date}', 'invoicing' ), |
|
| 993 | + 'std' => __('[{site_title}] Your invoice from {invoice_date}', 'invoicing'), |
|
| 994 | 994 | 'size' => 'large' |
| 995 | 995 | ), |
| 996 | 996 | 'email_user_invoice_heading' => array( |
| 997 | 997 | 'id' => 'email_user_invoice_heading', |
| 998 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 999 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
| 998 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 999 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
| 1000 | 1000 | 'type' => 'text', |
| 1001 | - 'std' => __( 'Your invoice {invoice_number} details', 'invoicing' ), |
|
| 1001 | + 'std' => __('Your invoice {invoice_number} details', 'invoicing'), |
|
| 1002 | 1002 | 'size' => 'large' |
| 1003 | 1003 | ), |
| 1004 | 1004 | 'email_user_invoice_admin_bcc' => array( |
| 1005 | 1005 | 'id' => 'email_user_invoice_admin_bcc', |
| 1006 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
| 1007 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
| 1006 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
| 1007 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
| 1008 | 1008 | 'type' => 'checkbox', |
| 1009 | 1009 | 'std' => 1 |
| 1010 | 1010 | ), |
| 1011 | 1011 | 'email_user_invoice_body' => array( |
| 1012 | 1012 | 'id' => 'email_user_invoice_body', |
| 1013 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 1014 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 1013 | + 'name' => __('Email Content', 'invoicing'), |
|
| 1014 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 1015 | 1015 | 'type' => 'rich_editor', |
| 1016 | - 'std' => __( '<p>Hi {name},</p><p>An invoice has been created for you on {site_title}. To view / pay for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing' ), |
|
| 1016 | + 'std' => __('<p>Hi {name},</p><p>An invoice has been created for you on {site_title}. To view / pay for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing'), |
|
| 1017 | 1017 | 'class' => 'large', |
| 1018 | 1018 | 'size' => '10' |
| 1019 | 1019 | ), |
@@ -1021,39 +1021,39 @@ discard block |
||
| 1021 | 1021 | 'user_note' => array( |
| 1022 | 1022 | 'email_user_note_header' => array( |
| 1023 | 1023 | 'id' => 'email_user_note_header', |
| 1024 | - 'name' => '<h3>' . __( 'Customer Note', 'invoicing' ) . '</h3>', |
|
| 1025 | - 'desc' => __( 'Customer note emails are sent when you add a note to an invoice/quote.', 'invoicing' ), |
|
| 1024 | + 'name' => '<h3>' . __('Customer Note', 'invoicing') . '</h3>', |
|
| 1025 | + 'desc' => __('Customer note emails are sent when you add a note to an invoice/quote.', 'invoicing'), |
|
| 1026 | 1026 | 'type' => 'header', |
| 1027 | 1027 | ), |
| 1028 | 1028 | 'email_user_note_active' => array( |
| 1029 | 1029 | 'id' => 'email_user_note_active', |
| 1030 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 1031 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 1030 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 1031 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 1032 | 1032 | 'type' => 'checkbox', |
| 1033 | 1033 | 'std' => 1 |
| 1034 | 1034 | ), |
| 1035 | 1035 | 'email_user_note_subject' => array( |
| 1036 | 1036 | 'id' => 'email_user_note_subject', |
| 1037 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 1038 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 1037 | + 'name' => __('Subject', 'invoicing'), |
|
| 1038 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 1039 | 1039 | 'type' => 'text', |
| 1040 | - 'std' => __( '[{site_title}] Note added to your {invoice_label} #{invoice_number} from {invoice_date}', 'invoicing' ), |
|
| 1040 | + 'std' => __('[{site_title}] Note added to your {invoice_label} #{invoice_number} from {invoice_date}', 'invoicing'), |
|
| 1041 | 1041 | 'size' => 'large' |
| 1042 | 1042 | ), |
| 1043 | 1043 | 'email_user_note_heading' => array( |
| 1044 | 1044 | 'id' => 'email_user_note_heading', |
| 1045 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 1046 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
| 1045 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 1046 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
| 1047 | 1047 | 'type' => 'text', |
| 1048 | - 'std' => __( 'A note has been added to your {invoice_label}', 'invoicing' ), |
|
| 1048 | + 'std' => __('A note has been added to your {invoice_label}', 'invoicing'), |
|
| 1049 | 1049 | 'size' => 'large' |
| 1050 | 1050 | ), |
| 1051 | 1051 | 'email_user_note_body' => array( |
| 1052 | 1052 | 'id' => 'email_user_note_body', |
| 1053 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 1054 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
| 1053 | + 'name' => __('Email Content', 'invoicing'), |
|
| 1054 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
| 1055 | 1055 | 'type' => 'rich_editor', |
| 1056 | - 'std' => __( '<p>Hi {name},</p><p>Following note has been added to your {invoice_label}:</p><blockquote class="wpinv-note">{customer_note}</blockquote>', 'invoicing' ), |
|
| 1056 | + 'std' => __('<p>Hi {name},</p><p>Following note has been added to your {invoice_label}:</p><blockquote class="wpinv-note">{customer_note}</blockquote>', 'invoicing'), |
|
| 1057 | 1057 | 'class' => 'large', |
| 1058 | 1058 | 'size' => '10' |
| 1059 | 1059 | ), |
@@ -1062,165 +1062,165 @@ discard block |
||
| 1062 | 1062 | 'overdue' => array( |
| 1063 | 1063 | 'email_overdue_header' => array( |
| 1064 | 1064 | 'id' => 'email_overdue_header', |
| 1065 | - 'name' => '<h3>' . __( 'Payment Reminder', 'invoicing' ) . '</h3>', |
|
| 1066 | - 'desc' => __( 'Payment reminder emails are sent to user automatically.', 'invoicing' ), |
|
| 1065 | + 'name' => '<h3>' . __('Payment Reminder', 'invoicing') . '</h3>', |
|
| 1066 | + 'desc' => __('Payment reminder emails are sent to user automatically.', 'invoicing'), |
|
| 1067 | 1067 | 'type' => 'header', |
| 1068 | 1068 | ), |
| 1069 | 1069 | 'email_overdue_active' => array( |
| 1070 | 1070 | 'id' => 'email_overdue_active', |
| 1071 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
| 1072 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
| 1071 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
| 1072 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
| 1073 | 1073 | 'type' => 'checkbox', |
| 1074 | 1074 | 'std' => 1 |
| 1075 | 1075 | ), |
| 1076 | 1076 | 'email_due_reminder_days' => array( |
| 1077 | 1077 | 'id' => 'email_due_reminder_days', |
| 1078 | - 'name' => __( 'When to Send', 'invoicing' ), |
|
| 1079 | - 'desc' => __( 'Check when you would like payment reminders sent out.', 'invoicing' ), |
|
| 1078 | + 'name' => __('When to Send', 'invoicing'), |
|
| 1079 | + 'desc' => __('Check when you would like payment reminders sent out.', 'invoicing'), |
|
| 1080 | 1080 | 'default' => '', |
| 1081 | 1081 | 'type' => 'multicheck', |
| 1082 | 1082 | 'options' => $overdue_days_options, |
| 1083 | 1083 | ), |
| 1084 | 1084 | 'email_overdue_subject' => array( |
| 1085 | 1085 | 'id' => 'email_overdue_subject', |
| 1086 | - 'name' => __( 'Subject', 'invoicing' ), |
|
| 1087 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
| 1086 | + 'name' => __('Subject', 'invoicing'), |
|
| 1087 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
| 1088 | 1088 | 'type' => 'text', |
| 1089 | - 'std' => __( '[{site_title}] Payment Reminder', 'invoicing' ), |
|
| 1089 | + 'std' => __('[{site_title}] Payment Reminder', 'invoicing'), |
|
| 1090 | 1090 | 'size' => 'large' |
| 1091 | 1091 | ), |
| 1092 | 1092 | 'email_overdue_heading' => array( |
| 1093 | 1093 | 'id' => 'email_overdue_heading', |
| 1094 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
| 1095 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
| 1094 | + 'name' => __('Email Heading', 'invoicing'), |
|
| 1095 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
| 1096 | 1096 | 'type' => 'text', |
| 1097 | - 'std' => __( 'Payment reminder for your invoice', 'invoicing' ), |
|
| 1097 | + 'std' => __('Payment reminder for your invoice', 'invoicing'), |
|
| 1098 | 1098 | 'size' => 'large' |
| 1099 | 1099 | ), |
| 1100 | 1100 | 'email_overdue_admin_bcc' => array( |
| 1101 | 1101 | 'id' => 'email_overdue_admin_bcc', |
| 1102 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
| 1103 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
| 1102 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
| 1103 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
| 1104 | 1104 | 'type' => 'checkbox', |
| 1105 | 1105 | 'std' => 1 |
| 1106 | 1106 | ), |
| 1107 | 1107 | 'email_overdue_body' => array( |
| 1108 | 1108 | 'id' => 'email_overdue_body', |
| 1109 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
| 1110 | - 'desc' => __( 'The content of the email.', 'invoicing' ), |
|
| 1109 | + 'name' => __('Email Content', 'invoicing'), |
|
| 1110 | + 'desc' => __('The content of the email.', 'invoicing'), |
|
| 1111 | 1111 | 'type' => 'rich_editor', |
| 1112 | - 'std' => __( '<p>Hi {full_name},</p><p>This is just a friendly reminder that your invoice <a href="{invoice_link}">#{invoice_number}</a> {is_was} due on {invoice_due_date}.</p><p>The total of this invoice is {invoice_total}</p><p>To view / pay now for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing' ), |
|
| 1112 | + 'std' => __('<p>Hi {full_name},</p><p>This is just a friendly reminder that your invoice <a href="{invoice_link}">#{invoice_number}</a> {is_was} due on {invoice_due_date}.</p><p>The total of this invoice is {invoice_total}</p><p>To view / pay now for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing'), |
|
| 1113 | 1113 | 'class' => 'large', |
| 1114 | 1114 | 'size' => 10, |
| 1115 | 1115 | ), |
| 1116 | 1116 | ), |
| 1117 | 1117 | ); |
| 1118 | 1118 | |
| 1119 | - return apply_filters( 'wpinv_get_emails', $emails ); |
|
| 1119 | + return apply_filters('wpinv_get_emails', $emails); |
|
| 1120 | 1120 | } |
| 1121 | 1121 | |
| 1122 | -function wpinv_settings_emails( $settings = array() ) { |
|
| 1122 | +function wpinv_settings_emails($settings = array()) { |
|
| 1123 | 1123 | $emails = wpinv_get_emails(); |
| 1124 | 1124 | |
| 1125 | - if ( !empty( $emails ) ) { |
|
| 1126 | - foreach ( $emails as $key => $email ) { |
|
| 1125 | + if (!empty($emails)) { |
|
| 1126 | + foreach ($emails as $key => $email) { |
|
| 1127 | 1127 | $settings[$key] = $email; |
| 1128 | 1128 | } |
| 1129 | 1129 | } |
| 1130 | 1130 | |
| 1131 | - return apply_filters( 'wpinv_settings_get_emails', $settings ); |
|
| 1131 | + return apply_filters('wpinv_settings_get_emails', $settings); |
|
| 1132 | 1132 | } |
| 1133 | -add_filter( 'wpinv_settings_emails', 'wpinv_settings_emails', 10, 1 ); |
|
| 1133 | +add_filter('wpinv_settings_emails', 'wpinv_settings_emails', 10, 1); |
|
| 1134 | 1134 | |
| 1135 | -function wpinv_settings_sections_emails( $settings ) { |
|
| 1135 | +function wpinv_settings_sections_emails($settings) { |
|
| 1136 | 1136 | $emails = wpinv_get_emails(); |
| 1137 | 1137 | |
| 1138 | 1138 | if (!empty($emails)) { |
| 1139 | - foreach ($emails as $key => $email) { |
|
| 1140 | - $settings[$key] = !empty( $email['email_' . $key . '_header']['name'] ) ? strip_tags( $email['email_' . $key . '_header']['name'] ) : $key; |
|
| 1139 | + foreach ($emails as $key => $email) { |
|
| 1140 | + $settings[$key] = !empty($email['email_' . $key . '_header']['name']) ? strip_tags($email['email_' . $key . '_header']['name']) : $key; |
|
| 1141 | 1141 | } |
| 1142 | 1142 | } |
| 1143 | 1143 | |
| 1144 | 1144 | return $settings; |
| 1145 | 1145 | } |
| 1146 | -add_filter( 'wpinv_settings_sections_emails', 'wpinv_settings_sections_emails', 10, 1 ); |
|
| 1146 | +add_filter('wpinv_settings_sections_emails', 'wpinv_settings_sections_emails', 10, 1); |
|
| 1147 | 1147 | |
| 1148 | -function wpinv_email_is_enabled( $email_type ) { |
|
| 1148 | +function wpinv_email_is_enabled($email_type) { |
|
| 1149 | 1149 | $emails = wpinv_get_emails(); |
| 1150 | - $enabled = isset( $emails[$email_type] ) && wpinv_get_option( 'email_'. $email_type . '_active', 0 ) ? true : false; |
|
| 1150 | + $enabled = isset($emails[$email_type]) && wpinv_get_option('email_' . $email_type . '_active', 0) ? true : false; |
|
| 1151 | 1151 | |
| 1152 | - return apply_filters( 'wpinv_email_is_enabled', $enabled, $email_type ); |
|
| 1152 | + return apply_filters('wpinv_email_is_enabled', $enabled, $email_type); |
|
| 1153 | 1153 | } |
| 1154 | 1154 | |
| 1155 | -function wpinv_email_get_recipient( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 1156 | - switch ( $email_type ) { |
|
| 1155 | +function wpinv_email_get_recipient($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 1156 | + switch ($email_type) { |
|
| 1157 | 1157 | case 'new_invoice': |
| 1158 | 1158 | case 'cancelled_invoice': |
| 1159 | 1159 | case 'failed_invoice': |
| 1160 | 1160 | $recipient = wpinv_get_admin_email(); |
| 1161 | 1161 | break; |
| 1162 | 1162 | default: |
| 1163 | - $invoice = !empty( $invoice ) && is_object( $invoice ) ? $invoice : ( $invoice_id > 0 ? wpinv_get_invoice( $invoice_id ) : NULL ); |
|
| 1164 | - $recipient = !empty( $invoice ) ? $invoice->get_email() : ''; |
|
| 1163 | + $invoice = !empty($invoice) && is_object($invoice) ? $invoice : ($invoice_id > 0 ? wpinv_get_invoice($invoice_id) : NULL); |
|
| 1164 | + $recipient = !empty($invoice) ? $invoice->get_email() : ''; |
|
| 1165 | 1165 | break; |
| 1166 | 1166 | } |
| 1167 | 1167 | |
| 1168 | - return apply_filters( 'wpinv_email_recipient', $recipient, $email_type, $invoice_id, $invoice ); |
|
| 1168 | + return apply_filters('wpinv_email_recipient', $recipient, $email_type, $invoice_id, $invoice); |
|
| 1169 | 1169 | } |
| 1170 | 1170 | |
| 1171 | -function wpinv_email_get_subject( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 1172 | - $subject = wpinv_get_option( 'email_' . $email_type . '_subject' ); |
|
| 1173 | - $subject = __( $subject, 'invoicing' ); |
|
| 1171 | +function wpinv_email_get_subject($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 1172 | + $subject = wpinv_get_option('email_' . $email_type . '_subject'); |
|
| 1173 | + $subject = __($subject, 'invoicing'); |
|
| 1174 | 1174 | |
| 1175 | - $subject = wpinv_email_format_text( $subject, $invoice ); |
|
| 1175 | + $subject = wpinv_email_format_text($subject, $invoice); |
|
| 1176 | 1176 | |
| 1177 | - return apply_filters( 'wpinv_email_subject', $subject, $email_type, $invoice_id, $invoice ); |
|
| 1177 | + return apply_filters('wpinv_email_subject', $subject, $email_type, $invoice_id, $invoice); |
|
| 1178 | 1178 | } |
| 1179 | 1179 | |
| 1180 | -function wpinv_email_get_heading( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 1181 | - $email_heading = wpinv_get_option( 'email_' . $email_type . '_heading' ); |
|
| 1182 | - $email_heading = __( $email_heading, 'invoicing' ); |
|
| 1180 | +function wpinv_email_get_heading($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 1181 | + $email_heading = wpinv_get_option('email_' . $email_type . '_heading'); |
|
| 1182 | + $email_heading = __($email_heading, 'invoicing'); |
|
| 1183 | 1183 | |
| 1184 | - $email_heading = wpinv_email_format_text( $email_heading, $invoice ); |
|
| 1184 | + $email_heading = wpinv_email_format_text($email_heading, $invoice); |
|
| 1185 | 1185 | |
| 1186 | - return apply_filters( 'wpinv_email_heading', $email_heading, $email_type, $invoice_id, $invoice ); |
|
| 1186 | + return apply_filters('wpinv_email_heading', $email_heading, $email_type, $invoice_id, $invoice); |
|
| 1187 | 1187 | } |
| 1188 | 1188 | |
| 1189 | -function wpinv_email_get_content( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 1190 | - $content = wpinv_get_option( 'email_' . $email_type . '_body' ); |
|
| 1191 | - $content = __( $content, 'invoicing' ); |
|
| 1189 | +function wpinv_email_get_content($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 1190 | + $content = wpinv_get_option('email_' . $email_type . '_body'); |
|
| 1191 | + $content = __($content, 'invoicing'); |
|
| 1192 | 1192 | |
| 1193 | - $content = wpinv_email_format_text( $content, $invoice ); |
|
| 1193 | + $content = wpinv_email_format_text($content, $invoice); |
|
| 1194 | 1194 | |
| 1195 | - return apply_filters( 'wpinv_email_content', $content, $email_type, $invoice_id, $invoice ); |
|
| 1195 | + return apply_filters('wpinv_email_content', $content, $email_type, $invoice_id, $invoice); |
|
| 1196 | 1196 | } |
| 1197 | 1197 | |
| 1198 | -function wpinv_email_get_headers( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 1198 | +function wpinv_email_get_headers($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 1199 | 1199 | $from_name = wpinv_mail_get_from_address(); |
| 1200 | 1200 | $from_email = wpinv_mail_get_from_address(); |
| 1201 | 1201 | |
| 1202 | - $invoice = !empty( $invoice ) && is_object( $invoice ) ? $invoice : ( $invoice_id > 0 ? wpinv_get_invoice( $invoice_id ) : NULL ); |
|
| 1202 | + $invoice = !empty($invoice) && is_object($invoice) ? $invoice : ($invoice_id > 0 ? wpinv_get_invoice($invoice_id) : NULL); |
|
| 1203 | 1203 | |
| 1204 | - $headers = "From: " . stripslashes_deep( html_entity_decode( $from_name, ENT_COMPAT, 'UTF-8' ) ) . " <$from_email>\r\n"; |
|
| 1205 | - $headers .= "Reply-To: ". $from_email . "\r\n"; |
|
| 1204 | + $headers = "From: " . stripslashes_deep(html_entity_decode($from_name, ENT_COMPAT, 'UTF-8')) . " <$from_email>\r\n"; |
|
| 1205 | + $headers .= "Reply-To: " . $from_email . "\r\n"; |
|
| 1206 | 1206 | $headers .= "Content-Type: " . wpinv_mail_get_content_type() . "\r\n"; |
| 1207 | 1207 | |
| 1208 | - return apply_filters( 'wpinv_email_headers', $headers, $email_type, $invoice_id, $invoice ); |
|
| 1208 | + return apply_filters('wpinv_email_headers', $headers, $email_type, $invoice_id, $invoice); |
|
| 1209 | 1209 | } |
| 1210 | 1210 | |
| 1211 | -function wpinv_email_get_attachments( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 1211 | +function wpinv_email_get_attachments($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 1212 | 1212 | $attachments = array(); |
| 1213 | 1213 | |
| 1214 | - return apply_filters( 'wpinv_email_attachments', $attachments, $email_type, $invoice_id, $invoice ); |
|
| 1214 | + return apply_filters('wpinv_email_attachments', $attachments, $email_type, $invoice_id, $invoice); |
|
| 1215 | 1215 | } |
| 1216 | 1216 | |
| 1217 | -function wpinv_email_format_text( $content, $invoice ) { |
|
| 1217 | +function wpinv_email_format_text($content, $invoice) { |
|
| 1218 | 1218 | $replace_array = array( |
| 1219 | 1219 | '{site_title}' => wpinv_get_blogname(), |
| 1220 | - '{date}' => date_i18n( get_option( 'date_format' ), (int) current_time( 'timestamp' ) ), |
|
| 1220 | + '{date}' => date_i18n(get_option('date_format'), (int) current_time('timestamp')), |
|
| 1221 | 1221 | ); |
| 1222 | 1222 | |
| 1223 | - if ( !empty( $invoice->ID ) ) { |
|
| 1223 | + if (!empty($invoice->ID)) { |
|
| 1224 | 1224 | $replace_array = array_merge( |
| 1225 | 1225 | $replace_array, |
| 1226 | 1226 | array( |
@@ -1230,65 +1230,65 @@ discard block |
||
| 1230 | 1230 | '{last_name}' => $invoice->get_last_name(), |
| 1231 | 1231 | '{email}' => $invoice->get_email(), |
| 1232 | 1232 | '{invoice_number}' => $invoice->get_number(), |
| 1233 | - '{invoice_total}' => $invoice->get_total( true ), |
|
| 1234 | - '{invoice_link}' => $invoice->get_view_url( true ), |
|
| 1235 | - '{invoice_pay_link}'=> $invoice->get_view_url( true ), |
|
| 1236 | - '{invoice_date}' => $invoice->get_invoice_date( true ), |
|
| 1237 | - '{invoice_due_date}'=> $invoice->get_due_date( true ), |
|
| 1238 | - '{invoice_quote}' => $invoice->get_invoice_quote_type( $invoice->ID ), |
|
| 1239 | - '{invoice_label}' => $invoice->get_invoice_quote_type( $invoice->ID ), |
|
| 1240 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < strtotime( date_i18n( 'Y-m-d' ) ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 1233 | + '{invoice_total}' => $invoice->get_total(true), |
|
| 1234 | + '{invoice_link}' => $invoice->get_view_url(true), |
|
| 1235 | + '{invoice_pay_link}'=> $invoice->get_view_url(true), |
|
| 1236 | + '{invoice_date}' => $invoice->get_invoice_date(true), |
|
| 1237 | + '{invoice_due_date}'=> $invoice->get_due_date(true), |
|
| 1238 | + '{invoice_quote}' => $invoice->get_invoice_quote_type($invoice->ID), |
|
| 1239 | + '{invoice_label}' => $invoice->get_invoice_quote_type($invoice->ID), |
|
| 1240 | + '{is_was}' => strtotime($invoice->get_due_date()) < strtotime(date_i18n('Y-m-d')) ? __('was', 'invoicing') : __('is', 'invoicing'), |
|
| 1241 | 1241 | ) |
| 1242 | 1242 | ); |
| 1243 | 1243 | } |
| 1244 | 1244 | |
| 1245 | - $replace_array = apply_filters( 'wpinv_email_format_text', $replace_array, $content, $invoice ); |
|
| 1245 | + $replace_array = apply_filters('wpinv_email_format_text', $replace_array, $content, $invoice); |
|
| 1246 | 1246 | |
| 1247 | - foreach ( $replace_array as $key => $value ) { |
|
| 1248 | - $content = str_replace( $key, $value, $content ); |
|
| 1247 | + foreach ($replace_array as $key => $value) { |
|
| 1248 | + $content = str_replace($key, $value, $content); |
|
| 1249 | 1249 | } |
| 1250 | 1250 | |
| 1251 | - return apply_filters( 'wpinv_email_content_replace', $content ); |
|
| 1251 | + return apply_filters('wpinv_email_content_replace', $content); |
|
| 1252 | 1252 | } |
| 1253 | 1253 | |
| 1254 | -function wpinv_email_style_body( $content ) { |
|
| 1254 | +function wpinv_email_style_body($content) { |
|
| 1255 | 1255 | // make sure we only inline CSS for html emails |
| 1256 | - if ( in_array( wpinv_mail_get_content_type(), array( 'text/html', 'multipart/alternative' ) ) && class_exists( 'DOMDocument' ) ) { |
|
| 1256 | + if (in_array(wpinv_mail_get_content_type(), array('text/html', 'multipart/alternative')) && class_exists('DOMDocument')) { |
|
| 1257 | 1257 | ob_start(); |
| 1258 | - wpinv_get_template( 'emails/wpinv-email-styles.php' ); |
|
| 1259 | - $css = apply_filters( 'wpinv_email_styles', ob_get_clean() ); |
|
| 1258 | + wpinv_get_template('emails/wpinv-email-styles.php'); |
|
| 1259 | + $css = apply_filters('wpinv_email_styles', ob_get_clean()); |
|
| 1260 | 1260 | |
| 1261 | 1261 | // apply CSS styles inline for picky email clients |
| 1262 | 1262 | try { |
| 1263 | - $emogrifier = new Emogrifier( $content, $css ); |
|
| 1263 | + $emogrifier = new Emogrifier($content, $css); |
|
| 1264 | 1264 | $content = $emogrifier->emogrify(); |
| 1265 | - } catch ( Exception $e ) { |
|
| 1266 | - wpinv_error_log( $e->getMessage(), 'emogrifier' ); |
|
| 1265 | + } catch (Exception $e) { |
|
| 1266 | + wpinv_error_log($e->getMessage(), 'emogrifier'); |
|
| 1267 | 1267 | } |
| 1268 | 1268 | } |
| 1269 | 1269 | return $content; |
| 1270 | 1270 | } |
| 1271 | 1271 | |
| 1272 | -function wpinv_email_header( $email_heading = '', $invoice = array(), $email_type = '', $sent_to_admin = false ) { |
|
| 1273 | - wpinv_get_template( 'emails/wpinv-email-header.php', array( 'email_heading' => $email_heading, 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
| 1272 | +function wpinv_email_header($email_heading = '', $invoice = array(), $email_type = '', $sent_to_admin = false) { |
|
| 1273 | + wpinv_get_template('emails/wpinv-email-header.php', array('email_heading' => $email_heading, 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
| 1274 | 1274 | } |
| 1275 | 1275 | |
| 1276 | 1276 | /** |
| 1277 | 1277 | * Get the email footer. |
| 1278 | 1278 | */ |
| 1279 | -function wpinv_email_footer( $invoice = array(), $email_type = '', $sent_to_admin = false ) { |
|
| 1280 | - wpinv_get_template( 'emails/wpinv-email-footer.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
| 1279 | +function wpinv_email_footer($invoice = array(), $email_type = '', $sent_to_admin = false) { |
|
| 1280 | + wpinv_get_template('emails/wpinv-email-footer.php', array('invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
| 1281 | 1281 | } |
| 1282 | 1282 | |
| 1283 | -function wpinv_email_wrap_message( $message ) { |
|
| 1283 | +function wpinv_email_wrap_message($message) { |
|
| 1284 | 1284 | // Buffer |
| 1285 | 1285 | ob_start(); |
| 1286 | 1286 | |
| 1287 | - do_action( 'wpinv_email_header' ); |
|
| 1287 | + do_action('wpinv_email_header'); |
|
| 1288 | 1288 | |
| 1289 | - echo wpautop( wptexturize( $message ) ); |
|
| 1289 | + echo wpautop(wptexturize($message)); |
|
| 1290 | 1290 | |
| 1291 | - do_action( 'wpinv_email_footer' ); |
|
| 1291 | + do_action('wpinv_email_footer'); |
|
| 1292 | 1292 | |
| 1293 | 1293 | // Get contents |
| 1294 | 1294 | $message = ob_get_clean(); |
@@ -1296,92 +1296,92 @@ discard block |
||
| 1296 | 1296 | return $message; |
| 1297 | 1297 | } |
| 1298 | 1298 | |
| 1299 | -function wpinv_email_invoice_details( $invoice, $email_type = '', $sent_to_admin = false ) { |
|
| 1300 | - wpinv_get_template( 'emails/wpinv-email-invoice-details.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
| 1299 | +function wpinv_email_invoice_details($invoice, $email_type = '', $sent_to_admin = false) { |
|
| 1300 | + wpinv_get_template('emails/wpinv-email-invoice-details.php', array('invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
| 1301 | 1301 | } |
| 1302 | 1302 | |
| 1303 | -function wpinv_email_invoice_items( $invoice, $email_type = '', $sent_to_admin = false ) { |
|
| 1304 | - wpinv_get_template( 'emails/wpinv-email-invoice-items.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
| 1303 | +function wpinv_email_invoice_items($invoice, $email_type = '', $sent_to_admin = false) { |
|
| 1304 | + wpinv_get_template('emails/wpinv-email-invoice-items.php', array('invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
| 1305 | 1305 | } |
| 1306 | 1306 | |
| 1307 | -function wpinv_email_billing_details( $invoice, $email_type = '', $sent_to_admin = false ) { |
|
| 1308 | - wpinv_get_template( 'emails/wpinv-email-billing-details.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
| 1307 | +function wpinv_email_billing_details($invoice, $email_type = '', $sent_to_admin = false) { |
|
| 1308 | + wpinv_get_template('emails/wpinv-email-billing-details.php', array('invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
| 1309 | 1309 | } |
| 1310 | 1310 | |
| 1311 | -function wpinv_send_customer_invoice( $data = array() ) { |
|
| 1312 | - $invoice_id = !empty( $data['invoice_id'] ) ? absint( $data['invoice_id'] ) : NULL; |
|
| 1311 | +function wpinv_send_customer_invoice($data = array()) { |
|
| 1312 | + $invoice_id = !empty($data['invoice_id']) ? absint($data['invoice_id']) : NULL; |
|
| 1313 | 1313 | |
| 1314 | - if ( empty( $invoice_id ) ) { |
|
| 1314 | + if (empty($invoice_id)) { |
|
| 1315 | 1315 | return; |
| 1316 | 1316 | } |
| 1317 | 1317 | |
| 1318 | - if ( !wpinv_current_user_can_manage_invoicing() ) { |
|
| 1319 | - wp_die( __( 'You do not have permission to send invoice notification', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 1318 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 1319 | + wp_die(__('You do not have permission to send invoice notification', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
| 1320 | 1320 | } |
| 1321 | 1321 | |
| 1322 | - $sent = wpinv_user_invoice_notification( $invoice_id ); |
|
| 1322 | + $sent = wpinv_user_invoice_notification($invoice_id); |
|
| 1323 | 1323 | |
| 1324 | 1324 | if ( -1 === $sent ) { |
| 1325 | 1325 | $status = 'email_disabled'; |
| 1326 | - } elseif ( $sent ) { |
|
| 1326 | + } elseif ($sent) { |
|
| 1327 | 1327 | $status = 'email_sent'; |
| 1328 | 1328 | } else { |
| 1329 | 1329 | $status = 'email_fail'; |
| 1330 | 1330 | } |
| 1331 | 1331 | |
| 1332 | - $redirect = add_query_arg( array( 'wpinv-message' => $status, 'wpi_action' => false, 'invoice_id' => false ) ); |
|
| 1333 | - wp_redirect( $redirect ); |
|
| 1332 | + $redirect = add_query_arg(array('wpinv-message' => $status, 'wpi_action' => false, 'invoice_id' => false)); |
|
| 1333 | + wp_redirect($redirect); |
|
| 1334 | 1334 | exit; |
| 1335 | 1335 | } |
| 1336 | -add_action( 'wpinv_send_invoice', 'wpinv_send_customer_invoice' ); |
|
| 1336 | +add_action('wpinv_send_invoice', 'wpinv_send_customer_invoice'); |
|
| 1337 | 1337 | |
| 1338 | -function wpinv_send_overdue_reminder( $data = array() ) { |
|
| 1339 | - $invoice_id = !empty( $data['invoice_id'] ) ? absint( $data['invoice_id'] ) : NULL; |
|
| 1338 | +function wpinv_send_overdue_reminder($data = array()) { |
|
| 1339 | + $invoice_id = !empty($data['invoice_id']) ? absint($data['invoice_id']) : NULL; |
|
| 1340 | 1340 | |
| 1341 | - if ( empty( $invoice_id ) ) { |
|
| 1341 | + if (empty($invoice_id)) { |
|
| 1342 | 1342 | return; |
| 1343 | 1343 | } |
| 1344 | 1344 | |
| 1345 | - if ( !wpinv_current_user_can_manage_invoicing() ) { |
|
| 1346 | - wp_die( __( 'You do not have permission to send reminder notification', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 1345 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 1346 | + wp_die(__('You do not have permission to send reminder notification', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
| 1347 | 1347 | } |
| 1348 | 1348 | |
| 1349 | - $sent = wpinv_send_payment_reminder_notification( $invoice_id ); |
|
| 1349 | + $sent = wpinv_send_payment_reminder_notification($invoice_id); |
|
| 1350 | 1350 | |
| 1351 | 1351 | $status = $sent ? 'email_sent' : 'email_fail'; |
| 1352 | 1352 | |
| 1353 | - $redirect = add_query_arg( array( 'wpinv-message' => $status, 'wpi_action' => false, 'invoice_id' => false ) ); |
|
| 1354 | - wp_redirect( $redirect ); |
|
| 1353 | + $redirect = add_query_arg(array('wpinv-message' => $status, 'wpi_action' => false, 'invoice_id' => false)); |
|
| 1354 | + wp_redirect($redirect); |
|
| 1355 | 1355 | exit; |
| 1356 | 1356 | } |
| 1357 | -add_action( 'wpinv_send_reminder', 'wpinv_send_overdue_reminder' ); |
|
| 1357 | +add_action('wpinv_send_reminder', 'wpinv_send_overdue_reminder'); |
|
| 1358 | 1358 | |
| 1359 | -function wpinv_send_customer_note_email( $data ) { |
|
| 1360 | - $invoice_id = !empty( $data['invoice_id'] ) ? absint( $data['invoice_id'] ) : NULL; |
|
| 1359 | +function wpinv_send_customer_note_email($data) { |
|
| 1360 | + $invoice_id = !empty($data['invoice_id']) ? absint($data['invoice_id']) : NULL; |
|
| 1361 | 1361 | |
| 1362 | - if ( empty( $invoice_id ) ) { |
|
| 1362 | + if (empty($invoice_id)) { |
|
| 1363 | 1363 | return; |
| 1364 | 1364 | } |
| 1365 | 1365 | |
| 1366 | - $sent = wpinv_user_note_notification( $invoice_id, $data ); |
|
| 1366 | + $sent = wpinv_user_note_notification($invoice_id, $data); |
|
| 1367 | 1367 | } |
| 1368 | -add_action( 'wpinv_new_customer_note', 'wpinv_send_customer_note_email', 10, 1 ); |
|
| 1368 | +add_action('wpinv_new_customer_note', 'wpinv_send_customer_note_email', 10, 1); |
|
| 1369 | 1369 | |
| 1370 | -function wpinv_add_notes_to_invoice_email( $invoice, $email_type, $sent_to_admin ) { |
|
| 1371 | - if ( !empty( $invoice ) && $email_type == 'user_invoice' && $invoice_notes = wpinv_get_invoice_notes( $invoice->ID, true ) ) { |
|
| 1372 | - $date_format = get_option( 'date_format' ); |
|
| 1373 | - $time_format = get_option( 'time_format' ); |
|
| 1370 | +function wpinv_add_notes_to_invoice_email($invoice, $email_type, $sent_to_admin) { |
|
| 1371 | + if (!empty($invoice) && $email_type == 'user_invoice' && $invoice_notes = wpinv_get_invoice_notes($invoice->ID, true)) { |
|
| 1372 | + $date_format = get_option('date_format'); |
|
| 1373 | + $time_format = get_option('time_format'); |
|
| 1374 | 1374 | ?> |
| 1375 | 1375 | <div id="wpinv-email-notes"> |
| 1376 | - <h3 class="wpinv-notes-t"><?php echo apply_filters( 'wpinv_email_invoice_notes_title', __( 'Invoice Notes', 'invoicing' ) ); ?></h3> |
|
| 1376 | + <h3 class="wpinv-notes-t"><?php echo apply_filters('wpinv_email_invoice_notes_title', __('Invoice Notes', 'invoicing')); ?></h3> |
|
| 1377 | 1377 | <ol class="wpinv-notes-lists"> |
| 1378 | 1378 | <?php |
| 1379 | - foreach ( $invoice_notes as $note ) { |
|
| 1380 | - $note_time = strtotime( $note->comment_date ); |
|
| 1379 | + foreach ($invoice_notes as $note) { |
|
| 1380 | + $note_time = strtotime($note->comment_date); |
|
| 1381 | 1381 | ?> |
| 1382 | 1382 | <li class="comment wpinv-note"> |
| 1383 | - <p class="wpinv-note-date meta"><?php printf( __( '%2$s at %3$s', 'invoicing' ), $note->comment_author, date_i18n( $date_format, $note_time ), date_i18n( $time_format, $note_time ), $note_time ); ?></p> |
|
| 1384 | - <div class="wpinv-note-desc description"><?php echo wpautop( wptexturize( $note->comment_content ) ); ?></div> |
|
| 1383 | + <p class="wpinv-note-date meta"><?php printf(__('%2$s at %3$s', 'invoicing'), $note->comment_author, date_i18n($date_format, $note_time), date_i18n($time_format, $note_time), $note_time); ?></p> |
|
| 1384 | + <div class="wpinv-note-desc description"><?php echo wpautop(wptexturize($note->comment_content)); ?></div> |
|
| 1385 | 1385 | </li> |
| 1386 | 1386 | <?php |
| 1387 | 1387 | } |
@@ -1390,21 +1390,21 @@ discard block |
||
| 1390 | 1390 | <?php |
| 1391 | 1391 | } |
| 1392 | 1392 | } |
| 1393 | -add_action( 'wpinv_email_billing_details', 'wpinv_add_notes_to_invoice_email', 10, 3 ); |
|
| 1393 | +add_action('wpinv_email_billing_details', 'wpinv_add_notes_to_invoice_email', 10, 3); |
|
| 1394 | 1394 | |
| 1395 | 1395 | function wpinv_email_payment_reminders() { |
| 1396 | 1396 | global $wpi_auto_reminder; |
| 1397 | - if ( !wpinv_get_option( 'email_overdue_active' ) ) { |
|
| 1397 | + if (!wpinv_get_option('email_overdue_active')) { |
|
| 1398 | 1398 | return; |
| 1399 | 1399 | } |
| 1400 | 1400 | |
| 1401 | - if ( $reminder_days = wpinv_get_option( 'email_due_reminder_days' ) ) { |
|
| 1402 | - $reminder_days = is_array( $reminder_days ) ? array_values( $reminder_days ) : ''; |
|
| 1401 | + if ($reminder_days = wpinv_get_option('email_due_reminder_days')) { |
|
| 1402 | + $reminder_days = is_array($reminder_days) ? array_values($reminder_days) : ''; |
|
| 1403 | 1403 | |
| 1404 | - if ( empty( $reminder_days ) ) { |
|
| 1404 | + if (empty($reminder_days)) { |
|
| 1405 | 1405 | return; |
| 1406 | 1406 | } |
| 1407 | - $reminder_days = array_unique( array_map( 'absint', $reminder_days ) ); |
|
| 1407 | + $reminder_days = array_unique(array_map('absint', $reminder_days)); |
|
| 1408 | 1408 | |
| 1409 | 1409 | $args = array( |
| 1410 | 1410 | 'post_type' => 'wpi_invoice', |
@@ -1414,7 +1414,7 @@ discard block |
||
| 1414 | 1414 | 'meta_query' => array( |
| 1415 | 1415 | array( |
| 1416 | 1416 | 'key' => '_wpinv_due_date', |
| 1417 | - 'value' => array( '', 'none' ), |
|
| 1417 | + 'value' => array('', 'none'), |
|
| 1418 | 1418 | 'compare' => 'NOT IN', |
| 1419 | 1419 | ) |
| 1420 | 1420 | ), |
@@ -1423,149 +1423,149 @@ discard block |
||
| 1423 | 1423 | 'order' => 'ASC', |
| 1424 | 1424 | ); |
| 1425 | 1425 | |
| 1426 | - $invoices = get_posts( $args ); |
|
| 1426 | + $invoices = get_posts($args); |
|
| 1427 | 1427 | |
| 1428 | - if ( empty( $invoices ) ) { |
|
| 1428 | + if (empty($invoices)) { |
|
| 1429 | 1429 | return; |
| 1430 | 1430 | } |
| 1431 | 1431 | |
| 1432 | - $date_to_send = array(); |
|
| 1432 | + $date_to_send = array(); |
|
| 1433 | 1433 | |
| 1434 | - foreach ( $invoices as $id ) { |
|
| 1435 | - $due_date = get_post_meta( $id, '_wpinv_due_date', true ); |
|
| 1434 | + foreach ($invoices as $id) { |
|
| 1435 | + $due_date = get_post_meta($id, '_wpinv_due_date', true); |
|
| 1436 | 1436 | |
| 1437 | - foreach ( $reminder_days as $key => $days ) { |
|
| 1438 | - if ( $days !== '' ) { |
|
| 1439 | - $date_to_send[$id][] = date_i18n( 'Y-m-d', strtotime( $due_date ) + ( $days * DAY_IN_SECONDS ) ); |
|
| 1437 | + foreach ($reminder_days as $key => $days) { |
|
| 1438 | + if ($days !== '') { |
|
| 1439 | + $date_to_send[$id][] = date_i18n('Y-m-d', strtotime($due_date) + ($days * DAY_IN_SECONDS)); |
|
| 1440 | 1440 | } |
| 1441 | 1441 | } |
| 1442 | 1442 | } |
| 1443 | 1443 | |
| 1444 | - $today = date_i18n( 'Y-m-d' ); |
|
| 1444 | + $today = date_i18n('Y-m-d'); |
|
| 1445 | 1445 | $wpi_auto_reminder = true; |
| 1446 | 1446 | |
| 1447 | - foreach ( $date_to_send as $id => $values ) { |
|
| 1448 | - if ( in_array( $today, $values ) ) { |
|
| 1449 | - $sent = get_post_meta( $id, '_wpinv_reminder_sent', true ); |
|
| 1447 | + foreach ($date_to_send as $id => $values) { |
|
| 1448 | + if (in_array($today, $values)) { |
|
| 1449 | + $sent = get_post_meta($id, '_wpinv_reminder_sent', true); |
|
| 1450 | 1450 | |
| 1451 | - if ( isset( $sent ) && !empty( $sent ) ) { |
|
| 1452 | - if ( !in_array( $today, $sent ) ) { |
|
| 1453 | - do_action( 'wpinv_send_payment_reminder_notification', $id ); |
|
| 1451 | + if (isset($sent) && !empty($sent)) { |
|
| 1452 | + if (!in_array($today, $sent)) { |
|
| 1453 | + do_action('wpinv_send_payment_reminder_notification', $id); |
|
| 1454 | 1454 | } |
| 1455 | 1455 | } else { |
| 1456 | - do_action( 'wpinv_send_payment_reminder_notification', $id ); |
|
| 1456 | + do_action('wpinv_send_payment_reminder_notification', $id); |
|
| 1457 | 1457 | } |
| 1458 | 1458 | } |
| 1459 | 1459 | } |
| 1460 | 1460 | |
| 1461 | - $wpi_auto_reminder = false; |
|
| 1461 | + $wpi_auto_reminder = false; |
|
| 1462 | 1462 | } |
| 1463 | 1463 | } |
| 1464 | 1464 | |
| 1465 | -function wpinv_send_payment_reminder_notification( $invoice_id ) { |
|
| 1465 | +function wpinv_send_payment_reminder_notification($invoice_id) { |
|
| 1466 | 1466 | $email_type = 'overdue'; |
| 1467 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
| 1467 | + if (!wpinv_email_is_enabled($email_type)) { |
|
| 1468 | 1468 | return false; |
| 1469 | 1469 | } |
| 1470 | 1470 | |
| 1471 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 1472 | - if ( empty( $invoice ) ) { |
|
| 1471 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 1472 | + if (empty($invoice)) { |
|
| 1473 | 1473 | return false; |
| 1474 | 1474 | } |
| 1475 | 1475 | |
| 1476 | - if ( !$invoice->needs_payment() ) { |
|
| 1476 | + if (!$invoice->needs_payment()) { |
|
| 1477 | 1477 | return false; |
| 1478 | 1478 | } |
| 1479 | 1479 | |
| 1480 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
| 1481 | - if ( !is_email( $recipient ) ) { |
|
| 1480 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
| 1481 | + if (!is_email($recipient)) { |
|
| 1482 | 1482 | return false; |
| 1483 | 1483 | } |
| 1484 | 1484 | |
| 1485 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
| 1485 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
| 1486 | 1486 | |
| 1487 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
| 1488 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
| 1489 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
| 1490 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
| 1491 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
| 1487 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
| 1488 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
| 1489 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
| 1490 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
| 1491 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
| 1492 | 1492 | |
| 1493 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
| 1493 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
| 1494 | 1494 | 'invoice' => $invoice, |
| 1495 | 1495 | 'email_type' => $email_type, |
| 1496 | 1496 | 'email_heading' => $email_heading, |
| 1497 | 1497 | 'sent_to_admin' => false, |
| 1498 | 1498 | 'plain_text' => false, |
| 1499 | 1499 | 'message_body' => $message_body |
| 1500 | - ) ); |
|
| 1500 | + )); |
|
| 1501 | 1501 | |
| 1502 | - $content = wpinv_email_format_text( $content, $invoice ); |
|
| 1502 | + $content = wpinv_email_format_text($content, $invoice); |
|
| 1503 | 1503 | |
| 1504 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 1505 | - if ( $sent ) { |
|
| 1506 | - do_action( 'wpinv_payment_reminder_sent', $invoice_id, $invoice ); |
|
| 1504 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 1505 | + if ($sent) { |
|
| 1506 | + do_action('wpinv_payment_reminder_sent', $invoice_id, $invoice); |
|
| 1507 | 1507 | } |
| 1508 | 1508 | |
| 1509 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
| 1510 | - $recipient = wpinv_get_admin_email(); |
|
| 1511 | - $subject .= ' - ADMIN BCC COPY'; |
|
| 1512 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
| 1509 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
| 1510 | + $recipient = wpinv_get_admin_email(); |
|
| 1511 | + $subject .= ' - ADMIN BCC COPY'; |
|
| 1512 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
| 1513 | 1513 | } |
| 1514 | 1514 | |
| 1515 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
| 1515 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
| 1516 | 1516 | |
| 1517 | 1517 | return $sent; |
| 1518 | 1518 | } |
| 1519 | -add_action( 'wpinv_send_payment_reminder_notification', 'wpinv_send_payment_reminder_notification', 10, 1 ); |
|
| 1519 | +add_action('wpinv_send_payment_reminder_notification', 'wpinv_send_payment_reminder_notification', 10, 1); |
|
| 1520 | 1520 | |
| 1521 | -function wpinv_payment_reminder_sent( $invoice_id, $invoice ) { |
|
| 1521 | +function wpinv_payment_reminder_sent($invoice_id, $invoice) { |
|
| 1522 | 1522 | global $wpi_auto_reminder; |
| 1523 | 1523 | |
| 1524 | - $sent = get_post_meta( $invoice_id, '_wpinv_reminder_sent', true ); |
|
| 1524 | + $sent = get_post_meta($invoice_id, '_wpinv_reminder_sent', true); |
|
| 1525 | 1525 | |
| 1526 | - if ( empty( $sent ) ) { |
|
| 1526 | + if (empty($sent)) { |
|
| 1527 | 1527 | $sent = array(); |
| 1528 | 1528 | } |
| 1529 | - $sent[] = date_i18n( 'Y-m-d' ); |
|
| 1529 | + $sent[] = date_i18n('Y-m-d'); |
|
| 1530 | 1530 | |
| 1531 | - update_post_meta( $invoice_id, '_wpinv_reminder_sent', $sent ); |
|
| 1531 | + update_post_meta($invoice_id, '_wpinv_reminder_sent', $sent); |
|
| 1532 | 1532 | |
| 1533 | - if ( $wpi_auto_reminder ) { // Auto reminder note. |
|
| 1534 | - $note = __( 'Automated reminder sent to the user.', 'invoicing' ); |
|
| 1535 | - $invoice->add_note( $note, false, false, true ); |
|
| 1533 | + if ($wpi_auto_reminder) { // Auto reminder note. |
|
| 1534 | + $note = __('Automated reminder sent to the user.', 'invoicing'); |
|
| 1535 | + $invoice->add_note($note, false, false, true); |
|
| 1536 | 1536 | } else { // Menual reminder note. |
| 1537 | - $note = __( 'Manual reminder sent to the user.', 'invoicing' ); |
|
| 1538 | - $invoice->add_note( $note ); |
|
| 1537 | + $note = __('Manual reminder sent to the user.', 'invoicing'); |
|
| 1538 | + $invoice->add_note($note); |
|
| 1539 | 1539 | } |
| 1540 | 1540 | } |
| 1541 | -add_action( 'wpinv_payment_reminder_sent', 'wpinv_payment_reminder_sent', 10, 2 ); |
|
| 1541 | +add_action('wpinv_payment_reminder_sent', 'wpinv_payment_reminder_sent', 10, 2); |
|
| 1542 | 1542 | |
| 1543 | -function wpinv_invoice_notification_set_locale( $invoice, $email_type, $site = false ) { |
|
| 1544 | - if ( empty( $invoice ) ) { |
|
| 1543 | +function wpinv_invoice_notification_set_locale($invoice, $email_type, $site = false) { |
|
| 1544 | + if (empty($invoice)) { |
|
| 1545 | 1545 | return; |
| 1546 | 1546 | } |
| 1547 | 1547 | |
| 1548 | - if ( is_int( $invoice ) ) { |
|
| 1549 | - $invoice = wpinv_get_invoice( $invoice ); |
|
| 1548 | + if (is_int($invoice)) { |
|
| 1549 | + $invoice = wpinv_get_invoice($invoice); |
|
| 1550 | 1550 | } |
| 1551 | 1551 | |
| 1552 | - if ( ! empty( $invoice ) && is_object( $invoice ) ) { |
|
| 1553 | - if ( ! $site && function_exists( 'get_user_locale' ) ) { |
|
| 1554 | - $locale = get_user_locale( $invoice->get_user_id() ); |
|
| 1552 | + if (!empty($invoice) && is_object($invoice)) { |
|
| 1553 | + if (!$site && function_exists('get_user_locale')) { |
|
| 1554 | + $locale = get_user_locale($invoice->get_user_id()); |
|
| 1555 | 1555 | } else { |
| 1556 | 1556 | $locale = get_locale(); |
| 1557 | 1557 | } |
| 1558 | 1558 | |
| 1559 | - wpinv_switch_to_locale( $locale ); |
|
| 1559 | + wpinv_switch_to_locale($locale); |
|
| 1560 | 1560 | } |
| 1561 | 1561 | } |
| 1562 | -add_action( 'wpinv_pre_send_invoice_notification', 'wpinv_invoice_notification_set_locale', 10, 3 ); |
|
| 1562 | +add_action('wpinv_pre_send_invoice_notification', 'wpinv_invoice_notification_set_locale', 10, 3); |
|
| 1563 | 1563 | |
| 1564 | -function wpinv_invoice_notification_restore_locale( $invoice, $email_type, $site = false ) { |
|
| 1565 | - if ( empty( $invoice ) ) { |
|
| 1564 | +function wpinv_invoice_notification_restore_locale($invoice, $email_type, $site = false) { |
|
| 1565 | + if (empty($invoice)) { |
|
| 1566 | 1566 | return; |
| 1567 | 1567 | } |
| 1568 | 1568 | |
| 1569 | 1569 | wpinv_restore_locale(); |
| 1570 | 1570 | } |
| 1571 | -add_action( 'wpinv_post_send_invoice_notification', 'wpinv_invoice_notification_restore_locale', 10, 3 ); |
|
| 1571 | +add_action('wpinv_post_send_invoice_notification', 'wpinv_invoice_notification_restore_locale', 10, 3); |
|