@@ -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', |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | ) |
42 | 42 | ); |
43 | 43 | |
44 | - add_action( 'init', array( $this, 'init_hooks' ) ); |
|
44 | + add_action('init', array($this, 'init_hooks')); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
@@ -49,11 +49,11 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function init_hooks() { |
51 | 51 | |
52 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
53 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
52 | + add_filter('getpaid_get_email_merge_tags', array($this, 'invoice_merge_tags'), 10, 2); |
|
53 | + add_filter('getpaid_invoice_email_recipients', array($this, 'filter_email_recipients'), 10, 2); |
|
54 | 54 | |
55 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
56 | - $this->init_email_type_hook( $hook, $email_type ); |
|
55 | + foreach ($this->invoice_actions as $hook => $email_type) { |
|
56 | + $this->init_email_type_hook($hook, $email_type); |
|
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
@@ -63,25 +63,25 @@ discard block |
||
63 | 63 | * @param string $hook |
64 | 64 | * @param string|array $email_type |
65 | 65 | */ |
66 | - public function init_email_type_hook( $hook, $email_type ) { |
|
66 | + public function init_email_type_hook($hook, $email_type) { |
|
67 | 67 | |
68 | - $email_type = wpinv_parse_list( $email_type ); |
|
68 | + $email_type = wpinv_parse_list($email_type); |
|
69 | 69 | |
70 | - foreach ( $email_type as $type ) { |
|
70 | + foreach ($email_type as $type) { |
|
71 | 71 | |
72 | - $email = new GetPaid_Notification_Email( $type ); |
|
72 | + $email = new GetPaid_Notification_Email($type); |
|
73 | 73 | |
74 | 74 | // Abort if it is not active. |
75 | - if ( ! $email->is_active() ) { |
|
75 | + if (!$email->is_active()) { |
|
76 | 76 | continue; |
77 | 77 | } |
78 | 78 | |
79 | - if ( method_exists( $this, $type ) ) { |
|
80 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
79 | + if (method_exists($this, $type)) { |
|
80 | + add_action($hook, array($this, $type), 100, 2); |
|
81 | 81 | continue; |
82 | 82 | } |
83 | 83 | |
84 | - do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
84 | + do_action('getpaid_invoice_init_email_type_hook', $type, $hook); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | } |
@@ -92,19 +92,19 @@ discard block |
||
92 | 92 | * @param array $merge_tags |
93 | 93 | * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
94 | 94 | */ |
95 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
95 | + public function invoice_merge_tags($merge_tags, $object) { |
|
96 | 96 | |
97 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
97 | + if (is_a($object, 'WPInv_Invoice')) { |
|
98 | 98 | return array_merge( |
99 | 99 | $merge_tags, |
100 | - $this->get_invoice_merge_tags( $object ) |
|
100 | + $this->get_invoice_merge_tags($object) |
|
101 | 101 | ); |
102 | 102 | } |
103 | 103 | |
104 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
104 | + if (is_a($object, 'WPInv_Subscription')) { |
|
105 | 105 | return array_merge( |
106 | 106 | $merge_tags, |
107 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
107 | + $this->get_invoice_merge_tags($object->get_parent_payment()) |
|
108 | 108 | ); |
109 | 109 | } |
110 | 110 | |
@@ -118,52 +118,52 @@ discard block |
||
118 | 118 | * @param WPInv_Invoice $invoice |
119 | 119 | * @return array |
120 | 120 | */ |
121 | - public function get_invoice_merge_tags( $invoice ) { |
|
121 | + public function get_invoice_merge_tags($invoice) { |
|
122 | 122 | |
123 | 123 | // Abort if it does not exist. |
124 | - if ( ! $invoice->get_id() ) { |
|
124 | + if (!$invoice->get_id()) { |
|
125 | 125 | return array(); |
126 | 126 | } |
127 | 127 | |
128 | 128 | $due_date = $invoice->get_due_date(); |
129 | - $due_date = empty( $due_date ) ? time() + MINUTE_IN_SECONDS : strtotime( $due_date ) + ( (int) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); |
|
129 | + $due_date = empty($due_date) ? time() + MINUTE_IN_SECONDS : strtotime($due_date) + ((int) get_option('gmt_offset') * HOUR_IN_SECONDS); |
|
130 | 130 | $merge_tags = array( |
131 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
132 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
133 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
134 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
135 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
136 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
137 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
138 | - '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
139 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
140 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
141 | - '{invoice_receipt_link}' => esc_url( $invoice->get_receipt_url() ), |
|
142 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
143 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
144 | - '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
145 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
146 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
147 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
148 | - '{is_was}' => $due_date < time() ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
131 | + '{name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
132 | + '{full_name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
133 | + '{first_name}' => sanitize_text_field($invoice->get_first_name()), |
|
134 | + '{last_name}' => sanitize_text_field($invoice->get_last_name()), |
|
135 | + '{email}' => sanitize_email($invoice->get_email()), |
|
136 | + '{invoice_number}' => sanitize_text_field($invoice->get_number()), |
|
137 | + '{invoice_currency}' => sanitize_text_field($invoice->get_currency()), |
|
138 | + '{invoice_total}' => sanitize_text_field(wpinv_price($invoice->get_total(), $invoice->get_currency())), |
|
139 | + '{invoice_link}' => esc_url($invoice->get_view_url()), |
|
140 | + '{invoice_pay_link}' => esc_url($invoice->get_checkout_payment_url()), |
|
141 | + '{invoice_receipt_link}' => esc_url($invoice->get_receipt_url()), |
|
142 | + '{invoice_date}' => getpaid_format_date_value($invoice->get_date_created()), |
|
143 | + '{invoice_due_date}' => getpaid_format_date_value($invoice->get_due_date(), __('on receipt', 'invoicing')), |
|
144 | + '{invoice_quote}' => sanitize_text_field(strtolower($invoice->get_label())), |
|
145 | + '{invoice_label}' => sanitize_text_field(ucfirst($invoice->get_label())), |
|
146 | + '{invoice_description}' => wp_kses_post($invoice->get_description()), |
|
147 | + '{subscription_name}' => wp_kses_post($invoice->get_subscription_name()), |
|
148 | + '{is_was}' => $due_date < time() ? __('was', 'invoicing') : __('is', 'invoicing'), |
|
149 | 149 | ); |
150 | 150 | |
151 | - $payment_form_data = $invoice->get_meta( 'payment_form_data', true ); |
|
151 | + $payment_form_data = $invoice->get_meta('payment_form_data', true); |
|
152 | 152 | |
153 | - if ( is_array( $payment_form_data ) ) { |
|
153 | + if (is_array($payment_form_data)) { |
|
154 | 154 | |
155 | - foreach ( $payment_form_data as $label => $value ) { |
|
155 | + foreach ($payment_form_data as $label => $value) { |
|
156 | 156 | |
157 | - $label = preg_replace( '/[^a-z0-9]+/', '_', strtolower( $label ) ); |
|
158 | - $value = is_array( $value ) ? implode( ', ', $value ) : $value; |
|
157 | + $label = preg_replace('/[^a-z0-9]+/', '_', strtolower($label)); |
|
158 | + $value = is_array($value) ? implode(', ', $value) : $value; |
|
159 | 159 | |
160 | - if ( is_scalar( $value ) ) { |
|
161 | - $merge_tags[ "{{$label}}" ] = wp_kses_post( $value ); |
|
160 | + if (is_scalar($value)) { |
|
161 | + $merge_tags["{{$label}}"] = wp_kses_post($value); |
|
162 | 162 | } |
163 | 163 | } |
164 | 164 | } |
165 | 165 | |
166 | - return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
166 | + return apply_filters('getpaid_invoice_email_merge_tags', $merge_tags, $invoice); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | /** |
@@ -175,12 +175,12 @@ discard block |
||
175 | 175 | * @param string|array $recipients |
176 | 176 | * @param array $extra_args Extra template args. |
177 | 177 | */ |
178 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
178 | + public function send_email($invoice, $email, $type, $recipients, $extra_args = array()) { |
|
179 | 179 | |
180 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
180 | + do_action('getpaid_before_send_invoice_notification', $type, $invoice, $email); |
|
181 | 181 | |
182 | - $skip = $invoice->is_free() && wpinv_get_option( 'skip_email_free_invoice' ); |
|
183 | - if ( apply_filters( 'getpaid_skip_invoice_email', $skip, $type, $invoice ) ) { |
|
182 | + $skip = $invoice->is_free() && wpinv_get_option('skip_email_free_invoice'); |
|
183 | + if (apply_filters('getpaid_skip_invoice_email', $skip, $type, $invoice)) { |
|
184 | 184 | return; |
185 | 185 | } |
186 | 186 | |
@@ -188,43 +188,43 @@ discard block |
||
188 | 188 | $merge_tags = $email->get_merge_tags(); |
189 | 189 | |
190 | 190 | $result = $mailer->send( |
191 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
192 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
193 | - $email->get_content( $merge_tags, $extra_args ), |
|
191 | + apply_filters('getpaid_invoice_email_recipients', wpinv_parse_list($recipients), $email), |
|
192 | + $email->add_merge_tags($email->get_subject(), $merge_tags), |
|
193 | + $email->get_content($merge_tags, $extra_args), |
|
194 | 194 | $email->get_attachments() |
195 | 195 | ); |
196 | 196 | |
197 | 197 | // Maybe send a copy to the admin. |
198 | - if ( $email->include_admin_bcc() ) { |
|
198 | + if ($email->include_admin_bcc()) { |
|
199 | 199 | $mailer->send( |
200 | 200 | wpinv_get_admin_email(), |
201 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
202 | - $email->get_content( $merge_tags ), |
|
201 | + $email->add_merge_tags($email->get_subject() . __(' - ADMIN BCC COPY', 'invoicing'), $merge_tags), |
|
202 | + $email->get_content($merge_tags), |
|
203 | 203 | $email->get_attachments() |
204 | 204 | ); |
205 | 205 | } |
206 | 206 | |
207 | - if ( $result ) { |
|
207 | + if ($result) { |
|
208 | 208 | $invoice->add_system_note( |
209 | 209 | sprintf( |
210 | 210 | // translators: %1 is the email type, %2 is the invoice recipient. |
211 | - __( 'Successfully sent %1$s notification email to %2$s.', 'invoicing' ), |
|
212 | - sanitize_key( $type ), |
|
213 | - $email->is_admin_email() ? __( 'admin', 'invoicing' ) : __( 'the customer', 'invoicing' ) |
|
211 | + __('Successfully sent %1$s notification email to %2$s.', 'invoicing'), |
|
212 | + sanitize_key($type), |
|
213 | + $email->is_admin_email() ? __('admin', 'invoicing') : __('the customer', 'invoicing') |
|
214 | 214 | ) |
215 | 215 | ); |
216 | 216 | } else { |
217 | 217 | $invoice->add_system_note( |
218 | 218 | sprintf( |
219 | 219 | // translators: %1 is the email type, %2 is the invoice recipient. |
220 | - __( 'Failed sending %1$s notification email to %2$s.', 'invoicing' ), |
|
221 | - sanitize_key( $type ), |
|
222 | - $email->is_admin_email() ? __( 'admin', 'invoicing' ) : __( 'the customer', 'invoicing' ) |
|
220 | + __('Failed sending %1$s notification email to %2$s.', 'invoicing'), |
|
221 | + sanitize_key($type), |
|
222 | + $email->is_admin_email() ? __('admin', 'invoicing') : __('the customer', 'invoicing') |
|
223 | 223 | ) |
224 | 224 | ); |
225 | 225 | } |
226 | 226 | |
227 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
227 | + do_action('getpaid_after_send_invoice_notification', $type, $invoice, $email); |
|
228 | 228 | |
229 | 229 | return $result; |
230 | 230 | } |
@@ -235,20 +235,20 @@ discard block |
||
235 | 235 | * @param array $recipients |
236 | 236 | * @param GetPaid_Notification_Email $email |
237 | 237 | */ |
238 | - public function filter_email_recipients( $recipients, $email ) { |
|
238 | + public function filter_email_recipients($recipients, $email) { |
|
239 | 239 | |
240 | - if ( ! $email->is_admin_email() ) { |
|
240 | + if (!$email->is_admin_email()) { |
|
241 | 241 | $cc = $email->object->get_email_cc(); |
242 | - $cc_2 = get_user_meta( $email->object->get_user_id(), '_wpinv_email_cc', true ); |
|
242 | + $cc_2 = get_user_meta($email->object->get_user_id(), '_wpinv_email_cc', true); |
|
243 | 243 | |
244 | - if ( ! empty( $cc ) ) { |
|
245 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
246 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
244 | + if (!empty($cc)) { |
|
245 | + $cc = array_map('sanitize_email', wpinv_parse_list($cc)); |
|
246 | + $recipients = array_filter(array_unique(array_merge($recipients, $cc))); |
|
247 | 247 | } |
248 | 248 | |
249 | - if ( ! empty( $cc_2 ) ) { |
|
250 | - $cc_2 = array_map( 'sanitize_email', wpinv_parse_list( $cc_2 ) ); |
|
251 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc_2 ) ) ); |
|
249 | + if (!empty($cc_2)) { |
|
250 | + $cc_2 = array_map('sanitize_email', wpinv_parse_list($cc_2)); |
|
251 | + $recipients = array_filter(array_unique(array_merge($recipients, $cc_2))); |
|
252 | 252 | } |
253 | 253 | } |
254 | 254 | |
@@ -261,17 +261,17 @@ discard block |
||
261 | 261 | * |
262 | 262 | * @param WPInv_Invoice $invoice |
263 | 263 | */ |
264 | - public function new_invoice( $invoice ) { |
|
264 | + public function new_invoice($invoice) { |
|
265 | 265 | |
266 | 266 | // Only send this email for invoices created via the admin page. |
267 | - if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
267 | + if (!$invoice->is_type('invoice') || $invoice->is_paid() || $this->is_payment_form_invoice($invoice->get_id())) { |
|
268 | 268 | return; |
269 | 269 | } |
270 | 270 | |
271 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
271 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
272 | 272 | $recipient = wpinv_get_admin_email(); |
273 | 273 | |
274 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
274 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
275 | 275 | |
276 | 276 | } |
277 | 277 | |
@@ -280,12 +280,12 @@ discard block |
||
280 | 280 | * |
281 | 281 | * @param WPInv_Invoice $invoice |
282 | 282 | */ |
283 | - public function cancelled_invoice( $invoice ) { |
|
283 | + public function cancelled_invoice($invoice) { |
|
284 | 284 | |
285 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
285 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
286 | 286 | $recipient = $invoice->get_email(); |
287 | 287 | |
288 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
288 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
289 | 289 | } |
290 | 290 | |
291 | 291 | /** |
@@ -293,12 +293,12 @@ discard block |
||
293 | 293 | * |
294 | 294 | * @param WPInv_Invoice $invoice |
295 | 295 | */ |
296 | - public function failed_invoice( $invoice ) { |
|
296 | + public function failed_invoice($invoice) { |
|
297 | 297 | |
298 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
298 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
299 | 299 | $recipient = wpinv_get_admin_email(); |
300 | 300 | |
301 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
301 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
302 | 302 | |
303 | 303 | } |
304 | 304 | |
@@ -307,12 +307,12 @@ discard block |
||
307 | 307 | * |
308 | 308 | * @param WPInv_Invoice $invoice |
309 | 309 | */ |
310 | - public function onhold_invoice( $invoice ) { |
|
310 | + public function onhold_invoice($invoice) { |
|
311 | 311 | |
312 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
312 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
313 | 313 | $recipient = $invoice->get_email(); |
314 | 314 | |
315 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
315 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
316 | 316 | |
317 | 317 | } |
318 | 318 | |
@@ -321,12 +321,12 @@ discard block |
||
321 | 321 | * |
322 | 322 | * @param WPInv_Invoice $invoice |
323 | 323 | */ |
324 | - public function processing_invoice( $invoice ) { |
|
324 | + public function processing_invoice($invoice) { |
|
325 | 325 | |
326 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
326 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
327 | 327 | $recipient = $invoice->get_email(); |
328 | 328 | |
329 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
329 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
330 | 330 | |
331 | 331 | } |
332 | 332 | |
@@ -335,17 +335,17 @@ discard block |
||
335 | 335 | * |
336 | 336 | * @param WPInv_Invoice $invoice |
337 | 337 | */ |
338 | - public function completed_invoice( $invoice ) { |
|
338 | + public function completed_invoice($invoice) { |
|
339 | 339 | |
340 | 340 | // (Maybe) abort if it is a renewal invoice. |
341 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
341 | + if ($invoice->is_renewal() && !wpinv_get_option('email_completed_invoice_renewal_active', false)) { |
|
342 | 342 | return; |
343 | 343 | } |
344 | 344 | |
345 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
345 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
346 | 346 | $recipient = $invoice->get_email(); |
347 | 347 | |
348 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
348 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
349 | 349 | |
350 | 350 | } |
351 | 351 | |
@@ -354,12 +354,12 @@ discard block |
||
354 | 354 | * |
355 | 355 | * @param WPInv_Invoice $invoice |
356 | 356 | */ |
357 | - public function refunded_invoice( $invoice ) { |
|
357 | + public function refunded_invoice($invoice) { |
|
358 | 358 | |
359 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
359 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
360 | 360 | $recipient = $invoice->get_email(); |
361 | 361 | |
362 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
362 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
363 | 363 | |
364 | 364 | } |
365 | 365 | |
@@ -369,21 +369,21 @@ discard block |
||
369 | 369 | * @param WPInv_Invoice $invoice |
370 | 370 | * @param bool $force |
371 | 371 | */ |
372 | - public function user_invoice( $invoice, $force = false ) { |
|
372 | + public function user_invoice($invoice, $force = false) { |
|
373 | 373 | |
374 | - if ( ! $force && ! empty( $GLOBALS['wpinv_skip_invoice_notification'] ) ) { |
|
374 | + if (!$force && !empty($GLOBALS['wpinv_skip_invoice_notification'])) { |
|
375 | 375 | return; |
376 | 376 | } |
377 | 377 | |
378 | 378 | // Only send this email for invoices created via the admin page. |
379 | - if ( ! $invoice->is_type( 'invoice' ) || ( empty( $force ) && $invoice->is_paid() ) || ( empty( $force ) && $this->is_payment_form_invoice( $invoice->get_id() ) ) ) { |
|
379 | + if (!$invoice->is_type('invoice') || (empty($force) && $invoice->is_paid()) || (empty($force) && $this->is_payment_form_invoice($invoice->get_id()))) { |
|
380 | 380 | return; |
381 | 381 | } |
382 | 382 | |
383 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
383 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
384 | 384 | $recipient = $invoice->get_email(); |
385 | 385 | |
386 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
386 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
387 | 387 | |
388 | 388 | } |
389 | 389 | |
@@ -393,11 +393,11 @@ discard block |
||
393 | 393 | * @param int $invoice |
394 | 394 | * @return bool |
395 | 395 | */ |
396 | - public function is_payment_form_invoice( $invoice ) { |
|
397 | - $created_via = get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
396 | + public function is_payment_form_invoice($invoice) { |
|
397 | + $created_via = get_post_meta($invoice, 'wpinv_created_via', true); |
|
398 | 398 | $is_payment_form_invoice = 'payment_form' === $created_via || 'geodirectory' === $created_via; |
399 | - $is_payment_form_invoice = apply_filters( 'getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice ); |
|
400 | - return empty( $_GET['getpaid-admin-action'] ) && $is_payment_form_invoice; |
|
399 | + $is_payment_form_invoice = apply_filters('getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice); |
|
400 | + return empty($_GET['getpaid-admin-action']) && $is_payment_form_invoice; |
|
401 | 401 | } |
402 | 402 | |
403 | 403 | /** |
@@ -406,12 +406,12 @@ discard block |
||
406 | 406 | * @param WPInv_Invoice $invoice |
407 | 407 | * @param string $note |
408 | 408 | */ |
409 | - public function user_note( $invoice, $note ) { |
|
409 | + public function user_note($invoice, $note) { |
|
410 | 410 | |
411 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
411 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
412 | 412 | $recipient = $invoice->get_email(); |
413 | 413 | |
414 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
414 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient, array('customer_note' => $note)); |
|
415 | 415 | |
416 | 416 | } |
417 | 417 | |
@@ -420,9 +420,9 @@ discard block |
||
420 | 420 | * |
421 | 421 | * @param WPInv_Invoice $invoice |
422 | 422 | */ |
423 | - public function force_send_overdue_notice( $invoice ) { |
|
424 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
425 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
423 | + public function force_send_overdue_notice($invoice) { |
|
424 | + $email = new GetPaid_Notification_Email('overdue', $invoice); |
|
425 | + return $this->send_email($invoice, $email, 'overdue', $invoice->get_email()); |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | /** |
@@ -433,38 +433,38 @@ discard block |
||
433 | 433 | public function overdue() { |
434 | 434 | global $wpdb; |
435 | 435 | |
436 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
436 | + $email = new GetPaid_Notification_Email(__FUNCTION__); |
|
437 | 437 | |
438 | 438 | // Fetch reminder days. |
439 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
439 | + $reminder_days = array_unique(wp_parse_id_list($email->get_option('days'))); |
|
440 | 440 | |
441 | 441 | // Abort if non is set. |
442 | - if ( empty( $reminder_days ) ) { |
|
442 | + if (empty($reminder_days)) { |
|
443 | 443 | return; |
444 | 444 | } |
445 | 445 | |
446 | 446 | // Retrieve date query. |
447 | - $date_query = $this->get_date_query( $reminder_days ); |
|
447 | + $date_query = $this->get_date_query($reminder_days); |
|
448 | 448 | |
449 | 449 | // Invoices table. |
450 | 450 | $table = $wpdb->prefix . 'getpaid_invoices'; |
451 | 451 | |
452 | 452 | // Fetch invoices. |
453 | - $invoices = $wpdb->get_col( |
|
453 | + $invoices = $wpdb->get_col( |
|
454 | 454 | "SELECT posts.ID FROM $wpdb->posts as posts |
455 | 455 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
456 | 456 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query" |
457 | 457 | ); |
458 | 458 | |
459 | - foreach ( $invoices as $invoice ) { |
|
459 | + foreach ($invoices as $invoice) { |
|
460 | 460 | |
461 | 461 | // Only send this email for invoices created via the admin page. |
462 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
463 | - $invoice = new WPInv_Invoice( $invoice ); |
|
462 | + if (!$this->is_payment_form_invoice($invoice)) { |
|
463 | + $invoice = new WPInv_Invoice($invoice); |
|
464 | 464 | $email->object = $invoice; |
465 | 465 | |
466 | - if ( $invoice->needs_payment() && ! $invoice->is_renewal() ) { |
|
467 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
466 | + if ($invoice->needs_payment() && !$invoice->is_renewal()) { |
|
467 | + $this->send_email($invoice, $email, __FUNCTION__, $invoice->get_email()); |
|
468 | 468 | } |
469 | 469 | } |
470 | 470 | } |
@@ -477,14 +477,14 @@ discard block |
||
477 | 477 | * @param array $reminder_days |
478 | 478 | * @return string |
479 | 479 | */ |
480 | - public function get_date_query( $reminder_days ) { |
|
480 | + public function get_date_query($reminder_days) { |
|
481 | 481 | |
482 | 482 | $date_query = array( |
483 | 483 | 'relation' => 'OR', |
484 | 484 | ); |
485 | 485 | |
486 | - foreach ( $reminder_days as $days ) { |
|
487 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
486 | + foreach ($reminder_days as $days) { |
|
487 | + $date = date_parse(date('Y-m-d', strtotime("-$days days", current_time('timestamp')))); |
|
488 | 488 | |
489 | 489 | $date_query[] = array( |
490 | 490 | 'year' => $date['year'], |
@@ -494,7 +494,7 @@ discard block |
||
494 | 494 | |
495 | 495 | } |
496 | 496 | |
497 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
497 | + $date_query = new WP_Date_Query($date_query, 'invoices.due_date'); |
|
498 | 498 | |
499 | 499 | return $date_query->get_sql(); |
500 | 500 |
@@ -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 subscription notificaiton emails. |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | ) |
38 | 38 | ); |
39 | 39 | |
40 | - add_action( 'init', array( $this, 'init_hooks' ) ); |
|
40 | + add_action('init', array($this, 'init_hooks')); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -45,21 +45,21 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function init_hooks() { |
47 | 47 | |
48 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'subscription_merge_tags' ), 10, 2 ); |
|
49 | - foreach ( $this->subscription_actions as $hook => $email_type ) { |
|
48 | + add_filter('getpaid_get_email_merge_tags', array($this, 'subscription_merge_tags'), 10, 2); |
|
49 | + foreach ($this->subscription_actions as $hook => $email_type) { |
|
50 | 50 | |
51 | - $email = new GetPaid_Notification_Email( $email_type ); |
|
51 | + $email = new GetPaid_Notification_Email($email_type); |
|
52 | 52 | |
53 | - if ( ! $email->is_active() ) { |
|
53 | + if (!$email->is_active()) { |
|
54 | 54 | continue; |
55 | 55 | } |
56 | 56 | |
57 | - if ( method_exists( $this, $email_type ) ) { |
|
58 | - add_action( $hook, array( $this, $email_type ), 100, 2 ); |
|
57 | + if (method_exists($this, $email_type)) { |
|
58 | + add_action($hook, array($this, $email_type), 100, 2); |
|
59 | 59 | continue; |
60 | 60 | } |
61 | 61 | |
62 | - do_action( 'getpaid_subscription_notification_email_register_hook', $email_type, $hook ); |
|
62 | + do_action('getpaid_subscription_notification_email_register_hook', $email_type, $hook); |
|
63 | 63 | |
64 | 64 | } |
65 | 65 | |
@@ -71,12 +71,12 @@ discard block |
||
71 | 71 | * @param array $merge_tags |
72 | 72 | * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
73 | 73 | */ |
74 | - public function subscription_merge_tags( $merge_tags, $object ) { |
|
74 | + public function subscription_merge_tags($merge_tags, $object) { |
|
75 | 75 | |
76 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
76 | + if (is_a($object, 'WPInv_Subscription')) { |
|
77 | 77 | $merge_tags = array_merge( |
78 | 78 | $merge_tags, |
79 | - $this->get_subscription_merge_tags( $object ) |
|
79 | + $this->get_subscription_merge_tags($object) |
|
80 | 80 | ); |
81 | 81 | } |
82 | 82 | |
@@ -90,25 +90,25 @@ discard block |
||
90 | 90 | * @param WPInv_Subscription $subscription |
91 | 91 | * @return array |
92 | 92 | */ |
93 | - public function get_subscription_merge_tags( $subscription ) { |
|
93 | + public function get_subscription_merge_tags($subscription) { |
|
94 | 94 | |
95 | 95 | // Abort if it does not exist. |
96 | - if ( ! $subscription->get_id() ) { |
|
96 | + if (!$subscription->get_id()) { |
|
97 | 97 | return array(); |
98 | 98 | } |
99 | 99 | |
100 | - $invoice = $subscription->get_parent_invoice(); |
|
100 | + $invoice = $subscription->get_parent_invoice(); |
|
101 | 101 | return array( |
102 | - '{subscription_renewal_date}' => getpaid_format_date_value( $subscription->get_next_renewal_date(), __( 'Never', 'invoicing' ) ), |
|
103 | - '{subscription_created}' => getpaid_format_date_value( $subscription->get_date_created() ), |
|
104 | - '{subscription_status}' => sanitize_text_field( $subscription->get_status_label() ), |
|
105 | - '{subscription_profile_id}' => sanitize_text_field( $subscription->get_profile_id() ), |
|
106 | - '{subscription_id}' => absint( $subscription->get_id() ), |
|
107 | - '{subscription_recurring_amount}' => sanitize_text_field( wpinv_price( $subscription->get_recurring_amount(), $invoice->get_currency() ) ), |
|
108 | - '{subscription_initial_amount}' => sanitize_text_field( wpinv_price( $subscription->get_initial_amount(), $invoice->get_currency() ) ), |
|
109 | - '{subscription_recurring_period}' => getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ), |
|
102 | + '{subscription_renewal_date}' => getpaid_format_date_value($subscription->get_next_renewal_date(), __('Never', 'invoicing')), |
|
103 | + '{subscription_created}' => getpaid_format_date_value($subscription->get_date_created()), |
|
104 | + '{subscription_status}' => sanitize_text_field($subscription->get_status_label()), |
|
105 | + '{subscription_profile_id}' => sanitize_text_field($subscription->get_profile_id()), |
|
106 | + '{subscription_id}' => absint($subscription->get_id()), |
|
107 | + '{subscription_recurring_amount}' => sanitize_text_field(wpinv_price($subscription->get_recurring_amount(), $invoice->get_currency())), |
|
108 | + '{subscription_initial_amount}' => sanitize_text_field(wpinv_price($subscription->get_initial_amount(), $invoice->get_currency())), |
|
109 | + '{subscription_recurring_period}' => getpaid_get_subscription_period_label($subscription->get_period(), $subscription->get_frequency(), ''), |
|
110 | 110 | '{subscription_bill_times}' => $subscription->get_bill_times(), |
111 | - '{subscription_url}' => esc_url( $subscription->get_view_url() ), |
|
111 | + '{subscription_url}' => esc_url($subscription->get_view_url()), |
|
112 | 112 | ); |
113 | 113 | |
114 | 114 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | * @param WPInv_Invoice $invoice |
120 | 120 | * @return bool |
121 | 121 | */ |
122 | - public function should_send_notification( $invoice ) { |
|
122 | + public function should_send_notification($invoice) { |
|
123 | 123 | return 0 != $invoice->get_id(); |
124 | 124 | } |
125 | 125 | |
@@ -129,14 +129,14 @@ discard block |
||
129 | 129 | * @param WPInv_Invoice $invoice |
130 | 130 | * @return array |
131 | 131 | */ |
132 | - public function get_recipients( $invoice ) { |
|
133 | - $recipients = array( $invoice->get_email() ); |
|
132 | + public function get_recipients($invoice) { |
|
133 | + $recipients = array($invoice->get_email()); |
|
134 | 134 | |
135 | 135 | $cc = $invoice->get_email_cc(); |
136 | 136 | |
137 | - if ( ! empty( $cc ) ) { |
|
138 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
139 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
137 | + if (!empty($cc)) { |
|
138 | + $cc = array_map('sanitize_email', wpinv_parse_list($cc)); |
|
139 | + $recipients = array_filter(array_unique(array_merge($recipients, $cc))); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | return $recipients; |
@@ -150,75 +150,75 @@ discard block |
||
150 | 150 | * @param string $type |
151 | 151 | * @param array $extra_args Extra template args. |
152 | 152 | */ |
153 | - public function send_email( $subscription, $email, $type, $extra_args = array() ) { |
|
153 | + public function send_email($subscription, $email, $type, $extra_args = array()) { |
|
154 | 154 | |
155 | - if ( empty( $subscription ) ) { |
|
155 | + if (empty($subscription)) { |
|
156 | 156 | return; |
157 | 157 | } |
158 | 158 | |
159 | - if ( is_array( $subscription ) ) { |
|
160 | - $subscription = current( $subscription ); |
|
159 | + if (is_array($subscription)) { |
|
160 | + $subscription = current($subscription); |
|
161 | 161 | } |
162 | 162 | |
163 | - if ( ! $subscription instanceof WPInv_Subscription ) { |
|
163 | + if (!$subscription instanceof WPInv_Subscription) { |
|
164 | 164 | return; |
165 | 165 | } |
166 | 166 | |
167 | 167 | // Abort in case the parent invoice does not exist. |
168 | 168 | $invoice = $subscription->get_parent_invoice(); |
169 | - if ( ! $this->should_send_notification( $invoice ) ) { |
|
169 | + if (!$this->should_send_notification($invoice)) { |
|
170 | 170 | return; |
171 | 171 | } |
172 | 172 | |
173 | - if ( apply_filters( 'getpaid_skip_subscription_email', false, $type, $subscription ) ) { |
|
173 | + if (apply_filters('getpaid_skip_subscription_email', false, $type, $subscription)) { |
|
174 | 174 | return; |
175 | 175 | } |
176 | 176 | |
177 | - do_action( 'getpaid_before_send_subscription_notification', $type, $subscription, $email ); |
|
177 | + do_action('getpaid_before_send_subscription_notification', $type, $subscription, $email); |
|
178 | 178 | |
179 | - $recipients = $this->get_recipients( $invoice ); |
|
179 | + $recipients = $this->get_recipients($invoice); |
|
180 | 180 | $mailer = new GetPaid_Notification_Email_Sender(); |
181 | 181 | $merge_tags = $email->get_merge_tags(); |
182 | - $content = $email->get_content( $merge_tags, $extra_args ); |
|
183 | - $subject = $email->add_merge_tags( $email->get_subject(), $merge_tags ); |
|
182 | + $content = $email->get_content($merge_tags, $extra_args); |
|
183 | + $subject = $email->add_merge_tags($email->get_subject(), $merge_tags); |
|
184 | 184 | $attachments = $email->get_attachments(); |
185 | 185 | |
186 | 186 | $result = $mailer->send( |
187 | - apply_filters( 'getpaid_subscription_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
187 | + apply_filters('getpaid_subscription_email_recipients', wpinv_parse_list($recipients), $email), |
|
188 | 188 | $subject, |
189 | 189 | $content, |
190 | 190 | $attachments |
191 | 191 | ); |
192 | 192 | |
193 | 193 | // Maybe send a copy to the admin. |
194 | - if ( $email->include_admin_bcc() ) { |
|
194 | + if ($email->include_admin_bcc()) { |
|
195 | 195 | $mailer->send( |
196 | 196 | wpinv_get_admin_email(), |
197 | - $subject . __( ' - ADMIN BCC COPY', 'invoicing' ), |
|
197 | + $subject . __(' - ADMIN BCC COPY', 'invoicing'), |
|
198 | 198 | $content, |
199 | 199 | $attachments |
200 | 200 | ); |
201 | 201 | } |
202 | 202 | |
203 | - if ( $result ) { |
|
203 | + if ($result) { |
|
204 | 204 | $invoice->add_system_note( |
205 | 205 | sprintf( |
206 | - __( 'Successfully sent %1$s notification email to %2$s.', 'invoicing' ), |
|
207 | - sanitize_key( $type ), |
|
208 | - $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
206 | + __('Successfully sent %1$s notification email to %2$s.', 'invoicing'), |
|
207 | + sanitize_key($type), |
|
208 | + $email->is_admin_email() ? __('admin') : __('the customer') |
|
209 | 209 | ) |
210 | 210 | ); |
211 | 211 | } else { |
212 | 212 | $invoice->add_system_note( |
213 | 213 | sprintf( |
214 | - __( 'Failed sending %1$s notification email to %2$s.', 'invoicing' ), |
|
215 | - sanitize_key( $type ), |
|
216 | - $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
214 | + __('Failed sending %1$s notification email to %2$s.', 'invoicing'), |
|
215 | + sanitize_key($type), |
|
216 | + $email->is_admin_email() ? __('admin') : __('the customer') |
|
217 | 217 | ) |
218 | 218 | ); |
219 | 219 | } |
220 | 220 | |
221 | - do_action( 'getpaid_after_send_subscription_notification', $type, $subscription, $email ); |
|
221 | + do_action('getpaid_after_send_subscription_notification', $type, $subscription, $email); |
|
222 | 222 | |
223 | 223 | } |
224 | 224 | |
@@ -229,10 +229,10 @@ discard block |
||
229 | 229 | * |
230 | 230 | * @param WPInv_Subscription $subscription |
231 | 231 | */ |
232 | - public function subscription_active( $subscription ) { |
|
233 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
232 | + public function subscription_active($subscription) { |
|
233 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
234 | 234 | |
235 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
235 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | /** |
@@ -240,10 +240,10 @@ discard block |
||
240 | 240 | * |
241 | 241 | * @param WPInv_Subscription $subscription |
242 | 242 | */ |
243 | - public function subscription_trial( $subscription ) { |
|
243 | + public function subscription_trial($subscription) { |
|
244 | 244 | |
245 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
246 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
245 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
246 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
247 | 247 | |
248 | 248 | } |
249 | 249 | |
@@ -252,10 +252,10 @@ discard block |
||
252 | 252 | * |
253 | 253 | * @param WPInv_Subscription $subscription |
254 | 254 | */ |
255 | - public function subscription_cancelled( $subscription ) { |
|
255 | + public function subscription_cancelled($subscription) { |
|
256 | 256 | |
257 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
258 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
257 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
258 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
259 | 259 | |
260 | 260 | } |
261 | 261 | |
@@ -264,10 +264,10 @@ discard block |
||
264 | 264 | * |
265 | 265 | * @param WPInv_Subscription $subscription |
266 | 266 | */ |
267 | - public function subscription_expired( $subscription ) { |
|
267 | + public function subscription_expired($subscription) { |
|
268 | 268 | |
269 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
270 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
269 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
270 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
271 | 271 | |
272 | 272 | } |
273 | 273 | |
@@ -276,10 +276,10 @@ discard block |
||
276 | 276 | * |
277 | 277 | * @param WPInv_Subscription $subscription |
278 | 278 | */ |
279 | - public function subscription_complete( $subscription ) { |
|
279 | + public function subscription_complete($subscription) { |
|
280 | 280 | |
281 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
282 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
281 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
282 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
283 | 283 | |
284 | 284 | } |
285 | 285 | |
@@ -289,18 +289,18 @@ discard block |
||
289 | 289 | */ |
290 | 290 | public function renewal_reminder() { |
291 | 291 | |
292 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
292 | + $email = new GetPaid_Notification_Email(__FUNCTION__); |
|
293 | 293 | |
294 | 294 | // Fetch reminder days. |
295 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
295 | + $reminder_days = array_unique(wp_parse_id_list($email->get_option('days'))); |
|
296 | 296 | |
297 | 297 | // Abort if non is set. |
298 | - if ( empty( $reminder_days ) ) { |
|
298 | + if (empty($reminder_days)) { |
|
299 | 299 | return; |
300 | 300 | } |
301 | 301 | |
302 | 302 | // Fetch matching subscriptions. |
303 | - $args = array( |
|
303 | + $args = array( |
|
304 | 304 | 'number' => -1, |
305 | 305 | 'count_total' => false, |
306 | 306 | 'status' => 'trialling active', |
@@ -309,8 +309,8 @@ discard block |
||
309 | 309 | ), |
310 | 310 | ); |
311 | 311 | |
312 | - foreach ( $reminder_days as $days ) { |
|
313 | - $date = date_parse( date( 'Y-m-d', strtotime( "+$days days", current_time( 'timestamp' ) ) ) ); |
|
312 | + foreach ($reminder_days as $days) { |
|
313 | + $date = date_parse(date('Y-m-d', strtotime("+$days days", current_time('timestamp')))); |
|
314 | 314 | |
315 | 315 | $args['date_expires_query'][] = array( |
316 | 316 | 'year' => $date['year'], |
@@ -320,14 +320,14 @@ discard block |
||
320 | 320 | |
321 | 321 | } |
322 | 322 | |
323 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
323 | + $subscriptions = new GetPaid_Subscriptions_Query($args); |
|
324 | 324 | |
325 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
325 | + foreach ($subscriptions->get_results() as $subscription) { |
|
326 | 326 | |
327 | 327 | // Skip packages. |
328 | - if ( apply_filters( 'getpaid_send_subscription_renewal_reminder_email', true ) ) { |
|
328 | + if (apply_filters('getpaid_send_subscription_renewal_reminder_email', true)) { |
|
329 | 329 | $email->object = $subscription; |
330 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
330 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
331 | 331 | } |
332 | 332 | } |
333 | 333 |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * @since 2.8.22 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * GetPaid_Anonymization_Logs Class |
@@ -19,89 +19,89 @@ discard block |
||
19 | 19 | */ |
20 | 20 | public function display_logs() { |
21 | 21 | // Check user capabilities |
22 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
22 | + if (!current_user_can('manage_options')) { |
|
23 | 23 | return; |
24 | 24 | } |
25 | 25 | |
26 | 26 | // Get current page number |
27 | - $page = isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
27 | + $page = isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
28 | 28 | $per_page = 20; |
29 | 29 | |
30 | 30 | // Fetch logs |
31 | - $logs = $this->get_logs( $page, $per_page ); |
|
31 | + $logs = $this->get_logs($page, $per_page); |
|
32 | 32 | $total_logs = $this->get_total_logs(); |
33 | 33 | |
34 | 34 | // Prepare pagination |
35 | 35 | $pagination = paginate_links( |
36 | 36 | array( |
37 | - 'base' => add_query_arg( 'paged', '%#%' ), |
|
37 | + 'base' => add_query_arg('paged', '%#%'), |
|
38 | 38 | 'format' => '', |
39 | - 'prev_text' => __( '«', 'invoicing' ), |
|
40 | - 'next_text' => __( '»', 'invoicing' ), |
|
41 | - 'total' => ceil( $total_logs / $per_page ), |
|
39 | + 'prev_text' => __('«', 'invoicing'), |
|
40 | + 'next_text' => __('»', 'invoicing'), |
|
41 | + 'total' => ceil($total_logs / $per_page), |
|
42 | 42 | 'current' => $page, |
43 | 43 | ) |
44 | 44 | ); |
45 | 45 | |
46 | 46 | ?> |
47 | 47 | <div class="wrap getpaid-anonymization-logs"> |
48 | - <h1><?php echo esc_html( get_admin_page_title() ); ?></h1> |
|
48 | + <h1><?php echo esc_html(get_admin_page_title()); ?></h1> |
|
49 | 49 | <div class="tablenav top"> |
50 | 50 | <div class="alignleft actions"> |
51 | 51 | <form method="get"> |
52 | 52 | <input type="hidden" name="page" value="wpinv-anonymization-logs"> |
53 | - <label for="filter-by-date" class="screen-reader-text"><?php _e( 'Filter by date', 'invoicing' ); ?></label> |
|
53 | + <label for="filter-by-date" class="screen-reader-text"><?php _e('Filter by date', 'invoicing'); ?></label> |
|
54 | 54 | <select name="m" id="filter-by-date"> |
55 | - <option value="0"><?php _e( 'All dates', 'invoicing' ); ?></option> |
|
55 | + <option value="0"><?php _e('All dates', 'invoicing'); ?></option> |
|
56 | 56 | <?php |
57 | 57 | $months = $this->get_log_months(); |
58 | - foreach ( $months as $month ) { |
|
59 | - $selected = ( isset( $_GET['m'] ) && $_GET['m'] == $month->month ) ? ' selected="selected"' : ''; |
|
60 | - echo '<option value="' . esc_attr( $month->month ) . '"' . $selected . '>' . esc_html( $month->month_name . ' ' . $month->year ) . '</option>'; |
|
58 | + foreach ($months as $month) { |
|
59 | + $selected = (isset($_GET['m']) && $_GET['m'] == $month->month) ? ' selected="selected"' : ''; |
|
60 | + echo '<option value="' . esc_attr($month->month) . '"' . $selected . '>' . esc_html($month->month_name . ' ' . $month->year) . '</option>'; |
|
61 | 61 | } |
62 | 62 | ?> |
63 | 63 | </select> |
64 | - <?php submit_button( __( 'Filter', 'invoicing' ), '', 'filter_action', false ); ?> |
|
64 | + <?php submit_button(__('Filter', 'invoicing'), '', 'filter_action', false); ?> |
|
65 | 65 | </form> |
66 | 66 | </div> |
67 | 67 | </div> |
68 | 68 | <table class="wp-list-table widefat fixed striped"> |
69 | 69 | <thead> |
70 | 70 | <tr> |
71 | - <th><?php _e( 'Log ID', 'invoicing' ); ?></th> |
|
72 | - <th><?php _e( 'User', 'invoicing' ); ?></th> |
|
73 | - <th><?php _e( 'Action', 'invoicing' ); ?></th> |
|
74 | - <th><?php _e( 'Date', 'invoicing' ); ?></th> |
|
75 | - <th><?php _e( 'Details', 'invoicing' ); ?></th> |
|
71 | + <th><?php _e('Log ID', 'invoicing'); ?></th> |
|
72 | + <th><?php _e('User', 'invoicing'); ?></th> |
|
73 | + <th><?php _e('Action', 'invoicing'); ?></th> |
|
74 | + <th><?php _e('Date', 'invoicing'); ?></th> |
|
75 | + <th><?php _e('Details', 'invoicing'); ?></th> |
|
76 | 76 | </tr> |
77 | 77 | </thead> |
78 | 78 | <tbody> |
79 | - <?php if ( empty( $logs ) ) : ?> |
|
79 | + <?php if (empty($logs)) : ?> |
|
80 | 80 | <tr> |
81 | - <td colspan="5"><?php _e( 'No anonymization logs found.', 'invoicing' ); ?></td> |
|
81 | + <td colspan="5"><?php _e('No anonymization logs found.', 'invoicing'); ?></td> |
|
82 | 82 | </tr> |
83 | 83 | <?php else : ?> |
84 | 84 | <?php |
85 | - foreach ( $logs as $log ) : |
|
86 | - $additional_info = json_decode( $log->additional_info, true ); |
|
85 | + foreach ($logs as $log) : |
|
86 | + $additional_info = json_decode($log->additional_info, true); |
|
87 | 87 | ?> |
88 | 88 | <tr> |
89 | - <td><?php echo esc_html( $log->log_id ); ?></td> |
|
89 | + <td><?php echo esc_html($log->log_id); ?></td> |
|
90 | 90 | <td> |
91 | 91 | <?php |
92 | - $user_edit_link = get_edit_user_link( $log->user_id ); |
|
93 | - if ( $user_edit_link ) { |
|
94 | - echo '<a href="' . esc_url( $user_edit_link ) . '">' . esc_html( $log->user_id ) . '</a>'; |
|
92 | + $user_edit_link = get_edit_user_link($log->user_id); |
|
93 | + if ($user_edit_link) { |
|
94 | + echo '<a href="' . esc_url($user_edit_link) . '">' . esc_html($log->user_id) . '</a>'; |
|
95 | 95 | } else { |
96 | - echo esc_html( $log->user_id ); |
|
96 | + echo esc_html($log->user_id); |
|
97 | 97 | } |
98 | 98 | ?> |
99 | 99 | </td> |
100 | - <td><?php echo esc_html( ucfirst( $log->action ) ); ?></td> |
|
101 | - <td><?php echo esc_html( get_date_from_gmt( $log->timestamp, 'F j, Y g:i a' ) ); ?></td> |
|
100 | + <td><?php echo esc_html(ucfirst($log->action)); ?></td> |
|
101 | + <td><?php echo esc_html(get_date_from_gmt($log->timestamp, 'F j, Y g:i a')); ?></td> |
|
102 | 102 | <td> |
103 | 103 | <button class="button-link toggle-details" type="button" aria-expanded="false"> |
104 | - <span class="screen-reader-text"><?php _e( 'Show more details', 'invoicing' ); ?></span> |
|
104 | + <span class="screen-reader-text"><?php _e('Show more details', 'invoicing'); ?></span> |
|
105 | 105 | <span class="dashicons dashicons-arrow-down-alt2"></span> |
106 | 106 | </button> |
107 | 107 | </td> |
@@ -112,19 +112,19 @@ discard block |
||
112 | 112 | <table class="widefat fixed"> |
113 | 113 | <tbody> |
114 | 114 | <tr> |
115 | - <th><?php _e( 'Data Type', 'invoicing' ); ?></th> |
|
116 | - <td><?php echo esc_html( $log->data_type ); ?></td> |
|
115 | + <th><?php _e('Data Type', 'invoicing'); ?></th> |
|
116 | + <td><?php echo esc_html($log->data_type); ?></td> |
|
117 | 117 | </tr> |
118 | - <?php if ( is_array( $additional_info ) ) : ?> |
|
118 | + <?php if (is_array($additional_info)) : ?> |
|
119 | 119 | <tr> |
120 | - <th><?php _e( 'Additional Information', 'invoicing' ); ?></th> |
|
120 | + <th><?php _e('Additional Information', 'invoicing'); ?></th> |
|
121 | 121 | <td> |
122 | 122 | <table class="widefat fixed"> |
123 | 123 | <tbody> |
124 | - <?php foreach ( $additional_info as $key => $value ) : ?> |
|
124 | + <?php foreach ($additional_info as $key => $value) : ?> |
|
125 | 125 | <tr> |
126 | - <th><?php echo esc_html( $key ); ?></th> |
|
127 | - <td><?php echo esc_html( $value ); ?></td> |
|
126 | + <th><?php echo esc_html($key); ?></th> |
|
127 | + <td><?php echo esc_html($value); ?></td> |
|
128 | 128 | </tr> |
129 | 129 | <?php endforeach; ?> |
130 | 130 | </tbody> |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | <?php endif; ?> |
142 | 142 | </tbody> |
143 | 143 | </table> |
144 | - <?php if ( $pagination ) : ?> |
|
144 | + <?php if ($pagination) : ?> |
|
145 | 145 | <div class="tablenav bottom"> |
146 | 146 | <div class="tablenav-pages"> |
147 | 147 | <?php echo $pagination; ?> |
@@ -159,10 +159,10 @@ discard block |
||
159 | 159 | * @param int $per_page Number of logs per page |
160 | 160 | * @return array |
161 | 161 | */ |
162 | - private function get_logs( $page, $per_page ) { |
|
162 | + private function get_logs($page, $per_page) { |
|
163 | 163 | global $wpdb; |
164 | 164 | $table_name = $wpdb->prefix . 'getpaid_anonymization_logs'; |
165 | - $offset = ( $page - 1 ) * $per_page; |
|
165 | + $offset = ($page - 1) * $per_page; |
|
166 | 166 | |
167 | 167 | $query = $wpdb->prepare( |
168 | 168 | "SELECT * FROM $table_name ORDER BY timestamp DESC LIMIT %d OFFSET %d", |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | $offset |
171 | 171 | ); |
172 | 172 | |
173 | - return $wpdb->get_results( $query ); |
|
173 | + return $wpdb->get_results($query); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | /** |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | private function get_total_logs() { |
182 | 182 | global $wpdb; |
183 | 183 | $table_name = $wpdb->prefix . 'getpaid_anonymization_logs'; |
184 | - return $wpdb->get_var( "SELECT COUNT(*) FROM $table_name" ); |
|
184 | + return $wpdb->get_var("SELECT COUNT(*) FROM $table_name"); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | /** |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * |
6 | 6 | */ |
7 | 7 | |
8 | -defined( 'ABSPATH' ) || exit; |
|
8 | +defined('ABSPATH') || exit; |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * GetPaid_Graph_Downloader Class. |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | * |
31 | 31 | * @return GetPaid_Reports_Report_Items|GetPaid_Reports_Report_Gateways|GetPaid_Reports_Report_Discounts |
32 | 32 | */ |
33 | - public function prepare_handler( $graph ) { |
|
33 | + public function prepare_handler($graph) { |
|
34 | 34 | |
35 | - if ( empty( $this->handler->views[ $graph ] ) ) { |
|
36 | - wp_die( esc_html__( 'Invalid Graph', 'invoicing' ), 400 ); |
|
35 | + if (empty($this->handler->views[$graph])) { |
|
36 | + wp_die(esc_html__('Invalid Graph', 'invoicing'), 400); |
|
37 | 37 | } |
38 | 38 | |
39 | - return new $this->handler->views[ $graph ]['class'](); |
|
39 | + return new $this->handler->views[$graph]['class'](); |
|
40 | 40 | |
41 | 41 | } |
42 | 42 | |
@@ -47,10 +47,10 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public function prepare_output() { |
49 | 49 | |
50 | - $output = fopen( 'php://output', 'w' ); |
|
50 | + $output = fopen('php://output', 'w'); |
|
51 | 51 | |
52 | - if ( false === $output ) { |
|
53 | - wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
|
52 | + if (false === $output) { |
|
53 | + wp_die(esc_html__('Unsupported server', 'invoicing'), 500); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | return $output; |
@@ -61,13 +61,13 @@ discard block |
||
61 | 61 | * |
62 | 62 | * @return string |
63 | 63 | */ |
64 | - public function prepare_file_type( $graph ) { |
|
64 | + public function prepare_file_type($graph) { |
|
65 | 65 | |
66 | - $file_type = empty( $_REQUEST['file_type'] ) ? 'csv' : sanitize_text_field( $_REQUEST['file_type'] ); |
|
67 | - $file_name = wpinv_sanitize_key( "getpaid-$graph-" . current_time( 'Y-m-d' ) ); |
|
66 | + $file_type = empty($_REQUEST['file_type']) ? 'csv' : sanitize_text_field($_REQUEST['file_type']); |
|
67 | + $file_name = wpinv_sanitize_key("getpaid-$graph-" . current_time('Y-m-d')); |
|
68 | 68 | |
69 | - header( "Content-Type:application/$file_type" ); |
|
70 | - header( "Content-Disposition:attachment;filename=$file_name.$file_type" ); |
|
69 | + header("Content-Type:application/$file_type"); |
|
70 | + header("Content-Disposition:attachment;filename=$file_name.$file_type"); |
|
71 | 71 | |
72 | 72 | return $file_type; |
73 | 73 | } |
@@ -76,24 +76,24 @@ discard block |
||
76 | 76 | * Handles the actual download. |
77 | 77 | * |
78 | 78 | */ |
79 | - public function download( $graph ) { |
|
79 | + public function download($graph) { |
|
80 | 80 | global $wpdb; |
81 | 81 | |
82 | - $handler = $this->prepare_handler( $graph ); |
|
82 | + $handler = $this->prepare_handler($graph); |
|
83 | 83 | $stream = $this->prepare_output(); |
84 | - $stats = $wpdb->get_results( $handler->get_sql( $handler->get_range() ) ); |
|
85 | - $headers = array( $handler->field, 'total', 'total_raw' ); |
|
86 | - $file_type = $this->prepare_file_type( $graph ); |
|
87 | - |
|
88 | - if ( 'csv' == $file_type ) { |
|
89 | - $this->download_csv( $stats, $stream, $headers ); |
|
90 | - } elseif ( 'xml' == $file_type ) { |
|
91 | - $this->download_xml( $stats, $stream, $headers ); |
|
84 | + $stats = $wpdb->get_results($handler->get_sql($handler->get_range())); |
|
85 | + $headers = array($handler->field, 'total', 'total_raw'); |
|
86 | + $file_type = $this->prepare_file_type($graph); |
|
87 | + |
|
88 | + if ('csv' == $file_type) { |
|
89 | + $this->download_csv($stats, $stream, $headers); |
|
90 | + } elseif ('xml' == $file_type) { |
|
91 | + $this->download_xml($stats, $stream, $headers); |
|
92 | 92 | } else { |
93 | - $this->download_json( $stats, $stream, $headers ); |
|
93 | + $this->download_json($stats, $stream, $headers); |
|
94 | 94 | } |
95 | 95 | |
96 | - fclose( $stream ); |
|
96 | + fclose($stream); |
|
97 | 97 | exit; |
98 | 98 | } |
99 | 99 | |
@@ -105,16 +105,16 @@ discard block |
||
105 | 105 | * @param array $headers The fields to stream. |
106 | 106 | * @since 1.0.19 |
107 | 107 | */ |
108 | - public function download_csv( $stats, $stream, $headers ) { |
|
108 | + public function download_csv($stats, $stream, $headers) { |
|
109 | 109 | |
110 | 110 | // Output the csv column headers. |
111 | - fputcsv( $stream, $headers ); |
|
111 | + fputcsv($stream, $headers); |
|
112 | 112 | |
113 | 113 | // Loop through |
114 | - foreach ( $stats as $stat ) { |
|
115 | - $row = array_values( $this->prepare_row( $stat, $headers ) ); |
|
116 | - $row = array_map( 'maybe_serialize', $row ); |
|
117 | - fputcsv( $stream, $row ); |
|
114 | + foreach ($stats as $stat) { |
|
115 | + $row = array_values($this->prepare_row($stat, $headers)); |
|
116 | + $row = array_map('maybe_serialize', $row); |
|
117 | + fputcsv($stream, $row); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | } |
@@ -127,16 +127,16 @@ discard block |
||
127 | 127 | * @param array $headers The fields to stream. |
128 | 128 | * @since 1.0.19 |
129 | 129 | */ |
130 | - public function download_json( $stats, $stream, $headers ) { |
|
130 | + public function download_json($stats, $stream, $headers) { |
|
131 | 131 | |
132 | 132 | $prepared = array(); |
133 | 133 | |
134 | 134 | // Loop through |
135 | - foreach ( $stats as $stat ) { |
|
136 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
135 | + foreach ($stats as $stat) { |
|
136 | + $prepared[] = $this->prepare_row($stat, $headers); |
|
137 | 137 | } |
138 | 138 | |
139 | - fwrite( $stream, wp_json_encode( $prepared ) ); |
|
139 | + fwrite($stream, wp_json_encode($prepared)); |
|
140 | 140 | |
141 | 141 | } |
142 | 142 | |
@@ -148,19 +148,19 @@ discard block |
||
148 | 148 | * @param array $headers The fields to stream. |
149 | 149 | * @since 1.0.19 |
150 | 150 | */ |
151 | - public function download_xml( $stats, $stream, $headers ) { |
|
151 | + public function download_xml($stats, $stream, $headers) { |
|
152 | 152 | |
153 | 153 | $prepared = array(); |
154 | 154 | |
155 | 155 | // Loop through |
156 | - foreach ( $stats as $stat ) { |
|
157 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
156 | + foreach ($stats as $stat) { |
|
157 | + $prepared[] = $this->prepare_row($stat, $headers); |
|
158 | 158 | } |
159 | 159 | |
160 | - $xml = new SimpleXMLElement( '<?xml version="1.0"?><data></data>' ); |
|
161 | - $this->convert_array_xml( $prepared, $xml ); |
|
160 | + $xml = new SimpleXMLElement('<?xml version="1.0"?><data></data>'); |
|
161 | + $this->convert_array_xml($prepared, $xml); |
|
162 | 162 | |
163 | - fwrite( $stream, $xml->asXML() ); |
|
163 | + fwrite($stream, $xml->asXML()); |
|
164 | 164 | |
165 | 165 | } |
166 | 166 | |
@@ -170,24 +170,24 @@ discard block |
||
170 | 170 | * @access public |
171 | 171 | * @since 1.0.19 |
172 | 172 | */ |
173 | - public function convert_array_xml( $data, $xml ) { |
|
173 | + public function convert_array_xml($data, $xml) { |
|
174 | 174 | |
175 | 175 | // Loop through |
176 | - foreach ( $data as $key => $value ) { |
|
176 | + foreach ($data as $key => $value) { |
|
177 | 177 | |
178 | - $key = preg_replace( '/[^A-Za-z0-9_\-]/', '', $key ); |
|
178 | + $key = preg_replace('/[^A-Za-z0-9_\-]/', '', $key); |
|
179 | 179 | |
180 | - if ( is_array( $value ) ) { |
|
180 | + if (is_array($value)) { |
|
181 | 181 | |
182 | - if ( is_numeric( $key ) ) { |
|
182 | + if (is_numeric($key)) { |
|
183 | 183 | $key = 'item' . $key; //dealing with <0/>..<n/> issues |
184 | 184 | } |
185 | 185 | |
186 | - $subnode = $xml->addChild( $key ); |
|
187 | - $this->convert_array_xml( $value, $subnode ); |
|
186 | + $subnode = $xml->addChild($key); |
|
187 | + $this->convert_array_xml($value, $subnode); |
|
188 | 188 | |
189 | 189 | } else { |
190 | - $xml->addChild( $key, $value ? htmlspecialchars( $value ) : $value ); |
|
190 | + $xml->addChild($key, $value ? htmlspecialchars($value) : $value); |
|
191 | 191 | } |
192 | 192 | } |
193 | 193 | |
@@ -201,24 +201,24 @@ discard block |
||
201 | 201 | * @since 1.0.19 |
202 | 202 | * @return array |
203 | 203 | */ |
204 | - public function prepare_row( $row, $fields ) { |
|
204 | + public function prepare_row($row, $fields) { |
|
205 | 205 | |
206 | 206 | $prepared = array(); |
207 | 207 | $row = (array) $row; |
208 | 208 | |
209 | - foreach ( $fields as $field ) { |
|
209 | + foreach ($fields as $field) { |
|
210 | 210 | |
211 | - if ( $field === 'total' ) { |
|
212 | - $prepared[ $field ] = html_entity_decode( strip_tags( wpinv_price( $row['total'] ) ), ENT_QUOTES ); |
|
211 | + if ($field === 'total') { |
|
212 | + $prepared[$field] = html_entity_decode(strip_tags(wpinv_price($row['total'])), ENT_QUOTES); |
|
213 | 213 | continue; |
214 | 214 | } |
215 | 215 | |
216 | - if ( $field === 'total_raw' ) { |
|
217 | - $prepared[ $field ] = wpinv_round_amount( wpinv_sanitize_amount( $row['total'] ) ); |
|
216 | + if ($field === 'total_raw') { |
|
217 | + $prepared[$field] = wpinv_round_amount(wpinv_sanitize_amount($row['total'])); |
|
218 | 218 | continue; |
219 | 219 | } |
220 | 220 | |
221 | - $prepared[ $field ] = strip_tags( $row[ $field ] ); |
|
221 | + $prepared[$field] = strip_tags($row[$field]); |
|
222 | 222 | |
223 | 223 | } |
224 | 224 |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * |
6 | 6 | */ |
7 | 7 | |
8 | -defined( 'ABSPATH' ) || exit; |
|
8 | +defined('ABSPATH') || exit; |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * GetPaid_Invoice_Exporter Class. |
@@ -19,33 +19,33 @@ discard block |
||
19 | 19 | * @param array $args Args to search for. |
20 | 20 | * @return array |
21 | 21 | */ |
22 | - public function get_invoice_query_args( $post_type, $args ) { |
|
22 | + public function get_invoice_query_args($post_type, $args) { |
|
23 | 23 | |
24 | 24 | $query_args = array( |
25 | 25 | 'post_type' => $post_type, |
26 | - 'post_status' => array_keys( wpinv_get_invoice_statuses( true, false, $post_type ) ), |
|
26 | + 'post_status' => array_keys(wpinv_get_invoice_statuses(true, false, $post_type)), |
|
27 | 27 | 'posts_per_page' => -1, |
28 | 28 | 'no_found_rows' => true, |
29 | 29 | 'update_post_term_cache' => false, |
30 | 30 | 'fields' => 'ids', |
31 | 31 | ); |
32 | 32 | |
33 | - if ( ! empty( $args['status'] ) && in_array( $args['status'], $query_args['post_status'], true ) ) { |
|
34 | - $query_args['post_status'] = wpinv_clean( wpinv_parse_list( $args['status'] ) ); |
|
33 | + if (!empty($args['status']) && in_array($args['status'], $query_args['post_status'], true)) { |
|
34 | + $query_args['post_status'] = wpinv_clean(wpinv_parse_list($args['status'])); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | $date_query = array(); |
38 | - if ( ! empty( $args['to_date'] ) ) { |
|
39 | - $date_query['before'] = wpinv_clean( $args['to_date'] ); |
|
38 | + if (!empty($args['to_date'])) { |
|
39 | + $date_query['before'] = wpinv_clean($args['to_date']); |
|
40 | 40 | } |
41 | 41 | |
42 | - if ( ! empty( $args['from_date'] ) ) { |
|
43 | - $date_query['after'] = wpinv_clean( $args['from_date'] ); |
|
42 | + if (!empty($args['from_date'])) { |
|
43 | + $date_query['after'] = wpinv_clean($args['from_date']); |
|
44 | 44 | } |
45 | 45 | |
46 | - if ( ! empty( $date_query ) ) { |
|
46 | + if (!empty($date_query)) { |
|
47 | 47 | $date_query['inclusive'] = true; |
48 | - $query_args['date_query'] = array( $date_query ); |
|
48 | + $query_args['date_query'] = array($date_query); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | return $query_args; |
@@ -57,13 +57,13 @@ discard block |
||
57 | 57 | * @param array $query_args WP_Query args. |
58 | 58 | * @return WPInv_Invoice[] |
59 | 59 | */ |
60 | - public function get_invoices( $query_args ) { |
|
60 | + public function get_invoices($query_args) { |
|
61 | 61 | |
62 | 62 | // Get invoices. |
63 | - $invoices = new WP_Query( $query_args ); |
|
63 | + $invoices = new WP_Query($query_args); |
|
64 | 64 | |
65 | 65 | // Prepare the results. |
66 | - return array_map( 'wpinv_get_invoice', $invoices->posts ); |
|
66 | + return array_map('wpinv_get_invoice', $invoices->posts); |
|
67 | 67 | |
68 | 68 | } |
69 | 69 | |
@@ -71,22 +71,22 @@ discard block |
||
71 | 71 | * Handles the actual download. |
72 | 72 | * |
73 | 73 | */ |
74 | - public function export( $post_type, $args ) { |
|
74 | + public function export($post_type, $args) { |
|
75 | 75 | |
76 | - $invoices = $this->get_invoices( $this->get_invoice_query_args( $post_type, $args ) ); |
|
76 | + $invoices = $this->get_invoices($this->get_invoice_query_args($post_type, $args)); |
|
77 | 77 | $stream = $this->prepare_output(); |
78 | - $headers = $this->get_export_fields( $post_type ); |
|
79 | - $file_type = $this->prepare_file_type( strtolower( getpaid_get_post_type_label( $post_type ) ) ); |
|
78 | + $headers = $this->get_export_fields($post_type); |
|
79 | + $file_type = $this->prepare_file_type(strtolower(getpaid_get_post_type_label($post_type))); |
|
80 | 80 | |
81 | - if ( 'csv' == $file_type ) { |
|
82 | - $this->download_csv( $invoices, $stream, $headers ); |
|
83 | - } elseif ( 'xml' == $file_type ) { |
|
84 | - $this->download_xml( $invoices, $stream, $headers ); |
|
81 | + if ('csv' == $file_type) { |
|
82 | + $this->download_csv($invoices, $stream, $headers); |
|
83 | + } elseif ('xml' == $file_type) { |
|
84 | + $this->download_xml($invoices, $stream, $headers); |
|
85 | 85 | } else { |
86 | - $this->download_json( $invoices, $stream, $headers ); |
|
86 | + $this->download_json($invoices, $stream, $headers); |
|
87 | 87 | } |
88 | 88 | |
89 | - fclose( $stream ); |
|
89 | + fclose($stream); |
|
90 | 90 | exit; |
91 | 91 | } |
92 | 92 | |
@@ -98,27 +98,27 @@ discard block |
||
98 | 98 | * @since 1.0.19 |
99 | 99 | * @return array |
100 | 100 | */ |
101 | - public function prepare_row( $invoice, $fields ) { |
|
101 | + public function prepare_row($invoice, $fields) { |
|
102 | 102 | |
103 | 103 | $prepared = array(); |
104 | - $amount_fields = $this->get_amount_fields( $invoice->get_post_type() ); |
|
105 | - $meta_fields = $this->get_payment_form_meta( $invoice ); |
|
104 | + $amount_fields = $this->get_amount_fields($invoice->get_post_type()); |
|
105 | + $meta_fields = $this->get_payment_form_meta($invoice); |
|
106 | 106 | |
107 | - foreach ( $fields as $field ) { |
|
107 | + foreach ($fields as $field) { |
|
108 | 108 | $value = ''; |
109 | 109 | $method = "get_$field"; |
110 | 110 | |
111 | - if ( method_exists( $invoice, $method ) ) { |
|
112 | - $value = $invoice->$method(); |
|
113 | - } else if( strpos( $field, '_' ) === 0 && isset( $meta_fields[ $field ] ) ) { |
|
114 | - $value = $meta_fields[ $field ]; |
|
111 | + if (method_exists($invoice, $method)) { |
|
112 | + $value = $invoice->$method(); |
|
113 | + } else if (strpos($field, '_') === 0 && isset($meta_fields[$field])) { |
|
114 | + $value = $meta_fields[$field]; |
|
115 | 115 | } |
116 | 116 | |
117 | - if ( in_array( $field, $amount_fields ) ) { |
|
118 | - $value = wpinv_round_amount( wpinv_sanitize_amount( $value ) ); |
|
117 | + if (in_array($field, $amount_fields)) { |
|
118 | + $value = wpinv_round_amount(wpinv_sanitize_amount($value)); |
|
119 | 119 | } |
120 | 120 | |
121 | - $prepared[ $field ] = wpinv_clean( $value ); |
|
121 | + $prepared[$field] = wpinv_clean($value); |
|
122 | 122 | |
123 | 123 | } |
124 | 124 | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * @since 1.0.19 |
133 | 133 | * @return array |
134 | 134 | */ |
135 | - public function get_export_fields( $post_type ) { |
|
135 | + public function get_export_fields($post_type) { |
|
136 | 136 | |
137 | 137 | $fields = array( |
138 | 138 | 'id', |
@@ -185,13 +185,13 @@ discard block |
||
185 | 185 | // Payment form meta fields. |
186 | 186 | $meta_fields = getpaid_get_payment_form_custom_fields(); |
187 | 187 | |
188 | - if ( ! empty( $meta_fields ) ) { |
|
189 | - foreach ( $meta_fields as $field_key => $field_label ) { |
|
188 | + if (!empty($meta_fields)) { |
|
189 | + foreach ($meta_fields as $field_key => $field_label) { |
|
190 | 190 | $fields[] = $field_key; |
191 | 191 | } |
192 | 192 | } |
193 | 193 | |
194 | - return apply_filters( 'getpaid_invoice_exporter_get_fields', $fields, $post_type ); |
|
194 | + return apply_filters('getpaid_invoice_exporter_get_fields', $fields, $post_type); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | * @since 1.0.19 |
202 | 202 | * @return array |
203 | 203 | */ |
204 | - public function get_amount_fields( $post_type ) { |
|
204 | + public function get_amount_fields($post_type) { |
|
205 | 205 | |
206 | 206 | $fields = array( |
207 | 207 | 'subtotal', |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | 'total_fees', |
211 | 211 | ); |
212 | 212 | |
213 | - return apply_filters( 'getpaid_invoice_exporter_get_amount_fields', $fields, $post_type ); |
|
213 | + return apply_filters('getpaid_invoice_exporter_get_amount_fields', $fields, $post_type); |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | /** |
@@ -220,25 +220,25 @@ discard block |
||
220 | 220 | * |
221 | 221 | * @return array |
222 | 222 | */ |
223 | - public function get_payment_form_meta( $invoice ) { |
|
223 | + public function get_payment_form_meta($invoice) { |
|
224 | 224 | // Payment form meta fields. |
225 | 225 | $field_keys = getpaid_get_payment_form_custom_fields(); |
226 | - $meta = get_post_meta( $invoice->get_id(), 'additional_meta_data', true ); |
|
226 | + $meta = get_post_meta($invoice->get_id(), 'additional_meta_data', true); |
|
227 | 227 | |
228 | 228 | $field_values = array(); |
229 | - if ( ! empty( $field_keys ) ) { |
|
230 | - foreach ( $field_keys as $field_key => $field_label ) { |
|
229 | + if (!empty($field_keys)) { |
|
230 | + foreach ($field_keys as $field_key => $field_label) { |
|
231 | 231 | $value = ''; |
232 | 232 | |
233 | - if ( ! empty( $meta ) ) { |
|
234 | - foreach ( $meta as $meta_label => $meta_value ) { |
|
235 | - if ( getpaid_strtolower( wpinv_clean( wp_unslash( $meta_label ) ) ) == getpaid_strtolower( $field_label ) ) { |
|
233 | + if (!empty($meta)) { |
|
234 | + foreach ($meta as $meta_label => $meta_value) { |
|
235 | + if (getpaid_strtolower(wpinv_clean(wp_unslash($meta_label))) == getpaid_strtolower($field_label)) { |
|
236 | 236 | $value = $meta_value; |
237 | 237 | } |
238 | 238 | } |
239 | 239 | } |
240 | 240 | |
241 | - $field_values[ $field_key ] = $value; |
|
241 | + $field_values[$field_key] = $value; |
|
242 | 242 | } |
243 | 243 | } |
244 | 244 |
@@ -4,40 +4,40 @@ |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | global $aui_bs5; |
10 | 10 | ?> |
11 | 11 | <div class="card shadow-sm my-5"> |
12 | 12 | <div class="text-center card-body"> |
13 | - <h1 class="h3"><?php esc_html_e( 'Awesome, you are ready to Get Paid', 'invoicing' ); ?></h1> |
|
13 | + <h1 class="h3"><?php esc_html_e('Awesome, you are ready to Get Paid', 'invoicing'); ?></h1> |
|
14 | 14 | |
15 | 15 | <div class="geodirectory-message geodirectory-tracker"> |
16 | - <p><?php esc_html_e( 'Thank you for choosing GetPaid!', 'invoicing' ); ?> <i class="far fa-smile-beam"></i></p> |
|
16 | + <p><?php esc_html_e('Thank you for choosing GetPaid!', 'invoicing'); ?> <i class="far fa-smile-beam"></i></p> |
|
17 | 17 | </div> |
18 | 18 | |
19 | 19 | <div class="gp-setup-next-steps"> |
20 | 20 | <div class="gp-setup-next-steps-first mb-4"> |
21 | 21 | <div> |
22 | - <h2 class="h3"><i class="fas fa-arrow-down"></i> <?php esc_html_e( 'Watch This', 'invoicing' ); ?> <i class="fas fa-arrow-down"></i></h2> |
|
23 | - <div class="<?php echo( $aui_bs5 ? 'ratio ratio-16x9' : 'embed-responsive embed-responsive-16by9' ); ?> mb-4"> |
|
24 | - <iframe class="<?php echo( $aui_bs5 ? '' : 'embed-responsive-item' ); ?>" src="https://www.youtube.com/embed/TXZuPXHjt9E?rel=0" allowfullscreen></iframe> |
|
22 | + <h2 class="h3"><i class="fas fa-arrow-down"></i> <?php esc_html_e('Watch This', 'invoicing'); ?> <i class="fas fa-arrow-down"></i></h2> |
|
23 | + <div class="<?php echo($aui_bs5 ? 'ratio ratio-16x9' : 'embed-responsive embed-responsive-16by9'); ?> mb-4"> |
|
24 | + <iframe class="<?php echo($aui_bs5 ? '' : 'embed-responsive-item'); ?>" src="https://www.youtube.com/embed/TXZuPXHjt9E?rel=0" allowfullscreen></iframe> |
|
25 | 25 | </div> |
26 | 26 | </div> |
27 | - <h2 class="h3"><?php esc_html_e( 'Next steps', 'invoicing' ); ?></h2> |
|
27 | + <h2 class="h3"><?php esc_html_e('Next steps', 'invoicing'); ?></h2> |
|
28 | 28 | |
29 | 29 | <div class="d-flex justify-content-between"> |
30 | - <a class="btn btn-outline-primary btn-sm" href="<?php echo esc_url( admin_url( 'post-new.php?post_type=wpi_item' ) ); ?>"><span class="h1 d-block"><i class="fas fa-box-open"></i></span> <?php esc_html_e( 'Create Item', 'invoicing' ); ?></a> |
|
31 | - <a class="btn btn-outline-primary btn-sm" href="<?php echo esc_url( admin_url( 'post-new.php?post_type=wpi_payment_form' ) ); ?>"><span class="h1 d-block"><i class="fas fa-align-justify"></i></span> <?php esc_html_e( 'Create Payment Form', 'invoicing' ); ?></a> |
|
32 | - <a class="btn btn-outline-primary btn-sm" href="<?php echo esc_url( admin_url( 'post-new.php?post_type=wpi_invoice' ) ); ?>"><span class="h1 d-block"><i class="fas fa-file-alt"></i></span> <?php esc_html_e( 'Create Invoice', 'invoicing' ); ?></a> |
|
30 | + <a class="btn btn-outline-primary btn-sm" href="<?php echo esc_url(admin_url('post-new.php?post_type=wpi_item')); ?>"><span class="h1 d-block"><i class="fas fa-box-open"></i></span> <?php esc_html_e('Create Item', 'invoicing'); ?></a> |
|
31 | + <a class="btn btn-outline-primary btn-sm" href="<?php echo esc_url(admin_url('post-new.php?post_type=wpi_payment_form')); ?>"><span class="h1 d-block"><i class="fas fa-align-justify"></i></span> <?php esc_html_e('Create Payment Form', 'invoicing'); ?></a> |
|
32 | + <a class="btn btn-outline-primary btn-sm" href="<?php echo esc_url(admin_url('post-new.php?post_type=wpi_invoice')); ?>"><span class="h1 d-block"><i class="fas fa-file-alt"></i></span> <?php esc_html_e('Create Invoice', 'invoicing'); ?></a> |
|
33 | 33 | </div> |
34 | 34 | |
35 | - <h2 class="h3 mt-4"><?php esc_html_e( 'Learn more', 'invoicing' ); ?></h2> |
|
35 | + <h2 class="h3 mt-4"><?php esc_html_e('Learn more', 'invoicing'); ?></h2> |
|
36 | 36 | <div class="gp-setup-next-steps-last mt-2 d-flex justify-content-between"> |
37 | - <a class="btn btn-outline-primary btn-sm" href="https://docs.wpgetpaid.com/collection/114-getting-started?utm_source=setupwizard&utm_medium=product&utm_content=getting-started&utm_campaign=invoicingplugin" target="_blank"><?php esc_html_e( 'Getting Started', 'invoicing' ); ?></a> |
|
38 | - <a class="btn btn-outline-primary btn-sm" href="https://docs.wpgetpaid.com/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=invoicingplugin" target="_blank"><?php esc_html_e( 'Documentation', 'invoicing' ); ?></a> |
|
39 | - <a class="btn btn-outline-primary btn-sm" href="https://wpgetpaid.com/support/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=invoicingyplugin" target="_blank"><?php esc_html_e( 'Support', 'invoicing' ); ?></a> |
|
40 | - <a class="btn btn-outline-primary btn-sm" href="https://demos.ayecode.io/getpaid/?utm_source=setupwizard&utm_medium=product&utm_content=demos&utm_campaign=invoicingyplugin" target="_blank"><?php esc_html_e( 'Demos', 'invoicing' ); ?></a> |
|
37 | + <a class="btn btn-outline-primary btn-sm" href="https://docs.wpgetpaid.com/collection/114-getting-started?utm_source=setupwizard&utm_medium=product&utm_content=getting-started&utm_campaign=invoicingplugin" target="_blank"><?php esc_html_e('Getting Started', 'invoicing'); ?></a> |
|
38 | + <a class="btn btn-outline-primary btn-sm" href="https://docs.wpgetpaid.com/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=invoicingplugin" target="_blank"><?php esc_html_e('Documentation', 'invoicing'); ?></a> |
|
39 | + <a class="btn btn-outline-primary btn-sm" href="https://wpgetpaid.com/support/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=invoicingyplugin" target="_blank"><?php esc_html_e('Support', 'invoicing'); ?></a> |
|
40 | + <a class="btn btn-outline-primary btn-sm" href="https://demos.ayecode.io/getpaid/?utm_source=setupwizard&utm_medium=product&utm_content=demos&utm_campaign=invoicingyplugin" target="_blank"><?php esc_html_e('Demos', 'invoicing'); ?></a> |
|
41 | 41 | </div> |
42 | 42 | </div> |
43 | 43 | </div> |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | global $aui_bs5; |
10 | 10 | ?> |
@@ -12,24 +12,24 @@ discard block |
||
12 | 12 | |
13 | 13 | <form method="post" class="text-center card-body"> |
14 | 14 | <div class="gp-wizard-payments"> |
15 | - <h2 class="gd-settings-title h3 "><?php esc_html_e( 'Gateway Setup', 'invoicing' ); ?></h2> |
|
16 | - <p><?php esc_html_e( 'Below are a few gateways that can be setup in a few seconds.', 'invoicing' ); ?> |
|
15 | + <h2 class="gd-settings-title h3 "><?php esc_html_e('Gateway Setup', 'invoicing'); ?></h2> |
|
16 | + <p><?php esc_html_e('Below are a few gateways that can be setup in a few seconds.', 'invoicing'); ?> |
|
17 | 17 | <br> |
18 | - <?php esc_html_e( 'We have 20+ Gateways that can be setup later.', 'invoicing' ); ?> |
|
18 | + <?php esc_html_e('We have 20+ Gateways that can be setup later.', 'invoicing'); ?> |
|
19 | 19 | </p> |
20 | 20 | |
21 | 21 | <ul class="list-group"> |
22 | 22 | |
23 | 23 | <li class="list-group-item d-flex justify-content-between align-items-center"> |
24 | - <span class="mr-auto"><img src="<?php echo esc_url( WPINV_PLUGIN_URL . 'assets/images/stripe-verified.svg' ); ?>" class="<?php echo( $aui_bs5 ? 'ms-n2' : 'ml-n2' ); ?>" alt="Stripe"></span> |
|
25 | - <?php if ( false === wpinv_get_option( 'stripe_live_connect_account_id' ) ) : ?> |
|
24 | + <span class="mr-auto"><img src="<?php echo esc_url(WPINV_PLUGIN_URL . 'assets/images/stripe-verified.svg'); ?>" class="<?php echo($aui_bs5 ? 'ms-n2' : 'ml-n2'); ?>" alt="Stripe"></span> |
|
25 | + <?php if (false === wpinv_get_option('stripe_live_connect_account_id')) : ?> |
|
26 | 26 | <a href="<?php |
27 | - echo esc_url( wp_nonce_url( |
|
27 | + echo esc_url(wp_nonce_url( |
|
28 | 28 | add_query_arg( |
29 | 29 | array( |
30 | 30 | 'getpaid-admin-action' => 'connect_gateway', |
31 | 31 | 'plugin' => 'stripe', |
32 | - 'redirect' => urlencode( add_query_arg( 'step', 'payments' ) ), |
|
32 | + 'redirect' => urlencode(add_query_arg('step', 'payments')), |
|
33 | 33 | ), |
34 | 34 | admin_url() |
35 | 35 | ), |
@@ -37,42 +37,42 @@ discard block |
||
37 | 37 | 'getpaid-nonce' |
38 | 38 | )); |
39 | 39 | ?>" |
40 | - class="btn btn-sm btn-outline-primary"><?php esc_html_e( 'Connect', 'invoicing' ); ?></a> |
|
40 | + class="btn btn-sm btn-outline-primary"><?php esc_html_e('Connect', 'invoicing'); ?></a> |
|
41 | 41 | <?php else : ?> |
42 | - <span class="btn btn-sm btn-success"><?php esc_html_e( 'Connected', 'invoicing' ); ?></span> |
|
42 | + <span class="btn btn-sm btn-success"><?php esc_html_e('Connected', 'invoicing'); ?></span> |
|
43 | 43 | <?php endif; ?> |
44 | 44 | </li> |
45 | 45 | |
46 | 46 | <li class="list-group-item"> |
47 | 47 | <div class="d-flex justify-content-between align-items-center"> |
48 | - <span class="<?php echo( $aui_bs5 ? 'me-auto' : 'mr-auto' ); ?>"> |
|
49 | - <img src="<?php echo esc_url( WPINV_PLUGIN_URL . 'assets/images/pp-logo-150px.webp' ); ?>" class="" alt="PayPal" height="25"> |
|
48 | + <span class="<?php echo($aui_bs5 ? 'me-auto' : 'mr-auto'); ?>"> |
|
49 | + <img src="<?php echo esc_url(WPINV_PLUGIN_URL . 'assets/images/pp-logo-150px.webp'); ?>" class="" alt="PayPal" height="25"> |
|
50 | 50 | </span> |
51 | 51 | <a |
52 | 52 | href="#" |
53 | 53 | onclick="jQuery('.getpaid-setup-paypal-input').toggleClass('d-none'); return false;" |
54 | - class="getpaid-setup-paypal btn btn-sm btn-outline-primary"><?php esc_html_e( 'Set-up', 'invoicing' ); ?></a> |
|
54 | + class="getpaid-setup-paypal btn btn-sm btn-outline-primary"><?php esc_html_e('Set-up', 'invoicing'); ?></a> |
|
55 | 55 | </div> |
56 | 56 | <div class="mt-4 getpaid-setup-paypal-input d-none"> |
57 | - <input type="text" placeholder="<?php esc_attr_e( 'PayPal Email', 'invoicing' ); ?>" name="paypal-email" class="form-control" value="<?php echo esc_attr( wpinv_get_option( 'paypal_email' ) ); ?>"> |
|
57 | + <input type="text" placeholder="<?php esc_attr_e('PayPal Email', 'invoicing'); ?>" name="paypal-email" class="form-control" value="<?php echo esc_attr(wpinv_get_option('paypal_email')); ?>"> |
|
58 | 58 | </div> |
59 | 59 | </li> |
60 | 60 | |
61 | 61 | <li class="list-group-item d-flex justify-content-between align-items-center"> |
62 | - <span class="<?php echo( $aui_bs5 ? 'me-auto' : 'mr-auto' ); ?>"><?php esc_html_e( 'Test Gateway', 'invoicing' ); ?></span> |
|
63 | - <div class="<?php echo ( $aui_bs5 ? 'form-check form-switch' : 'custom-control custom-switch' ); ?>"> |
|
64 | - <input type="checkbox" name="enable-manual-gateway" id="enable-manual-gateway" value="1" class="<?php echo ( $aui_bs5 ? 'form-check-input' : 'custom-control-input' ); ?>" <?php checked( wpinv_is_gateway_active( 'manual' ) ); ?>> |
|
65 | - <label class="<?php echo ( $aui_bs5 ? 'form-check-label' : 'custom-control-label' ); ?>" for="enable-manual-gateway"></label> |
|
62 | + <span class="<?php echo($aui_bs5 ? 'me-auto' : 'mr-auto'); ?>"><?php esc_html_e('Test Gateway', 'invoicing'); ?></span> |
|
63 | + <div class="<?php echo ($aui_bs5 ? 'form-check form-switch' : 'custom-control custom-switch'); ?>"> |
|
64 | + <input type="checkbox" name="enable-manual-gateway" id="enable-manual-gateway" value="1" class="<?php echo ($aui_bs5 ? 'form-check-input' : 'custom-control-input'); ?>" <?php checked(wpinv_is_gateway_active('manual')); ?>> |
|
65 | + <label class="<?php echo ($aui_bs5 ? 'form-check-label' : 'custom-control-label'); ?>" for="enable-manual-gateway"></label> |
|
66 | 66 | </div> |
67 | 67 | </li> |
68 | 68 | </ul> |
69 | 69 | </div> |
70 | 70 | |
71 | 71 | <p class="gp-setup-actions step text-center mt-4"> |
72 | - <input type="submit" class="btn btn-primary" value="<?php esc_attr_e( 'Continue', 'invoicing' ); ?>" /> |
|
72 | + <input type="submit" class="btn btn-primary" value="<?php esc_attr_e('Continue', 'invoicing'); ?>" /> |
|
73 | 73 | </p> |
74 | 74 | |
75 | - <?php getpaid_hidden_field( 'save_step', 1 ); ?> |
|
76 | - <?php wp_nonce_field( 'getpaid-setup-wizard', 'getpaid-setup-wizard' ); ?> |
|
75 | + <?php getpaid_hidden_field('save_step', 1); ?> |
|
76 | + <?php wp_nonce_field('getpaid-setup-wizard', 'getpaid-setup-wizard'); ?> |
|
77 | 77 | </form> |
78 | 78 | </div> |
@@ -4,14 +4,14 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | global $aui_bs5; |
10 | 10 | ?> |
11 | 11 | <div class="card shadow-sm my-5"> |
12 | - <form method="post" class="<?php echo( $aui_bs5 ? 'text-start' : 'text-left' ); ?> card-body" action="options.php"> |
|
13 | - <?php settings_fields( 'wpinv_settings' ); ?> |
|
14 | - <input type="hidden" name="_wp_http_referer" value="<?php echo esc_url( $next_url ); ?>"> |
|
12 | + <form method="post" class="<?php echo($aui_bs5 ? 'text-start' : 'text-left'); ?> card-body" action="options.php"> |
|
13 | + <?php settings_fields('wpinv_settings'); ?> |
|
14 | + <input type="hidden" name="_wp_http_referer" value="<?php echo esc_url($next_url); ?>"> |
|
15 | 15 | |
16 | 16 | <table class="gp-setup-maps w-100 " cellspacing="0"> |
17 | 17 | <tbody> |
@@ -19,28 +19,28 @@ discard block |
||
19 | 19 | |
20 | 20 | global $wp_settings_fields; |
21 | 21 | |
22 | - if ( isset( $wp_settings_fields[ $page ][ $section ] ) ) { |
|
23 | - $settings = $wp_settings_fields[ $page ][ $section ]; |
|
22 | + if (isset($wp_settings_fields[$page][$section])) { |
|
23 | + $settings = $wp_settings_fields[$page][$section]; |
|
24 | 24 | |
25 | - foreach ( $settings as $field ) { |
|
25 | + foreach ($settings as $field) { |
|
26 | 26 | |
27 | - $name = esc_attr( $field['id'] ); |
|
28 | - $id = sanitize_key( $name ); |
|
27 | + $name = esc_attr($field['id']); |
|
28 | + $id = sanitize_key($name); |
|
29 | 29 | $class = ''; |
30 | - $value = isset( $field['args']['std'] ) ? $field['args']['std'] : ''; |
|
31 | - $value = wpinv_clean( wpinv_get_option( $field['args']['id'], $value ) ); |
|
32 | - $help_text = isset( $field['args']['desc'] ) ? wp_kses_post( $field['args']['desc'] ) : ''; |
|
33 | - $type = str_replace( 'wpinv_', '', str_replace( '_callback', '', $field['callback'] ) ); |
|
34 | - $label = isset( $field['args']['name'] ) ? wp_kses_post( $field['args']['name'] ) : ''; |
|
35 | - $options = isset( $field['args']['options'] ) ? $field['args']['options'] : array(); |
|
36 | - |
|
37 | - if ( false !== strpos( $name, 'logo' ) ) { |
|
30 | + $value = isset($field['args']['std']) ? $field['args']['std'] : ''; |
|
31 | + $value = wpinv_clean(wpinv_get_option($field['args']['id'], $value)); |
|
32 | + $help_text = isset($field['args']['desc']) ? wp_kses_post($field['args']['desc']) : ''; |
|
33 | + $type = str_replace('wpinv_', '', str_replace('_callback', '', $field['callback'])); |
|
34 | + $label = isset($field['args']['name']) ? wp_kses_post($field['args']['name']) : ''; |
|
35 | + $options = isset($field['args']['options']) ? $field['args']['options'] : array(); |
|
36 | + |
|
37 | + if (false !== strpos($name, 'logo')) { |
|
38 | 38 | $type = 'hidden'; |
39 | 39 | } |
40 | 40 | |
41 | - if ( 'country_states' == $type ) { |
|
41 | + if ('country_states' == $type) { |
|
42 | 42 | |
43 | - if ( 0 == count( wpinv_get_country_states( wpinv_get_default_country() ) ) ) { |
|
43 | + if (0 == count(wpinv_get_country_states(wpinv_get_default_country()))) { |
|
44 | 44 | $type = 'text'; |
45 | 45 | } else { |
46 | 46 | $type = 'select'; |
@@ -49,14 +49,14 @@ discard block |
||
49 | 49 | $class = 'getpaid_js_field-state'; |
50 | 50 | } |
51 | 51 | |
52 | - if ( 'wpinv_settings[default_country]' == $name ) { |
|
52 | + if ('wpinv_settings[default_country]' == $name) { |
|
53 | 53 | $class = 'getpaid_js_field-country'; |
54 | 54 | } |
55 | 55 | |
56 | - switch ( $type ) { |
|
56 | + switch ($type) { |
|
57 | 57 | |
58 | 58 | case 'hidden': |
59 | - echo "<input type='hidden' id='" . esc_attr( $id ) . "' name='" . esc_attr( $name ) . "' value='" . esc_attr( $value ) . "' />"; |
|
59 | + echo "<input type='hidden' id='" . esc_attr($id) . "' name='" . esc_attr($name) . "' value='" . esc_attr($value) . "' />"; |
|
60 | 60 | break; |
61 | 61 | case 'text': |
62 | 62 | case 'number': |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | 'type' => $type, |
66 | 66 | 'id' => $id, |
67 | 67 | 'name' => $name, |
68 | - 'value' => is_scalar( $value ) ? esc_attr( $value ) : '', |
|
68 | + 'value' => is_scalar($value) ? esc_attr($value) : '', |
|
69 | 69 | 'required' => false, |
70 | 70 | 'help_text' => $help_text, |
71 | 71 | 'label' => $label, |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | array( |
82 | 82 | 'id' => $id, |
83 | 83 | 'name' => $name, |
84 | - 'value' => is_scalar( $value ) ? esc_textarea( $value ) : '', |
|
84 | + 'value' => is_scalar($value) ? esc_textarea($value) : '', |
|
85 | 85 | 'required' => false, |
86 | 86 | 'help_text' => $help_text, |
87 | 87 | 'label' => $label, |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | 'id' => $id, |
101 | 101 | 'name' => $name, |
102 | 102 | 'placeholder' => '', |
103 | - 'value' => is_scalar( $value ) ? esc_attr( $value ) : '', |
|
103 | + 'value' => is_scalar($value) ? esc_attr($value) : '', |
|
104 | 104 | 'required' => false, |
105 | 105 | 'help_text' => $help_text, |
106 | 106 | 'label' => $label, |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | <input |
127 | 127 | type="submit" |
128 | 128 | class="btn btn-primary button-next" |
129 | - value="<?php esc_attr_e( 'Continue', 'invoicing' ); ?>" name="save_step"/> |
|
129 | + value="<?php esc_attr_e('Continue', 'invoicing'); ?>" name="save_step"/> |
|
130 | 130 | </p> |
131 | 131 | </table> |
132 | 132 | </form> |
@@ -4,31 +4,31 @@ |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | global $aui_bs5; |
10 | 10 | ?> |
11 | 11 | <div class="card shadow-sm my-5"> |
12 | - <form method="post" class="text-center card-body" action="<?php echo esc_url( admin_url() ); ?>"> |
|
13 | - <?php getpaid_hidden_field( 'getpaid-admin-action', 'install_plugin' ); ?> |
|
14 | - <?php wp_nonce_field( 'getpaid-nonce', 'getpaid-nonce' ); ?> |
|
15 | - <?php getpaid_hidden_field( 'redirect', $next_url ); ?> |
|
12 | + <form method="post" class="text-center card-body" action="<?php echo esc_url(admin_url()); ?>"> |
|
13 | + <?php getpaid_hidden_field('getpaid-admin-action', 'install_plugin'); ?> |
|
14 | + <?php wp_nonce_field('getpaid-nonce', 'getpaid-nonce'); ?> |
|
15 | + <?php getpaid_hidden_field('redirect', $next_url); ?> |
|
16 | 16 | <div class="gd-wizard-recommend"> |
17 | - <h2 class="gd-settings-title h3"><?php esc_html_e( 'Recommended Plugins', 'invoicing' ); ?></h2> |
|
18 | - <p><?php esc_html_e( 'Below are a few of our own plugins that may help you.', 'invoicing' ); ?></p> |
|
17 | + <h2 class="gd-settings-title h3"><?php esc_html_e('Recommended Plugins', 'invoicing'); ?></h2> |
|
18 | + <p><?php esc_html_e('Below are a few of our own plugins that may help you.', 'invoicing'); ?></p> |
|
19 | 19 | <ul class="list-group"> |
20 | - <?php foreach ( $recommended_plugins as $key => $plugin ) : ?> |
|
21 | - <li class="list-group-item d-flex justify-content-between align-items-center flex-wrap <?php echo( $aui_bs5 ? 'text-start' : 'text-left' ); ?>"> |
|
22 | - <span class="mr-auto"><?php echo esc_html( $plugin['name'] ); ?></span> |
|
23 | - <div class="<?php echo( $aui_bs5 ? 'form-check form-switch me-n2' : 'custom-control custom-switch mr-n2 getpaid-install-plugin-siwtch-div' ); ?>"> |
|
24 | - <input type="checkbox" name="plugins[<?php echo esc_attr( $plugin['slug'] ); ?>]" value="<?php echo esc_attr( $plugin['file'] ); ?>" class="<?php echo ( $aui_bs5 ? 'form-check-input' : 'custom-control-input' ); ?>" <?php if ( is_plugin_active( $plugin['file'] ) ) { echo 'checked';}?> id="ac-setting-updates<?php echo esc_attr( $key ); ?>"> |
|
25 | - <label class="<?php echo ( $aui_bs5 ? 'form-check-label' : 'custom-control-label' ); ?>" for="ac-setting-updates<?php echo esc_attr( $key ); ?>"></label> |
|
20 | + <?php foreach ($recommended_plugins as $key => $plugin) : ?> |
|
21 | + <li class="list-group-item d-flex justify-content-between align-items-center flex-wrap <?php echo($aui_bs5 ? 'text-start' : 'text-left'); ?>"> |
|
22 | + <span class="mr-auto"><?php echo esc_html($plugin['name']); ?></span> |
|
23 | + <div class="<?php echo($aui_bs5 ? 'form-check form-switch me-n2' : 'custom-control custom-switch mr-n2 getpaid-install-plugin-siwtch-div'); ?>"> |
|
24 | + <input type="checkbox" name="plugins[<?php echo esc_attr($plugin['slug']); ?>]" value="<?php echo esc_attr($plugin['file']); ?>" class="<?php echo ($aui_bs5 ? 'form-check-input' : 'custom-control-input'); ?>" <?php if (is_plugin_active($plugin['file'])) { echo 'checked'; }?> id="ac-setting-updates<?php echo esc_attr($key); ?>"> |
|
25 | + <label class="<?php echo ($aui_bs5 ? 'form-check-label' : 'custom-control-label'); ?>" for="ac-setting-updates<?php echo esc_attr($key); ?>"></label> |
|
26 | 26 | </div> |
27 | - <small class="w-100"><?php echo esc_attr( $plugin['desc'] ); ?></small> |
|
27 | + <small class="w-100"><?php echo esc_attr($plugin['desc']); ?></small> |
|
28 | 28 | </li> |
29 | 29 | <?php endforeach; ?> |
30 | 30 | </ul> |
31 | - <p class="gp-setup-actions step text-center mt-4"><input type="submit" class="btn btn-primary button-next" value="<?php esc_attr_e( 'Continue', 'invoicing' ); ?>" name="save_step"/></p> |
|
31 | + <p class="gp-setup-actions step text-center mt-4"><input type="submit" class="btn btn-primary button-next" value="<?php esc_attr_e('Continue', 'invoicing'); ?>" name="save_step"/></p> |
|
32 | 32 | </div> |
33 | 33 | </form> |
34 | 34 | </div> |
35 | 35 | \ No newline at end of file |