@@ -12,443 +12,443 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Invoice_Notification_Emails { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * The array of invoice email actions. |
|
| 17 | - * |
|
| 18 | - * @param array |
|
| 19 | - */ |
|
| 20 | - public $invoice_actions; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Class constructor |
|
| 24 | - * |
|
| 25 | - */ |
|
| 26 | - public function __construct() { |
|
| 27 | - |
|
| 28 | - $this->invoice_actions = apply_filters( |
|
| 29 | - 'getpaid_notification_email_invoice_triggers', |
|
| 30 | - array( |
|
| 31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
| 32 | - 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
| 33 | - 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
| 34 | - 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
| 35 | - 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
| 36 | - 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
| 37 | - 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
| 38 | - 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
| 39 | - 'getpaid_new_customer_note' => 'user_note', |
|
| 40 | - 'getpaid_daily_maintenance' => 'overdue', |
|
| 41 | - ) |
|
| 42 | - ); |
|
| 43 | - |
|
| 44 | - $this->init_hooks(); |
|
| 45 | - |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * Registers email hooks. |
|
| 50 | - */ |
|
| 51 | - public function init_hooks() { |
|
| 52 | - |
|
| 53 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
| 54 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
| 55 | - |
|
| 56 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
| 57 | - $this->init_email_type_hook( $hook, $email_type ); |
|
| 58 | - } |
|
| 59 | - } |
|
| 60 | - |
|
| 61 | - /** |
|
| 62 | - * Registers an email hook for an invoice action. |
|
| 63 | - * |
|
| 64 | - * @param string $hook |
|
| 65 | - * @param string|array $email_type |
|
| 66 | - */ |
|
| 67 | - public function init_email_type_hook( $hook, $email_type ) { |
|
| 68 | - |
|
| 69 | - $email_type = wpinv_parse_list( $email_type ); |
|
| 70 | - |
|
| 71 | - foreach ( $email_type as $type ) { |
|
| 72 | - |
|
| 73 | - $email = new GetPaid_Notification_Email( $type ); |
|
| 74 | - |
|
| 75 | - // Abort if it is not active. |
|
| 76 | - if ( ! $email->is_active() ) { |
|
| 77 | - continue; |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - if ( method_exists( $this, $type ) ) { |
|
| 81 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
| 82 | - continue; |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - do_action( 'getpaid_invoice_init_email_type_hook', $type ); |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Filters invoice merge tags. |
|
| 92 | - * |
|
| 93 | - * @param array $merge_tags |
|
| 94 | - * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
| 95 | - */ |
|
| 96 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
| 97 | - |
|
| 98 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 99 | - return array_merge( |
|
| 100 | - $merge_tags, |
|
| 101 | - $this->get_invoice_merge_tags( $object ) |
|
| 102 | - ); |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
| 106 | - return array_merge( |
|
| 107 | - $merge_tags, |
|
| 108 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
| 109 | - ); |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - return $merge_tags; |
|
| 113 | - |
|
| 114 | - } |
|
| 115 | - |
|
| 116 | - /** |
|
| 117 | - * Generates invoice merge tags. |
|
| 118 | - * |
|
| 119 | - * @param WPInv_Invoice $invoice |
|
| 120 | - * @return array |
|
| 121 | - */ |
|
| 122 | - public function get_invoice_merge_tags( $invoice ) { |
|
| 123 | - |
|
| 124 | - // Abort if it does not exist. |
|
| 125 | - if ( ! $invoice->get_id() ) { |
|
| 126 | - return array(); |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - return array( |
|
| 130 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 131 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 132 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 133 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 134 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 135 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 136 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
| 137 | - '{invoice_total}' => wpinv_price( wpinv_format_amount( $invoice->get_total() ) ), |
|
| 138 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 139 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 140 | - '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
| 141 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
| 142 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
| 143 | - '{invoice_quote}' => sanitize_text_field( $invoice->get_type() ), |
|
| 144 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_type() ) ), |
|
| 145 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
| 146 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
| 147 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 148 | - ); |
|
| 149 | - |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - /** |
|
| 153 | - * Helper function to send an email. |
|
| 154 | - * |
|
| 155 | - * @param WPInv_Invoice $invoice |
|
| 156 | - * @param GetPaid_Notification_Email $email |
|
| 157 | - * @param string $type |
|
| 158 | - * @param string|array $recipients |
|
| 159 | - * @param array $extra_args Extra template args. |
|
| 160 | - */ |
|
| 161 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
| 162 | - |
|
| 163 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
| 164 | - |
|
| 165 | - $mailer = new GetPaid_Notification_Email_Sender(); |
|
| 166 | - $merge_tags = $email->get_merge_tags(); |
|
| 167 | - |
|
| 168 | - $result = $mailer->send( |
|
| 169 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
| 170 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
| 171 | - $email->get_content( $merge_tags, $extra_args ), |
|
| 172 | - $email->get_attachments() |
|
| 173 | - ); |
|
| 174 | - |
|
| 175 | - // Maybe send a copy to the admin. |
|
| 176 | - if ( $email->include_admin_bcc() ) { |
|
| 177 | - $mailer->send( |
|
| 178 | - wpinv_get_admin_email(), |
|
| 179 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
| 180 | - $email->get_content( $merge_tags ), |
|
| 181 | - $email->get_attachments() |
|
| 182 | - ); |
|
| 183 | - } |
|
| 184 | - |
|
| 185 | - if ( ! $result ) { |
|
| 186 | - $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
| 190 | - |
|
| 191 | - return $result; |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - /** |
|
| 195 | - * Also send emails to any cc users. |
|
| 196 | - * |
|
| 197 | - * @param array $recipients |
|
| 198 | - * @param GetPaid_Notification_Email $email |
|
| 199 | - */ |
|
| 200 | - public function filter_email_recipients( $recipients, $email ) { |
|
| 201 | - |
|
| 202 | - if ( ! $email->is_admin_email() ) { |
|
| 203 | - $cc = $email->object->get_email_cc(); |
|
| 204 | - |
|
| 205 | - if ( ! empty( $cc ) ) { |
|
| 206 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
| 207 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
| 208 | - } |
|
| 209 | - |
|
| 210 | - } |
|
| 211 | - |
|
| 212 | - return $recipients; |
|
| 213 | - |
|
| 214 | - } |
|
| 215 | - |
|
| 216 | - /** |
|
| 217 | - * Sends a new invoice notification. |
|
| 218 | - * |
|
| 219 | - * @param WPInv_Invoice $invoice |
|
| 220 | - */ |
|
| 221 | - public function new_invoice( $invoice ) { |
|
| 222 | - |
|
| 223 | - // Only send this email for invoices created via the admin page. |
|
| 224 | - if ( $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 225 | - return; |
|
| 226 | - } |
|
| 227 | - |
|
| 228 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 229 | - $recipient = wpinv_get_admin_email(); |
|
| 230 | - |
|
| 231 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 232 | - |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * Sends a cancelled invoice notification. |
|
| 237 | - * |
|
| 238 | - * @param WPInv_Invoice $invoice |
|
| 239 | - */ |
|
| 240 | - public function cancelled_invoice( $invoice ) { |
|
| 15 | + /** |
|
| 16 | + * The array of invoice email actions. |
|
| 17 | + * |
|
| 18 | + * @param array |
|
| 19 | + */ |
|
| 20 | + public $invoice_actions; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Class constructor |
|
| 24 | + * |
|
| 25 | + */ |
|
| 26 | + public function __construct() { |
|
| 27 | + |
|
| 28 | + $this->invoice_actions = apply_filters( |
|
| 29 | + 'getpaid_notification_email_invoice_triggers', |
|
| 30 | + array( |
|
| 31 | + 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
| 32 | + 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
| 33 | + 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
| 34 | + 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
| 35 | + 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
| 36 | + 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
| 37 | + 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
| 38 | + 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
| 39 | + 'getpaid_new_customer_note' => 'user_note', |
|
| 40 | + 'getpaid_daily_maintenance' => 'overdue', |
|
| 41 | + ) |
|
| 42 | + ); |
|
| 43 | + |
|
| 44 | + $this->init_hooks(); |
|
| 45 | + |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * Registers email hooks. |
|
| 50 | + */ |
|
| 51 | + public function init_hooks() { |
|
| 52 | + |
|
| 53 | + add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
| 54 | + add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
| 55 | + |
|
| 56 | + foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
| 57 | + $this->init_email_type_hook( $hook, $email_type ); |
|
| 58 | + } |
|
| 59 | + } |
|
| 60 | + |
|
| 61 | + /** |
|
| 62 | + * Registers an email hook for an invoice action. |
|
| 63 | + * |
|
| 64 | + * @param string $hook |
|
| 65 | + * @param string|array $email_type |
|
| 66 | + */ |
|
| 67 | + public function init_email_type_hook( $hook, $email_type ) { |
|
| 68 | + |
|
| 69 | + $email_type = wpinv_parse_list( $email_type ); |
|
| 70 | + |
|
| 71 | + foreach ( $email_type as $type ) { |
|
| 72 | + |
|
| 73 | + $email = new GetPaid_Notification_Email( $type ); |
|
| 74 | + |
|
| 75 | + // Abort if it is not active. |
|
| 76 | + if ( ! $email->is_active() ) { |
|
| 77 | + continue; |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + if ( method_exists( $this, $type ) ) { |
|
| 81 | + add_action( $hook, array( $this, $type ), 100, 2 ); |
|
| 82 | + continue; |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + do_action( 'getpaid_invoice_init_email_type_hook', $type ); |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Filters invoice merge tags. |
|
| 92 | + * |
|
| 93 | + * @param array $merge_tags |
|
| 94 | + * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
| 95 | + */ |
|
| 96 | + public function invoice_merge_tags( $merge_tags, $object ) { |
|
| 97 | + |
|
| 98 | + if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 99 | + return array_merge( |
|
| 100 | + $merge_tags, |
|
| 101 | + $this->get_invoice_merge_tags( $object ) |
|
| 102 | + ); |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
| 106 | + return array_merge( |
|
| 107 | + $merge_tags, |
|
| 108 | + $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
| 109 | + ); |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + return $merge_tags; |
|
| 113 | + |
|
| 114 | + } |
|
| 115 | + |
|
| 116 | + /** |
|
| 117 | + * Generates invoice merge tags. |
|
| 118 | + * |
|
| 119 | + * @param WPInv_Invoice $invoice |
|
| 120 | + * @return array |
|
| 121 | + */ |
|
| 122 | + public function get_invoice_merge_tags( $invoice ) { |
|
| 123 | + |
|
| 124 | + // Abort if it does not exist. |
|
| 125 | + if ( ! $invoice->get_id() ) { |
|
| 126 | + return array(); |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + return array( |
|
| 130 | + '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 131 | + '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 132 | + '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 133 | + '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 134 | + '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 135 | + '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 136 | + '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
| 137 | + '{invoice_total}' => wpinv_price( wpinv_format_amount( $invoice->get_total() ) ), |
|
| 138 | + '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 139 | + '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 140 | + '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
| 141 | + '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
| 142 | + '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
| 143 | + '{invoice_quote}' => sanitize_text_field( $invoice->get_type() ), |
|
| 144 | + '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_type() ) ), |
|
| 145 | + '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
| 146 | + '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
| 147 | + '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 148 | + ); |
|
| 149 | + |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + /** |
|
| 153 | + * Helper function to send an email. |
|
| 154 | + * |
|
| 155 | + * @param WPInv_Invoice $invoice |
|
| 156 | + * @param GetPaid_Notification_Email $email |
|
| 157 | + * @param string $type |
|
| 158 | + * @param string|array $recipients |
|
| 159 | + * @param array $extra_args Extra template args. |
|
| 160 | + */ |
|
| 161 | + public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
| 162 | + |
|
| 163 | + do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
| 164 | + |
|
| 165 | + $mailer = new GetPaid_Notification_Email_Sender(); |
|
| 166 | + $merge_tags = $email->get_merge_tags(); |
|
| 167 | + |
|
| 168 | + $result = $mailer->send( |
|
| 169 | + apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
| 170 | + $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
| 171 | + $email->get_content( $merge_tags, $extra_args ), |
|
| 172 | + $email->get_attachments() |
|
| 173 | + ); |
|
| 174 | + |
|
| 175 | + // Maybe send a copy to the admin. |
|
| 176 | + if ( $email->include_admin_bcc() ) { |
|
| 177 | + $mailer->send( |
|
| 178 | + wpinv_get_admin_email(), |
|
| 179 | + $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
| 180 | + $email->get_content( $merge_tags ), |
|
| 181 | + $email->get_attachments() |
|
| 182 | + ); |
|
| 183 | + } |
|
| 184 | + |
|
| 185 | + if ( ! $result ) { |
|
| 186 | + $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
| 190 | + |
|
| 191 | + return $result; |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + /** |
|
| 195 | + * Also send emails to any cc users. |
|
| 196 | + * |
|
| 197 | + * @param array $recipients |
|
| 198 | + * @param GetPaid_Notification_Email $email |
|
| 199 | + */ |
|
| 200 | + public function filter_email_recipients( $recipients, $email ) { |
|
| 201 | + |
|
| 202 | + if ( ! $email->is_admin_email() ) { |
|
| 203 | + $cc = $email->object->get_email_cc(); |
|
| 204 | + |
|
| 205 | + if ( ! empty( $cc ) ) { |
|
| 206 | + $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
| 207 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
| 208 | + } |
|
| 209 | + |
|
| 210 | + } |
|
| 211 | + |
|
| 212 | + return $recipients; |
|
| 213 | + |
|
| 214 | + } |
|
| 215 | + |
|
| 216 | + /** |
|
| 217 | + * Sends a new invoice notification. |
|
| 218 | + * |
|
| 219 | + * @param WPInv_Invoice $invoice |
|
| 220 | + */ |
|
| 221 | + public function new_invoice( $invoice ) { |
|
| 222 | + |
|
| 223 | + // Only send this email for invoices created via the admin page. |
|
| 224 | + if ( $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 225 | + return; |
|
| 226 | + } |
|
| 227 | + |
|
| 228 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 229 | + $recipient = wpinv_get_admin_email(); |
|
| 230 | + |
|
| 231 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 232 | + |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * Sends a cancelled invoice notification. |
|
| 237 | + * |
|
| 238 | + * @param WPInv_Invoice $invoice |
|
| 239 | + */ |
|
| 240 | + public function cancelled_invoice( $invoice ) { |
|
| 241 | 241 | |
| 242 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 243 | - $recipient = wpinv_get_admin_email(); |
|
| 242 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 243 | + $recipient = wpinv_get_admin_email(); |
|
| 244 | 244 | |
| 245 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 245 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 246 | 246 | |
| 247 | - } |
|
| 247 | + } |
|
| 248 | 248 | |
| 249 | - /** |
|
| 250 | - * Sends a failed invoice notification. |
|
| 251 | - * |
|
| 252 | - * @param WPInv_Invoice $invoice |
|
| 253 | - */ |
|
| 254 | - public function failed_invoice( $invoice ) { |
|
| 249 | + /** |
|
| 250 | + * Sends a failed invoice notification. |
|
| 251 | + * |
|
| 252 | + * @param WPInv_Invoice $invoice |
|
| 253 | + */ |
|
| 254 | + public function failed_invoice( $invoice ) { |
|
| 255 | 255 | |
| 256 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 257 | - $recipient = wpinv_get_admin_email(); |
|
| 256 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 257 | + $recipient = wpinv_get_admin_email(); |
|
| 258 | 258 | |
| 259 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 259 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 260 | 260 | |
| 261 | - } |
|
| 261 | + } |
|
| 262 | 262 | |
| 263 | - /** |
|
| 264 | - * Sends a notification whenever an invoice is put on hold. |
|
| 265 | - * |
|
| 266 | - * @param WPInv_Invoice $invoice |
|
| 267 | - */ |
|
| 268 | - public function onhold_invoice( $invoice ) { |
|
| 263 | + /** |
|
| 264 | + * Sends a notification whenever an invoice is put on hold. |
|
| 265 | + * |
|
| 266 | + * @param WPInv_Invoice $invoice |
|
| 267 | + */ |
|
| 268 | + public function onhold_invoice( $invoice ) { |
|
| 269 | 269 | |
| 270 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 271 | - $recipient = $invoice->get_email(); |
|
| 270 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 271 | + $recipient = $invoice->get_email(); |
|
| 272 | 272 | |
| 273 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 273 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 274 | 274 | |
| 275 | - } |
|
| 275 | + } |
|
| 276 | 276 | |
| 277 | - /** |
|
| 278 | - * Sends a notification whenever an invoice is marked as processing payment. |
|
| 279 | - * |
|
| 280 | - * @param WPInv_Invoice $invoice |
|
| 281 | - */ |
|
| 282 | - public function processing_invoice( $invoice ) { |
|
| 277 | + /** |
|
| 278 | + * Sends a notification whenever an invoice is marked as processing payment. |
|
| 279 | + * |
|
| 280 | + * @param WPInv_Invoice $invoice |
|
| 281 | + */ |
|
| 282 | + public function processing_invoice( $invoice ) { |
|
| 283 | 283 | |
| 284 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 285 | - $recipient = $invoice->get_email(); |
|
| 284 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 285 | + $recipient = $invoice->get_email(); |
|
| 286 | 286 | |
| 287 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 287 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 288 | 288 | |
| 289 | - } |
|
| 289 | + } |
|
| 290 | 290 | |
| 291 | - /** |
|
| 292 | - * Sends a notification whenever an invoice is paid. |
|
| 293 | - * |
|
| 294 | - * @param WPInv_Invoice $invoice |
|
| 295 | - */ |
|
| 296 | - public function completed_invoice( $invoice ) { |
|
| 291 | + /** |
|
| 292 | + * Sends a notification whenever an invoice is paid. |
|
| 293 | + * |
|
| 294 | + * @param WPInv_Invoice $invoice |
|
| 295 | + */ |
|
| 296 | + public function completed_invoice( $invoice ) { |
|
| 297 | 297 | |
| 298 | - // (Maybe) abort if it is a renewal invoice. |
|
| 299 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
| 300 | - return; |
|
| 301 | - } |
|
| 298 | + // (Maybe) abort if it is a renewal invoice. |
|
| 299 | + if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
| 300 | + return; |
|
| 301 | + } |
|
| 302 | 302 | |
| 303 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 304 | - $recipient = $invoice->get_email(); |
|
| 303 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 304 | + $recipient = $invoice->get_email(); |
|
| 305 | 305 | |
| 306 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 306 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 307 | 307 | |
| 308 | - } |
|
| 308 | + } |
|
| 309 | 309 | |
| 310 | - /** |
|
| 311 | - * Sends a notification whenever an invoice is refunded. |
|
| 312 | - * |
|
| 313 | - * @param WPInv_Invoice $invoice |
|
| 314 | - */ |
|
| 315 | - public function refunded_invoice( $invoice ) { |
|
| 310 | + /** |
|
| 311 | + * Sends a notification whenever an invoice is refunded. |
|
| 312 | + * |
|
| 313 | + * @param WPInv_Invoice $invoice |
|
| 314 | + */ |
|
| 315 | + public function refunded_invoice( $invoice ) { |
|
| 316 | 316 | |
| 317 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 318 | - $recipient = $invoice->get_email(); |
|
| 317 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 318 | + $recipient = $invoice->get_email(); |
|
| 319 | 319 | |
| 320 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 320 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 321 | 321 | |
| 322 | - } |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - /** |
|
| 325 | - * Notifies a user about new invoices |
|
| 326 | - * |
|
| 327 | - * @param WPInv_Invoice $invoice |
|
| 328 | - */ |
|
| 329 | - public function user_invoice( $invoice ) { |
|
| 324 | + /** |
|
| 325 | + * Notifies a user about new invoices |
|
| 326 | + * |
|
| 327 | + * @param WPInv_Invoice $invoice |
|
| 328 | + */ |
|
| 329 | + public function user_invoice( $invoice ) { |
|
| 330 | 330 | |
| 331 | - // Only send this email for invoices created via the admin page. |
|
| 332 | - if ( $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 333 | - return; |
|
| 334 | - } |
|
| 331 | + // Only send this email for invoices created via the admin page. |
|
| 332 | + if ( $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 333 | + return; |
|
| 334 | + } |
|
| 335 | 335 | |
| 336 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 337 | - $recipient = $invoice->get_email(); |
|
| 336 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 337 | + $recipient = $invoice->get_email(); |
|
| 338 | 338 | |
| 339 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 339 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 340 | 340 | |
| 341 | - } |
|
| 341 | + } |
|
| 342 | 342 | |
| 343 | - /** |
|
| 344 | - * Checks if an invoice is a payment form invoice. |
|
| 345 | - * |
|
| 346 | - * @param int $invoice |
|
| 347 | - * @return bool |
|
| 348 | - */ |
|
| 349 | - public function is_payment_form_invoice( $invoice ) { |
|
| 350 | - return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
| 351 | - } |
|
| 343 | + /** |
|
| 344 | + * Checks if an invoice is a payment form invoice. |
|
| 345 | + * |
|
| 346 | + * @param int $invoice |
|
| 347 | + * @return bool |
|
| 348 | + */ |
|
| 349 | + public function is_payment_form_invoice( $invoice ) { |
|
| 350 | + return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
| 351 | + } |
|
| 352 | 352 | |
| 353 | - /** |
|
| 354 | - * Notifies admin about new invoice notes |
|
| 355 | - * |
|
| 356 | - * @param WPInv_Invoice $invoice |
|
| 357 | - * @param string $note |
|
| 358 | - */ |
|
| 359 | - public function user_note( $invoice, $note ) { |
|
| 353 | + /** |
|
| 354 | + * Notifies admin about new invoice notes |
|
| 355 | + * |
|
| 356 | + * @param WPInv_Invoice $invoice |
|
| 357 | + * @param string $note |
|
| 358 | + */ |
|
| 359 | + public function user_note( $invoice, $note ) { |
|
| 360 | 360 | |
| 361 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 362 | - $recipient = $invoice->get_email(); |
|
| 363 | - |
|
| 364 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
| 365 | - |
|
| 366 | - } |
|
| 361 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 362 | + $recipient = $invoice->get_email(); |
|
| 363 | + |
|
| 364 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
| 365 | + |
|
| 366 | + } |
|
| 367 | 367 | |
| 368 | - /** |
|
| 369 | - * (Force) Sends overdue notices. |
|
| 370 | - * |
|
| 371 | - * @param WPInv_Invoice $invoice |
|
| 372 | - */ |
|
| 373 | - public function force_send_overdue_notice( $invoice ) { |
|
| 374 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
| 375 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - /** |
|
| 379 | - * Sends overdue notices. |
|
| 380 | - * |
|
| 381 | - * @TODO: Create an invoices query class. |
|
| 382 | - */ |
|
| 383 | - public function overdue() { |
|
| 384 | - global $wpdb; |
|
| 385 | - |
|
| 386 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
| 387 | - |
|
| 388 | - // Fetch reminder days. |
|
| 389 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
| 390 | - |
|
| 391 | - // Abort if non is set. |
|
| 392 | - if ( empty( $reminder_days ) ) { |
|
| 393 | - return; |
|
| 394 | - } |
|
| 395 | - |
|
| 396 | - // Retrieve date query. |
|
| 397 | - $date_query = $this->get_date_query( $reminder_days ); |
|
| 398 | - |
|
| 399 | - // Invoices table. |
|
| 400 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 401 | - |
|
| 402 | - // Fetch invoices. |
|
| 403 | - $invoices = $wpdb->get_col( |
|
| 404 | - "SELECT posts.ID FROM $wpdb->posts as posts |
|
| 368 | + /** |
|
| 369 | + * (Force) Sends overdue notices. |
|
| 370 | + * |
|
| 371 | + * @param WPInv_Invoice $invoice |
|
| 372 | + */ |
|
| 373 | + public function force_send_overdue_notice( $invoice ) { |
|
| 374 | + $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
| 375 | + return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + /** |
|
| 379 | + * Sends overdue notices. |
|
| 380 | + * |
|
| 381 | + * @TODO: Create an invoices query class. |
|
| 382 | + */ |
|
| 383 | + public function overdue() { |
|
| 384 | + global $wpdb; |
|
| 385 | + |
|
| 386 | + $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
| 387 | + |
|
| 388 | + // Fetch reminder days. |
|
| 389 | + $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
| 390 | + |
|
| 391 | + // Abort if non is set. |
|
| 392 | + if ( empty( $reminder_days ) ) { |
|
| 393 | + return; |
|
| 394 | + } |
|
| 395 | + |
|
| 396 | + // Retrieve date query. |
|
| 397 | + $date_query = $this->get_date_query( $reminder_days ); |
|
| 398 | + |
|
| 399 | + // Invoices table. |
|
| 400 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 401 | + |
|
| 402 | + // Fetch invoices. |
|
| 403 | + $invoices = $wpdb->get_col( |
|
| 404 | + "SELECT posts.ID FROM $wpdb->posts as posts |
|
| 405 | 405 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
| 406 | 406 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query"); |
| 407 | 407 | |
| 408 | - foreach ( $invoices as $invoice ) { |
|
| 408 | + foreach ( $invoices as $invoice ) { |
|
| 409 | 409 | |
| 410 | - // Only send this email for invoices created via the admin page. |
|
| 411 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
| 412 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 413 | - $email->object = $invoice; |
|
| 410 | + // Only send this email for invoices created via the admin page. |
|
| 411 | + if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
| 412 | + $invoice = new WPInv_Invoice( $invoice ); |
|
| 413 | + $email->object = $invoice; |
|
| 414 | 414 | |
| 415 | - if ( $invoice->needs_payment() ) { |
|
| 416 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
| 417 | - } |
|
| 415 | + if ( $invoice->needs_payment() ) { |
|
| 416 | + $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
| 417 | + } |
|
| 418 | 418 | |
| 419 | - } |
|
| 419 | + } |
|
| 420 | 420 | |
| 421 | - } |
|
| 421 | + } |
|
| 422 | 422 | |
| 423 | - } |
|
| 423 | + } |
|
| 424 | 424 | |
| 425 | - /** |
|
| 426 | - * Calculates the date query for an invoices query |
|
| 427 | - * |
|
| 428 | - * @param array $reminder_days |
|
| 429 | - * @return string |
|
| 430 | - */ |
|
| 431 | - public function get_date_query( $reminder_days ) { |
|
| 425 | + /** |
|
| 426 | + * Calculates the date query for an invoices query |
|
| 427 | + * |
|
| 428 | + * @param array $reminder_days |
|
| 429 | + * @return string |
|
| 430 | + */ |
|
| 431 | + public function get_date_query( $reminder_days ) { |
|
| 432 | 432 | |
| 433 | - $date_query = array( |
|
| 434 | - 'relation' => 'OR' |
|
| 435 | - ); |
|
| 433 | + $date_query = array( |
|
| 434 | + 'relation' => 'OR' |
|
| 435 | + ); |
|
| 436 | 436 | |
| 437 | - foreach ( $reminder_days as $days ) { |
|
| 438 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
| 437 | + foreach ( $reminder_days as $days ) { |
|
| 438 | + $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
| 439 | 439 | |
| 440 | - $date_query[] = array( |
|
| 441 | - 'year' => $date['year'], |
|
| 442 | - 'month' => $date['month'], |
|
| 443 | - 'day' => $date['day'], |
|
| 444 | - ); |
|
| 440 | + $date_query[] = array( |
|
| 441 | + 'year' => $date['year'], |
|
| 442 | + 'month' => $date['month'], |
|
| 443 | + 'day' => $date['day'], |
|
| 444 | + ); |
|
| 445 | 445 | |
| 446 | - } |
|
| 446 | + } |
|
| 447 | 447 | |
| 448 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
| 448 | + $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
| 449 | 449 | |
| 450 | - return $date_query->get_sql(); |
|
| 450 | + return $date_query->get_sql(); |
|
| 451 | 451 | |
| 452 | - } |
|
| 452 | + } |
|
| 453 | 453 | |
| 454 | 454 | } |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * This class handles invoice notificaiton emails. |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | $this->invoice_actions = apply_filters( |
| 29 | 29 | 'getpaid_notification_email_invoice_triggers', |
| 30 | 30 | array( |
| 31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
| 31 | + 'getpaid_new_invoice' => array('new_invoice', 'user_invoice'), |
|
| 32 | 32 | 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
| 33 | 33 | 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
| 34 | 34 | 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
@@ -50,11 +50,11 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | public function init_hooks() { |
| 52 | 52 | |
| 53 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
| 54 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
| 53 | + add_filter('getpaid_get_email_merge_tags', array($this, 'invoice_merge_tags'), 10, 2); |
|
| 54 | + add_filter('getpaid_invoice_email_recipients', array($this, 'filter_email_recipients'), 10, 2); |
|
| 55 | 55 | |
| 56 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
| 57 | - $this->init_email_type_hook( $hook, $email_type ); |
|
| 56 | + foreach ($this->invoice_actions as $hook => $email_type) { |
|
| 57 | + $this->init_email_type_hook($hook, $email_type); |
|
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | |
@@ -64,25 +64,25 @@ discard block |
||
| 64 | 64 | * @param string $hook |
| 65 | 65 | * @param string|array $email_type |
| 66 | 66 | */ |
| 67 | - public function init_email_type_hook( $hook, $email_type ) { |
|
| 67 | + public function init_email_type_hook($hook, $email_type) { |
|
| 68 | 68 | |
| 69 | - $email_type = wpinv_parse_list( $email_type ); |
|
| 69 | + $email_type = wpinv_parse_list($email_type); |
|
| 70 | 70 | |
| 71 | - foreach ( $email_type as $type ) { |
|
| 71 | + foreach ($email_type as $type) { |
|
| 72 | 72 | |
| 73 | - $email = new GetPaid_Notification_Email( $type ); |
|
| 73 | + $email = new GetPaid_Notification_Email($type); |
|
| 74 | 74 | |
| 75 | 75 | // Abort if it is not active. |
| 76 | - if ( ! $email->is_active() ) { |
|
| 76 | + if (!$email->is_active()) { |
|
| 77 | 77 | continue; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - if ( method_exists( $this, $type ) ) { |
|
| 81 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
| 80 | + if (method_exists($this, $type)) { |
|
| 81 | + add_action($hook, array($this, $type), 100, 2); |
|
| 82 | 82 | continue; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - do_action( 'getpaid_invoice_init_email_type_hook', $type ); |
|
| 85 | + do_action('getpaid_invoice_init_email_type_hook', $type); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | } |
@@ -93,19 +93,19 @@ discard block |
||
| 93 | 93 | * @param array $merge_tags |
| 94 | 94 | * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
| 95 | 95 | */ |
| 96 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
| 96 | + public function invoice_merge_tags($merge_tags, $object) { |
|
| 97 | 97 | |
| 98 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 98 | + if (is_a($object, 'WPInv_Invoice')) { |
|
| 99 | 99 | return array_merge( |
| 100 | 100 | $merge_tags, |
| 101 | - $this->get_invoice_merge_tags( $object ) |
|
| 101 | + $this->get_invoice_merge_tags($object) |
|
| 102 | 102 | ); |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
| 105 | + if (is_a($object, 'WPInv_Subscription')) { |
|
| 106 | 106 | return array_merge( |
| 107 | 107 | $merge_tags, |
| 108 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
| 108 | + $this->get_invoice_merge_tags($object->get_parent_payment()) |
|
| 109 | 109 | ); |
| 110 | 110 | } |
| 111 | 111 | |
@@ -119,32 +119,32 @@ discard block |
||
| 119 | 119 | * @param WPInv_Invoice $invoice |
| 120 | 120 | * @return array |
| 121 | 121 | */ |
| 122 | - public function get_invoice_merge_tags( $invoice ) { |
|
| 122 | + public function get_invoice_merge_tags($invoice) { |
|
| 123 | 123 | |
| 124 | 124 | // Abort if it does not exist. |
| 125 | - if ( ! $invoice->get_id() ) { |
|
| 125 | + if (!$invoice->get_id()) { |
|
| 126 | 126 | return array(); |
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | return array( |
| 130 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 131 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 132 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 133 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 134 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 135 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 136 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
| 137 | - '{invoice_total}' => wpinv_price( wpinv_format_amount( $invoice->get_total() ) ), |
|
| 138 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 139 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 140 | - '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
| 141 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
| 142 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
| 143 | - '{invoice_quote}' => sanitize_text_field( $invoice->get_type() ), |
|
| 144 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_type() ) ), |
|
| 145 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
| 146 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
| 147 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 130 | + '{name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
| 131 | + '{full_name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
| 132 | + '{first_name}' => sanitize_text_field($invoice->get_first_name()), |
|
| 133 | + '{last_name}' => sanitize_text_field($invoice->get_last_name()), |
|
| 134 | + '{email}' => sanitize_email($invoice->get_email()), |
|
| 135 | + '{invoice_number}' => sanitize_text_field($invoice->get_number()), |
|
| 136 | + '{invoice_currency}' => sanitize_text_field($invoice->get_currency()), |
|
| 137 | + '{invoice_total}' => wpinv_price(wpinv_format_amount($invoice->get_total())), |
|
| 138 | + '{invoice_link}' => esc_url($invoice->get_view_url()), |
|
| 139 | + '{invoice_pay_link}' => esc_url($invoice->get_checkout_payment_url()), |
|
| 140 | + '{invoice_receipt_link}'=> esc_url($invoice->get_receipt_url()), |
|
| 141 | + '{invoice_date}' => getpaid_format_date_value($invoice->get_date_created()), |
|
| 142 | + '{invoice_due_date}' => getpaid_format_date_value($invoice->get_due_date(), __('on receipt', 'invoicing')), |
|
| 143 | + '{invoice_quote}' => sanitize_text_field($invoice->get_type()), |
|
| 144 | + '{invoice_label}' => sanitize_text_field(ucfirst($invoice->get_type())), |
|
| 145 | + '{invoice_description}' => wp_kses_post($invoice->get_description()), |
|
| 146 | + '{subscription_name}' => wp_kses_post($invoice->get_subscription_name()), |
|
| 147 | + '{is_was}' => strtotime($invoice->get_due_date()) < current_time('timestamp') ? __('was', 'invoicing') : __('is', 'invoicing'), |
|
| 148 | 148 | ); |
| 149 | 149 | |
| 150 | 150 | } |
@@ -158,35 +158,35 @@ discard block |
||
| 158 | 158 | * @param string|array $recipients |
| 159 | 159 | * @param array $extra_args Extra template args. |
| 160 | 160 | */ |
| 161 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
| 161 | + public function send_email($invoice, $email, $type, $recipients, $extra_args = array()) { |
|
| 162 | 162 | |
| 163 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
| 163 | + do_action('getpaid_before_send_invoice_notification', $type, $invoice, $email); |
|
| 164 | 164 | |
| 165 | 165 | $mailer = new GetPaid_Notification_Email_Sender(); |
| 166 | 166 | $merge_tags = $email->get_merge_tags(); |
| 167 | 167 | |
| 168 | 168 | $result = $mailer->send( |
| 169 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
| 170 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
| 171 | - $email->get_content( $merge_tags, $extra_args ), |
|
| 169 | + apply_filters('getpaid_invoice_email_recipients', wpinv_parse_list($recipients), $email), |
|
| 170 | + $email->add_merge_tags($email->get_subject(), $merge_tags), |
|
| 171 | + $email->get_content($merge_tags, $extra_args), |
|
| 172 | 172 | $email->get_attachments() |
| 173 | 173 | ); |
| 174 | 174 | |
| 175 | 175 | // Maybe send a copy to the admin. |
| 176 | - if ( $email->include_admin_bcc() ) { |
|
| 176 | + if ($email->include_admin_bcc()) { |
|
| 177 | 177 | $mailer->send( |
| 178 | 178 | wpinv_get_admin_email(), |
| 179 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
| 180 | - $email->get_content( $merge_tags ), |
|
| 179 | + $email->add_merge_tags($email->get_subject() . __(' - ADMIN BCC COPY', 'invoicing'), $merge_tags), |
|
| 180 | + $email->get_content($merge_tags), |
|
| 181 | 181 | $email->get_attachments() |
| 182 | 182 | ); |
| 183 | 183 | } |
| 184 | 184 | |
| 185 | - if ( ! $result ) { |
|
| 186 | - $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
| 185 | + if (!$result) { |
|
| 186 | + $invoice->add_note(sprintf(__('Failed sending %s notification email.', 'invoicing'), sanitize_key($type)), false, false, true); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
| 189 | + do_action('getpaid_after_send_invoice_notification', $type, $invoice, $email); |
|
| 190 | 190 | |
| 191 | 191 | return $result; |
| 192 | 192 | } |
@@ -197,14 +197,14 @@ discard block |
||
| 197 | 197 | * @param array $recipients |
| 198 | 198 | * @param GetPaid_Notification_Email $email |
| 199 | 199 | */ |
| 200 | - public function filter_email_recipients( $recipients, $email ) { |
|
| 200 | + public function filter_email_recipients($recipients, $email) { |
|
| 201 | 201 | |
| 202 | - if ( ! $email->is_admin_email() ) { |
|
| 202 | + if (!$email->is_admin_email()) { |
|
| 203 | 203 | $cc = $email->object->get_email_cc(); |
| 204 | 204 | |
| 205 | - if ( ! empty( $cc ) ) { |
|
| 206 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
| 207 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
| 205 | + if (!empty($cc)) { |
|
| 206 | + $cc = array_map('sanitize_email', wpinv_parse_list($cc)); |
|
| 207 | + $recipients = array_filter(array_unique(array_merge($recipients, $cc))); |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | } |
@@ -218,17 +218,17 @@ discard block |
||
| 218 | 218 | * |
| 219 | 219 | * @param WPInv_Invoice $invoice |
| 220 | 220 | */ |
| 221 | - public function new_invoice( $invoice ) { |
|
| 221 | + public function new_invoice($invoice) { |
|
| 222 | 222 | |
| 223 | 223 | // Only send this email for invoices created via the admin page. |
| 224 | - if ( $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 224 | + if ($this->is_payment_form_invoice($invoice->get_id())) { |
|
| 225 | 225 | return; |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 228 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 229 | 229 | $recipient = wpinv_get_admin_email(); |
| 230 | 230 | |
| 231 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 231 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 232 | 232 | |
| 233 | 233 | } |
| 234 | 234 | |
@@ -237,12 +237,12 @@ discard block |
||
| 237 | 237 | * |
| 238 | 238 | * @param WPInv_Invoice $invoice |
| 239 | 239 | */ |
| 240 | - public function cancelled_invoice( $invoice ) { |
|
| 240 | + public function cancelled_invoice($invoice) { |
|
| 241 | 241 | |
| 242 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 242 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 243 | 243 | $recipient = wpinv_get_admin_email(); |
| 244 | 244 | |
| 245 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 245 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 246 | 246 | |
| 247 | 247 | } |
| 248 | 248 | |
@@ -251,12 +251,12 @@ discard block |
||
| 251 | 251 | * |
| 252 | 252 | * @param WPInv_Invoice $invoice |
| 253 | 253 | */ |
| 254 | - public function failed_invoice( $invoice ) { |
|
| 254 | + public function failed_invoice($invoice) { |
|
| 255 | 255 | |
| 256 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 256 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 257 | 257 | $recipient = wpinv_get_admin_email(); |
| 258 | 258 | |
| 259 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 259 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 260 | 260 | |
| 261 | 261 | } |
| 262 | 262 | |
@@ -265,12 +265,12 @@ discard block |
||
| 265 | 265 | * |
| 266 | 266 | * @param WPInv_Invoice $invoice |
| 267 | 267 | */ |
| 268 | - public function onhold_invoice( $invoice ) { |
|
| 268 | + public function onhold_invoice($invoice) { |
|
| 269 | 269 | |
| 270 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 270 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 271 | 271 | $recipient = $invoice->get_email(); |
| 272 | 272 | |
| 273 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 273 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 274 | 274 | |
| 275 | 275 | } |
| 276 | 276 | |
@@ -279,12 +279,12 @@ discard block |
||
| 279 | 279 | * |
| 280 | 280 | * @param WPInv_Invoice $invoice |
| 281 | 281 | */ |
| 282 | - public function processing_invoice( $invoice ) { |
|
| 282 | + public function processing_invoice($invoice) { |
|
| 283 | 283 | |
| 284 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 284 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 285 | 285 | $recipient = $invoice->get_email(); |
| 286 | 286 | |
| 287 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 287 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 288 | 288 | |
| 289 | 289 | } |
| 290 | 290 | |
@@ -293,17 +293,17 @@ discard block |
||
| 293 | 293 | * |
| 294 | 294 | * @param WPInv_Invoice $invoice |
| 295 | 295 | */ |
| 296 | - public function completed_invoice( $invoice ) { |
|
| 296 | + public function completed_invoice($invoice) { |
|
| 297 | 297 | |
| 298 | 298 | // (Maybe) abort if it is a renewal invoice. |
| 299 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
| 299 | + if ($invoice->is_renewal() && !wpinv_get_option('email_completed_invoice_renewal_active', false)) { |
|
| 300 | 300 | return; |
| 301 | 301 | } |
| 302 | 302 | |
| 303 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 303 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 304 | 304 | $recipient = $invoice->get_email(); |
| 305 | 305 | |
| 306 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 306 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 307 | 307 | |
| 308 | 308 | } |
| 309 | 309 | |
@@ -312,12 +312,12 @@ discard block |
||
| 312 | 312 | * |
| 313 | 313 | * @param WPInv_Invoice $invoice |
| 314 | 314 | */ |
| 315 | - public function refunded_invoice( $invoice ) { |
|
| 315 | + public function refunded_invoice($invoice) { |
|
| 316 | 316 | |
| 317 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 317 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 318 | 318 | $recipient = $invoice->get_email(); |
| 319 | 319 | |
| 320 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 320 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 321 | 321 | |
| 322 | 322 | } |
| 323 | 323 | |
@@ -326,17 +326,17 @@ discard block |
||
| 326 | 326 | * |
| 327 | 327 | * @param WPInv_Invoice $invoice |
| 328 | 328 | */ |
| 329 | - public function user_invoice( $invoice ) { |
|
| 329 | + public function user_invoice($invoice) { |
|
| 330 | 330 | |
| 331 | 331 | // Only send this email for invoices created via the admin page. |
| 332 | - if ( $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 332 | + if ($this->is_payment_form_invoice($invoice->get_id())) { |
|
| 333 | 333 | return; |
| 334 | 334 | } |
| 335 | 335 | |
| 336 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 336 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 337 | 337 | $recipient = $invoice->get_email(); |
| 338 | 338 | |
| 339 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 339 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 340 | 340 | |
| 341 | 341 | } |
| 342 | 342 | |
@@ -346,8 +346,8 @@ discard block |
||
| 346 | 346 | * @param int $invoice |
| 347 | 347 | * @return bool |
| 348 | 348 | */ |
| 349 | - public function is_payment_form_invoice( $invoice ) { |
|
| 350 | - return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
| 349 | + public function is_payment_form_invoice($invoice) { |
|
| 350 | + return empty($_GET['getpaid-admin-action']) && 'payment_form' == get_post_meta($invoice, 'wpinv_created_via', true); |
|
| 351 | 351 | } |
| 352 | 352 | |
| 353 | 353 | /** |
@@ -356,12 +356,12 @@ discard block |
||
| 356 | 356 | * @param WPInv_Invoice $invoice |
| 357 | 357 | * @param string $note |
| 358 | 358 | */ |
| 359 | - public function user_note( $invoice, $note ) { |
|
| 359 | + public function user_note($invoice, $note) { |
|
| 360 | 360 | |
| 361 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 361 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 362 | 362 | $recipient = $invoice->get_email(); |
| 363 | 363 | |
| 364 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
| 364 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient, array('customer_note' => $note)); |
|
| 365 | 365 | |
| 366 | 366 | } |
| 367 | 367 | |
@@ -370,9 +370,9 @@ discard block |
||
| 370 | 370 | * |
| 371 | 371 | * @param WPInv_Invoice $invoice |
| 372 | 372 | */ |
| 373 | - public function force_send_overdue_notice( $invoice ) { |
|
| 374 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
| 375 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
| 373 | + public function force_send_overdue_notice($invoice) { |
|
| 374 | + $email = new GetPaid_Notification_Email('overdue', $invoice); |
|
| 375 | + return $this->send_email($invoice, $email, 'overdue', $invoice->get_email()); |
|
| 376 | 376 | } |
| 377 | 377 | |
| 378 | 378 | /** |
@@ -383,37 +383,37 @@ discard block |
||
| 383 | 383 | public function overdue() { |
| 384 | 384 | global $wpdb; |
| 385 | 385 | |
| 386 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
| 386 | + $email = new GetPaid_Notification_Email(__FUNCTION__); |
|
| 387 | 387 | |
| 388 | 388 | // Fetch reminder days. |
| 389 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
| 389 | + $reminder_days = array_unique(wp_parse_id_list($email->get_option('days'))); |
|
| 390 | 390 | |
| 391 | 391 | // Abort if non is set. |
| 392 | - if ( empty( $reminder_days ) ) { |
|
| 392 | + if (empty($reminder_days)) { |
|
| 393 | 393 | return; |
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | // Retrieve date query. |
| 397 | - $date_query = $this->get_date_query( $reminder_days ); |
|
| 397 | + $date_query = $this->get_date_query($reminder_days); |
|
| 398 | 398 | |
| 399 | 399 | // Invoices table. |
| 400 | 400 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 401 | 401 | |
| 402 | 402 | // Fetch invoices. |
| 403 | - $invoices = $wpdb->get_col( |
|
| 403 | + $invoices = $wpdb->get_col( |
|
| 404 | 404 | "SELECT posts.ID FROM $wpdb->posts as posts |
| 405 | 405 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
| 406 | 406 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query"); |
| 407 | 407 | |
| 408 | - foreach ( $invoices as $invoice ) { |
|
| 408 | + foreach ($invoices as $invoice) { |
|
| 409 | 409 | |
| 410 | 410 | // Only send this email for invoices created via the admin page. |
| 411 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
| 412 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 411 | + if (!$this->is_payment_form_invoice($invoice)) { |
|
| 412 | + $invoice = new WPInv_Invoice($invoice); |
|
| 413 | 413 | $email->object = $invoice; |
| 414 | 414 | |
| 415 | - if ( $invoice->needs_payment() ) { |
|
| 416 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
| 415 | + if ($invoice->needs_payment()) { |
|
| 416 | + $this->send_email($invoice, $email, __FUNCTION__, $invoice->get_email()); |
|
| 417 | 417 | } |
| 418 | 418 | |
| 419 | 419 | } |
@@ -428,14 +428,14 @@ discard block |
||
| 428 | 428 | * @param array $reminder_days |
| 429 | 429 | * @return string |
| 430 | 430 | */ |
| 431 | - public function get_date_query( $reminder_days ) { |
|
| 431 | + public function get_date_query($reminder_days) { |
|
| 432 | 432 | |
| 433 | 433 | $date_query = array( |
| 434 | 434 | 'relation' => 'OR' |
| 435 | 435 | ); |
| 436 | 436 | |
| 437 | - foreach ( $reminder_days as $days ) { |
|
| 438 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
| 437 | + foreach ($reminder_days as $days) { |
|
| 438 | + $date = date_parse(date('Y-m-d', strtotime("-$days days", current_time('timestamp')))); |
|
| 439 | 439 | |
| 440 | 440 | $date_query[] = array( |
| 441 | 441 | 'year' => $date['year'], |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | |
| 446 | 446 | } |
| 447 | 447 | |
| 448 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
| 448 | + $date_query = new WP_Date_Query($date_query, 'invoices.due_date'); |
|
| 449 | 449 | |
| 450 | 450 | return $date_query->get_sql(); |
| 451 | 451 | |
@@ -13,17 +13,17 @@ discard block |
||
| 13 | 13 | class GetPaid_Notification_Email_Sender { |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * Whether or not we should inline CSS into the email. |
|
| 17 | - */ |
|
| 18 | - public $inline_css = true; |
|
| 16 | + * Whether or not we should inline CSS into the email. |
|
| 17 | + */ |
|
| 18 | + public $inline_css = true; |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | - * The wp_mail() data. |
|
| 22 | - */ |
|
| 21 | + * The wp_mail() data. |
|
| 22 | + */ |
|
| 23 | 23 | public $wp_mail_data = null; |
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | - * Sends a new email. |
|
| 26 | + * Sends a new email. |
|
| 27 | 27 | * |
| 28 | 28 | * @param string|array $to The recipients email or an array of recipient emails. |
| 29 | 29 | * @param string $subject The email's subject. |
@@ -31,49 +31,49 @@ discard block |
||
| 31 | 31 | * @param array $attachments The email attachments. |
| 32 | 32 | * |
| 33 | 33 | * @return bool |
| 34 | - */ |
|
| 35 | - public function send( $to, $subject, $email, $attachments = array() ) { |
|
| 34 | + */ |
|
| 35 | + public function send( $to, $subject, $email, $attachments = array() ) { |
|
| 36 | 36 | |
| 37 | - /* |
|
| 37 | + /* |
|
| 38 | 38 | * Allow to filter data on per-email basis. |
| 39 | 39 | */ |
| 40 | - $data = apply_filters( |
|
| 41 | - 'getpaid_email_data', |
|
| 42 | - array( |
|
| 43 | - 'to' => array_filter( array_unique( wpinv_parse_list( $to ) ) ), |
|
| 44 | - 'subject' => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ), |
|
| 45 | - 'email' => $email, |
|
| 46 | - 'headers' => $this->get_headers(), |
|
| 47 | - 'attachments' => $attachments, |
|
| 48 | - ), |
|
| 49 | - $this |
|
| 50 | - ); |
|
| 40 | + $data = apply_filters( |
|
| 41 | + 'getpaid_email_data', |
|
| 42 | + array( |
|
| 43 | + 'to' => array_filter( array_unique( wpinv_parse_list( $to ) ) ), |
|
| 44 | + 'subject' => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ), |
|
| 45 | + 'email' => $email, |
|
| 46 | + 'headers' => $this->get_headers(), |
|
| 47 | + 'attachments' => $attachments, |
|
| 48 | + ), |
|
| 49 | + $this |
|
| 50 | + ); |
|
| 51 | 51 | |
| 52 | 52 | // Remove slashes. |
| 53 | 53 | $data = (array) wp_unslash( $data ); |
| 54 | 54 | |
| 55 | 55 | // Cache it. |
| 56 | - $this->wp_mail_data = $data; |
|
| 56 | + $this->wp_mail_data = $data; |
|
| 57 | 57 | |
| 58 | - // Attach our own hooks. |
|
| 59 | - $this->before_sending(); |
|
| 58 | + // Attach our own hooks. |
|
| 59 | + $this->before_sending(); |
|
| 60 | 60 | |
| 61 | 61 | $result = false; |
| 62 | 62 | |
| 63 | 63 | foreach ( $this->wp_mail_data['to'] as $to ) { |
| 64 | - $result = $this->_send( $to, $data ); |
|
| 64 | + $result = $this->_send( $to, $data ); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - // Remove our hooks. |
|
| 68 | - $this->after_sending(); |
|
| 67 | + // Remove our hooks. |
|
| 68 | + $this->after_sending(); |
|
| 69 | 69 | |
| 70 | - $this->wp_mail_data = null; |
|
| 70 | + $this->wp_mail_data = null; |
|
| 71 | 71 | |
| 72 | - return $result; |
|
| 73 | - } |
|
| 72 | + return $result; |
|
| 73 | + } |
|
| 74 | 74 | |
| 75 | - /** |
|
| 76 | - * Does the actual sending. |
|
| 75 | + /** |
|
| 76 | + * Does the actual sending. |
|
| 77 | 77 | * |
| 78 | 78 | * @param string $to The recipient's email. |
| 79 | 79 | * @param array $data The email's data. |
@@ -81,81 +81,81 @@ discard block |
||
| 81 | 81 | * @param array $attachments The email attachments. |
| 82 | 82 | * |
| 83 | 83 | * @return bool |
| 84 | - */ |
|
| 85 | - protected function _send( $to, $data ) { |
|
| 86 | - |
|
| 87 | - // Prepare the sending function. |
|
| 88 | - $sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' ); |
|
| 89 | - |
|
| 90 | - // Send the actual email. |
|
| 91 | - $result = call_user_func( |
|
| 92 | - $sending_function, |
|
| 93 | - $to, |
|
| 94 | - html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ), |
|
| 95 | - $data['email'], |
|
| 96 | - $data['headers'], |
|
| 97 | - $data['attachments'] |
|
| 98 | - ); |
|
| 99 | - |
|
| 100 | - if ( ! $result ) { |
|
| 101 | - $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] ); |
|
| 102 | - wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ ); |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - return $result; |
|
| 106 | - } |
|
| 84 | + */ |
|
| 85 | + protected function _send( $to, $data ) { |
|
| 86 | + |
|
| 87 | + // Prepare the sending function. |
|
| 88 | + $sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' ); |
|
| 89 | + |
|
| 90 | + // Send the actual email. |
|
| 91 | + $result = call_user_func( |
|
| 92 | + $sending_function, |
|
| 93 | + $to, |
|
| 94 | + html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ), |
|
| 95 | + $data['email'], |
|
| 96 | + $data['headers'], |
|
| 97 | + $data['attachments'] |
|
| 98 | + ); |
|
| 99 | + |
|
| 100 | + if ( ! $result ) { |
|
| 101 | + $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] ); |
|
| 102 | + wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ ); |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + return $result; |
|
| 106 | + } |
|
| 107 | 107 | |
| 108 | 108 | /** |
| 109 | - * Retrieves email headers. |
|
| 110 | - */ |
|
| 111 | - public function get_headers() { |
|
| 109 | + * Retrieves email headers. |
|
| 110 | + */ |
|
| 111 | + public function get_headers() { |
|
| 112 | 112 | |
| 113 | - $name = $this->get_from_name(); |
|
| 114 | - $reply_to = $this->get_reply_to(); |
|
| 115 | - $headers = array( "Reply-To:$name <$reply_to>" ); |
|
| 113 | + $name = $this->get_from_name(); |
|
| 114 | + $reply_to = $this->get_reply_to(); |
|
| 115 | + $headers = array( "Reply-To:$name <$reply_to>" ); |
|
| 116 | 116 | |
| 117 | - return apply_filters( 'getpaid_email_headers', $headers, $this ); |
|
| 117 | + return apply_filters( 'getpaid_email_headers', $headers, $this ); |
|
| 118 | 118 | |
| 119 | - } |
|
| 119 | + } |
|
| 120 | 120 | |
| 121 | 121 | /** |
| 122 | - * Fires before an email is sent |
|
| 123 | - * |
|
| 124 | - * @since 1.0.0 |
|
| 125 | - */ |
|
| 126 | - public function before_sending() { |
|
| 122 | + * Fires before an email is sent |
|
| 123 | + * |
|
| 124 | + * @since 1.0.0 |
|
| 125 | + */ |
|
| 126 | + public function before_sending() { |
|
| 127 | 127 | |
| 128 | 128 | do_action( 'getpaid_before_send_email', $this ); |
| 129 | - add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
| 130 | - add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
| 131 | - add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
| 132 | - add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000000 ); |
|
| 129 | + add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
| 130 | + add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
| 131 | + add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
| 132 | + add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000000 ); |
|
| 133 | 133 | |
| 134 | - } |
|
| 134 | + } |
|
| 135 | 135 | |
| 136 | 136 | /** |
| 137 | - * Returns the from name. |
|
| 138 | - */ |
|
| 139 | - public function get_from_name() { |
|
| 137 | + * Returns the from name. |
|
| 138 | + */ |
|
| 139 | + public function get_from_name() { |
|
| 140 | 140 | |
| 141 | 141 | $from_name = wpinv_get_option( 'email_from_name', get_bloginfo( 'name' ) ); |
| 142 | 142 | |
| 143 | - if ( empty( $from_name ) ) { |
|
| 144 | - $from_name = get_bloginfo( 'name' ); |
|
| 143 | + if ( empty( $from_name ) ) { |
|
| 144 | + $from_name = get_bloginfo( 'name' ); |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - return wp_specialchars_decode( $from_name, ENT_QUOTES ); |
|
| 147 | + return wp_specialchars_decode( $from_name, ENT_QUOTES ); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
| 151 | - * Returns the from email. |
|
| 152 | - */ |
|
| 153 | - public function get_from_address() { |
|
| 151 | + * Returns the from email. |
|
| 152 | + */ |
|
| 153 | + public function get_from_address() { |
|
| 154 | 154 | |
| 155 | 155 | $from_address = wpinv_get_option( 'email_from', $this->default_from_address() ); |
| 156 | 156 | |
| 157 | - if ( ! is_email( $from_address ) ) { |
|
| 158 | - $from_address = $this->default_from_address(); |
|
| 157 | + if ( ! is_email( $from_address ) ) { |
|
| 158 | + $from_address = $this->default_from_address(); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | return $from_address; |
@@ -163,75 +163,75 @@ discard block |
||
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
| 166 | - * The default emails from address. |
|
| 167 | - * |
|
| 168 | - * Defaults to wordpress@$sitename |
|
| 169 | - * Some hosts will block outgoing mail from this address if it doesn't exist, |
|
| 170 | - * but there's no easy alternative. Defaulting to admin_email might appear to be |
|
| 171 | - * another option, but some hosts may refuse to relay mail from an unknown domain. |
|
| 172 | - * |
|
| 173 | - */ |
|
| 174 | - public function default_from_address() { |
|
| 175 | - |
|
| 176 | - // Get the site domain and get rid of www. |
|
| 177 | - $sitename = strtolower( $_SERVER['SERVER_NAME'] ); |
|
| 178 | - if ( substr( $sitename, 0, 4 ) == 'www.' ) { |
|
| 179 | - $sitename = substr( $sitename, 4 ); |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - $from_email = 'wordpress@' . $sitename; |
|
| 183 | - |
|
| 184 | - return apply_filters( 'getpaid_default_from_address', $from_email ); |
|
| 166 | + * The default emails from address. |
|
| 167 | + * |
|
| 168 | + * Defaults to wordpress@$sitename |
|
| 169 | + * Some hosts will block outgoing mail from this address if it doesn't exist, |
|
| 170 | + * but there's no easy alternative. Defaulting to admin_email might appear to be |
|
| 171 | + * another option, but some hosts may refuse to relay mail from an unknown domain. |
|
| 172 | + * |
|
| 173 | + */ |
|
| 174 | + public function default_from_address() { |
|
| 175 | + |
|
| 176 | + // Get the site domain and get rid of www. |
|
| 177 | + $sitename = strtolower( $_SERVER['SERVER_NAME'] ); |
|
| 178 | + if ( substr( $sitename, 0, 4 ) == 'www.' ) { |
|
| 179 | + $sitename = substr( $sitename, 4 ); |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + $from_email = 'wordpress@' . $sitename; |
|
| 183 | + |
|
| 184 | + return apply_filters( 'getpaid_default_from_address', $from_email ); |
|
| 185 | 185 | |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | /** |
| 189 | - * Get the email reply-to. |
|
| 190 | - * |
|
| 191 | - * |
|
| 192 | - * @return string The email reply-to address. |
|
| 193 | - */ |
|
| 194 | - public function get_reply_to() { |
|
| 189 | + * Get the email reply-to. |
|
| 190 | + * |
|
| 191 | + * |
|
| 192 | + * @return string The email reply-to address. |
|
| 193 | + */ |
|
| 194 | + public function get_reply_to() { |
|
| 195 | 195 | |
| 196 | - $reply_to = wpinv_get_admin_email(); |
|
| 196 | + $reply_to = wpinv_get_admin_email(); |
|
| 197 | 197 | |
| 198 | - if ( ! is_email( $reply_to ) ) { |
|
| 199 | - $reply_to = get_option( 'admin_email' ); |
|
| 200 | - } |
|
| 198 | + if ( ! is_email( $reply_to ) ) { |
|
| 199 | + $reply_to = get_option( 'admin_email' ); |
|
| 200 | + } |
|
| 201 | 201 | |
| 202 | - return $reply_to; |
|
| 202 | + return $reply_to; |
|
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | /** |
| 206 | - * Get the email content type. |
|
| 207 | - * |
|
| 208 | - */ |
|
| 209 | - public function get_content_type() { |
|
| 210 | - return apply_filters( 'getpaid_email_content_type', 'text/html', $this ); |
|
| 206 | + * Get the email content type. |
|
| 207 | + * |
|
| 208 | + */ |
|
| 209 | + public function get_content_type() { |
|
| 210 | + return apply_filters( 'getpaid_email_content_type', 'text/html', $this ); |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | /** |
| 214 | - * Ensures that our email messages are not messed up by template plugins. |
|
| 215 | - * |
|
| 216 | - * @return array wp_mail_data. |
|
| 217 | - */ |
|
| 218 | - public function ensure_email_content( $args ) { |
|
| 219 | - $args['message'] = $this->wp_mail_data['email']; |
|
| 220 | - return $args; |
|
| 214 | + * Ensures that our email messages are not messed up by template plugins. |
|
| 215 | + * |
|
| 216 | + * @return array wp_mail_data. |
|
| 217 | + */ |
|
| 218 | + public function ensure_email_content( $args ) { |
|
| 219 | + $args['message'] = $this->wp_mail_data['email']; |
|
| 220 | + return $args; |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | /** |
| 224 | - * A little house keeping after an email is sent. |
|
| 225 | - * |
|
| 226 | - */ |
|
| 227 | - public function after_sending() { |
|
| 224 | + * A little house keeping after an email is sent. |
|
| 225 | + * |
|
| 226 | + */ |
|
| 227 | + public function after_sending() { |
|
| 228 | 228 | |
| 229 | 229 | do_action( 'getpaid_after_send_email', $this->wp_mail_data ); |
| 230 | - remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
| 231 | - remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
| 232 | - remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
| 233 | - remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000000 ); |
|
| 230 | + remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
| 231 | + remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
| 232 | + remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
| 233 | + remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000000 ); |
|
| 234 | 234 | |
| 235 | - } |
|
| 235 | + } |
|
| 236 | 236 | |
| 237 | 237 | } |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * This function is responsible for sending emails. |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | * |
| 33 | 33 | * @return bool |
| 34 | 34 | */ |
| 35 | - public function send( $to, $subject, $email, $attachments = array() ) { |
|
| 35 | + public function send($to, $subject, $email, $attachments = array()) { |
|
| 36 | 36 | |
| 37 | 37 | /* |
| 38 | 38 | * Allow to filter data on per-email basis. |
@@ -40,8 +40,8 @@ discard block |
||
| 40 | 40 | $data = apply_filters( |
| 41 | 41 | 'getpaid_email_data', |
| 42 | 42 | array( |
| 43 | - 'to' => array_filter( array_unique( wpinv_parse_list( $to ) ) ), |
|
| 44 | - 'subject' => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ), |
|
| 43 | + 'to' => array_filter(array_unique(wpinv_parse_list($to))), |
|
| 44 | + 'subject' => htmlspecialchars_decode(strip_tags($subject), ENT_QUOTES), |
|
| 45 | 45 | 'email' => $email, |
| 46 | 46 | 'headers' => $this->get_headers(), |
| 47 | 47 | 'attachments' => $attachments, |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | ); |
| 51 | 51 | |
| 52 | 52 | // Remove slashes. |
| 53 | - $data = (array) wp_unslash( $data ); |
|
| 53 | + $data = (array) wp_unslash($data); |
|
| 54 | 54 | |
| 55 | 55 | // Cache it. |
| 56 | 56 | $this->wp_mail_data = $data; |
@@ -60,8 +60,8 @@ discard block |
||
| 60 | 60 | |
| 61 | 61 | $result = false; |
| 62 | 62 | |
| 63 | - foreach ( $this->wp_mail_data['to'] as $to ) { |
|
| 64 | - $result = $this->_send( $to, $data ); |
|
| 63 | + foreach ($this->wp_mail_data['to'] as $to) { |
|
| 64 | + $result = $this->_send($to, $data); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | // Remove our hooks. |
@@ -82,24 +82,24 @@ discard block |
||
| 82 | 82 | * |
| 83 | 83 | * @return bool |
| 84 | 84 | */ |
| 85 | - protected function _send( $to, $data ) { |
|
| 85 | + protected function _send($to, $data) { |
|
| 86 | 86 | |
| 87 | 87 | // Prepare the sending function. |
| 88 | - $sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' ); |
|
| 88 | + $sending_function = apply_filters('getpaid_email_email_sending_function', 'wp_mail'); |
|
| 89 | 89 | |
| 90 | 90 | // Send the actual email. |
| 91 | 91 | $result = call_user_func( |
| 92 | 92 | $sending_function, |
| 93 | 93 | $to, |
| 94 | - html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ), |
|
| 94 | + html_entity_decode($data['subject'], ENT_QUOTES, get_bloginfo('charset')), |
|
| 95 | 95 | $data['email'], |
| 96 | 96 | $data['headers'], |
| 97 | 97 | $data['attachments'] |
| 98 | 98 | ); |
| 99 | 99 | |
| 100 | - if ( ! $result ) { |
|
| 101 | - $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] ); |
|
| 102 | - wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ ); |
|
| 100 | + if (!$result) { |
|
| 101 | + $log_message = wp_sprintf(__("\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing'), date_i18n('F j Y H:i:s', current_time('timestamp')), $to, $data['subject']); |
|
| 102 | + wpinv_error_log($log_message, __('Email from Invoicing plugin failed to send', 'invoicing'), __FILE__, __LINE__); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | return $result; |
@@ -112,9 +112,9 @@ discard block |
||
| 112 | 112 | |
| 113 | 113 | $name = $this->get_from_name(); |
| 114 | 114 | $reply_to = $this->get_reply_to(); |
| 115 | - $headers = array( "Reply-To:$name <$reply_to>" ); |
|
| 115 | + $headers = array("Reply-To:$name <$reply_to>"); |
|
| 116 | 116 | |
| 117 | - return apply_filters( 'getpaid_email_headers', $headers, $this ); |
|
| 117 | + return apply_filters('getpaid_email_headers', $headers, $this); |
|
| 118 | 118 | |
| 119 | 119 | } |
| 120 | 120 | |
@@ -125,11 +125,11 @@ discard block |
||
| 125 | 125 | */ |
| 126 | 126 | public function before_sending() { |
| 127 | 127 | |
| 128 | - do_action( 'getpaid_before_send_email', $this ); |
|
| 129 | - add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
| 130 | - add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
| 131 | - add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
| 132 | - add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000000 ); |
|
| 128 | + do_action('getpaid_before_send_email', $this); |
|
| 129 | + add_filter('wp_mail_from', array($this, 'get_from_address'), 1000); |
|
| 130 | + add_filter('wp_mail_from_name', array($this, 'get_from_name'), 1000); |
|
| 131 | + add_filter('wp_mail_content_type', array($this, 'get_content_type'), 1000); |
|
| 132 | + add_filter('wp_mail', array($this, 'ensure_email_content'), 1000000); |
|
| 133 | 133 | |
| 134 | 134 | } |
| 135 | 135 | |
@@ -138,13 +138,13 @@ discard block |
||
| 138 | 138 | */ |
| 139 | 139 | public function get_from_name() { |
| 140 | 140 | |
| 141 | - $from_name = wpinv_get_option( 'email_from_name', get_bloginfo( 'name' ) ); |
|
| 141 | + $from_name = wpinv_get_option('email_from_name', get_bloginfo('name')); |
|
| 142 | 142 | |
| 143 | - if ( empty( $from_name ) ) { |
|
| 144 | - $from_name = get_bloginfo( 'name' ); |
|
| 143 | + if (empty($from_name)) { |
|
| 144 | + $from_name = get_bloginfo('name'); |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - return wp_specialchars_decode( $from_name, ENT_QUOTES ); |
|
| 147 | + return wp_specialchars_decode($from_name, ENT_QUOTES); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
@@ -152,10 +152,10 @@ discard block |
||
| 152 | 152 | */ |
| 153 | 153 | public function get_from_address() { |
| 154 | 154 | |
| 155 | - $from_address = wpinv_get_option( 'email_from', $this->default_from_address() ); |
|
| 155 | + $from_address = wpinv_get_option('email_from', $this->default_from_address()); |
|
| 156 | 156 | |
| 157 | - if ( ! is_email( $from_address ) ) { |
|
| 158 | - $from_address = $this->default_from_address(); |
|
| 157 | + if (!is_email($from_address)) { |
|
| 158 | + $from_address = $this->default_from_address(); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | return $from_address; |
@@ -174,14 +174,14 @@ discard block |
||
| 174 | 174 | public function default_from_address() { |
| 175 | 175 | |
| 176 | 176 | // Get the site domain and get rid of www. |
| 177 | - $sitename = strtolower( $_SERVER['SERVER_NAME'] ); |
|
| 178 | - if ( substr( $sitename, 0, 4 ) == 'www.' ) { |
|
| 179 | - $sitename = substr( $sitename, 4 ); |
|
| 177 | + $sitename = strtolower($_SERVER['SERVER_NAME']); |
|
| 178 | + if (substr($sitename, 0, 4) == 'www.') { |
|
| 179 | + $sitename = substr($sitename, 4); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | $from_email = 'wordpress@' . $sitename; |
| 183 | 183 | |
| 184 | - return apply_filters( 'getpaid_default_from_address', $from_email ); |
|
| 184 | + return apply_filters('getpaid_default_from_address', $from_email); |
|
| 185 | 185 | |
| 186 | 186 | } |
| 187 | 187 | |
@@ -195,8 +195,8 @@ discard block |
||
| 195 | 195 | |
| 196 | 196 | $reply_to = wpinv_get_admin_email(); |
| 197 | 197 | |
| 198 | - if ( ! is_email( $reply_to ) ) { |
|
| 199 | - $reply_to = get_option( 'admin_email' ); |
|
| 198 | + if (!is_email($reply_to)) { |
|
| 199 | + $reply_to = get_option('admin_email'); |
|
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | return $reply_to; |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | * |
| 208 | 208 | */ |
| 209 | 209 | public function get_content_type() { |
| 210 | - return apply_filters( 'getpaid_email_content_type', 'text/html', $this ); |
|
| 210 | + return apply_filters('getpaid_email_content_type', 'text/html', $this); |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | /** |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | * |
| 216 | 216 | * @return array wp_mail_data. |
| 217 | 217 | */ |
| 218 | - public function ensure_email_content( $args ) { |
|
| 218 | + public function ensure_email_content($args) { |
|
| 219 | 219 | $args['message'] = $this->wp_mail_data['email']; |
| 220 | 220 | return $args; |
| 221 | 221 | } |
@@ -226,11 +226,11 @@ discard block |
||
| 226 | 226 | */ |
| 227 | 227 | public function after_sending() { |
| 228 | 228 | |
| 229 | - do_action( 'getpaid_after_send_email', $this->wp_mail_data ); |
|
| 230 | - remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 ); |
|
| 231 | - remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 ); |
|
| 232 | - remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 ); |
|
| 233 | - remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000000 ); |
|
| 229 | + do_action('getpaid_after_send_email', $this->wp_mail_data); |
|
| 230 | + remove_filter('wp_mail_from', array($this, 'get_from_address'), 1000); |
|
| 231 | + remove_filter('wp_mail_from_name', array($this, 'get_from_name'), 1000); |
|
| 232 | + remove_filter('wp_mail_content_type', array($this, 'get_content_type'), 1000); |
|
| 233 | + remove_filter('wp_mail', array($this, 'ensure_email_content'), 1000000); |
|
| 234 | 234 | |
| 235 | 235 | } |
| 236 | 236 | |
@@ -7,23 +7,23 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$label = empty( $label ) ? '' : wp_kses_post( $label ); |
|
| 12 | +$label = empty($label) ? '' : wp_kses_post($label); |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $required ) ) { |
|
| 14 | +if (!empty($required)) { |
|
| 15 | 15 | $label .= "<span class='text-danger'> *</span>"; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | echo aui()->input( |
| 19 | 19 | array( |
| 20 | - 'name' => esc_attr( $id ), |
|
| 21 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 22 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 23 | - 'required' => ! empty( $required ), |
|
| 20 | + 'name' => esc_attr($id), |
|
| 21 | + 'id' => esc_attr($id) . uniqid('_'), |
|
| 22 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
| 23 | + 'required' => !empty($required), |
|
| 24 | 24 | 'label' => $label, |
| 25 | 25 | 'label_type' => 'vertical', |
| 26 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 26 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 27 | 27 | 'type' => 'datepicker', |
| 28 | 28 | ) |
| 29 | 29 | ); |
@@ -7,23 +7,23 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$label = empty( $label ) ? '' : wp_kses_post( $label ); |
|
| 12 | +$label = empty($label) ? '' : wp_kses_post($label); |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $required ) ) { |
|
| 14 | +if (!empty($required)) { |
|
| 15 | 15 | $label .= "<span class='text-danger'> *</span>"; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | echo aui()->input( |
| 19 | 19 | array( |
| 20 | - 'name' => esc_attr( $id ), |
|
| 21 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 22 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 23 | - 'required' => ! empty( $required ), |
|
| 20 | + 'name' => esc_attr($id), |
|
| 21 | + 'id' => esc_attr($id) . uniqid('_'), |
|
| 22 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
| 23 | + 'required' => !empty($required), |
|
| 24 | 24 | 'label' => $label, |
| 25 | 25 | 'label_type' => 'vertical', |
| 26 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 26 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 27 | 27 | 'type' => 'number', |
| 28 | 28 | ) |
| 29 | 29 | ); |
@@ -7,23 +7,23 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$label = empty( $label ) ? '' : wp_kses_post( $label ); |
|
| 12 | +$label = empty($label) ? '' : wp_kses_post($label); |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $required ) ) { |
|
| 14 | +if (!empty($required)) { |
|
| 15 | 15 | $label .= "<span class='text-danger'> *</span>"; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | echo aui()->radio( |
| 19 | 19 | array( |
| 20 | - 'name' => esc_attr( $id ), |
|
| 21 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 22 | - 'required' => ! empty( $required ), |
|
| 20 | + 'name' => esc_attr($id), |
|
| 21 | + 'id' => esc_attr($id) . uniqid('_'), |
|
| 22 | + 'required' => !empty($required), |
|
| 23 | 23 | 'label' => $label, |
| 24 | 24 | 'label_type' => 'vertical', |
| 25 | 25 | 'inline' => false, |
| 26 | - 'options' => empty( $options ) ? array() : array_combine( $options, $options ), |
|
| 27 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 26 | + 'options' => empty($options) ? array() : array_combine($options, $options), |
|
| 27 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 28 | 28 | ) |
| 29 | 29 | ); |
@@ -7,35 +7,35 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | // Ensure that we have options. |
| 13 | -if ( empty( $options ) ) { |
|
| 13 | +if (empty($options)) { |
|
| 14 | 14 | return; |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | // Prepare price options. |
| 18 | -$options = getpaid_convert_price_string_to_options( $options ); |
|
| 19 | -$keys = array_keys( $options ); |
|
| 20 | -$value = empty( $options ) ? '' : $keys[0]; |
|
| 18 | +$options = getpaid_convert_price_string_to_options($options); |
|
| 19 | +$keys = array_keys($options); |
|
| 20 | +$value = empty($options) ? '' : $keys[0]; |
|
| 21 | 21 | |
| 22 | 22 | // Prepare id. |
| 23 | -$id = esc_attr( $id ); |
|
| 23 | +$id = esc_attr($id); |
|
| 24 | 24 | |
| 25 | -$select_type = empty( $select_type ) ? 'select' : $select_type; |
|
| 25 | +$select_type = empty($select_type) ? 'select' : $select_type; |
|
| 26 | 26 | |
| 27 | 27 | // Item select; |
| 28 | -if ( $select_type == 'select' ) { |
|
| 28 | +if ($select_type == 'select') { |
|
| 29 | 29 | echo aui()->select( |
| 30 | 30 | array( |
| 31 | 31 | 'name' => $id, |
| 32 | - 'id' => $id . uniqid( '_' ), |
|
| 33 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 32 | + 'id' => $id . uniqid('_'), |
|
| 33 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
| 34 | 34 | 'value' => $value, |
| 35 | - 'label' => empty( $label ) ? '' : sanitize_text_field( $label ), |
|
| 35 | + 'label' => empty($label) ? '' : sanitize_text_field($label), |
|
| 36 | 36 | 'label_type' => 'vertical', |
| 37 | 37 | 'class' => 'getpaid-price-select-dropdown getpaid-refresh-on-change', |
| 38 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 38 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 39 | 39 | 'options' => $options, |
| 40 | 40 | ) |
| 41 | 41 | ); |
@@ -43,18 +43,18 @@ discard block |
||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | // Item radios; |
| 46 | -if ( $select_type == 'radios' ) { |
|
| 46 | +if ($select_type == 'radios') { |
|
| 47 | 47 | echo aui()->radio( |
| 48 | 48 | array( |
| 49 | - 'name' => esc_attr( $id ), |
|
| 50 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 51 | - 'label' => empty( $label ) ? '' : sanitize_text_field( $label ), |
|
| 49 | + 'name' => esc_attr($id), |
|
| 50 | + 'id' => esc_attr($id) . uniqid('_'), |
|
| 51 | + 'label' => empty($label) ? '' : sanitize_text_field($label), |
|
| 52 | 52 | 'label_type' => 'vertical', |
| 53 | 53 | 'class' => 'getpaid-price-select-radio getpaid-refresh-on-change', |
| 54 | 54 | 'value' => $value, |
| 55 | 55 | 'inline' => false, |
| 56 | 56 | 'options' => $options, |
| 57 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 57 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 58 | 58 | ) |
| 59 | 59 | ); |
| 60 | 60 | return; |
@@ -62,30 +62,30 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | |
| 64 | 64 | // Display the label. |
| 65 | -if ( ! empty( $label ) ) { |
|
| 66 | - $label = sanitize_text_field( $label ); |
|
| 65 | +if (!empty($label)) { |
|
| 66 | + $label = sanitize_text_field($label); |
|
| 67 | 67 | echo "<label>$label</label>"; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | // Item buttons; |
| 71 | -if ( $select_type == 'buttons' || $select_type == 'circles' ) { |
|
| 71 | +if ($select_type == 'buttons' || $select_type == 'circles') { |
|
| 72 | 72 | |
| 73 | 73 | $class = 'getpaid-price-buttons'; |
| 74 | 74 | |
| 75 | - if ( $select_type == 'circles' ) { |
|
| 75 | + if ($select_type == 'circles') { |
|
| 76 | 76 | $class .= ' getpaid-price-circles'; |
| 77 | 77 | } |
| 78 | 78 | echo "<div class='$class'>"; |
| 79 | 79 | |
| 80 | - foreach ( $options as $price => $label ) { |
|
| 81 | - $label = sanitize_text_field( $label ); |
|
| 82 | - $price = esc_attr( $price ); |
|
| 83 | - $_id = $id . uniqid( '_' ); |
|
| 84 | - $checked = checked( $price, $value, false ); |
|
| 80 | + foreach ($options as $price => $label) { |
|
| 81 | + $label = sanitize_text_field($label); |
|
| 82 | + $price = esc_attr($price); |
|
| 83 | + $_id = $id . uniqid('_'); |
|
| 84 | + $checked = checked($price, $value, false); |
|
| 85 | 85 | |
| 86 | 86 | $class = 'rounded'; |
| 87 | 87 | |
| 88 | - if ( $select_type == 'circles' ) { |
|
| 88 | + if ($select_type == 'circles') { |
|
| 89 | 89 | $class = ''; |
| 90 | 90 | } |
| 91 | 91 | echo " |
@@ -101,13 +101,13 @@ discard block |
||
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | // Item checkboxes; |
| 104 | -if ( $select_type == 'checkboxes' ) { |
|
| 104 | +if ($select_type == 'checkboxes') { |
|
| 105 | 105 | echo '<div class="form-group">'; |
| 106 | 106 | |
| 107 | - foreach ( $options as $price => $label ) { |
|
| 108 | - $label = sanitize_text_field( $label ); |
|
| 109 | - $price = esc_attr( $price ); |
|
| 110 | - $checked = checked( $price, $value, false ); |
|
| 107 | + foreach ($options as $price => $label) { |
|
| 108 | + $label = sanitize_text_field($label); |
|
| 109 | + $price = esc_attr($price); |
|
| 110 | + $checked = checked($price, $value, false); |
|
| 111 | 111 | echo " |
| 112 | 112 | <label class='d-block'> |
| 113 | 113 | <input type='checkbox' class='getpaid-price-select-checkbox getpaid-refresh-on-change' name='{$id}[]' value='$price' $checked /> |
@@ -120,6 +120,6 @@ discard block |
||
| 120 | 120 | |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | -if ( ! empty( $description ) ) { |
|
| 123 | +if (!empty($description)) { |
|
| 124 | 124 | echo "<small class='form-text text-muted'>$description</small>"; |
| 125 | 125 | } |
@@ -7,23 +7,23 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$label = empty( $label ) ? '' : wp_kses_post( $label ); |
|
| 12 | +$label = empty($label) ? '' : wp_kses_post($label); |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $required ) ) { |
|
| 14 | +if (!empty($required)) { |
|
| 15 | 15 | $label .= "<span class='text-danger'> *</span>"; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | echo aui()->select( |
| 19 | 19 | array( |
| 20 | - 'name' => esc_attr( $id ), |
|
| 21 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 22 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 23 | - 'required' => ! empty( $required ), |
|
| 20 | + 'name' => esc_attr($id), |
|
| 21 | + 'id' => esc_attr($id) . uniqid('_'), |
|
| 22 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
| 23 | + 'required' => !empty($required), |
|
| 24 | 24 | 'label' => $label, |
| 25 | 25 | 'label_type' => 'vertical', |
| 26 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 27 | - 'options' => empty( $options ) ? array() : array_combine( $options, $options ), |
|
| 26 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 27 | + 'options' => empty($options) ? array() : array_combine($options, $options), |
|
| 28 | 28 | ) |
| 29 | 29 | ); |
@@ -7,23 +7,23 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$label = empty( $label ) ? '' : wp_kses_post( $label ); |
|
| 12 | +$label = empty($label) ? '' : wp_kses_post($label); |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $required ) ) { |
|
| 14 | +if (!empty($required)) { |
|
| 15 | 15 | $label .= "<span class='text-danger'> *</span>"; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | echo aui()->input( |
| 19 | 19 | array( |
| 20 | - 'name' => esc_attr( $id ), |
|
| 21 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 22 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 23 | - 'required' => ! empty( $required ), |
|
| 20 | + 'name' => esc_attr($id), |
|
| 21 | + 'id' => esc_attr($id) . uniqid('_'), |
|
| 22 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
| 23 | + 'required' => !empty($required), |
|
| 24 | 24 | 'label' => $label, |
| 25 | 25 | 'label_type' => 'vertical', |
| 26 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 26 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 27 | 27 | 'type' => 'url', |
| 28 | 28 | ) |
| 29 | 29 | ); |
@@ -7,23 +7,23 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$label = empty( $label ) ? '' : wp_kses_post( $label ); |
|
| 12 | +$label = empty($label) ? '' : wp_kses_post($label); |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $required ) ) { |
|
| 14 | +if (!empty($required)) { |
|
| 15 | 15 | $label .= "<span class='text-danger'> *</span>"; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | echo aui()->input( |
| 19 | 19 | array( |
| 20 | - 'name' => esc_attr( $id ), |
|
| 21 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 22 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 23 | - 'required' => ! empty( $required ), |
|
| 20 | + 'name' => esc_attr($id), |
|
| 21 | + 'id' => esc_attr($id) . uniqid('_'), |
|
| 22 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
| 23 | + 'required' => !empty($required), |
|
| 24 | 24 | 'label' => $label, |
| 25 | 25 | 'label_type' => 'vertical', |
| 26 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 26 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 27 | 27 | 'type' => 'email', |
| 28 | 28 | ) |
| 29 | 29 | ); |