@@ -14,73 +14,73 @@ discard block |
||
14 | 14 | class GetPaid_Admin { |
15 | 15 | |
16 | 16 | /** |
17 | - * Local path to this plugins admin directory |
|
18 | - * |
|
19 | - * @var string |
|
20 | - */ |
|
21 | - public $admin_path; |
|
22 | - |
|
23 | - /** |
|
24 | - * Web path to this plugins admin directory |
|
25 | - * |
|
26 | - * @var string |
|
27 | - */ |
|
28 | - public $admin_url; |
|
17 | + * Local path to this plugins admin directory |
|
18 | + * |
|
19 | + * @var string |
|
20 | + */ |
|
21 | + public $admin_path; |
|
22 | + |
|
23 | + /** |
|
24 | + * Web path to this plugins admin directory |
|
25 | + * |
|
26 | + * @var string |
|
27 | + */ |
|
28 | + public $admin_url; |
|
29 | 29 | |
30 | - /** |
|
31 | - * Reports components. |
|
32 | - * |
|
33 | - * @var GetPaid_Reports |
|
34 | - */ |
|
30 | + /** |
|
31 | + * Reports components. |
|
32 | + * |
|
33 | + * @var GetPaid_Reports |
|
34 | + */ |
|
35 | 35 | public $reports; |
36 | 36 | |
37 | 37 | /** |
38 | - * Class constructor. |
|
39 | - */ |
|
40 | - public function __construct(){ |
|
38 | + * Class constructor. |
|
39 | + */ |
|
40 | + public function __construct(){ |
|
41 | 41 | |
42 | 42 | $this->admin_path = plugin_dir_path( __FILE__ ); |
43 | - $this->admin_url = plugins_url( '/', __FILE__ ); |
|
44 | - $this->reports = new GetPaid_Reports(); |
|
43 | + $this->admin_url = plugins_url( '/', __FILE__ ); |
|
44 | + $this->reports = new GetPaid_Reports(); |
|
45 | 45 | |
46 | 46 | if ( is_admin() ) { |
47 | - $this->init_admin_hooks(); |
|
47 | + $this->init_admin_hooks(); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
53 | - * Init action and filter hooks |
|
54 | - * |
|
55 | - */ |
|
56 | - private function init_admin_hooks() { |
|
53 | + * Init action and filter hooks |
|
54 | + * |
|
55 | + */ |
|
56 | + private function init_admin_hooks() { |
|
57 | 57 | add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ) ); |
58 | 58 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
59 | 59 | add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
60 | 60 | add_action( 'admin_init', array( $this, 'activation_redirect') ); |
61 | 61 | add_action( 'admin_init', array( $this, 'maybe_do_admin_action') ); |
62 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
63 | - add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
64 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
65 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
62 | + add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
63 | + add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
64 | + add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
65 | + add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
66 | 66 | add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) ); |
67 | - add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
68 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
67 | + add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
68 | + do_action( 'getpaid_init_admin_hooks', $this ); |
|
69 | 69 | |
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
73 | - * Register admin scripts |
|
74 | - * |
|
75 | - */ |
|
76 | - public function enqeue_scripts() { |
|
73 | + * Register admin scripts |
|
74 | + * |
|
75 | + */ |
|
76 | + public function enqeue_scripts() { |
|
77 | 77 | global $current_screen, $pagenow; |
78 | 78 | |
79 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
80 | - $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
79 | + $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
80 | + $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
81 | 81 | |
82 | 82 | if ( ! empty( $current_screen->post_type ) ) { |
83 | - $page = $current_screen->post_type; |
|
83 | + $page = $current_screen->post_type; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | // General styles. |
@@ -103,54 +103,54 @@ discard block |
||
103 | 103 | } |
104 | 104 | |
105 | 105 | // Payment form scripts. |
106 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
106 | + if ( 'wpi_payment_form' == $page && $editing ) { |
|
107 | 107 | $this->load_payment_form_scripts(); |
108 | 108 | } |
109 | 109 | |
110 | - if ( $page == 'wpinv-subscriptions' ) { |
|
111 | - wp_enqueue_script( 'postbox' ); |
|
112 | - } |
|
110 | + if ( $page == 'wpinv-subscriptions' ) { |
|
111 | + wp_enqueue_script( 'postbox' ); |
|
112 | + } |
|
113 | 113 | |
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
117 | - * Returns admin js translations. |
|
118 | - * |
|
119 | - */ |
|
120 | - protected function get_admin_i18() { |
|
117 | + * Returns admin js translations. |
|
118 | + * |
|
119 | + */ |
|
120 | + protected function get_admin_i18() { |
|
121 | 121 | global $post; |
122 | 122 | |
123 | - $date_range = array( |
|
124 | - 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days' |
|
125 | - ); |
|
123 | + $date_range = array( |
|
124 | + 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days' |
|
125 | + ); |
|
126 | 126 | |
127 | - if ( $date_range['period'] == 'custom' ) { |
|
127 | + if ( $date_range['period'] == 'custom' ) { |
|
128 | 128 | |
129 | - if ( isset( $_GET['from'] ) ) { |
|
130 | - $date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
131 | - } |
|
129 | + if ( isset( $_GET['from'] ) ) { |
|
130 | + $date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
131 | + } |
|
132 | 132 | |
133 | - if ( isset( $_GET['to'] ) ) { |
|
134 | - $date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
135 | - } |
|
133 | + if ( isset( $_GET['to'] ) ) { |
|
134 | + $date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
135 | + } |
|
136 | 136 | |
137 | - } |
|
137 | + } |
|
138 | 138 | |
139 | 139 | $i18n = array( |
140 | 140 | 'ajax_url' => admin_url( 'admin-ajax.php' ), |
141 | 141 | 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
142 | - 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
143 | - 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
144 | - 'rest_root' => esc_url_raw( rest_url() ), |
|
145 | - 'date_range' => $date_range, |
|
142 | + 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
143 | + 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
144 | + 'rest_root' => esc_url_raw( rest_url() ), |
|
145 | + 'date_range' => $date_range, |
|
146 | 146 | 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
147 | 147 | 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
148 | 148 | 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
149 | 149 | 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
150 | 150 | 'tax' => wpinv_tax_amount(), |
151 | 151 | 'discount' => 0, |
152 | - 'currency_symbol' => wpinv_currency_symbol(), |
|
153 | - 'currency' => wpinv_get_currency(), |
|
152 | + 'currency_symbol' => wpinv_currency_symbol(), |
|
153 | + 'currency' => wpinv_get_currency(), |
|
154 | 154 | 'currency_pos' => wpinv_currency_position(), |
155 | 155 | 'thousand_sep' => wpinv_thousands_separator(), |
156 | 156 | 'decimal_sep' => wpinv_decimal_separator(), |
@@ -173,112 +173,112 @@ discard block |
||
173 | 173 | 'searching' => __( 'Searching', 'invoicing' ), |
174 | 174 | ); |
175 | 175 | |
176 | - if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
176 | + if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
177 | 177 | |
178 | - $invoice = new WPInv_Invoice( $post ); |
|
179 | - $i18n['save_invoice'] = sprintf( |
|
180 | - __( 'Save %s', 'invoicing' ), |
|
181 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
182 | - ); |
|
178 | + $invoice = new WPInv_Invoice( $post ); |
|
179 | + $i18n['save_invoice'] = sprintf( |
|
180 | + __( 'Save %s', 'invoicing' ), |
|
181 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
182 | + ); |
|
183 | 183 | |
184 | - $i18n['invoice_description'] = sprintf( |
|
185 | - __( '%s Description', 'invoicing' ), |
|
186 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
187 | - ); |
|
184 | + $i18n['invoice_description'] = sprintf( |
|
185 | + __( '%s Description', 'invoicing' ), |
|
186 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
187 | + ); |
|
188 | 188 | |
189 | - } |
|
190 | - return $i18n; |
|
191 | - } |
|
189 | + } |
|
190 | + return $i18n; |
|
191 | + } |
|
192 | 192 | |
193 | - /** |
|
194 | - * Change the admin footer text on GetPaid admin pages. |
|
195 | - * |
|
196 | - * @since 2.0.0 |
|
197 | - * @param string $footer_text |
|
198 | - * @return string |
|
199 | - */ |
|
200 | - public function admin_footer_text( $footer_text ) { |
|
201 | - global $current_screen; |
|
193 | + /** |
|
194 | + * Change the admin footer text on GetPaid admin pages. |
|
195 | + * |
|
196 | + * @since 2.0.0 |
|
197 | + * @param string $footer_text |
|
198 | + * @return string |
|
199 | + */ |
|
200 | + public function admin_footer_text( $footer_text ) { |
|
201 | + global $current_screen; |
|
202 | 202 | |
203 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
203 | + $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
204 | 204 | |
205 | 205 | if ( ! empty( $current_screen->post_type ) ) { |
206 | - $page = $current_screen->post_type; |
|
206 | + $page = $current_screen->post_type; |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | // General styles. |
210 | 210 | if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) { |
211 | 211 | |
212 | - // Change the footer text |
|
213 | - if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
214 | - |
|
215 | - $rating_url = esc_url( |
|
216 | - wp_nonce_url( |
|
217 | - admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
218 | - 'getpaid-nonce', |
|
219 | - 'getpaid-nonce' |
|
220 | - ) |
|
221 | - ); |
|
222 | - |
|
223 | - $footer_text = sprintf( |
|
224 | - /* translators: %s: five stars */ |
|
225 | - __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
226 | - "<a href='$rating_url'>★★★★★</a>" |
|
227 | - ); |
|
228 | - |
|
229 | - } else { |
|
230 | - |
|
231 | - $footer_text = sprintf( |
|
232 | - /* translators: %s: GetPaid */ |
|
233 | - __( 'Thank you for using %s!', 'invoicing' ), |
|
234 | - "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
|
235 | - ); |
|
236 | - |
|
237 | - } |
|
238 | - |
|
239 | - } |
|
240 | - |
|
241 | - return $footer_text; |
|
242 | - } |
|
243 | - |
|
244 | - /** |
|
245 | - * Redirects to wp.org to rate the plugin. |
|
246 | - * |
|
247 | - * @since 2.0.0 |
|
248 | - */ |
|
249 | - public function redirect_to_wordpress_rating_page() { |
|
250 | - update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
251 | - wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
252 | - exit; |
|
253 | - } |
|
212 | + // Change the footer text |
|
213 | + if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
214 | + |
|
215 | + $rating_url = esc_url( |
|
216 | + wp_nonce_url( |
|
217 | + admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
218 | + 'getpaid-nonce', |
|
219 | + 'getpaid-nonce' |
|
220 | + ) |
|
221 | + ); |
|
222 | + |
|
223 | + $footer_text = sprintf( |
|
224 | + /* translators: %s: five stars */ |
|
225 | + __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
226 | + "<a href='$rating_url'>★★★★★</a>" |
|
227 | + ); |
|
228 | + |
|
229 | + } else { |
|
230 | + |
|
231 | + $footer_text = sprintf( |
|
232 | + /* translators: %s: GetPaid */ |
|
233 | + __( 'Thank you for using %s!', 'invoicing' ), |
|
234 | + "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
|
235 | + ); |
|
236 | + |
|
237 | + } |
|
238 | + |
|
239 | + } |
|
240 | + |
|
241 | + return $footer_text; |
|
242 | + } |
|
254 | 243 | |
255 | 244 | /** |
256 | - * Loads payment form js. |
|
257 | - * |
|
258 | - */ |
|
259 | - protected function load_payment_form_scripts() { |
|
245 | + * Redirects to wp.org to rate the plugin. |
|
246 | + * |
|
247 | + * @since 2.0.0 |
|
248 | + */ |
|
249 | + public function redirect_to_wordpress_rating_page() { |
|
250 | + update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
251 | + wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
252 | + exit; |
|
253 | + } |
|
254 | + |
|
255 | + /** |
|
256 | + * Loads payment form js. |
|
257 | + * |
|
258 | + */ |
|
259 | + protected function load_payment_form_scripts() { |
|
260 | 260 | global $post; |
261 | 261 | |
262 | 262 | wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.js', array(), WPINV_VERSION ); |
263 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
264 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
263 | + wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
264 | + wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
265 | 265 | |
266 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
267 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable' ), $version ); |
|
266 | + $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
267 | + wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable' ), $version ); |
|
268 | 268 | |
269 | - wp_localize_script( |
|
269 | + wp_localize_script( |
|
270 | 270 | 'wpinv-admin-payment-form-script', |
271 | 271 | 'wpinvPaymentFormAdmin', |
272 | 272 | array( |
273 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
274 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
275 | - 'currency' => wpinv_currency_symbol(), |
|
276 | - 'position' => wpinv_currency_position(), |
|
277 | - 'decimals' => (int) wpinv_decimals(), |
|
278 | - 'thousands_sep' => wpinv_thousands_separator(), |
|
279 | - 'decimals_sep' => wpinv_decimal_separator(), |
|
280 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
281 | - 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
273 | + 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
274 | + 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
275 | + 'currency' => wpinv_currency_symbol(), |
|
276 | + 'position' => wpinv_currency_position(), |
|
277 | + 'decimals' => (int) wpinv_decimals(), |
|
278 | + 'thousands_sep' => wpinv_thousands_separator(), |
|
279 | + 'decimals_sep' => wpinv_decimal_separator(), |
|
280 | + 'form_items' => gepaid_get_form_items( $post->ID ), |
|
281 | + 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
282 | 282 | ) |
283 | 283 | ); |
284 | 284 | |
@@ -287,20 +287,20 @@ discard block |
||
287 | 287 | } |
288 | 288 | |
289 | 289 | /** |
290 | - * Add our classes to admin pages. |
|
290 | + * Add our classes to admin pages. |
|
291 | 291 | * |
292 | 292 | * @param string $classes |
293 | 293 | * @return string |
294 | - * |
|
295 | - */ |
|
294 | + * |
|
295 | + */ |
|
296 | 296 | public function admin_body_class( $classes ) { |
297 | - global $pagenow, $post, $current_screen; |
|
297 | + global $pagenow, $post, $current_screen; |
|
298 | 298 | |
299 | 299 | |
300 | 300 | $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
301 | 301 | |
302 | 302 | if ( ! empty( $current_screen->post_type ) ) { |
303 | - $page = $current_screen->post_type; |
|
303 | + $page = $current_screen->post_type; |
|
304 | 304 | } |
305 | 305 | |
306 | 306 | if ( false !== stripos( $page, 'wpi' ) ) { |
@@ -309,29 +309,29 @@ discard block |
||
309 | 309 | |
310 | 310 | if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
311 | 311 | $classes .= ' wpinv-cpt wpinv'; |
312 | - } |
|
312 | + } |
|
313 | 313 | |
314 | - if ( getpaid_is_invoice_post_type( $page ) ) { |
|
314 | + if ( getpaid_is_invoice_post_type( $page ) ) { |
|
315 | 315 | $classes .= ' getpaid-is-invoice-cpt'; |
316 | 316 | } |
317 | 317 | |
318 | - return $classes; |
|
318 | + return $classes; |
|
319 | 319 | } |
320 | 320 | |
321 | 321 | /** |
322 | - * Maybe show the AyeCode Connect Notice. |
|
323 | - */ |
|
324 | - public function init_ayecode_connect_helper(){ |
|
322 | + * Maybe show the AyeCode Connect Notice. |
|
323 | + */ |
|
324 | + public function init_ayecode_connect_helper(){ |
|
325 | 325 | |
326 | 326 | new AyeCode_Connect_Helper( |
327 | 327 | array( |
328 | - 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
329 | - 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
330 | - 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ), |
|
331 | - 'connect_button' => __("Connect Site","invoicing"), |
|
332 | - 'connecting_button' => __("Connecting...","invoicing"), |
|
333 | - 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
334 | - 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
328 | + 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
329 | + 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
330 | + 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ), |
|
331 | + 'connect_button' => __("Connect Site","invoicing"), |
|
332 | + 'connecting_button' => __("Connecting...","invoicing"), |
|
333 | + 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
334 | + 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
335 | 335 | ), |
336 | 336 | array( 'wpi-addons' ) |
337 | 337 | ); |
@@ -343,21 +343,21 @@ discard block |
||
343 | 343 | */ |
344 | 344 | public function activation_redirect() { |
345 | 345 | |
346 | - // Bail if no activation redirect. |
|
347 | - if ( ! get_transient( '_wpinv_activation_redirect' ) || wp_doing_ajax() ) { |
|
348 | - return; |
|
349 | - } |
|
346 | + // Bail if no activation redirect. |
|
347 | + if ( ! get_transient( '_wpinv_activation_redirect' ) || wp_doing_ajax() ) { |
|
348 | + return; |
|
349 | + } |
|
350 | 350 | |
351 | - // Delete the redirect transient. |
|
352 | - delete_transient( '_wpinv_activation_redirect' ); |
|
351 | + // Delete the redirect transient. |
|
352 | + delete_transient( '_wpinv_activation_redirect' ); |
|
353 | 353 | |
354 | - // Bail if activating from network, or bulk |
|
355 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
356 | - return; |
|
357 | - } |
|
354 | + // Bail if activating from network, or bulk |
|
355 | + if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
356 | + return; |
|
357 | + } |
|
358 | 358 | |
359 | - wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) ); |
|
360 | - exit; |
|
359 | + wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) ); |
|
360 | + exit; |
|
361 | 361 | } |
362 | 362 | |
363 | 363 | /** |
@@ -372,162 +372,162 @@ discard block |
||
372 | 372 | |
373 | 373 | } |
374 | 374 | |
375 | - /** |
|
375 | + /** |
|
376 | 376 | * Sends a payment reminder to a customer. |
377 | - * |
|
378 | - * @param array $args |
|
377 | + * |
|
378 | + * @param array $args |
|
379 | 379 | */ |
380 | 380 | public function send_customer_invoice( $args ) { |
381 | - $sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
381 | + $sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
382 | 382 | |
383 | - if ( $sent ) { |
|
384 | - $this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) ); |
|
385 | - } else { |
|
386 | - $this->show_error( __( 'Could not sent the invoice to the customer', 'invoicing' ) ); |
|
387 | - } |
|
383 | + if ( $sent ) { |
|
384 | + $this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) ); |
|
385 | + } else { |
|
386 | + $this->show_error( __( 'Could not sent the invoice to the customer', 'invoicing' ) ); |
|
387 | + } |
|
388 | 388 | |
389 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
390 | - exit; |
|
391 | - } |
|
389 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
390 | + exit; |
|
391 | + } |
|
392 | 392 | |
393 | - /** |
|
393 | + /** |
|
394 | 394 | * Sends a payment reminder to a customer. |
395 | - * |
|
396 | - * @param array $args |
|
395 | + * |
|
396 | + * @param array $args |
|
397 | 397 | */ |
398 | 398 | public function send_customer_payment_reminder( $args ) { |
399 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
399 | + $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
400 | 400 | |
401 | - if ( $sent ) { |
|
402 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
403 | - } else { |
|
404 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
405 | - } |
|
401 | + if ( $sent ) { |
|
402 | + $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
403 | + } else { |
|
404 | + $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
405 | + } |
|
406 | 406 | |
407 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
408 | - exit; |
|
409 | - } |
|
407 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
408 | + exit; |
|
409 | + } |
|
410 | 410 | |
411 | - /** |
|
411 | + /** |
|
412 | 412 | * Resets tax rates. |
413 | - * |
|
413 | + * |
|
414 | 414 | */ |
415 | 415 | public function admin_reset_tax_rates() { |
416 | 416 | |
417 | - update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
418 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
419 | - exit; |
|
417 | + update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
418 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
419 | + exit; |
|
420 | 420 | |
421 | - } |
|
421 | + } |
|
422 | 422 | |
423 | 423 | /** |
424 | - * Returns an array of admin notices. |
|
425 | - * |
|
426 | - * @since 1.0.19 |
|
424 | + * Returns an array of admin notices. |
|
425 | + * |
|
426 | + * @since 1.0.19 |
|
427 | 427 | * @return array |
428 | - */ |
|
429 | - public function get_notices() { |
|
430 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
428 | + */ |
|
429 | + public function get_notices() { |
|
430 | + $notices = get_option( 'wpinv_admin_notices' ); |
|
431 | 431 | return is_array( $notices ) ? $notices : array(); |
432 | - } |
|
433 | - |
|
434 | - /** |
|
435 | - * Clears all admin notices |
|
436 | - * |
|
437 | - * @access public |
|
438 | - * @since 1.0.19 |
|
439 | - */ |
|
440 | - public function clear_notices() { |
|
441 | - delete_option( 'wpinv_admin_notices' ); |
|
442 | - } |
|
443 | - |
|
444 | - /** |
|
445 | - * Saves a new admin notice |
|
446 | - * |
|
447 | - * @access public |
|
448 | - * @since 1.0.19 |
|
449 | - */ |
|
450 | - public function save_notice( $type, $message ) { |
|
451 | - $notices = $this->get_notices(); |
|
452 | - |
|
453 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
454 | - $notices[ $type ] = array(); |
|
455 | - } |
|
456 | - |
|
457 | - $notices[ $type ][] = $message; |
|
458 | - |
|
459 | - update_option( 'wpinv_admin_notices', $notices ); |
|
460 | - } |
|
461 | - |
|
462 | - /** |
|
463 | - * Displays a success notice |
|
464 | - * |
|
465 | - * @param string $msg The message to qeue. |
|
466 | - * @access public |
|
467 | - * @since 1.0.19 |
|
468 | - */ |
|
469 | - public function show_success( $msg ) { |
|
470 | - $this->save_notice( 'success', $msg ); |
|
471 | - } |
|
472 | - |
|
473 | - /** |
|
474 | - * Displays a error notice |
|
475 | - * |
|
476 | - * @access public |
|
477 | - * @param string $msg The message to qeue. |
|
478 | - * @since 1.0.19 |
|
479 | - */ |
|
480 | - public function show_error( $msg ) { |
|
481 | - $this->save_notice( 'error', $msg ); |
|
482 | - } |
|
483 | - |
|
484 | - /** |
|
485 | - * Displays a warning notice |
|
486 | - * |
|
487 | - * @access public |
|
488 | - * @param string $msg The message to qeue. |
|
489 | - * @since 1.0.19 |
|
490 | - */ |
|
491 | - public function show_warning( $msg ) { |
|
492 | - $this->save_notice( 'warning', $msg ); |
|
493 | - } |
|
494 | - |
|
495 | - /** |
|
496 | - * Displays a info notice |
|
497 | - * |
|
498 | - * @access public |
|
499 | - * @param string $msg The message to qeue. |
|
500 | - * @since 1.0.19 |
|
501 | - */ |
|
502 | - public function show_info( $msg ) { |
|
503 | - $this->save_notice( 'info', $msg ); |
|
504 | - } |
|
505 | - |
|
506 | - /** |
|
507 | - * Show notices |
|
508 | - * |
|
509 | - * @access public |
|
510 | - * @since 1.0.19 |
|
511 | - */ |
|
512 | - public function show_notices() { |
|
432 | + } |
|
433 | + |
|
434 | + /** |
|
435 | + * Clears all admin notices |
|
436 | + * |
|
437 | + * @access public |
|
438 | + * @since 1.0.19 |
|
439 | + */ |
|
440 | + public function clear_notices() { |
|
441 | + delete_option( 'wpinv_admin_notices' ); |
|
442 | + } |
|
443 | + |
|
444 | + /** |
|
445 | + * Saves a new admin notice |
|
446 | + * |
|
447 | + * @access public |
|
448 | + * @since 1.0.19 |
|
449 | + */ |
|
450 | + public function save_notice( $type, $message ) { |
|
451 | + $notices = $this->get_notices(); |
|
452 | + |
|
453 | + if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
454 | + $notices[ $type ] = array(); |
|
455 | + } |
|
456 | + |
|
457 | + $notices[ $type ][] = $message; |
|
458 | + |
|
459 | + update_option( 'wpinv_admin_notices', $notices ); |
|
460 | + } |
|
461 | + |
|
462 | + /** |
|
463 | + * Displays a success notice |
|
464 | + * |
|
465 | + * @param string $msg The message to qeue. |
|
466 | + * @access public |
|
467 | + * @since 1.0.19 |
|
468 | + */ |
|
469 | + public function show_success( $msg ) { |
|
470 | + $this->save_notice( 'success', $msg ); |
|
471 | + } |
|
472 | + |
|
473 | + /** |
|
474 | + * Displays a error notice |
|
475 | + * |
|
476 | + * @access public |
|
477 | + * @param string $msg The message to qeue. |
|
478 | + * @since 1.0.19 |
|
479 | + */ |
|
480 | + public function show_error( $msg ) { |
|
481 | + $this->save_notice( 'error', $msg ); |
|
482 | + } |
|
483 | + |
|
484 | + /** |
|
485 | + * Displays a warning notice |
|
486 | + * |
|
487 | + * @access public |
|
488 | + * @param string $msg The message to qeue. |
|
489 | + * @since 1.0.19 |
|
490 | + */ |
|
491 | + public function show_warning( $msg ) { |
|
492 | + $this->save_notice( 'warning', $msg ); |
|
493 | + } |
|
494 | + |
|
495 | + /** |
|
496 | + * Displays a info notice |
|
497 | + * |
|
498 | + * @access public |
|
499 | + * @param string $msg The message to qeue. |
|
500 | + * @since 1.0.19 |
|
501 | + */ |
|
502 | + public function show_info( $msg ) { |
|
503 | + $this->save_notice( 'info', $msg ); |
|
504 | + } |
|
505 | + |
|
506 | + /** |
|
507 | + * Show notices |
|
508 | + * |
|
509 | + * @access public |
|
510 | + * @since 1.0.19 |
|
511 | + */ |
|
512 | + public function show_notices() { |
|
513 | 513 | |
514 | 514 | $notices = $this->get_notices(); |
515 | 515 | $this->clear_notices(); |
516 | 516 | |
517 | - foreach ( $notices as $type => $messages ) { |
|
517 | + foreach ( $notices as $type => $messages ) { |
|
518 | 518 | |
519 | - if ( ! is_array( $messages ) ) { |
|
520 | - continue; |
|
521 | - } |
|
519 | + if ( ! is_array( $messages ) ) { |
|
520 | + continue; |
|
521 | + } |
|
522 | 522 | |
523 | 523 | $type = sanitize_key( $type ); |
524 | - foreach ( $messages as $message ) { |
|
524 | + foreach ( $messages as $message ) { |
|
525 | 525 | $message = wp_kses_post( $message ); |
526 | - echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
|
526 | + echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
|
527 | 527 | } |
528 | 528 | |
529 | 529 | } |
530 | 530 | |
531 | - } |
|
531 | + } |
|
532 | 532 | |
533 | 533 | } |
@@ -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 | * The main admin class. |
@@ -37,13 +37,13 @@ discard block |
||
37 | 37 | /** |
38 | 38 | * Class constructor. |
39 | 39 | */ |
40 | - public function __construct(){ |
|
40 | + public function __construct() { |
|
41 | 41 | |
42 | - $this->admin_path = plugin_dir_path( __FILE__ ); |
|
43 | - $this->admin_url = plugins_url( '/', __FILE__ ); |
|
42 | + $this->admin_path = plugin_dir_path(__FILE__); |
|
43 | + $this->admin_url = plugins_url('/', __FILE__); |
|
44 | 44 | $this->reports = new GetPaid_Reports(); |
45 | 45 | |
46 | - if ( is_admin() ) { |
|
46 | + if (is_admin()) { |
|
47 | 47 | $this->init_admin_hooks(); |
48 | 48 | } |
49 | 49 | |
@@ -54,18 +54,18 @@ discard block |
||
54 | 54 | * |
55 | 55 | */ |
56 | 56 | private function init_admin_hooks() { |
57 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ) ); |
|
58 | - add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
|
59 | - add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
|
60 | - add_action( 'admin_init', array( $this, 'activation_redirect') ); |
|
61 | - add_action( 'admin_init', array( $this, 'maybe_do_admin_action') ); |
|
62 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
63 | - add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
64 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
65 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
66 | - add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) ); |
|
67 | - add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
68 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
57 | + add_action('admin_enqueue_scripts', array($this, 'enqeue_scripts')); |
|
58 | + add_filter('admin_body_class', array($this, 'admin_body_class')); |
|
59 | + add_action('admin_init', array($this, 'init_ayecode_connect_helper')); |
|
60 | + add_action('admin_init', array($this, 'activation_redirect')); |
|
61 | + add_action('admin_init', array($this, 'maybe_do_admin_action')); |
|
62 | + add_action('admin_notices', array($this, 'show_notices')); |
|
63 | + add_action('getpaid_authenticated_admin_action_rate_plugin', array($this, 'redirect_to_wordpress_rating_page')); |
|
64 | + add_action('getpaid_authenticated_admin_action_send_invoice', array($this, 'send_customer_invoice')); |
|
65 | + add_action('getpaid_authenticated_admin_action_send_invoice_reminder', array($this, 'send_customer_payment_reminder')); |
|
66 | + add_action('getpaid_authenticated_admin_action_reset_tax_rates', array($this, 'admin_reset_tax_rates')); |
|
67 | + add_filter('admin_footer_text', array($this, 'admin_footer_text')); |
|
68 | + do_action('getpaid_init_admin_hooks', $this); |
|
69 | 69 | |
70 | 70 | } |
71 | 71 | |
@@ -76,39 +76,39 @@ discard block |
||
76 | 76 | public function enqeue_scripts() { |
77 | 77 | global $current_screen, $pagenow; |
78 | 78 | |
79 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
79 | + $page = isset($_GET['page']) ? $_GET['page'] : ''; |
|
80 | 80 | $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
81 | 81 | |
82 | - if ( ! empty( $current_screen->post_type ) ) { |
|
82 | + if (!empty($current_screen->post_type)) { |
|
83 | 83 | $page = $current_screen->post_type; |
84 | 84 | } |
85 | 85 | |
86 | 86 | // General styles. |
87 | - if ( false !== stripos( $page, 'wpi' ) ) { |
|
87 | + if (false !== stripos($page, 'wpi')) { |
|
88 | 88 | |
89 | 89 | // Styles. |
90 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/css/admin.css' ); |
|
91 | - wp_enqueue_style( 'wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array( 'wp-color-picker' ), $version ); |
|
92 | - wp_enqueue_style( 'select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all' ); |
|
93 | - wp_enqueue_style( 'jquery-ui-css', WPINV_PLUGIN_URL . 'assets/css/jquery-ui.min.css', array(), '1.8.16' ); |
|
90 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/css/admin.css'); |
|
91 | + wp_enqueue_style('wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array('wp-color-picker'), $version); |
|
92 | + wp_enqueue_style('select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all'); |
|
93 | + wp_enqueue_style('jquery-ui-css', WPINV_PLUGIN_URL . 'assets/css/jquery-ui.min.css', array(), '1.8.16'); |
|
94 | 94 | |
95 | 95 | // Scripts. |
96 | - wp_register_script( 'jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array( 'jquery' ), '4.0.13', true ); |
|
97 | - wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array( 'jquery' ), WPINV_VERSION ); |
|
96 | + wp_register_script('jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array('jquery'), '4.0.13', true); |
|
97 | + wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array('jquery'), WPINV_VERSION); |
|
98 | 98 | |
99 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin.js' ); |
|
100 | - wp_enqueue_script( 'wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array( 'jquery', 'jquery-blockui','jquery-ui-tooltip', 'wp-color-picker', 'jquery-ui-datepicker' ), $version ); |
|
101 | - wp_localize_script( 'wpinv-admin-script', 'WPInv_Admin', apply_filters( 'wpinv_admin_js_localize', $this->get_admin_i18() ) ); |
|
99 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/admin.js'); |
|
100 | + wp_enqueue_script('wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array('jquery', 'jquery-blockui', 'jquery-ui-tooltip', 'wp-color-picker', 'jquery-ui-datepicker'), $version); |
|
101 | + wp_localize_script('wpinv-admin-script', 'WPInv_Admin', apply_filters('wpinv_admin_js_localize', $this->get_admin_i18())); |
|
102 | 102 | |
103 | 103 | } |
104 | 104 | |
105 | 105 | // Payment form scripts. |
106 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
106 | + if ('wpi_payment_form' == $page && $editing) { |
|
107 | 107 | $this->load_payment_form_scripts(); |
108 | 108 | } |
109 | 109 | |
110 | - if ( $page == 'wpinv-subscriptions' ) { |
|
111 | - wp_enqueue_script( 'postbox' ); |
|
110 | + if ($page == 'wpinv-subscriptions') { |
|
111 | + wp_enqueue_script('postbox'); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | } |
@@ -121,32 +121,32 @@ discard block |
||
121 | 121 | global $post; |
122 | 122 | |
123 | 123 | $date_range = array( |
124 | - 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days' |
|
124 | + 'period' => isset($_GET['date_range']) ? sanitize_text_field($_GET['date_range']) : '7_days' |
|
125 | 125 | ); |
126 | 126 | |
127 | - if ( $date_range['period'] == 'custom' ) { |
|
127 | + if ($date_range['period'] == 'custom') { |
|
128 | 128 | |
129 | - if ( isset( $_GET['from'] ) ) { |
|
130 | - $date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
129 | + if (isset($_GET['from'])) { |
|
130 | + $date_range['after'] = date('Y-m-d', strtotime(sanitize_text_field($_GET['from']), current_time('timestamp')) - DAY_IN_SECONDS); |
|
131 | 131 | } |
132 | 132 | |
133 | - if ( isset( $_GET['to'] ) ) { |
|
134 | - $date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
133 | + if (isset($_GET['to'])) { |
|
134 | + $date_range['before'] = date('Y-m-d', strtotime(sanitize_text_field($_GET['to']), current_time('timestamp')) + DAY_IN_SECONDS); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | } |
138 | 138 | |
139 | 139 | $i18n = array( |
140 | - 'ajax_url' => admin_url( 'admin-ajax.php' ), |
|
141 | - 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
|
142 | - 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
143 | - 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
144 | - 'rest_root' => esc_url_raw( rest_url() ), |
|
140 | + 'ajax_url' => admin_url('admin-ajax.php'), |
|
141 | + 'post_ID' => isset($post->ID) ? $post->ID : '', |
|
142 | + 'wpinv_nonce' => wp_create_nonce('wpinv-nonce'), |
|
143 | + 'rest_nonce' => wp_create_nonce('wp_rest'), |
|
144 | + 'rest_root' => esc_url_raw(rest_url()), |
|
145 | 145 | 'date_range' => $date_range, |
146 | - 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
|
147 | - 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
|
148 | - 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
|
149 | - 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
|
146 | + 'add_invoice_note_nonce' => wp_create_nonce('add-invoice-note'), |
|
147 | + 'delete_invoice_note_nonce' => wp_create_nonce('delete-invoice-note'), |
|
148 | + 'invoice_item_nonce' => wp_create_nonce('invoice-item'), |
|
149 | + 'billing_details_nonce' => wp_create_nonce('get-billing-details'), |
|
150 | 150 | 'tax' => wpinv_tax_amount(), |
151 | 151 | 'discount' => 0, |
152 | 152 | 'currency_symbol' => wpinv_currency_symbol(), |
@@ -155,35 +155,35 @@ discard block |
||
155 | 155 | 'thousand_sep' => wpinv_thousands_separator(), |
156 | 156 | 'decimal_sep' => wpinv_decimal_separator(), |
157 | 157 | 'decimals' => wpinv_decimals(), |
158 | - 'save_invoice' => __( 'Save Invoice', 'invoicing' ), |
|
159 | - 'status_publish' => wpinv_status_nicename( 'publish' ), |
|
160 | - 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
|
161 | - 'delete_tax_rate' => __( 'Are you sure you wish to delete this tax rate?', 'invoicing' ), |
|
162 | - 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
|
163 | - 'FillBillingDetails' => __( 'Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing' ), |
|
164 | - 'confirmCalcTotals' => __( 'Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing' ), |
|
165 | - 'AreYouSure' => __( 'Are you sure?', 'invoicing' ), |
|
166 | - 'errDeleteItem' => __( 'This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing' ), |
|
167 | - 'delete_subscription' => __( 'Are you sure you want to delete this subscription?', 'invoicing' ), |
|
168 | - 'action_edit' => __( 'Edit', 'invoicing' ), |
|
169 | - 'action_cancel' => __( 'Cancel', 'invoicing' ), |
|
170 | - 'item_description' => __( 'Item Description', 'invoicing' ), |
|
171 | - 'invoice_description' => __( 'Invoice Description', 'invoicing' ), |
|
172 | - 'discount_description' => __( 'Discount Description', 'invoicing' ), |
|
173 | - 'searching' => __( 'Searching', 'invoicing' ), |
|
158 | + 'save_invoice' => __('Save Invoice', 'invoicing'), |
|
159 | + 'status_publish' => wpinv_status_nicename('publish'), |
|
160 | + 'status_pending' => wpinv_status_nicename('wpi-pending'), |
|
161 | + 'delete_tax_rate' => __('Are you sure you wish to delete this tax rate?', 'invoicing'), |
|
162 | + 'status_pending' => wpinv_status_nicename('wpi-pending'), |
|
163 | + 'FillBillingDetails' => __('Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing'), |
|
164 | + 'confirmCalcTotals' => __('Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing'), |
|
165 | + 'AreYouSure' => __('Are you sure?', 'invoicing'), |
|
166 | + 'errDeleteItem' => __('This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing'), |
|
167 | + 'delete_subscription' => __('Are you sure you want to delete this subscription?', 'invoicing'), |
|
168 | + 'action_edit' => __('Edit', 'invoicing'), |
|
169 | + 'action_cancel' => __('Cancel', 'invoicing'), |
|
170 | + 'item_description' => __('Item Description', 'invoicing'), |
|
171 | + 'invoice_description' => __('Invoice Description', 'invoicing'), |
|
172 | + 'discount_description' => __('Discount Description', 'invoicing'), |
|
173 | + 'searching' => __('Searching', 'invoicing'), |
|
174 | 174 | ); |
175 | 175 | |
176 | - if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
176 | + if (!empty($post) && getpaid_is_invoice_post_type($post->post_type)) { |
|
177 | 177 | |
178 | - $invoice = new WPInv_Invoice( $post ); |
|
178 | + $invoice = new WPInv_Invoice($post); |
|
179 | 179 | $i18n['save_invoice'] = sprintf( |
180 | - __( 'Save %s', 'invoicing' ), |
|
181 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
180 | + __('Save %s', 'invoicing'), |
|
181 | + ucfirst($invoice->get_invoice_quote_type()) |
|
182 | 182 | ); |
183 | 183 | |
184 | 184 | $i18n['invoice_description'] = sprintf( |
185 | - __( '%s Description', 'invoicing' ), |
|
186 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
185 | + __('%s Description', 'invoicing'), |
|
186 | + ucfirst($invoice->get_invoice_quote_type()) |
|
187 | 187 | ); |
188 | 188 | |
189 | 189 | } |
@@ -197,24 +197,24 @@ discard block |
||
197 | 197 | * @param string $footer_text |
198 | 198 | * @return string |
199 | 199 | */ |
200 | - public function admin_footer_text( $footer_text ) { |
|
200 | + public function admin_footer_text($footer_text) { |
|
201 | 201 | global $current_screen; |
202 | 202 | |
203 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
203 | + $page = isset($_GET['page']) ? $_GET['page'] : ''; |
|
204 | 204 | |
205 | - if ( ! empty( $current_screen->post_type ) ) { |
|
205 | + if (!empty($current_screen->post_type)) { |
|
206 | 206 | $page = $current_screen->post_type; |
207 | 207 | } |
208 | 208 | |
209 | 209 | // General styles. |
210 | - if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) { |
|
210 | + if (apply_filters('getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing()) && false !== stripos($page, 'wpi')) { |
|
211 | 211 | |
212 | 212 | // Change the footer text |
213 | - if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
213 | + if (!get_user_meta(get_current_user_id(), 'getpaid_admin_footer_text_rated', true)) { |
|
214 | 214 | |
215 | - $rating_url = esc_url( |
|
215 | + $rating_url = esc_url( |
|
216 | 216 | wp_nonce_url( |
217 | - admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
217 | + admin_url('admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin'), |
|
218 | 218 | 'getpaid-nonce', |
219 | 219 | 'getpaid-nonce' |
220 | 220 | ) |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | |
223 | 223 | $footer_text = sprintf( |
224 | 224 | /* translators: %s: five stars */ |
225 | - __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
225 | + __('If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing'), |
|
226 | 226 | "<a href='$rating_url'>★★★★★</a>" |
227 | 227 | ); |
228 | 228 | |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | |
231 | 231 | $footer_text = sprintf( |
232 | 232 | /* translators: %s: GetPaid */ |
233 | - __( 'Thank you for using %s!', 'invoicing' ), |
|
233 | + __('Thank you for using %s!', 'invoicing'), |
|
234 | 234 | "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
235 | 235 | ); |
236 | 236 | |
@@ -247,8 +247,8 @@ discard block |
||
247 | 247 | * @since 2.0.0 |
248 | 248 | */ |
249 | 249 | public function redirect_to_wordpress_rating_page() { |
250 | - update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
251 | - wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
250 | + update_user_meta(get_current_user_id(), 'getpaid_admin_footer_text_rated', 1); |
|
251 | + wp_redirect('https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post'); |
|
252 | 252 | exit; |
253 | 253 | } |
254 | 254 | |
@@ -259,30 +259,30 @@ discard block |
||
259 | 259 | protected function load_payment_form_scripts() { |
260 | 260 | global $post; |
261 | 261 | |
262 | - wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.js', array(), WPINV_VERSION ); |
|
263 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
264 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
262 | + wp_enqueue_script('vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.js', array(), WPINV_VERSION); |
|
263 | + wp_enqueue_script('sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION); |
|
264 | + wp_enqueue_script('vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array('sortable', 'vue'), WPINV_VERSION); |
|
265 | 265 | |
266 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
267 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable' ), $version ); |
|
266 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js'); |
|
267 | + wp_register_script('wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array('wpinv-admin-script', 'vue_draggable'), $version); |
|
268 | 268 | |
269 | 269 | wp_localize_script( |
270 | 270 | 'wpinv-admin-payment-form-script', |
271 | 271 | 'wpinvPaymentFormAdmin', |
272 | 272 | array( |
273 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
274 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
273 | + 'elements' => wpinv_get_data('payment-form-elements'), |
|
274 | + 'form_elements' => getpaid_get_payment_form_elements($post->ID), |
|
275 | 275 | 'currency' => wpinv_currency_symbol(), |
276 | 276 | 'position' => wpinv_currency_position(), |
277 | 277 | 'decimals' => (int) wpinv_decimals(), |
278 | 278 | 'thousands_sep' => wpinv_thousands_separator(), |
279 | 279 | 'decimals_sep' => wpinv_decimal_separator(), |
280 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
280 | + 'form_items' => gepaid_get_form_items($post->ID), |
|
281 | 281 | 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
282 | 282 | ) |
283 | 283 | ); |
284 | 284 | |
285 | - wp_enqueue_script( 'wpinv-admin-payment-form-script' ); |
|
285 | + wp_enqueue_script('wpinv-admin-payment-form-script'); |
|
286 | 286 | |
287 | 287 | } |
288 | 288 | |
@@ -293,25 +293,25 @@ discard block |
||
293 | 293 | * @return string |
294 | 294 | * |
295 | 295 | */ |
296 | - public function admin_body_class( $classes ) { |
|
296 | + public function admin_body_class($classes) { |
|
297 | 297 | global $pagenow, $post, $current_screen; |
298 | 298 | |
299 | 299 | |
300 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
300 | + $page = isset($_GET['page']) ? $_GET['page'] : ''; |
|
301 | 301 | |
302 | - if ( ! empty( $current_screen->post_type ) ) { |
|
302 | + if (!empty($current_screen->post_type)) { |
|
303 | 303 | $page = $current_screen->post_type; |
304 | 304 | } |
305 | 305 | |
306 | - if ( false !== stripos( $page, 'wpi' ) ) { |
|
307 | - $classes .= ' wpi-' . sanitize_key( $page ); |
|
306 | + if (false !== stripos($page, 'wpi')) { |
|
307 | + $classes .= ' wpi-' . sanitize_key($page); |
|
308 | 308 | } |
309 | 309 | |
310 | - if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
|
310 | + if (in_array($page, wpinv_parse_list('wpi_invoice wpi_payment_form wpi_quote'))) { |
|
311 | 311 | $classes .= ' wpinv-cpt wpinv'; |
312 | 312 | } |
313 | 313 | |
314 | - if ( getpaid_is_invoice_post_type( $page ) ) { |
|
314 | + if (getpaid_is_invoice_post_type($page)) { |
|
315 | 315 | $classes .= ' getpaid-is-invoice-cpt'; |
316 | 316 | } |
317 | 317 | |
@@ -321,19 +321,19 @@ discard block |
||
321 | 321 | /** |
322 | 322 | * Maybe show the AyeCode Connect Notice. |
323 | 323 | */ |
324 | - public function init_ayecode_connect_helper(){ |
|
324 | + public function init_ayecode_connect_helper() { |
|
325 | 325 | |
326 | 326 | new AyeCode_Connect_Helper( |
327 | 327 | array( |
328 | - 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
329 | - 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
330 | - 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ), |
|
331 | - 'connect_button' => __("Connect Site","invoicing"), |
|
332 | - 'connecting_button' => __("Connecting...","invoicing"), |
|
333 | - 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
334 | - 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
328 | + 'connect_title' => __("WP Invoicing - an AyeCode product!", "invoicing"), |
|
329 | + 'connect_external' => __("Please confirm you wish to connect your site?", "invoicing"), |
|
330 | + 'connect' => sprintf(__("<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s", "invoicing"), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>"), |
|
331 | + 'connect_button' => __("Connect Site", "invoicing"), |
|
332 | + 'connecting_button' => __("Connecting...", "invoicing"), |
|
333 | + 'error_localhost' => __("This service will only work with a live domain, not a localhost.", "invoicing"), |
|
334 | + 'error' => __("Something went wrong, please refresh and try again.", "invoicing"), |
|
335 | 335 | ), |
336 | - array( 'wpi-addons' ) |
|
336 | + array('wpi-addons') |
|
337 | 337 | ); |
338 | 338 | |
339 | 339 | } |
@@ -344,19 +344,19 @@ discard block |
||
344 | 344 | public function activation_redirect() { |
345 | 345 | |
346 | 346 | // Bail if no activation redirect. |
347 | - if ( ! get_transient( '_wpinv_activation_redirect' ) || wp_doing_ajax() ) { |
|
347 | + if (!get_transient('_wpinv_activation_redirect') || wp_doing_ajax()) { |
|
348 | 348 | return; |
349 | 349 | } |
350 | 350 | |
351 | 351 | // Delete the redirect transient. |
352 | - delete_transient( '_wpinv_activation_redirect' ); |
|
352 | + delete_transient('_wpinv_activation_redirect'); |
|
353 | 353 | |
354 | 354 | // Bail if activating from network, or bulk |
355 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
355 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
356 | 356 | return; |
357 | 357 | } |
358 | 358 | |
359 | - wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) ); |
|
359 | + wp_safe_redirect(admin_url('admin.php?page=wpinv-settings&tab=general')); |
|
360 | 360 | exit; |
361 | 361 | } |
362 | 362 | |
@@ -365,9 +365,9 @@ discard block |
||
365 | 365 | */ |
366 | 366 | public function maybe_do_admin_action() { |
367 | 367 | |
368 | - if ( wpinv_current_user_can_manage_invoicing() && isset( $_REQUEST['getpaid-admin-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
369 | - $key = sanitize_key( $_REQUEST['getpaid-admin-action'] ); |
|
370 | - do_action( "getpaid_authenticated_admin_action_$key", $_REQUEST ); |
|
368 | + if (wpinv_current_user_can_manage_invoicing() && isset($_REQUEST['getpaid-admin-action']) && isset($_REQUEST['getpaid-nonce']) && wp_verify_nonce($_REQUEST['getpaid-nonce'], 'getpaid-nonce')) { |
|
369 | + $key = sanitize_key($_REQUEST['getpaid-admin-action']); |
|
370 | + do_action("getpaid_authenticated_admin_action_$key", $_REQUEST); |
|
371 | 371 | } |
372 | 372 | |
373 | 373 | } |
@@ -377,16 +377,16 @@ discard block |
||
377 | 377 | * |
378 | 378 | * @param array $args |
379 | 379 | */ |
380 | - public function send_customer_invoice( $args ) { |
|
381 | - $sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
380 | + public function send_customer_invoice($args) { |
|
381 | + $sent = getpaid()->get('invoice_emails')->user_invoice(new WPInv_Invoice($args['invoice_id'])); |
|
382 | 382 | |
383 | - if ( $sent ) { |
|
384 | - $this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) ); |
|
383 | + if ($sent) { |
|
384 | + $this->show_success(__('Invoice was successfully sent to the customer', 'invoicing')); |
|
385 | 385 | } else { |
386 | - $this->show_error( __( 'Could not sent the invoice to the customer', 'invoicing' ) ); |
|
386 | + $this->show_error(__('Could not sent the invoice to the customer', 'invoicing')); |
|
387 | 387 | } |
388 | 388 | |
389 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
389 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce', 'invoice_id'))); |
|
390 | 390 | exit; |
391 | 391 | } |
392 | 392 | |
@@ -395,16 +395,16 @@ discard block |
||
395 | 395 | * |
396 | 396 | * @param array $args |
397 | 397 | */ |
398 | - public function send_customer_payment_reminder( $args ) { |
|
399 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
398 | + public function send_customer_payment_reminder($args) { |
|
399 | + $sent = getpaid()->get('invoice_emails')->force_send_overdue_notice(new WPInv_Invoice($args['invoice_id'])); |
|
400 | 400 | |
401 | - if ( $sent ) { |
|
402 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
401 | + if ($sent) { |
|
402 | + $this->show_success(__('Payment reminder was successfully sent to the customer', 'invoicing')); |
|
403 | 403 | } else { |
404 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
404 | + $this->show_error(__('Could not sent payment reminder to the customer', 'invoicing')); |
|
405 | 405 | } |
406 | 406 | |
407 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
407 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce', 'invoice_id'))); |
|
408 | 408 | exit; |
409 | 409 | } |
410 | 410 | |
@@ -414,8 +414,8 @@ discard block |
||
414 | 414 | */ |
415 | 415 | public function admin_reset_tax_rates() { |
416 | 416 | |
417 | - update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
418 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
417 | + update_option('wpinv_tax_rates', wpinv_get_data('tax-rates')); |
|
418 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
419 | 419 | exit; |
420 | 420 | |
421 | 421 | } |
@@ -427,8 +427,8 @@ discard block |
||
427 | 427 | * @return array |
428 | 428 | */ |
429 | 429 | public function get_notices() { |
430 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
431 | - return is_array( $notices ) ? $notices : array(); |
|
430 | + $notices = get_option('wpinv_admin_notices'); |
|
431 | + return is_array($notices) ? $notices : array(); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | /** |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | * @since 1.0.19 |
439 | 439 | */ |
440 | 440 | public function clear_notices() { |
441 | - delete_option( 'wpinv_admin_notices' ); |
|
441 | + delete_option('wpinv_admin_notices'); |
|
442 | 442 | } |
443 | 443 | |
444 | 444 | /** |
@@ -447,16 +447,16 @@ discard block |
||
447 | 447 | * @access public |
448 | 448 | * @since 1.0.19 |
449 | 449 | */ |
450 | - public function save_notice( $type, $message ) { |
|
450 | + public function save_notice($type, $message) { |
|
451 | 451 | $notices = $this->get_notices(); |
452 | 452 | |
453 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
454 | - $notices[ $type ] = array(); |
|
453 | + if (empty($notices[$type]) || !is_array($notices[$type])) { |
|
454 | + $notices[$type] = array(); |
|
455 | 455 | } |
456 | 456 | |
457 | - $notices[ $type ][] = $message; |
|
457 | + $notices[$type][] = $message; |
|
458 | 458 | |
459 | - update_option( 'wpinv_admin_notices', $notices ); |
|
459 | + update_option('wpinv_admin_notices', $notices); |
|
460 | 460 | } |
461 | 461 | |
462 | 462 | /** |
@@ -466,8 +466,8 @@ discard block |
||
466 | 466 | * @access public |
467 | 467 | * @since 1.0.19 |
468 | 468 | */ |
469 | - public function show_success( $msg ) { |
|
470 | - $this->save_notice( 'success', $msg ); |
|
469 | + public function show_success($msg) { |
|
470 | + $this->save_notice('success', $msg); |
|
471 | 471 | } |
472 | 472 | |
473 | 473 | /** |
@@ -477,8 +477,8 @@ discard block |
||
477 | 477 | * @param string $msg The message to qeue. |
478 | 478 | * @since 1.0.19 |
479 | 479 | */ |
480 | - public function show_error( $msg ) { |
|
481 | - $this->save_notice( 'error', $msg ); |
|
480 | + public function show_error($msg) { |
|
481 | + $this->save_notice('error', $msg); |
|
482 | 482 | } |
483 | 483 | |
484 | 484 | /** |
@@ -488,8 +488,8 @@ discard block |
||
488 | 488 | * @param string $msg The message to qeue. |
489 | 489 | * @since 1.0.19 |
490 | 490 | */ |
491 | - public function show_warning( $msg ) { |
|
492 | - $this->save_notice( 'warning', $msg ); |
|
491 | + public function show_warning($msg) { |
|
492 | + $this->save_notice('warning', $msg); |
|
493 | 493 | } |
494 | 494 | |
495 | 495 | /** |
@@ -499,8 +499,8 @@ discard block |
||
499 | 499 | * @param string $msg The message to qeue. |
500 | 500 | * @since 1.0.19 |
501 | 501 | */ |
502 | - public function show_info( $msg ) { |
|
503 | - $this->save_notice( 'info', $msg ); |
|
502 | + public function show_info($msg) { |
|
503 | + $this->save_notice('info', $msg); |
|
504 | 504 | } |
505 | 505 | |
506 | 506 | /** |
@@ -514,15 +514,15 @@ discard block |
||
514 | 514 | $notices = $this->get_notices(); |
515 | 515 | $this->clear_notices(); |
516 | 516 | |
517 | - foreach ( $notices as $type => $messages ) { |
|
517 | + foreach ($notices as $type => $messages) { |
|
518 | 518 | |
519 | - if ( ! is_array( $messages ) ) { |
|
519 | + if (!is_array($messages)) { |
|
520 | 520 | continue; |
521 | 521 | } |
522 | 522 | |
523 | - $type = sanitize_key( $type ); |
|
524 | - foreach ( $messages as $message ) { |
|
525 | - $message = wp_kses_post( $message ); |
|
523 | + $type = sanitize_key($type); |
|
524 | + foreach ($messages as $message) { |
|
525 | + $message = wp_kses_post($message); |
|
526 | 526 | echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
527 | 527 | } |
528 | 528 |
@@ -13,282 +13,282 @@ |
||
13 | 13 | class GetPaid_Subscription_Notification_Emails { |
14 | 14 | |
15 | 15 | /** |
16 | - * The array of subscription email actions. |
|
17 | - * |
|
18 | - * @param array |
|
19 | - */ |
|
20 | - public $subscription_actions; |
|
16 | + * The array of subscription email actions. |
|
17 | + * |
|
18 | + * @param array |
|
19 | + */ |
|
20 | + public $subscription_actions; |
|
21 | 21 | |
22 | 22 | /** |
23 | - * Class constructor |
|
23 | + * Class constructor |
|
24 | 24 | * |
25 | - */ |
|
26 | - public function __construct() { |
|
27 | - |
|
28 | - $this->subscription_actions = apply_filters( |
|
29 | - 'getpaid_notification_email_subscription_triggers', |
|
30 | - array( |
|
31 | - 'getpaid_subscription_trialling' => 'subscription_trial', |
|
32 | - 'getpaid_subscription_cancelled' => 'subscription_cancelled', |
|
33 | - 'getpaid_subscription_expired' => 'subscription_expired', |
|
34 | - 'getpaid_subscription_completed' => 'subscription_complete', |
|
35 | - 'getpaid_daily_maintenance' => 'renewal_reminder', |
|
36 | - ) |
|
37 | - ); |
|
38 | - |
|
39 | - $this->init_hooks(); |
|
25 | + */ |
|
26 | + public function __construct() { |
|
27 | + |
|
28 | + $this->subscription_actions = apply_filters( |
|
29 | + 'getpaid_notification_email_subscription_triggers', |
|
30 | + array( |
|
31 | + 'getpaid_subscription_trialling' => 'subscription_trial', |
|
32 | + 'getpaid_subscription_cancelled' => 'subscription_cancelled', |
|
33 | + 'getpaid_subscription_expired' => 'subscription_expired', |
|
34 | + 'getpaid_subscription_completed' => 'subscription_complete', |
|
35 | + 'getpaid_daily_maintenance' => 'renewal_reminder', |
|
36 | + ) |
|
37 | + ); |
|
38 | + |
|
39 | + $this->init_hooks(); |
|
40 | 40 | |
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
44 | - * Registers email hooks. |
|
45 | - */ |
|
46 | - public function init_hooks() { |
|
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 ) { |
|
50 | - |
|
51 | - $email = new GetPaid_Notification_Email( $email_type ); |
|
52 | - |
|
53 | - if ( ! $email->is_active() ) { |
|
54 | - continue; |
|
55 | - } |
|
56 | - |
|
57 | - if ( method_exists( $this, $email_type ) ) { |
|
58 | - add_action( $hook, array( $this, $email_type ), 100, 2 ); |
|
59 | - continue; |
|
60 | - } |
|
61 | - |
|
62 | - do_action( 'getpaid_subscription_notification_email_register_hook', $email_type, $hook ); |
|
63 | - |
|
64 | - } |
|
65 | - |
|
66 | - } |
|
67 | - |
|
68 | - /** |
|
69 | - * Filters subscription merge tags. |
|
70 | - * |
|
71 | - * @param array $merge_tags |
|
72 | - * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
73 | - */ |
|
74 | - public function subscription_merge_tags( $merge_tags, $object ) { |
|
75 | - |
|
76 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
77 | - $merge_tags = array_merge( |
|
78 | - $merge_tags, |
|
79 | - $this->get_subscription_merge_tags( $object ) |
|
80 | - ); |
|
81 | - } |
|
82 | - |
|
83 | - return $merge_tags; |
|
84 | - |
|
85 | - } |
|
86 | - |
|
87 | - /** |
|
88 | - * Generates subscription merge tags. |
|
89 | - * |
|
90 | - * @param WPInv_Subscription $subscription |
|
91 | - * @return array |
|
92 | - */ |
|
93 | - public function get_subscription_merge_tags( $subscription ) { |
|
94 | - |
|
95 | - // Abort if it does not exist. |
|
96 | - if ( ! $subscription->get_id() ) { |
|
97 | - return array(); |
|
98 | - } |
|
99 | - |
|
100 | - $invoice = $subscription->get_parent_invoice(); |
|
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(), '' ), |
|
110 | - '{subscription_bill_times}' => $subscription->get_bill_times(), |
|
111 | - '{subscription_url}' => esc_url( $subscription->get_view_url() ), |
|
112 | - ); |
|
113 | - |
|
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * Checks if we should send a notification for a subscription. |
|
118 | - * |
|
119 | - * @param WPInv_Invoice $invoice |
|
120 | - * @return bool |
|
121 | - */ |
|
122 | - public function should_send_notification( $invoice ) { |
|
123 | - return 0 != $invoice->get_id(); |
|
124 | - } |
|
125 | - |
|
126 | - /** |
|
127 | - * Returns notification recipients. |
|
128 | - * |
|
129 | - * @param WPInv_Invoice $invoice |
|
130 | - * @return array |
|
131 | - */ |
|
132 | - public function get_recipients( $invoice ) { |
|
133 | - $recipients = array( $invoice->get_email() ); |
|
134 | - |
|
135 | - $cc = $invoice->get_email_cc(); |
|
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 ) ) ); |
|
140 | - } |
|
141 | - |
|
142 | - return $recipients; |
|
143 | - } |
|
144 | - |
|
145 | - /** |
|
146 | - * Helper function to send an email. |
|
147 | - * |
|
148 | - * @param WPInv_Subscription $subscription |
|
149 | - * @param GetPaid_Notification_Email $email |
|
150 | - * @param string $type |
|
151 | - * @param array $extra_args Extra template args. |
|
152 | - */ |
|
153 | - public function send_email( $subscription, $email, $type, $extra_args = array() ) { |
|
154 | - |
|
155 | - // Abort in case the parent invoice does not exist. |
|
156 | - $invoice = $subscription->get_parent_invoice(); |
|
157 | - if ( ! $this->should_send_notification( $invoice ) ) { |
|
158 | - return; |
|
159 | - } |
|
160 | - |
|
161 | - do_action( 'getpaid_before_send_subscription_notification', $type, $subscription, $email ); |
|
162 | - |
|
163 | - $recipients = $this->get_recipients( $invoice ); |
|
164 | - $mailer = new GetPaid_Notification_Email_Sender(); |
|
165 | - $merge_tags = $email->get_merge_tags(); |
|
166 | - $content = $email->get_content( $merge_tags, $extra_args ); |
|
167 | - $subject = $email->add_merge_tags( $email->get_subject(), $merge_tags ); |
|
168 | - $attachments = $email->get_attachments(); |
|
169 | - |
|
170 | - $result = $mailer->send( |
|
171 | - apply_filters( 'getpaid_subscription_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
172 | - $subject, |
|
173 | - $content, |
|
174 | - $attachments |
|
175 | - ); |
|
176 | - |
|
177 | - // Maybe send a copy to the admin. |
|
178 | - if ( $email->include_admin_bcc() ) { |
|
179 | - $mailer->send( |
|
180 | - wpinv_get_admin_email(), |
|
181 | - $subject . __( ' - ADMIN BCC COPY', 'invoicing' ), |
|
182 | - $content, |
|
183 | - $attachments |
|
184 | - ); |
|
185 | - } |
|
186 | - |
|
187 | - if ( ! $result ) { |
|
188 | - $subscription->get_parent_invoice()->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
189 | - } |
|
190 | - |
|
191 | - do_action( 'getpaid_after_send_subscription_notification', $type, $subscription, $email ); |
|
192 | - |
|
193 | - } |
|
44 | + * Registers email hooks. |
|
45 | + */ |
|
46 | + public function init_hooks() { |
|
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 ) { |
|
50 | + |
|
51 | + $email = new GetPaid_Notification_Email( $email_type ); |
|
52 | + |
|
53 | + if ( ! $email->is_active() ) { |
|
54 | + continue; |
|
55 | + } |
|
56 | + |
|
57 | + if ( method_exists( $this, $email_type ) ) { |
|
58 | + add_action( $hook, array( $this, $email_type ), 100, 2 ); |
|
59 | + continue; |
|
60 | + } |
|
61 | + |
|
62 | + do_action( 'getpaid_subscription_notification_email_register_hook', $email_type, $hook ); |
|
63 | + |
|
64 | + } |
|
65 | + |
|
66 | + } |
|
194 | 67 | |
195 | 68 | /** |
196 | - * Sends a new trial notification. |
|
197 | - * |
|
198 | - * @param WPInv_Subscription $subscription |
|
199 | - */ |
|
200 | - public function subscription_trial( $subscription ) { |
|
69 | + * Filters subscription merge tags. |
|
70 | + * |
|
71 | + * @param array $merge_tags |
|
72 | + * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
73 | + */ |
|
74 | + public function subscription_merge_tags( $merge_tags, $object ) { |
|
201 | 75 | |
202 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
203 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
76 | + if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
77 | + $merge_tags = array_merge( |
|
78 | + $merge_tags, |
|
79 | + $this->get_subscription_merge_tags( $object ) |
|
80 | + ); |
|
81 | + } |
|
204 | 82 | |
205 | - } |
|
83 | + return $merge_tags; |
|
206 | 84 | |
207 | - /** |
|
208 | - * Sends a cancelled subscription notification. |
|
209 | - * |
|
210 | - * @param WPInv_Subscription $subscription |
|
211 | - */ |
|
212 | - public function subscription_cancelled( $subscription ) { |
|
85 | + } |
|
213 | 86 | |
214 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
215 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
87 | + /** |
|
88 | + * Generates subscription merge tags. |
|
89 | + * |
|
90 | + * @param WPInv_Subscription $subscription |
|
91 | + * @return array |
|
92 | + */ |
|
93 | + public function get_subscription_merge_tags( $subscription ) { |
|
94 | + |
|
95 | + // Abort if it does not exist. |
|
96 | + if ( ! $subscription->get_id() ) { |
|
97 | + return array(); |
|
98 | + } |
|
99 | + |
|
100 | + $invoice = $subscription->get_parent_invoice(); |
|
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(), '' ), |
|
110 | + '{subscription_bill_times}' => $subscription->get_bill_times(), |
|
111 | + '{subscription_url}' => esc_url( $subscription->get_view_url() ), |
|
112 | + ); |
|
216 | 113 | |
217 | - } |
|
114 | + } |
|
218 | 115 | |
219 | - /** |
|
220 | - * Sends a subscription expired notification. |
|
221 | - * |
|
222 | - * @param WPInv_Subscription $subscription |
|
223 | - */ |
|
224 | - public function subscription_expired( $subscription ) { |
|
116 | + /** |
|
117 | + * Checks if we should send a notification for a subscription. |
|
118 | + * |
|
119 | + * @param WPInv_Invoice $invoice |
|
120 | + * @return bool |
|
121 | + */ |
|
122 | + public function should_send_notification( $invoice ) { |
|
123 | + return 0 != $invoice->get_id(); |
|
124 | + } |
|
225 | 125 | |
226 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
227 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
126 | + /** |
|
127 | + * Returns notification recipients. |
|
128 | + * |
|
129 | + * @param WPInv_Invoice $invoice |
|
130 | + * @return array |
|
131 | + */ |
|
132 | + public function get_recipients( $invoice ) { |
|
133 | + $recipients = array( $invoice->get_email() ); |
|
228 | 134 | |
229 | - } |
|
135 | + $cc = $invoice->get_email_cc(); |
|
230 | 136 | |
231 | - /** |
|
232 | - * Sends a completed subscription notification. |
|
233 | - * |
|
234 | - * @param WPInv_Subscription $subscription |
|
235 | - */ |
|
236 | - public function subscription_complete( $subscription ) { |
|
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 | + } |
|
237 | 141 | |
238 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
239 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
142 | + return $recipients; |
|
143 | + } |
|
240 | 144 | |
241 | - } |
|
145 | + /** |
|
146 | + * Helper function to send an email. |
|
147 | + * |
|
148 | + * @param WPInv_Subscription $subscription |
|
149 | + * @param GetPaid_Notification_Email $email |
|
150 | + * @param string $type |
|
151 | + * @param array $extra_args Extra template args. |
|
152 | + */ |
|
153 | + public function send_email( $subscription, $email, $type, $extra_args = array() ) { |
|
154 | + |
|
155 | + // Abort in case the parent invoice does not exist. |
|
156 | + $invoice = $subscription->get_parent_invoice(); |
|
157 | + if ( ! $this->should_send_notification( $invoice ) ) { |
|
158 | + return; |
|
159 | + } |
|
160 | + |
|
161 | + do_action( 'getpaid_before_send_subscription_notification', $type, $subscription, $email ); |
|
162 | + |
|
163 | + $recipients = $this->get_recipients( $invoice ); |
|
164 | + $mailer = new GetPaid_Notification_Email_Sender(); |
|
165 | + $merge_tags = $email->get_merge_tags(); |
|
166 | + $content = $email->get_content( $merge_tags, $extra_args ); |
|
167 | + $subject = $email->add_merge_tags( $email->get_subject(), $merge_tags ); |
|
168 | + $attachments = $email->get_attachments(); |
|
169 | + |
|
170 | + $result = $mailer->send( |
|
171 | + apply_filters( 'getpaid_subscription_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
172 | + $subject, |
|
173 | + $content, |
|
174 | + $attachments |
|
175 | + ); |
|
176 | + |
|
177 | + // Maybe send a copy to the admin. |
|
178 | + if ( $email->include_admin_bcc() ) { |
|
179 | + $mailer->send( |
|
180 | + wpinv_get_admin_email(), |
|
181 | + $subject . __( ' - ADMIN BCC COPY', 'invoicing' ), |
|
182 | + $content, |
|
183 | + $attachments |
|
184 | + ); |
|
185 | + } |
|
186 | + |
|
187 | + if ( ! $result ) { |
|
188 | + $subscription->get_parent_invoice()->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
189 | + } |
|
190 | + |
|
191 | + do_action( 'getpaid_after_send_subscription_notification', $type, $subscription, $email ); |
|
242 | 192 | |
243 | - /** |
|
244 | - * Sends a subscription renewal reminder notification. |
|
245 | - * |
|
246 | - */ |
|
247 | - public function renewal_reminder() { |
|
193 | + } |
|
248 | 194 | |
249 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
195 | + /** |
|
196 | + * Sends a new trial notification. |
|
197 | + * |
|
198 | + * @param WPInv_Subscription $subscription |
|
199 | + */ |
|
200 | + public function subscription_trial( $subscription ) { |
|
250 | 201 | |
251 | - // Fetch reminder days. |
|
252 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
202 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
203 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
253 | 204 | |
254 | - // Abort if non is set. |
|
255 | - if ( empty( $reminder_days ) ) { |
|
256 | - return; |
|
257 | - } |
|
205 | + } |
|
258 | 206 | |
259 | - // Fetch matching subscriptions. |
|
207 | + /** |
|
208 | + * Sends a cancelled subscription notification. |
|
209 | + * |
|
210 | + * @param WPInv_Subscription $subscription |
|
211 | + */ |
|
212 | + public function subscription_cancelled( $subscription ) { |
|
213 | + |
|
214 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
215 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
216 | + |
|
217 | + } |
|
218 | + |
|
219 | + /** |
|
220 | + * Sends a subscription expired notification. |
|
221 | + * |
|
222 | + * @param WPInv_Subscription $subscription |
|
223 | + */ |
|
224 | + public function subscription_expired( $subscription ) { |
|
225 | + |
|
226 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
227 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
228 | + |
|
229 | + } |
|
230 | + |
|
231 | + /** |
|
232 | + * Sends a completed subscription notification. |
|
233 | + * |
|
234 | + * @param WPInv_Subscription $subscription |
|
235 | + */ |
|
236 | + public function subscription_complete( $subscription ) { |
|
237 | + |
|
238 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
239 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
240 | + |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Sends a subscription renewal reminder notification. |
|
245 | + * |
|
246 | + */ |
|
247 | + public function renewal_reminder() { |
|
248 | + |
|
249 | + $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
250 | + |
|
251 | + // Fetch reminder days. |
|
252 | + $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
253 | + |
|
254 | + // Abort if non is set. |
|
255 | + if ( empty( $reminder_days ) ) { |
|
256 | + return; |
|
257 | + } |
|
258 | + |
|
259 | + // Fetch matching subscriptions. |
|
260 | 260 | $args = array( |
261 | 261 | 'number' => -1, |
262 | - 'count_total' => false, |
|
263 | - 'status' => 'trialling active', |
|
262 | + 'count_total' => false, |
|
263 | + 'status' => 'trialling active', |
|
264 | 264 | 'date_expires_query' => array( |
265 | - 'relation' => 'OR' |
|
265 | + 'relation' => 'OR' |
|
266 | 266 | ), |
267 | - ); |
|
267 | + ); |
|
268 | 268 | |
269 | - foreach ( $reminder_days as $days ) { |
|
270 | - $date = date_parse( date( 'Y-m-d', strtotime( "+$days days", current_time( 'timestamp' ) ) ) ); |
|
269 | + foreach ( $reminder_days as $days ) { |
|
270 | + $date = date_parse( date( 'Y-m-d', strtotime( "+$days days", current_time( 'timestamp' ) ) ) ); |
|
271 | 271 | |
272 | - $args['date_expires_query'][] = array( |
|
273 | - 'year' => $date['year'], |
|
274 | - 'month' => $date['month'], |
|
275 | - 'day' => $date['day'], |
|
276 | - ); |
|
272 | + $args['date_expires_query'][] = array( |
|
273 | + 'year' => $date['year'], |
|
274 | + 'month' => $date['month'], |
|
275 | + 'day' => $date['day'], |
|
276 | + ); |
|
277 | 277 | |
278 | - } |
|
278 | + } |
|
279 | 279 | |
280 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
280 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
281 | 281 | |
282 | 282 | foreach ( $subscriptions as $subscription ) { |
283 | 283 | |
284 | - // Skip packages. |
|
285 | - if ( get_post_meta( $subscription->get_product_id(), '_wpinv_type', true ) != 'package' ) { |
|
286 | - $email->object = $subscription; |
|
287 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
288 | - } |
|
284 | + // Skip packages. |
|
285 | + if ( get_post_meta( $subscription->get_product_id(), '_wpinv_type', true ) != 'package' ) { |
|
286 | + $email->object = $subscription; |
|
287 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
288 | + } |
|
289 | 289 | |
290 | - } |
|
290 | + } |
|
291 | 291 | |
292 | - } |
|
292 | + } |
|
293 | 293 | |
294 | 294 | } |
@@ -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. |
@@ -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,45 +150,45 @@ 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 | 155 | // Abort in case the parent invoice does not exist. |
156 | 156 | $invoice = $subscription->get_parent_invoice(); |
157 | - if ( ! $this->should_send_notification( $invoice ) ) { |
|
157 | + if (!$this->should_send_notification($invoice)) { |
|
158 | 158 | return; |
159 | 159 | } |
160 | 160 | |
161 | - do_action( 'getpaid_before_send_subscription_notification', $type, $subscription, $email ); |
|
161 | + do_action('getpaid_before_send_subscription_notification', $type, $subscription, $email); |
|
162 | 162 | |
163 | - $recipients = $this->get_recipients( $invoice ); |
|
163 | + $recipients = $this->get_recipients($invoice); |
|
164 | 164 | $mailer = new GetPaid_Notification_Email_Sender(); |
165 | 165 | $merge_tags = $email->get_merge_tags(); |
166 | - $content = $email->get_content( $merge_tags, $extra_args ); |
|
167 | - $subject = $email->add_merge_tags( $email->get_subject(), $merge_tags ); |
|
166 | + $content = $email->get_content($merge_tags, $extra_args); |
|
167 | + $subject = $email->add_merge_tags($email->get_subject(), $merge_tags); |
|
168 | 168 | $attachments = $email->get_attachments(); |
169 | 169 | |
170 | 170 | $result = $mailer->send( |
171 | - apply_filters( 'getpaid_subscription_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
171 | + apply_filters('getpaid_subscription_email_recipients', wpinv_parse_list($recipients), $email), |
|
172 | 172 | $subject, |
173 | 173 | $content, |
174 | 174 | $attachments |
175 | 175 | ); |
176 | 176 | |
177 | 177 | // Maybe send a copy to the admin. |
178 | - if ( $email->include_admin_bcc() ) { |
|
178 | + if ($email->include_admin_bcc()) { |
|
179 | 179 | $mailer->send( |
180 | 180 | wpinv_get_admin_email(), |
181 | - $subject . __( ' - ADMIN BCC COPY', 'invoicing' ), |
|
181 | + $subject . __(' - ADMIN BCC COPY', 'invoicing'), |
|
182 | 182 | $content, |
183 | 183 | $attachments |
184 | 184 | ); |
185 | 185 | } |
186 | 186 | |
187 | - if ( ! $result ) { |
|
188 | - $subscription->get_parent_invoice()->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
187 | + if (!$result) { |
|
188 | + $subscription->get_parent_invoice()->add_note(sprintf(__('Failed sending %s notification email.', 'invoicing'), sanitize_key($type)), false, false, true); |
|
189 | 189 | } |
190 | 190 | |
191 | - do_action( 'getpaid_after_send_subscription_notification', $type, $subscription, $email ); |
|
191 | + do_action('getpaid_after_send_subscription_notification', $type, $subscription, $email); |
|
192 | 192 | |
193 | 193 | } |
194 | 194 | |
@@ -197,10 +197,10 @@ discard block |
||
197 | 197 | * |
198 | 198 | * @param WPInv_Subscription $subscription |
199 | 199 | */ |
200 | - public function subscription_trial( $subscription ) { |
|
200 | + public function subscription_trial($subscription) { |
|
201 | 201 | |
202 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
203 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
202 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
203 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
204 | 204 | |
205 | 205 | } |
206 | 206 | |
@@ -209,10 +209,10 @@ discard block |
||
209 | 209 | * |
210 | 210 | * @param WPInv_Subscription $subscription |
211 | 211 | */ |
212 | - public function subscription_cancelled( $subscription ) { |
|
212 | + public function subscription_cancelled($subscription) { |
|
213 | 213 | |
214 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
215 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
214 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
215 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
216 | 216 | |
217 | 217 | } |
218 | 218 | |
@@ -221,10 +221,10 @@ discard block |
||
221 | 221 | * |
222 | 222 | * @param WPInv_Subscription $subscription |
223 | 223 | */ |
224 | - public function subscription_expired( $subscription ) { |
|
224 | + public function subscription_expired($subscription) { |
|
225 | 225 | |
226 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
227 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
226 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
227 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
228 | 228 | |
229 | 229 | } |
230 | 230 | |
@@ -233,10 +233,10 @@ discard block |
||
233 | 233 | * |
234 | 234 | * @param WPInv_Subscription $subscription |
235 | 235 | */ |
236 | - public function subscription_complete( $subscription ) { |
|
236 | + public function subscription_complete($subscription) { |
|
237 | 237 | |
238 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
239 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
238 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $subscription); |
|
239 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
240 | 240 | |
241 | 241 | } |
242 | 242 | |
@@ -246,18 +246,18 @@ discard block |
||
246 | 246 | */ |
247 | 247 | public function renewal_reminder() { |
248 | 248 | |
249 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
249 | + $email = new GetPaid_Notification_Email(__FUNCTION__); |
|
250 | 250 | |
251 | 251 | // Fetch reminder days. |
252 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
252 | + $reminder_days = array_unique(wp_parse_id_list($email->get_option('days'))); |
|
253 | 253 | |
254 | 254 | // Abort if non is set. |
255 | - if ( empty( $reminder_days ) ) { |
|
255 | + if (empty($reminder_days)) { |
|
256 | 256 | return; |
257 | 257 | } |
258 | 258 | |
259 | 259 | // Fetch matching subscriptions. |
260 | - $args = array( |
|
260 | + $args = array( |
|
261 | 261 | 'number' => -1, |
262 | 262 | 'count_total' => false, |
263 | 263 | 'status' => 'trialling active', |
@@ -266,8 +266,8 @@ discard block |
||
266 | 266 | ), |
267 | 267 | ); |
268 | 268 | |
269 | - foreach ( $reminder_days as $days ) { |
|
270 | - $date = date_parse( date( 'Y-m-d', strtotime( "+$days days", current_time( 'timestamp' ) ) ) ); |
|
269 | + foreach ($reminder_days as $days) { |
|
270 | + $date = date_parse(date('Y-m-d', strtotime("+$days days", current_time('timestamp')))); |
|
271 | 271 | |
272 | 272 | $args['date_expires_query'][] = array( |
273 | 273 | 'year' => $date['year'], |
@@ -277,14 +277,14 @@ discard block |
||
277 | 277 | |
278 | 278 | } |
279 | 279 | |
280 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
280 | + $subscriptions = new GetPaid_Subscriptions_Query($args); |
|
281 | 281 | |
282 | - foreach ( $subscriptions as $subscription ) { |
|
282 | + foreach ($subscriptions as $subscription) { |
|
283 | 283 | |
284 | 284 | // Skip packages. |
285 | - if ( get_post_meta( $subscription->get_product_id(), '_wpinv_type', true ) != 'package' ) { |
|
285 | + if (get_post_meta($subscription->get_product_id(), '_wpinv_type', true) != 'package') { |
|
286 | 286 | $email->object = $subscription; |
287 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
287 | + $this->send_email($subscription, $email, __FUNCTION__); |
|
288 | 288 | } |
289 | 289 | |
290 | 290 | } |
@@ -12,444 +12,444 @@ |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Invoice_Notification_Emails { |
14 | 14 | |
15 | - /** |
|
16 | - * The array of invoice email actions. |
|
17 | - * |
|
18 | - * @param array |
|
19 | - */ |
|
20 | - public $invoice_actions; |
|
21 | - |
|
22 | - /** |
|
23 | - * Class constructor |
|
24 | - * |
|
25 | - */ |
|
26 | - public function __construct() { |
|
27 | - |
|
28 | - $this->invoice_actions = apply_filters( |
|
29 | - 'getpaid_notification_email_invoice_triggers', |
|
30 | - array( |
|
31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
32 | - 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
33 | - 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
34 | - 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
35 | - 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
36 | - 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
37 | - 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
38 | - 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
39 | - 'getpaid_new_customer_note' => 'user_note', |
|
40 | - 'getpaid_daily_maintenance' => 'overdue', |
|
41 | - ) |
|
42 | - ); |
|
43 | - |
|
44 | - $this->init_hooks(); |
|
45 | - |
|
46 | - } |
|
47 | - |
|
48 | - /** |
|
49 | - * Registers email hooks. |
|
50 | - */ |
|
51 | - public function init_hooks() { |
|
52 | - |
|
53 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
54 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
55 | - |
|
56 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
57 | - $this->init_email_type_hook( $hook, $email_type ); |
|
58 | - } |
|
59 | - } |
|
60 | - |
|
61 | - /** |
|
62 | - * Registers an email hook for an invoice action. |
|
63 | - * |
|
64 | - * @param string $hook |
|
65 | - * @param string|array $email_type |
|
66 | - */ |
|
67 | - public function init_email_type_hook( $hook, $email_type ) { |
|
68 | - |
|
69 | - $email_type = wpinv_parse_list( $email_type ); |
|
70 | - |
|
71 | - foreach ( $email_type as $type ) { |
|
72 | - |
|
73 | - $email = new GetPaid_Notification_Email( $type ); |
|
74 | - |
|
75 | - // Abort if it is not active. |
|
76 | - if ( ! $email->is_active() ) { |
|
77 | - continue; |
|
78 | - } |
|
79 | - |
|
80 | - if ( method_exists( $this, $type ) ) { |
|
81 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
82 | - continue; |
|
83 | - } |
|
84 | - |
|
85 | - do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
86 | - } |
|
87 | - |
|
88 | - } |
|
89 | - |
|
90 | - /** |
|
91 | - * Filters invoice merge tags. |
|
92 | - * |
|
93 | - * @param array $merge_tags |
|
94 | - * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
95 | - */ |
|
96 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
97 | - |
|
98 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
99 | - return array_merge( |
|
100 | - $merge_tags, |
|
101 | - $this->get_invoice_merge_tags( $object ) |
|
102 | - ); |
|
103 | - } |
|
104 | - |
|
105 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
106 | - return array_merge( |
|
107 | - $merge_tags, |
|
108 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
109 | - ); |
|
110 | - } |
|
111 | - |
|
112 | - return $merge_tags; |
|
113 | - |
|
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * Generates invoice merge tags. |
|
118 | - * |
|
119 | - * @param WPInv_Invoice $invoice |
|
120 | - * @return array |
|
121 | - */ |
|
122 | - public function get_invoice_merge_tags( $invoice ) { |
|
123 | - |
|
124 | - // Abort if it does not exist. |
|
125 | - if ( ! $invoice->get_id() ) { |
|
126 | - return array(); |
|
127 | - } |
|
128 | - |
|
129 | - $merge_tags = array( |
|
130 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
131 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
132 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
133 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
134 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
135 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
136 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
137 | - '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
138 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
139 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
140 | - '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
141 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
142 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
143 | - '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
144 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
145 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
146 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
147 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
148 | - ); |
|
149 | - |
|
150 | - return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
151 | - } |
|
152 | - |
|
153 | - /** |
|
154 | - * Helper function to send an email. |
|
155 | - * |
|
156 | - * @param WPInv_Invoice $invoice |
|
157 | - * @param GetPaid_Notification_Email $email |
|
158 | - * @param string $type |
|
159 | - * @param string|array $recipients |
|
160 | - * @param array $extra_args Extra template args. |
|
161 | - */ |
|
162 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
163 | - |
|
164 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
165 | - |
|
166 | - $mailer = new GetPaid_Notification_Email_Sender(); |
|
167 | - $merge_tags = $email->get_merge_tags(); |
|
168 | - |
|
169 | - $result = $mailer->send( |
|
170 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
171 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
172 | - $email->get_content( $merge_tags, $extra_args ), |
|
173 | - $email->get_attachments() |
|
174 | - ); |
|
175 | - |
|
176 | - // Maybe send a copy to the admin. |
|
177 | - if ( $email->include_admin_bcc() ) { |
|
178 | - $mailer->send( |
|
179 | - wpinv_get_admin_email(), |
|
180 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
181 | - $email->get_content( $merge_tags ), |
|
182 | - $email->get_attachments() |
|
183 | - ); |
|
184 | - } |
|
185 | - |
|
186 | - if ( ! $result ) { |
|
187 | - $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
188 | - } |
|
189 | - |
|
190 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
191 | - |
|
192 | - return $result; |
|
193 | - } |
|
194 | - |
|
195 | - /** |
|
196 | - * Also send emails to any cc users. |
|
197 | - * |
|
198 | - * @param array $recipients |
|
199 | - * @param GetPaid_Notification_Email $email |
|
200 | - */ |
|
201 | - public function filter_email_recipients( $recipients, $email ) { |
|
202 | - |
|
203 | - if ( ! $email->is_admin_email() ) { |
|
204 | - $cc = $email->object->get_email_cc(); |
|
205 | - |
|
206 | - if ( ! empty( $cc ) ) { |
|
207 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
208 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
209 | - } |
|
210 | - |
|
211 | - } |
|
212 | - |
|
213 | - return $recipients; |
|
214 | - |
|
215 | - } |
|
216 | - |
|
217 | - /** |
|
218 | - * Sends a new invoice notification. |
|
219 | - * |
|
220 | - * @param WPInv_Invoice $invoice |
|
221 | - */ |
|
222 | - public function new_invoice( $invoice ) { |
|
223 | - |
|
224 | - // Only send this email for invoices created via the admin page. |
|
225 | - if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
226 | - return; |
|
227 | - } |
|
228 | - |
|
229 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
230 | - $recipient = wpinv_get_admin_email(); |
|
231 | - |
|
232 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
233 | - |
|
234 | - } |
|
235 | - |
|
236 | - /** |
|
237 | - * Sends a cancelled invoice notification. |
|
238 | - * |
|
239 | - * @param WPInv_Invoice $invoice |
|
240 | - */ |
|
241 | - public function cancelled_invoice( $invoice ) { |
|
15 | + /** |
|
16 | + * The array of invoice email actions. |
|
17 | + * |
|
18 | + * @param array |
|
19 | + */ |
|
20 | + public $invoice_actions; |
|
21 | + |
|
22 | + /** |
|
23 | + * Class constructor |
|
24 | + * |
|
25 | + */ |
|
26 | + public function __construct() { |
|
27 | + |
|
28 | + $this->invoice_actions = apply_filters( |
|
29 | + 'getpaid_notification_email_invoice_triggers', |
|
30 | + array( |
|
31 | + 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
32 | + 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
33 | + 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
34 | + 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
35 | + 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
36 | + 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
37 | + 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
38 | + 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
39 | + 'getpaid_new_customer_note' => 'user_note', |
|
40 | + 'getpaid_daily_maintenance' => 'overdue', |
|
41 | + ) |
|
42 | + ); |
|
43 | + |
|
44 | + $this->init_hooks(); |
|
45 | + |
|
46 | + } |
|
47 | + |
|
48 | + /** |
|
49 | + * Registers email hooks. |
|
50 | + */ |
|
51 | + public function init_hooks() { |
|
52 | + |
|
53 | + add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
54 | + add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
55 | + |
|
56 | + foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
57 | + $this->init_email_type_hook( $hook, $email_type ); |
|
58 | + } |
|
59 | + } |
|
60 | + |
|
61 | + /** |
|
62 | + * Registers an email hook for an invoice action. |
|
63 | + * |
|
64 | + * @param string $hook |
|
65 | + * @param string|array $email_type |
|
66 | + */ |
|
67 | + public function init_email_type_hook( $hook, $email_type ) { |
|
68 | + |
|
69 | + $email_type = wpinv_parse_list( $email_type ); |
|
70 | + |
|
71 | + foreach ( $email_type as $type ) { |
|
72 | + |
|
73 | + $email = new GetPaid_Notification_Email( $type ); |
|
74 | + |
|
75 | + // Abort if it is not active. |
|
76 | + if ( ! $email->is_active() ) { |
|
77 | + continue; |
|
78 | + } |
|
79 | + |
|
80 | + if ( method_exists( $this, $type ) ) { |
|
81 | + add_action( $hook, array( $this, $type ), 100, 2 ); |
|
82 | + continue; |
|
83 | + } |
|
84 | + |
|
85 | + do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
86 | + } |
|
87 | + |
|
88 | + } |
|
89 | + |
|
90 | + /** |
|
91 | + * Filters invoice merge tags. |
|
92 | + * |
|
93 | + * @param array $merge_tags |
|
94 | + * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
95 | + */ |
|
96 | + public function invoice_merge_tags( $merge_tags, $object ) { |
|
97 | + |
|
98 | + if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
99 | + return array_merge( |
|
100 | + $merge_tags, |
|
101 | + $this->get_invoice_merge_tags( $object ) |
|
102 | + ); |
|
103 | + } |
|
104 | + |
|
105 | + if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
106 | + return array_merge( |
|
107 | + $merge_tags, |
|
108 | + $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
109 | + ); |
|
110 | + } |
|
111 | + |
|
112 | + return $merge_tags; |
|
113 | + |
|
114 | + } |
|
115 | + |
|
116 | + /** |
|
117 | + * Generates invoice merge tags. |
|
118 | + * |
|
119 | + * @param WPInv_Invoice $invoice |
|
120 | + * @return array |
|
121 | + */ |
|
122 | + public function get_invoice_merge_tags( $invoice ) { |
|
123 | + |
|
124 | + // Abort if it does not exist. |
|
125 | + if ( ! $invoice->get_id() ) { |
|
126 | + return array(); |
|
127 | + } |
|
128 | + |
|
129 | + $merge_tags = array( |
|
130 | + '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
131 | + '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
132 | + '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
133 | + '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
134 | + '{email}' => sanitize_email( $invoice->get_email() ), |
|
135 | + '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
136 | + '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
137 | + '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
138 | + '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
139 | + '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
140 | + '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
141 | + '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
142 | + '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
143 | + '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
144 | + '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
145 | + '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
146 | + '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
147 | + '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
148 | + ); |
|
149 | + |
|
150 | + return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
151 | + } |
|
152 | + |
|
153 | + /** |
|
154 | + * Helper function to send an email. |
|
155 | + * |
|
156 | + * @param WPInv_Invoice $invoice |
|
157 | + * @param GetPaid_Notification_Email $email |
|
158 | + * @param string $type |
|
159 | + * @param string|array $recipients |
|
160 | + * @param array $extra_args Extra template args. |
|
161 | + */ |
|
162 | + public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
163 | + |
|
164 | + do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
165 | + |
|
166 | + $mailer = new GetPaid_Notification_Email_Sender(); |
|
167 | + $merge_tags = $email->get_merge_tags(); |
|
168 | + |
|
169 | + $result = $mailer->send( |
|
170 | + apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
171 | + $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
172 | + $email->get_content( $merge_tags, $extra_args ), |
|
173 | + $email->get_attachments() |
|
174 | + ); |
|
175 | + |
|
176 | + // Maybe send a copy to the admin. |
|
177 | + if ( $email->include_admin_bcc() ) { |
|
178 | + $mailer->send( |
|
179 | + wpinv_get_admin_email(), |
|
180 | + $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
181 | + $email->get_content( $merge_tags ), |
|
182 | + $email->get_attachments() |
|
183 | + ); |
|
184 | + } |
|
185 | + |
|
186 | + if ( ! $result ) { |
|
187 | + $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
188 | + } |
|
189 | + |
|
190 | + do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
191 | + |
|
192 | + return $result; |
|
193 | + } |
|
194 | + |
|
195 | + /** |
|
196 | + * Also send emails to any cc users. |
|
197 | + * |
|
198 | + * @param array $recipients |
|
199 | + * @param GetPaid_Notification_Email $email |
|
200 | + */ |
|
201 | + public function filter_email_recipients( $recipients, $email ) { |
|
202 | + |
|
203 | + if ( ! $email->is_admin_email() ) { |
|
204 | + $cc = $email->object->get_email_cc(); |
|
205 | + |
|
206 | + if ( ! empty( $cc ) ) { |
|
207 | + $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
208 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
209 | + } |
|
210 | + |
|
211 | + } |
|
212 | + |
|
213 | + return $recipients; |
|
214 | + |
|
215 | + } |
|
216 | + |
|
217 | + /** |
|
218 | + * Sends a new invoice notification. |
|
219 | + * |
|
220 | + * @param WPInv_Invoice $invoice |
|
221 | + */ |
|
222 | + public function new_invoice( $invoice ) { |
|
223 | + |
|
224 | + // Only send this email for invoices created via the admin page. |
|
225 | + if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
226 | + return; |
|
227 | + } |
|
228 | + |
|
229 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
230 | + $recipient = wpinv_get_admin_email(); |
|
231 | + |
|
232 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
233 | + |
|
234 | + } |
|
235 | + |
|
236 | + /** |
|
237 | + * Sends a cancelled invoice notification. |
|
238 | + * |
|
239 | + * @param WPInv_Invoice $invoice |
|
240 | + */ |
|
241 | + public function cancelled_invoice( $invoice ) { |
|
242 | 242 | |
243 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
244 | - $recipient = wpinv_get_admin_email(); |
|
243 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
244 | + $recipient = wpinv_get_admin_email(); |
|
245 | 245 | |
246 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
246 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
247 | 247 | |
248 | - } |
|
248 | + } |
|
249 | 249 | |
250 | - /** |
|
251 | - * Sends a failed invoice notification. |
|
252 | - * |
|
253 | - * @param WPInv_Invoice $invoice |
|
254 | - */ |
|
255 | - public function failed_invoice( $invoice ) { |
|
250 | + /** |
|
251 | + * Sends a failed invoice notification. |
|
252 | + * |
|
253 | + * @param WPInv_Invoice $invoice |
|
254 | + */ |
|
255 | + public function failed_invoice( $invoice ) { |
|
256 | 256 | |
257 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
258 | - $recipient = wpinv_get_admin_email(); |
|
257 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
258 | + $recipient = wpinv_get_admin_email(); |
|
259 | 259 | |
260 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
260 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
261 | 261 | |
262 | - } |
|
262 | + } |
|
263 | 263 | |
264 | - /** |
|
265 | - * Sends a notification whenever an invoice is put on hold. |
|
266 | - * |
|
267 | - * @param WPInv_Invoice $invoice |
|
268 | - */ |
|
269 | - public function onhold_invoice( $invoice ) { |
|
264 | + /** |
|
265 | + * Sends a notification whenever an invoice is put on hold. |
|
266 | + * |
|
267 | + * @param WPInv_Invoice $invoice |
|
268 | + */ |
|
269 | + public function onhold_invoice( $invoice ) { |
|
270 | 270 | |
271 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
272 | - $recipient = $invoice->get_email(); |
|
271 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
272 | + $recipient = $invoice->get_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 | |
278 | - /** |
|
279 | - * Sends a notification whenever an invoice is marked as processing payment. |
|
280 | - * |
|
281 | - * @param WPInv_Invoice $invoice |
|
282 | - */ |
|
283 | - public function processing_invoice( $invoice ) { |
|
278 | + /** |
|
279 | + * Sends a notification whenever an invoice is marked as processing payment. |
|
280 | + * |
|
281 | + * @param WPInv_Invoice $invoice |
|
282 | + */ |
|
283 | + public function processing_invoice( $invoice ) { |
|
284 | 284 | |
285 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
286 | - $recipient = $invoice->get_email(); |
|
285 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
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 | |
292 | - /** |
|
293 | - * Sends a notification whenever an invoice is paid. |
|
294 | - * |
|
295 | - * @param WPInv_Invoice $invoice |
|
296 | - */ |
|
297 | - public function completed_invoice( $invoice ) { |
|
292 | + /** |
|
293 | + * Sends a notification whenever an invoice is paid. |
|
294 | + * |
|
295 | + * @param WPInv_Invoice $invoice |
|
296 | + */ |
|
297 | + public function completed_invoice( $invoice ) { |
|
298 | 298 | |
299 | - // (Maybe) abort if it is a renewal invoice. |
|
300 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
301 | - return; |
|
302 | - } |
|
299 | + // (Maybe) abort if it is a renewal invoice. |
|
300 | + if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
301 | + return; |
|
302 | + } |
|
303 | 303 | |
304 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
305 | - $recipient = $invoice->get_email(); |
|
304 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
305 | + $recipient = $invoice->get_email(); |
|
306 | 306 | |
307 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
307 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
308 | 308 | |
309 | - } |
|
309 | + } |
|
310 | 310 | |
311 | - /** |
|
312 | - * Sends a notification whenever an invoice is refunded. |
|
313 | - * |
|
314 | - * @param WPInv_Invoice $invoice |
|
315 | - */ |
|
316 | - public function refunded_invoice( $invoice ) { |
|
311 | + /** |
|
312 | + * Sends a notification whenever an invoice is refunded. |
|
313 | + * |
|
314 | + * @param WPInv_Invoice $invoice |
|
315 | + */ |
|
316 | + public function refunded_invoice( $invoice ) { |
|
317 | 317 | |
318 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
319 | - $recipient = $invoice->get_email(); |
|
318 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
319 | + $recipient = $invoice->get_email(); |
|
320 | 320 | |
321 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
321 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
322 | 322 | |
323 | - } |
|
323 | + } |
|
324 | 324 | |
325 | - /** |
|
326 | - * Notifies a user about new invoices |
|
327 | - * |
|
328 | - * @param WPInv_Invoice $invoice |
|
329 | - */ |
|
330 | - public function user_invoice( $invoice ) { |
|
325 | + /** |
|
326 | + * Notifies a user about new invoices |
|
327 | + * |
|
328 | + * @param WPInv_Invoice $invoice |
|
329 | + */ |
|
330 | + public function user_invoice( $invoice ) { |
|
331 | 331 | |
332 | - // Only send this email for invoices created via the admin page. |
|
333 | - if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
334 | - return; |
|
335 | - } |
|
332 | + // Only send this email for invoices created via the admin page. |
|
333 | + if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
334 | + return; |
|
335 | + } |
|
336 | 336 | |
337 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
338 | - $recipient = $invoice->get_email(); |
|
337 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
338 | + $recipient = $invoice->get_email(); |
|
339 | 339 | |
340 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
340 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
341 | 341 | |
342 | - } |
|
342 | + } |
|
343 | 343 | |
344 | - /** |
|
345 | - * Checks if an invoice is a payment form invoice. |
|
346 | - * |
|
347 | - * @param int $invoice |
|
348 | - * @return bool |
|
349 | - */ |
|
350 | - public function is_payment_form_invoice( $invoice ) { |
|
351 | - return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
352 | - } |
|
344 | + /** |
|
345 | + * Checks if an invoice is a payment form invoice. |
|
346 | + * |
|
347 | + * @param int $invoice |
|
348 | + * @return bool |
|
349 | + */ |
|
350 | + public function is_payment_form_invoice( $invoice ) { |
|
351 | + return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
352 | + } |
|
353 | 353 | |
354 | - /** |
|
355 | - * Notifies admin about new invoice notes |
|
356 | - * |
|
357 | - * @param WPInv_Invoice $invoice |
|
358 | - * @param string $note |
|
359 | - */ |
|
360 | - public function user_note( $invoice, $note ) { |
|
354 | + /** |
|
355 | + * Notifies admin about new invoice notes |
|
356 | + * |
|
357 | + * @param WPInv_Invoice $invoice |
|
358 | + * @param string $note |
|
359 | + */ |
|
360 | + public function user_note( $invoice, $note ) { |
|
361 | 361 | |
362 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
363 | - $recipient = $invoice->get_email(); |
|
364 | - |
|
365 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
366 | - |
|
367 | - } |
|
362 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
363 | + $recipient = $invoice->get_email(); |
|
364 | + |
|
365 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
366 | + |
|
367 | + } |
|
368 | 368 | |
369 | - /** |
|
370 | - * (Force) Sends overdue notices. |
|
371 | - * |
|
372 | - * @param WPInv_Invoice $invoice |
|
373 | - */ |
|
374 | - public function force_send_overdue_notice( $invoice ) { |
|
375 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
376 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
377 | - } |
|
378 | - |
|
379 | - /** |
|
380 | - * Sends overdue notices. |
|
381 | - * |
|
382 | - * @TODO: Create an invoices query class. |
|
383 | - */ |
|
384 | - public function overdue() { |
|
385 | - global $wpdb; |
|
386 | - |
|
387 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
388 | - |
|
389 | - // Fetch reminder days. |
|
390 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
391 | - |
|
392 | - // Abort if non is set. |
|
393 | - if ( empty( $reminder_days ) ) { |
|
394 | - return; |
|
395 | - } |
|
396 | - |
|
397 | - // Retrieve date query. |
|
398 | - $date_query = $this->get_date_query( $reminder_days ); |
|
399 | - |
|
400 | - // Invoices table. |
|
401 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
402 | - |
|
403 | - // Fetch invoices. |
|
404 | - $invoices = $wpdb->get_col( |
|
405 | - "SELECT posts.ID FROM $wpdb->posts as posts |
|
369 | + /** |
|
370 | + * (Force) Sends overdue notices. |
|
371 | + * |
|
372 | + * @param WPInv_Invoice $invoice |
|
373 | + */ |
|
374 | + public function force_send_overdue_notice( $invoice ) { |
|
375 | + $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
376 | + return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
377 | + } |
|
378 | + |
|
379 | + /** |
|
380 | + * Sends overdue notices. |
|
381 | + * |
|
382 | + * @TODO: Create an invoices query class. |
|
383 | + */ |
|
384 | + public function overdue() { |
|
385 | + global $wpdb; |
|
386 | + |
|
387 | + $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
388 | + |
|
389 | + // Fetch reminder days. |
|
390 | + $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
391 | + |
|
392 | + // Abort if non is set. |
|
393 | + if ( empty( $reminder_days ) ) { |
|
394 | + return; |
|
395 | + } |
|
396 | + |
|
397 | + // Retrieve date query. |
|
398 | + $date_query = $this->get_date_query( $reminder_days ); |
|
399 | + |
|
400 | + // Invoices table. |
|
401 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
402 | + |
|
403 | + // Fetch invoices. |
|
404 | + $invoices = $wpdb->get_col( |
|
405 | + "SELECT posts.ID FROM $wpdb->posts as posts |
|
406 | 406 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
407 | 407 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query"); |
408 | 408 | |
409 | - foreach ( $invoices as $invoice ) { |
|
409 | + foreach ( $invoices as $invoice ) { |
|
410 | 410 | |
411 | - // Only send this email for invoices created via the admin page. |
|
412 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
413 | - $invoice = new WPInv_Invoice( $invoice ); |
|
414 | - $email->object = $invoice; |
|
411 | + // Only send this email for invoices created via the admin page. |
|
412 | + if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
413 | + $invoice = new WPInv_Invoice( $invoice ); |
|
414 | + $email->object = $invoice; |
|
415 | 415 | |
416 | - if ( $invoice->needs_payment() ) { |
|
417 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
418 | - } |
|
416 | + if ( $invoice->needs_payment() ) { |
|
417 | + $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
418 | + } |
|
419 | 419 | |
420 | - } |
|
420 | + } |
|
421 | 421 | |
422 | - } |
|
422 | + } |
|
423 | 423 | |
424 | - } |
|
424 | + } |
|
425 | 425 | |
426 | - /** |
|
427 | - * Calculates the date query for an invoices query |
|
428 | - * |
|
429 | - * @param array $reminder_days |
|
430 | - * @return string |
|
431 | - */ |
|
432 | - public function get_date_query( $reminder_days ) { |
|
426 | + /** |
|
427 | + * Calculates the date query for an invoices query |
|
428 | + * |
|
429 | + * @param array $reminder_days |
|
430 | + * @return string |
|
431 | + */ |
|
432 | + public function get_date_query( $reminder_days ) { |
|
433 | 433 | |
434 | - $date_query = array( |
|
435 | - 'relation' => 'OR' |
|
436 | - ); |
|
434 | + $date_query = array( |
|
435 | + 'relation' => 'OR' |
|
436 | + ); |
|
437 | 437 | |
438 | - foreach ( $reminder_days as $days ) { |
|
439 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
438 | + foreach ( $reminder_days as $days ) { |
|
439 | + $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
440 | 440 | |
441 | - $date_query[] = array( |
|
442 | - 'year' => $date['year'], |
|
443 | - 'month' => $date['month'], |
|
444 | - 'day' => $date['day'], |
|
445 | - ); |
|
441 | + $date_query[] = array( |
|
442 | + 'year' => $date['year'], |
|
443 | + 'month' => $date['month'], |
|
444 | + 'day' => $date['day'], |
|
445 | + ); |
|
446 | 446 | |
447 | - } |
|
447 | + } |
|
448 | 448 | |
449 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
449 | + $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
450 | 450 | |
451 | - return $date_query->get_sql(); |
|
451 | + return $date_query->get_sql(); |
|
452 | 452 | |
453 | - } |
|
453 | + } |
|
454 | 454 | |
455 | 455 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * This class handles invoice notificaiton emails. |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $this->invoice_actions = apply_filters( |
29 | 29 | 'getpaid_notification_email_invoice_triggers', |
30 | 30 | array( |
31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
31 | + 'getpaid_new_invoice' => array('new_invoice', 'user_invoice'), |
|
32 | 32 | 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
33 | 33 | 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
34 | 34 | 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
@@ -50,11 +50,11 @@ discard block |
||
50 | 50 | */ |
51 | 51 | public function init_hooks() { |
52 | 52 | |
53 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
54 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
53 | + add_filter('getpaid_get_email_merge_tags', array($this, 'invoice_merge_tags'), 10, 2); |
|
54 | + add_filter('getpaid_invoice_email_recipients', array($this, 'filter_email_recipients'), 10, 2); |
|
55 | 55 | |
56 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
57 | - $this->init_email_type_hook( $hook, $email_type ); |
|
56 | + foreach ($this->invoice_actions as $hook => $email_type) { |
|
57 | + $this->init_email_type_hook($hook, $email_type); |
|
58 | 58 | } |
59 | 59 | } |
60 | 60 | |
@@ -64,25 +64,25 @@ discard block |
||
64 | 64 | * @param string $hook |
65 | 65 | * @param string|array $email_type |
66 | 66 | */ |
67 | - public function init_email_type_hook( $hook, $email_type ) { |
|
67 | + public function init_email_type_hook($hook, $email_type) { |
|
68 | 68 | |
69 | - $email_type = wpinv_parse_list( $email_type ); |
|
69 | + $email_type = wpinv_parse_list($email_type); |
|
70 | 70 | |
71 | - foreach ( $email_type as $type ) { |
|
71 | + foreach ($email_type as $type) { |
|
72 | 72 | |
73 | - $email = new GetPaid_Notification_Email( $type ); |
|
73 | + $email = new GetPaid_Notification_Email($type); |
|
74 | 74 | |
75 | 75 | // Abort if it is not active. |
76 | - if ( ! $email->is_active() ) { |
|
76 | + if (!$email->is_active()) { |
|
77 | 77 | continue; |
78 | 78 | } |
79 | 79 | |
80 | - if ( method_exists( $this, $type ) ) { |
|
81 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
80 | + if (method_exists($this, $type)) { |
|
81 | + add_action($hook, array($this, $type), 100, 2); |
|
82 | 82 | continue; |
83 | 83 | } |
84 | 84 | |
85 | - do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
85 | + do_action('getpaid_invoice_init_email_type_hook', $type, $hook); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | } |
@@ -93,19 +93,19 @@ discard block |
||
93 | 93 | * @param array $merge_tags |
94 | 94 | * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
95 | 95 | */ |
96 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
96 | + public function invoice_merge_tags($merge_tags, $object) { |
|
97 | 97 | |
98 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
98 | + if (is_a($object, 'WPInv_Invoice')) { |
|
99 | 99 | return array_merge( |
100 | 100 | $merge_tags, |
101 | - $this->get_invoice_merge_tags( $object ) |
|
101 | + $this->get_invoice_merge_tags($object) |
|
102 | 102 | ); |
103 | 103 | } |
104 | 104 | |
105 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
105 | + if (is_a($object, 'WPInv_Subscription')) { |
|
106 | 106 | return array_merge( |
107 | 107 | $merge_tags, |
108 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
108 | + $this->get_invoice_merge_tags($object->get_parent_payment()) |
|
109 | 109 | ); |
110 | 110 | } |
111 | 111 | |
@@ -119,35 +119,35 @@ discard block |
||
119 | 119 | * @param WPInv_Invoice $invoice |
120 | 120 | * @return array |
121 | 121 | */ |
122 | - public function get_invoice_merge_tags( $invoice ) { |
|
122 | + public function get_invoice_merge_tags($invoice) { |
|
123 | 123 | |
124 | 124 | // Abort if it does not exist. |
125 | - if ( ! $invoice->get_id() ) { |
|
125 | + if (!$invoice->get_id()) { |
|
126 | 126 | return array(); |
127 | 127 | } |
128 | 128 | |
129 | 129 | $merge_tags = array( |
130 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
131 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
132 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
133 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
134 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
135 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
136 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
137 | - '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
138 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
139 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
140 | - '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
141 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
142 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
143 | - '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
144 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
145 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
146 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
147 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
130 | + '{name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
131 | + '{full_name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
132 | + '{first_name}' => sanitize_text_field($invoice->get_first_name()), |
|
133 | + '{last_name}' => sanitize_text_field($invoice->get_last_name()), |
|
134 | + '{email}' => sanitize_email($invoice->get_email()), |
|
135 | + '{invoice_number}' => sanitize_text_field($invoice->get_number()), |
|
136 | + '{invoice_currency}' => sanitize_text_field($invoice->get_currency()), |
|
137 | + '{invoice_total}' => sanitize_text_field(wpinv_price($invoice->get_total(), $invoice->get_currency())), |
|
138 | + '{invoice_link}' => esc_url($invoice->get_view_url()), |
|
139 | + '{invoice_pay_link}' => esc_url($invoice->get_checkout_payment_url()), |
|
140 | + '{invoice_receipt_link}'=> esc_url($invoice->get_receipt_url()), |
|
141 | + '{invoice_date}' => getpaid_format_date_value($invoice->get_date_created()), |
|
142 | + '{invoice_due_date}' => getpaid_format_date_value($invoice->get_due_date(), __('on receipt', 'invoicing')), |
|
143 | + '{invoice_quote}' => sanitize_text_field(strtolower($invoice->get_label())), |
|
144 | + '{invoice_label}' => sanitize_text_field(ucfirst($invoice->get_label())), |
|
145 | + '{invoice_description}' => wp_kses_post($invoice->get_description()), |
|
146 | + '{subscription_name}' => wp_kses_post($invoice->get_subscription_name()), |
|
147 | + '{is_was}' => strtotime($invoice->get_due_date()) < current_time('timestamp') ? __('was', 'invoicing') : __('is', 'invoicing'), |
|
148 | 148 | ); |
149 | 149 | |
150 | - return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
150 | + return apply_filters('getpaid_invoice_email_merge_tags', $merge_tags, $invoice); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
@@ -159,35 +159,35 @@ discard block |
||
159 | 159 | * @param string|array $recipients |
160 | 160 | * @param array $extra_args Extra template args. |
161 | 161 | */ |
162 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
162 | + public function send_email($invoice, $email, $type, $recipients, $extra_args = array()) { |
|
163 | 163 | |
164 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
164 | + do_action('getpaid_before_send_invoice_notification', $type, $invoice, $email); |
|
165 | 165 | |
166 | 166 | $mailer = new GetPaid_Notification_Email_Sender(); |
167 | 167 | $merge_tags = $email->get_merge_tags(); |
168 | 168 | |
169 | 169 | $result = $mailer->send( |
170 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
171 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
172 | - $email->get_content( $merge_tags, $extra_args ), |
|
170 | + apply_filters('getpaid_invoice_email_recipients', wpinv_parse_list($recipients), $email), |
|
171 | + $email->add_merge_tags($email->get_subject(), $merge_tags), |
|
172 | + $email->get_content($merge_tags, $extra_args), |
|
173 | 173 | $email->get_attachments() |
174 | 174 | ); |
175 | 175 | |
176 | 176 | // Maybe send a copy to the admin. |
177 | - if ( $email->include_admin_bcc() ) { |
|
177 | + if ($email->include_admin_bcc()) { |
|
178 | 178 | $mailer->send( |
179 | 179 | wpinv_get_admin_email(), |
180 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
181 | - $email->get_content( $merge_tags ), |
|
180 | + $email->add_merge_tags($email->get_subject() . __(' - ADMIN BCC COPY', 'invoicing'), $merge_tags), |
|
181 | + $email->get_content($merge_tags), |
|
182 | 182 | $email->get_attachments() |
183 | 183 | ); |
184 | 184 | } |
185 | 185 | |
186 | - if ( ! $result ) { |
|
187 | - $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
186 | + if (!$result) { |
|
187 | + $invoice->add_note(sprintf(__('Failed sending %s notification email.', 'invoicing'), sanitize_key($type)), false, false, true); |
|
188 | 188 | } |
189 | 189 | |
190 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
190 | + do_action('getpaid_after_send_invoice_notification', $type, $invoice, $email); |
|
191 | 191 | |
192 | 192 | return $result; |
193 | 193 | } |
@@ -198,14 +198,14 @@ discard block |
||
198 | 198 | * @param array $recipients |
199 | 199 | * @param GetPaid_Notification_Email $email |
200 | 200 | */ |
201 | - public function filter_email_recipients( $recipients, $email ) { |
|
201 | + public function filter_email_recipients($recipients, $email) { |
|
202 | 202 | |
203 | - if ( ! $email->is_admin_email() ) { |
|
203 | + if (!$email->is_admin_email()) { |
|
204 | 204 | $cc = $email->object->get_email_cc(); |
205 | 205 | |
206 | - if ( ! empty( $cc ) ) { |
|
207 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
208 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
206 | + if (!empty($cc)) { |
|
207 | + $cc = array_map('sanitize_email', wpinv_parse_list($cc)); |
|
208 | + $recipients = array_filter(array_unique(array_merge($recipients, $cc))); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | } |
@@ -219,17 +219,17 @@ discard block |
||
219 | 219 | * |
220 | 220 | * @param WPInv_Invoice $invoice |
221 | 221 | */ |
222 | - public function new_invoice( $invoice ) { |
|
222 | + public function new_invoice($invoice) { |
|
223 | 223 | |
224 | 224 | // Only send this email for invoices created via the admin page. |
225 | - if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
225 | + if (!$invoice->is_type('invoice') || $this->is_payment_form_invoice($invoice->get_id())) { |
|
226 | 226 | return; |
227 | 227 | } |
228 | 228 | |
229 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
229 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
230 | 230 | $recipient = wpinv_get_admin_email(); |
231 | 231 | |
232 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
232 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
233 | 233 | |
234 | 234 | } |
235 | 235 | |
@@ -238,12 +238,12 @@ discard block |
||
238 | 238 | * |
239 | 239 | * @param WPInv_Invoice $invoice |
240 | 240 | */ |
241 | - public function cancelled_invoice( $invoice ) { |
|
241 | + public function cancelled_invoice($invoice) { |
|
242 | 242 | |
243 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
243 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
244 | 244 | $recipient = wpinv_get_admin_email(); |
245 | 245 | |
246 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
246 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
247 | 247 | |
248 | 248 | } |
249 | 249 | |
@@ -252,12 +252,12 @@ discard block |
||
252 | 252 | * |
253 | 253 | * @param WPInv_Invoice $invoice |
254 | 254 | */ |
255 | - public function failed_invoice( $invoice ) { |
|
255 | + public function failed_invoice($invoice) { |
|
256 | 256 | |
257 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
257 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
258 | 258 | $recipient = wpinv_get_admin_email(); |
259 | 259 | |
260 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
260 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
261 | 261 | |
262 | 262 | } |
263 | 263 | |
@@ -266,12 +266,12 @@ discard block |
||
266 | 266 | * |
267 | 267 | * @param WPInv_Invoice $invoice |
268 | 268 | */ |
269 | - public function onhold_invoice( $invoice ) { |
|
269 | + public function onhold_invoice($invoice) { |
|
270 | 270 | |
271 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
271 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
272 | 272 | $recipient = $invoice->get_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 processing_invoice( $invoice ) { |
|
283 | + public function processing_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 | |
@@ -294,17 +294,17 @@ discard block |
||
294 | 294 | * |
295 | 295 | * @param WPInv_Invoice $invoice |
296 | 296 | */ |
297 | - public function completed_invoice( $invoice ) { |
|
297 | + public function completed_invoice($invoice) { |
|
298 | 298 | |
299 | 299 | // (Maybe) abort if it is a renewal invoice. |
300 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
300 | + if ($invoice->is_renewal() && !wpinv_get_option('email_completed_invoice_renewal_active', false)) { |
|
301 | 301 | return; |
302 | 302 | } |
303 | 303 | |
304 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
304 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
305 | 305 | $recipient = $invoice->get_email(); |
306 | 306 | |
307 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
307 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
308 | 308 | |
309 | 309 | } |
310 | 310 | |
@@ -313,12 +313,12 @@ discard block |
||
313 | 313 | * |
314 | 314 | * @param WPInv_Invoice $invoice |
315 | 315 | */ |
316 | - public function refunded_invoice( $invoice ) { |
|
316 | + public function refunded_invoice($invoice) { |
|
317 | 317 | |
318 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
318 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
319 | 319 | $recipient = $invoice->get_email(); |
320 | 320 | |
321 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
321 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
322 | 322 | |
323 | 323 | } |
324 | 324 | |
@@ -327,17 +327,17 @@ discard block |
||
327 | 327 | * |
328 | 328 | * @param WPInv_Invoice $invoice |
329 | 329 | */ |
330 | - public function user_invoice( $invoice ) { |
|
330 | + public function user_invoice($invoice) { |
|
331 | 331 | |
332 | 332 | // Only send this email for invoices created via the admin page. |
333 | - if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
333 | + if (!$invoice->is_type('invoice') || $this->is_payment_form_invoice($invoice->get_id())) { |
|
334 | 334 | return; |
335 | 335 | } |
336 | 336 | |
337 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
337 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
338 | 338 | $recipient = $invoice->get_email(); |
339 | 339 | |
340 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
340 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
341 | 341 | |
342 | 342 | } |
343 | 343 | |
@@ -347,8 +347,8 @@ discard block |
||
347 | 347 | * @param int $invoice |
348 | 348 | * @return bool |
349 | 349 | */ |
350 | - public function is_payment_form_invoice( $invoice ) { |
|
351 | - return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
350 | + public function is_payment_form_invoice($invoice) { |
|
351 | + return empty($_GET['getpaid-admin-action']) && 'payment_form' == get_post_meta($invoice, 'wpinv_created_via', true); |
|
352 | 352 | } |
353 | 353 | |
354 | 354 | /** |
@@ -357,12 +357,12 @@ discard block |
||
357 | 357 | * @param WPInv_Invoice $invoice |
358 | 358 | * @param string $note |
359 | 359 | */ |
360 | - public function user_note( $invoice, $note ) { |
|
360 | + public function user_note($invoice, $note) { |
|
361 | 361 | |
362 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
362 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
363 | 363 | $recipient = $invoice->get_email(); |
364 | 364 | |
365 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
365 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient, array('customer_note' => $note)); |
|
366 | 366 | |
367 | 367 | } |
368 | 368 | |
@@ -371,9 +371,9 @@ discard block |
||
371 | 371 | * |
372 | 372 | * @param WPInv_Invoice $invoice |
373 | 373 | */ |
374 | - public function force_send_overdue_notice( $invoice ) { |
|
375 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
376 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
374 | + public function force_send_overdue_notice($invoice) { |
|
375 | + $email = new GetPaid_Notification_Email('overdue', $invoice); |
|
376 | + return $this->send_email($invoice, $email, 'overdue', $invoice->get_email()); |
|
377 | 377 | } |
378 | 378 | |
379 | 379 | /** |
@@ -384,37 +384,37 @@ discard block |
||
384 | 384 | public function overdue() { |
385 | 385 | global $wpdb; |
386 | 386 | |
387 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
387 | + $email = new GetPaid_Notification_Email(__FUNCTION__); |
|
388 | 388 | |
389 | 389 | // Fetch reminder days. |
390 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
390 | + $reminder_days = array_unique(wp_parse_id_list($email->get_option('days'))); |
|
391 | 391 | |
392 | 392 | // Abort if non is set. |
393 | - if ( empty( $reminder_days ) ) { |
|
393 | + if (empty($reminder_days)) { |
|
394 | 394 | return; |
395 | 395 | } |
396 | 396 | |
397 | 397 | // Retrieve date query. |
398 | - $date_query = $this->get_date_query( $reminder_days ); |
|
398 | + $date_query = $this->get_date_query($reminder_days); |
|
399 | 399 | |
400 | 400 | // Invoices table. |
401 | 401 | $table = $wpdb->prefix . 'getpaid_invoices'; |
402 | 402 | |
403 | 403 | // Fetch invoices. |
404 | - $invoices = $wpdb->get_col( |
|
404 | + $invoices = $wpdb->get_col( |
|
405 | 405 | "SELECT posts.ID FROM $wpdb->posts as posts |
406 | 406 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
407 | 407 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query"); |
408 | 408 | |
409 | - foreach ( $invoices as $invoice ) { |
|
409 | + foreach ($invoices as $invoice) { |
|
410 | 410 | |
411 | 411 | // Only send this email for invoices created via the admin page. |
412 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
413 | - $invoice = new WPInv_Invoice( $invoice ); |
|
412 | + if (!$this->is_payment_form_invoice($invoice)) { |
|
413 | + $invoice = new WPInv_Invoice($invoice); |
|
414 | 414 | $email->object = $invoice; |
415 | 415 | |
416 | - if ( $invoice->needs_payment() ) { |
|
417 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
416 | + if ($invoice->needs_payment()) { |
|
417 | + $this->send_email($invoice, $email, __FUNCTION__, $invoice->get_email()); |
|
418 | 418 | } |
419 | 419 | |
420 | 420 | } |
@@ -429,14 +429,14 @@ discard block |
||
429 | 429 | * @param array $reminder_days |
430 | 430 | * @return string |
431 | 431 | */ |
432 | - public function get_date_query( $reminder_days ) { |
|
432 | + public function get_date_query($reminder_days) { |
|
433 | 433 | |
434 | 434 | $date_query = array( |
435 | 435 | 'relation' => 'OR' |
436 | 436 | ); |
437 | 437 | |
438 | - foreach ( $reminder_days as $days ) { |
|
439 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
438 | + foreach ($reminder_days as $days) { |
|
439 | + $date = date_parse(date('Y-m-d', strtotime("-$days days", current_time('timestamp')))); |
|
440 | 440 | |
441 | 441 | $date_query[] = array( |
442 | 442 | 'year' => $date['year'], |
@@ -446,7 +446,7 @@ discard block |
||
446 | 446 | |
447 | 447 | } |
448 | 448 | |
449 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
449 | + $date_query = new WP_Date_Query($date_query, 'invoices.due_date'); |
|
450 | 450 | |
451 | 451 | return $date_query->get_sql(); |
452 | 452 |
@@ -10,67 +10,67 @@ discard block |
||
10 | 10 | * @var array $columns |
11 | 11 | */ |
12 | 12 | |
13 | -defined( 'ABSPATH' ) || exit; |
|
13 | +defined('ABSPATH') || exit; |
|
14 | 14 | |
15 | 15 | ?> |
16 | 16 | |
17 | -<?php do_action( 'getpaid_before_email_line_item', $invoice, $item ); ?> |
|
17 | +<?php do_action('getpaid_before_email_line_item', $invoice, $item); ?> |
|
18 | 18 | |
19 | -<tr class="wpinv_cart_item item-type-<?php echo sanitize_html_class( $item->get_type() ); ?>"> |
|
19 | +<tr class="wpinv_cart_item item-type-<?php echo sanitize_html_class($item->get_type()); ?>"> |
|
20 | 20 | |
21 | - <?php foreach ( array_keys( $columns ) as $column ): ?> |
|
21 | + <?php foreach (array_keys($columns) as $column): ?> |
|
22 | 22 | |
23 | - <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class( $column ); ?>"> |
|
23 | + <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class($column); ?>"> |
|
24 | 24 | |
25 | 25 | <?php |
26 | 26 | |
27 | 27 | // Fires before printing a line item column. |
28 | - do_action( "getpaid_email_line_item_before_$column", $item, $invoice ); |
|
28 | + do_action("getpaid_email_line_item_before_$column", $item, $invoice); |
|
29 | 29 | |
30 | 30 | // Item name. |
31 | - if ( 'name' == $column ) { |
|
31 | + if ('name' == $column) { |
|
32 | 32 | |
33 | 33 | // Display the name. |
34 | - echo '<div class="wpinv_email_cart_item_title">' . sanitize_text_field( $item->get_name() ) . '</div>'; |
|
34 | + echo '<div class="wpinv_email_cart_item_title">' . sanitize_text_field($item->get_name()) . '</div>'; |
|
35 | 35 | |
36 | 36 | // And an optional description. |
37 | 37 | $description = $item->get_description(); |
38 | 38 | |
39 | - if ( ! empty( $description ) ) { |
|
40 | - $description = wp_kses_post( $description ); |
|
39 | + if (!empty($description)) { |
|
40 | + $description = wp_kses_post($description); |
|
41 | 41 | echo "<p class='small'>$description</p>"; |
42 | 42 | } |
43 | 43 | |
44 | 44 | // Price help text |
45 | - $description = getpaid_item_recurring_price_help_text( $item, $invoice->get_currency() ); |
|
46 | - if ( $description ) { |
|
45 | + $description = getpaid_item_recurring_price_help_text($item, $invoice->get_currency()); |
|
46 | + if ($description) { |
|
47 | 47 | echo "<p class='small'>$description</p>"; |
48 | 48 | } |
49 | 49 | |
50 | 50 | } |
51 | 51 | |
52 | 52 | // Item price. |
53 | - if ( 'price' == $column ) { |
|
53 | + if ('price' == $column) { |
|
54 | 54 | |
55 | 55 | // Display the item price (or recurring price if this is a renewal invoice) |
56 | 56 | $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
57 | - echo wpinv_price( $price, $invoice->get_currency() ); |
|
57 | + echo wpinv_price($price, $invoice->get_currency()); |
|
58 | 58 | |
59 | 59 | } |
60 | 60 | |
61 | 61 | // Item quantity. |
62 | - if ( 'quantity' == $column ) { |
|
62 | + if ('quantity' == $column) { |
|
63 | 63 | echo (int) $item->get_quantity(); |
64 | 64 | } |
65 | 65 | |
66 | 66 | // Item sub total. |
67 | - if ( 'subtotal' == $column ) { |
|
67 | + if ('subtotal' == $column) { |
|
68 | 68 | $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
69 | - echo wpinv_price( $subtotal, $invoice->get_currency() ); |
|
69 | + echo wpinv_price($subtotal, $invoice->get_currency()); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | // Fires when printing a line item column. |
73 | - do_action( "getpaid_email_line_item_$column", $item, $invoice ); |
|
73 | + do_action("getpaid_email_line_item_$column", $item, $invoice); |
|
74 | 74 | |
75 | 75 | ?> |
76 | 76 | |
@@ -80,4 +80,4 @@ discard block |
||
80 | 80 | |
81 | 81 | </tr> |
82 | 82 | |
83 | -<?php do_action( 'getpaid_after_email_line_item', $invoice, $item ); ?> |
|
83 | +<?php do_action('getpaid_after_email_line_item', $invoice, $item); ?> |
@@ -8,18 +8,18 @@ discard block |
||
8 | 8 | * @var WPInv_Invoice $invoice |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | -$column_count = count( $columns ); |
|
13 | +$column_count = count($columns); |
|
14 | 14 | ?> |
15 | 15 | |
16 | -<?php do_action( 'wpinv_before_email_items', $invoice ); ?> |
|
16 | +<?php do_action('wpinv_before_email_items', $invoice); ?> |
|
17 | 17 | |
18 | 18 | |
19 | 19 | <div id="wpinv-email-items"> |
20 | 20 | |
21 | 21 | <h3 class="invoice-items-title"> |
22 | - <?php echo sprintf( esc_html__( '%s Items', 'invoicing' ), ucfirst( $invoice->get_invoice_quote_type() )); ?> |
|
22 | + <?php echo sprintf(esc_html__('%s Items', 'invoicing'), ucfirst($invoice->get_invoice_quote_type())); ?> |
|
23 | 23 | </h3> |
24 | 24 | |
25 | 25 | <table class="table table-bordered table-hover"> |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | |
29 | 29 | <tr class="wpinv_cart_header_row"> |
30 | 30 | |
31 | - <?php foreach ( $columns as $key => $label ) : ?> |
|
32 | - <th class="<?php echo 'name' == $key ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class( $key ); ?>"> |
|
33 | - <?php echo sanitize_text_field( $label ); ?> |
|
31 | + <?php foreach ($columns as $key => $label) : ?> |
|
32 | + <th class="<?php echo 'name' == $key ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class($key); ?>"> |
|
33 | + <?php echo sanitize_text_field($label); ?> |
|
34 | 34 | </th> |
35 | 35 | <?php endforeach; ?> |
36 | 36 | |
@@ -43,13 +43,13 @@ discard block |
||
43 | 43 | <?php |
44 | 44 | |
45 | 45 | // Display the item totals. |
46 | - foreach ( $invoice->get_items() as $item ) { |
|
47 | - wpinv_get_template( 'emails/invoice-item.php', compact( 'invoice', 'item', 'columns' ) ); |
|
46 | + foreach ($invoice->get_items() as $item) { |
|
47 | + wpinv_get_template('emails/invoice-item.php', compact('invoice', 'item', 'columns')); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | // Display the fee totals. |
51 | - foreach ( $invoice->get_fees() as $fee ) { |
|
52 | - wpinv_get_template( 'emails/fee-item.php', compact( 'invoice', 'fee', 'columns' ) ); |
|
51 | + foreach ($invoice->get_fees() as $fee) { |
|
52 | + wpinv_get_template('emails/fee-item.php', compact('invoice', 'fee', 'columns')); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | ?> |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | </tbody> |
58 | 58 | |
59 | 59 | <tfoot> |
60 | - <?php wpinv_get_template( 'emails/invoice-totals.php', compact( 'invoice', 'column_count' ) ); ?> |
|
60 | + <?php wpinv_get_template('emails/invoice-totals.php', compact('invoice', 'column_count')); ?> |
|
61 | 61 | </tfoot> |
62 | 62 | |
63 | 63 | </table> |
@@ -8,45 +8,45 @@ discard block |
||
8 | 8 | * @var WPInv_Invoice $invoice |
9 | 9 | * @var array $columns |
10 | 10 | */ |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | -$meta_data = getpaid_get_invoice_meta( $invoice ); |
|
13 | +$meta_data = getpaid_get_invoice_meta($invoice); |
|
14 | 14 | |
15 | -if ( isset( $meta_data['status'] ) ) { |
|
15 | +if (isset($meta_data['status'])) { |
|
16 | 16 | $meta_data['status']['value'] = $invoice->get_status_nicename(); |
17 | 17 | } |
18 | 18 | |
19 | -do_action( 'wpinv_email_before_invoice_details', $invoice, $sent_to_admin ); |
|
19 | +do_action('wpinv_email_before_invoice_details', $invoice, $sent_to_admin); |
|
20 | 20 | |
21 | 21 | ?> |
22 | 22 | |
23 | 23 | <div id="wpinv-email-details"> |
24 | 24 | |
25 | 25 | <h3 class="invoice-details-title"> |
26 | - <?php echo sprintf( esc_html__( '%s Details', 'invoicing' ), ucfirst( $invoice->get_invoice_quote_type() )); ?> |
|
26 | + <?php echo sprintf(esc_html__('%s Details', 'invoicing'), ucfirst($invoice->get_invoice_quote_type())); ?> |
|
27 | 27 | </h3> |
28 | 28 | |
29 | 29 | <table class="table table-bordered table-sm"> |
30 | 30 | |
31 | - <?php foreach ( $meta_data as $key => $data ) : ?> |
|
31 | + <?php foreach ($meta_data as $key => $data) : ?> |
|
32 | 32 | |
33 | - <?php if ( ! empty( $data['value'] ) ) : ?> |
|
33 | + <?php if (!empty($data['value'])) : ?> |
|
34 | 34 | |
35 | - <?php do_action( "getpaid_before_email_details_$key", $invoice, $data ); ?> |
|
35 | + <?php do_action("getpaid_before_email_details_$key", $invoice, $data); ?> |
|
36 | 36 | |
37 | - <tr class="getpaid-email-details-<?php echo sanitize_html_class( $key ); ?>"> |
|
37 | + <tr class="getpaid-email-details-<?php echo sanitize_html_class($key); ?>"> |
|
38 | 38 | |
39 | 39 | <td class="getpaid-lable-td"> |
40 | - <?php echo sanitize_text_field( $data['label'] ); ?> |
|
40 | + <?php echo sanitize_text_field($data['label']); ?> |
|
41 | 41 | </td> |
42 | 42 | |
43 | 43 | <td class="getpaid-value-td"> |
44 | - <span class="getpaid-invoice-meta-<?php echo sanitize_html_class( $key ); ?>-value"><?php echo wp_kses_post( $data['value'] ); ?></span> |
|
44 | + <span class="getpaid-invoice-meta-<?php echo sanitize_html_class($key); ?>-value"><?php echo wp_kses_post($data['value']); ?></span> |
|
45 | 45 | </td> |
46 | 46 | |
47 | 47 | </tr> |
48 | 48 | |
49 | - <?php do_action( "getpaid_after_email_details_$key", $invoice, $data ); ?> |
|
49 | + <?php do_action("getpaid_after_email_details_$key", $invoice, $data); ?> |
|
50 | 50 | |
51 | 51 | <?php endif; ?> |
52 | 52 | |
@@ -56,4 +56,4 @@ discard block |
||
56 | 56 | |
57 | 57 | </div> |
58 | 58 | |
59 | -<?php do_action( 'wpinv_email_after_invoice_details', $invoice, $sent_to_admin ); ?> |
|
59 | +<?php do_action('wpinv_email_after_invoice_details', $invoice, $sent_to_admin); ?> |
@@ -40,86 +40,86 @@ discard block |
||
40 | 40 | <tr class="wpinv-item wpinv-item-<?php echo $invoice_status = $invoice->get_status(); ?>"> |
41 | 41 | <?php |
42 | 42 | |
43 | - foreach ( wpinv_get_user_invoices_columns( $post_type ) as $column_id => $column_name ) : |
|
43 | + foreach ( wpinv_get_user_invoices_columns( $post_type ) as $column_id => $column_name ) : |
|
44 | 44 | |
45 | - $column_id = sanitize_html_class( $column_id ); |
|
46 | - $class = empty( $column_name['class'] ) ? '' : sanitize_html_class( $column_name['class'] ); |
|
45 | + $column_id = sanitize_html_class( $column_id ); |
|
46 | + $class = empty( $column_name['class'] ) ? '' : sanitize_html_class( $column_name['class'] ); |
|
47 | 47 | |
48 | - echo "<td class='$column_id $class'>"; |
|
49 | - switch ( $column_id ) { |
|
48 | + echo "<td class='$column_id $class'>"; |
|
49 | + switch ( $column_id ) { |
|
50 | 50 | |
51 | - case 'invoice-number': |
|
52 | - echo wpinv_invoice_link( $invoice ); |
|
53 | - break; |
|
51 | + case 'invoice-number': |
|
52 | + echo wpinv_invoice_link( $invoice ); |
|
53 | + break; |
|
54 | 54 | |
55 | - case 'created-date': |
|
56 | - echo getpaid_format_date_value( $invoice->get_date_created() ); |
|
57 | - break; |
|
55 | + case 'created-date': |
|
56 | + echo getpaid_format_date_value( $invoice->get_date_created() ); |
|
57 | + break; |
|
58 | 58 | |
59 | - case 'payment-date': |
|
59 | + case 'payment-date': |
|
60 | 60 | |
61 | - if ( $invoice->needs_payment() ) { |
|
62 | - echo "—"; |
|
63 | - } else { |
|
64 | - echo getpaid_format_date_value( $invoice->get_date_completed() ); |
|
65 | - } |
|
61 | + if ( $invoice->needs_payment() ) { |
|
62 | + echo "—"; |
|
63 | + } else { |
|
64 | + echo getpaid_format_date_value( $invoice->get_date_completed() ); |
|
65 | + } |
|
66 | 66 | |
67 | - break; |
|
67 | + break; |
|
68 | 68 | |
69 | - case 'invoice-status': |
|
70 | - echo $invoice->get_status_label_html(); |
|
69 | + case 'invoice-status': |
|
70 | + echo $invoice->get_status_label_html(); |
|
71 | 71 | |
72 | - break; |
|
72 | + break; |
|
73 | 73 | |
74 | - case 'invoice-total': |
|
75 | - echo wpinv_price( $invoice->get_total(), $invoice->get_currency() ); |
|
74 | + case 'invoice-total': |
|
75 | + echo wpinv_price( $invoice->get_total(), $invoice->get_currency() ); |
|
76 | 76 | |
77 | - break; |
|
77 | + break; |
|
78 | 78 | |
79 | - case 'invoice-actions': |
|
79 | + case 'invoice-actions': |
|
80 | 80 | |
81 | - $actions = array( |
|
81 | + $actions = array( |
|
82 | 82 | |
83 | - 'pay' => array( |
|
84 | - 'url' => $invoice->get_checkout_payment_url(), |
|
85 | - 'name' => __( 'Pay Now', 'invoicing' ), |
|
83 | + 'pay' => array( |
|
84 | + 'url' => $invoice->get_checkout_payment_url(), |
|
85 | + 'name' => __( 'Pay Now', 'invoicing' ), |
|
86 | 86 | 'class' => 'btn-success' |
87 | - ), |
|
87 | + ), |
|
88 | 88 | |
89 | 89 | 'print' => array( |
90 | - 'url' => $invoice->get_view_url(), |
|
91 | - 'name' => __( 'View', 'invoicing' ), |
|
90 | + 'url' => $invoice->get_view_url(), |
|
91 | + 'name' => __( 'View', 'invoicing' ), |
|
92 | 92 | 'class' => 'btn-secondary', |
93 | 93 | 'attrs' => 'target="_blank"' |
94 | - ) |
|
95 | - ); |
|
94 | + ) |
|
95 | + ); |
|
96 | 96 | |
97 | - if ( ! $invoice->needs_payment() ) { |
|
98 | - unset( $actions['pay'] ); |
|
99 | - } |
|
97 | + if ( ! $invoice->needs_payment() ) { |
|
98 | + unset( $actions['pay'] ); |
|
99 | + } |
|
100 | 100 | |
101 | - $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice, $post_type ); |
|
101 | + $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice, $post_type ); |
|
102 | 102 | |
103 | - foreach ( $actions as $key => $action ) { |
|
104 | - $class = !empty($action['class']) ? sanitize_html_class($action['class']) : ''; |
|
105 | - echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm btn-block ' . $class . ' ' . sanitize_html_class( $key ) . '" ' . ( !empty($action['attrs']) ? $action['attrs'] : '' ) . '>' . $action['name'] . '</a>'; |
|
106 | - } |
|
103 | + foreach ( $actions as $key => $action ) { |
|
104 | + $class = !empty($action['class']) ? sanitize_html_class($action['class']) : ''; |
|
105 | + echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm btn-block ' . $class . ' ' . sanitize_html_class( $key ) . '" ' . ( !empty($action['attrs']) ? $action['attrs'] : '' ) . '>' . $action['name'] . '</a>'; |
|
106 | + } |
|
107 | 107 | |
108 | - break; |
|
108 | + break; |
|
109 | 109 | |
110 | - default: |
|
111 | - do_action( "wpinv_user_invoices_column_$column_id", $invoice ); |
|
112 | - break; |
|
110 | + default: |
|
111 | + do_action( "wpinv_user_invoices_column_$column_id", $invoice ); |
|
112 | + break; |
|
113 | 113 | |
114 | 114 | |
115 | - } |
|
115 | + } |
|
116 | 116 | |
117 | - do_action( "wpinv_user_invoices_column_after_$column_id", $invoice ); |
|
117 | + do_action( "wpinv_user_invoices_column_after_$column_id", $invoice ); |
|
118 | 118 | |
119 | - echo '</td>'; |
|
119 | + echo '</td>'; |
|
120 | 120 | |
121 | - endforeach; |
|
122 | - ?> |
|
121 | + endforeach; |
|
122 | + ?> |
|
123 | 123 | </tr> |
124 | 124 | |
125 | 125 | <?php endforeach; ?> |
@@ -132,14 +132,14 @@ discard block |
||
132 | 132 | <?php if ( 1 < $invoices->max_num_pages ) : ?> |
133 | 133 | <div class="invoicing-Pagination"> |
134 | 134 | <?php |
135 | - $big = 999999; |
|
136 | - |
|
137 | - echo paginate_links( array( |
|
138 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
139 | - 'format' => '?paged=%#%', |
|
140 | - 'total' => $invoices->max_num_pages, |
|
141 | - ) ); |
|
142 | - ?> |
|
135 | + $big = 999999; |
|
136 | + |
|
137 | + echo paginate_links( array( |
|
138 | + 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
139 | + 'format' => '?paged=%#%', |
|
140 | + 'total' => $invoices->max_num_pages, |
|
141 | + ) ); |
|
142 | + ?> |
|
143 | 143 | </div> |
144 | 144 | <?php endif; ?> |
145 | 145 |
@@ -7,25 +7,25 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | // Current page. |
13 | -$current_page = empty( $_GET[ 'page' ] ) ? 1 : absint( $_GET[ 'page' ] ); |
|
13 | +$current_page = empty($_GET['page']) ? 1 : absint($_GET['page']); |
|
14 | 14 | |
15 | 15 | // Fires before displaying user invoices. |
16 | -do_action( 'wpinv_before_user_invoices', $invoices->invoices, $invoices->total, $invoices->max_num_pages, $post_type ); |
|
16 | +do_action('wpinv_before_user_invoices', $invoices->invoices, $invoices->total, $invoices->max_num_pages, $post_type); |
|
17 | 17 | |
18 | 18 | ?> |
19 | 19 | |
20 | - <table class="table table-bordered table-hover getpaid-user-invoices <?php echo sanitize_html_class( $post_type ); ?>"> |
|
20 | + <table class="table table-bordered table-hover getpaid-user-invoices <?php echo sanitize_html_class($post_type); ?>"> |
|
21 | 21 | |
22 | 22 | |
23 | 23 | <thead> |
24 | 24 | <tr> |
25 | 25 | |
26 | - <?php foreach ( wpinv_get_user_invoices_columns( $post_type ) as $column_id => $column_name ) : ?> |
|
27 | - <th class="<?php echo sanitize_html_class( $column_id ); ?> <?php echo ( ! empty( $column_name['class'] ) ? sanitize_html_class( $column_name['class'] ) : '');?> border-bottom-0"> |
|
28 | - <span class="nobr"><?php echo esc_html( $column_name['title'] ); ?></span> |
|
26 | + <?php foreach (wpinv_get_user_invoices_columns($post_type) as $column_id => $column_name) : ?> |
|
27 | + <th class="<?php echo sanitize_html_class($column_id); ?> <?php echo (!empty($column_name['class']) ? sanitize_html_class($column_name['class']) : ''); ?> border-bottom-0"> |
|
28 | + <span class="nobr"><?php echo esc_html($column_name['title']); ?></span> |
|
29 | 29 | </th> |
30 | 30 | <?php endforeach; ?> |
31 | 31 | |
@@ -35,33 +35,33 @@ discard block |
||
35 | 35 | |
36 | 36 | |
37 | 37 | <tbody> |
38 | - <?php foreach ( $invoices->invoices as $invoice ) : ?> |
|
38 | + <?php foreach ($invoices->invoices as $invoice) : ?> |
|
39 | 39 | |
40 | 40 | <tr class="wpinv-item wpinv-item-<?php echo $invoice_status = $invoice->get_status(); ?>"> |
41 | 41 | <?php |
42 | 42 | |
43 | - foreach ( wpinv_get_user_invoices_columns( $post_type ) as $column_id => $column_name ) : |
|
43 | + foreach (wpinv_get_user_invoices_columns($post_type) as $column_id => $column_name) : |
|
44 | 44 | |
45 | - $column_id = sanitize_html_class( $column_id ); |
|
46 | - $class = empty( $column_name['class'] ) ? '' : sanitize_html_class( $column_name['class'] ); |
|
45 | + $column_id = sanitize_html_class($column_id); |
|
46 | + $class = empty($column_name['class']) ? '' : sanitize_html_class($column_name['class']); |
|
47 | 47 | |
48 | 48 | echo "<td class='$column_id $class'>"; |
49 | - switch ( $column_id ) { |
|
49 | + switch ($column_id) { |
|
50 | 50 | |
51 | 51 | case 'invoice-number': |
52 | - echo wpinv_invoice_link( $invoice ); |
|
52 | + echo wpinv_invoice_link($invoice); |
|
53 | 53 | break; |
54 | 54 | |
55 | 55 | case 'created-date': |
56 | - echo getpaid_format_date_value( $invoice->get_date_created() ); |
|
56 | + echo getpaid_format_date_value($invoice->get_date_created()); |
|
57 | 57 | break; |
58 | 58 | |
59 | 59 | case 'payment-date': |
60 | 60 | |
61 | - if ( $invoice->needs_payment() ) { |
|
61 | + if ($invoice->needs_payment()) { |
|
62 | 62 | echo "—"; |
63 | 63 | } else { |
64 | - echo getpaid_format_date_value( $invoice->get_date_completed() ); |
|
64 | + echo getpaid_format_date_value($invoice->get_date_completed()); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | break; |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | break; |
73 | 73 | |
74 | 74 | case 'invoice-total': |
75 | - echo wpinv_price( $invoice->get_total(), $invoice->get_currency() ); |
|
75 | + echo wpinv_price($invoice->get_total(), $invoice->get_currency()); |
|
76 | 76 | |
77 | 77 | break; |
78 | 78 | |
@@ -82,39 +82,39 @@ discard block |
||
82 | 82 | |
83 | 83 | 'pay' => array( |
84 | 84 | 'url' => $invoice->get_checkout_payment_url(), |
85 | - 'name' => __( 'Pay Now', 'invoicing' ), |
|
85 | + 'name' => __('Pay Now', 'invoicing'), |
|
86 | 86 | 'class' => 'btn-success' |
87 | 87 | ), |
88 | 88 | |
89 | 89 | 'print' => array( |
90 | 90 | 'url' => $invoice->get_view_url(), |
91 | - 'name' => __( 'View', 'invoicing' ), |
|
91 | + 'name' => __('View', 'invoicing'), |
|
92 | 92 | 'class' => 'btn-secondary', |
93 | 93 | 'attrs' => 'target="_blank"' |
94 | 94 | ) |
95 | 95 | ); |
96 | 96 | |
97 | - if ( ! $invoice->needs_payment() ) { |
|
98 | - unset( $actions['pay'] ); |
|
97 | + if (!$invoice->needs_payment()) { |
|
98 | + unset($actions['pay']); |
|
99 | 99 | } |
100 | 100 | |
101 | - $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice, $post_type ); |
|
101 | + $actions = apply_filters('wpinv_user_invoices_actions', $actions, $invoice, $post_type); |
|
102 | 102 | |
103 | - foreach ( $actions as $key => $action ) { |
|
103 | + foreach ($actions as $key => $action) { |
|
104 | 104 | $class = !empty($action['class']) ? sanitize_html_class($action['class']) : ''; |
105 | - echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm btn-block ' . $class . ' ' . sanitize_html_class( $key ) . '" ' . ( !empty($action['attrs']) ? $action['attrs'] : '' ) . '>' . $action['name'] . '</a>'; |
|
105 | + echo '<a href="' . esc_url($action['url']) . '" class="btn btn-sm btn-block ' . $class . ' ' . sanitize_html_class($key) . '" ' . (!empty($action['attrs']) ? $action['attrs'] : '') . '>' . $action['name'] . '</a>'; |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | break; |
109 | 109 | |
110 | 110 | default: |
111 | - do_action( "wpinv_user_invoices_column_$column_id", $invoice ); |
|
111 | + do_action("wpinv_user_invoices_column_$column_id", $invoice); |
|
112 | 112 | break; |
113 | 113 | |
114 | 114 | |
115 | 115 | } |
116 | 116 | |
117 | - do_action( "wpinv_user_invoices_column_after_$column_id", $invoice ); |
|
117 | + do_action("wpinv_user_invoices_column_after_$column_id", $invoice); |
|
118 | 118 | |
119 | 119 | echo '</td>'; |
120 | 120 | |
@@ -127,20 +127,20 @@ discard block |
||
127 | 127 | </tbody> |
128 | 128 | </table> |
129 | 129 | |
130 | - <?php do_action( 'wpinv_before_user_invoices_pagination' ); ?> |
|
130 | + <?php do_action('wpinv_before_user_invoices_pagination'); ?> |
|
131 | 131 | |
132 | - <?php if ( 1 < $invoices->max_num_pages ) : ?> |
|
132 | + <?php if (1 < $invoices->max_num_pages) : ?> |
|
133 | 133 | <div class="invoicing-Pagination"> |
134 | 134 | <?php |
135 | 135 | $big = 999999; |
136 | 136 | |
137 | - echo paginate_links( array( |
|
138 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
137 | + echo paginate_links(array( |
|
138 | + 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), |
|
139 | 139 | 'format' => '?paged=%#%', |
140 | 140 | 'total' => $invoices->max_num_pages, |
141 | - ) ); |
|
141 | + )); |
|
142 | 142 | ?> |
143 | 143 | </div> |
144 | 144 | <?php endif; ?> |
145 | 145 | |
146 | -<?php do_action( 'wpinv_after_user_invoices', $invoices->invoices, $invoices->total, $invoices->max_num_pages, $post_type ); ?> |
|
146 | +<?php do_action('wpinv_after_user_invoices', $invoices->invoices, $invoices->total, $invoices->max_num_pages, $post_type); ?> |
@@ -10,61 +10,61 @@ discard block |
||
10 | 10 | * @var array $columns |
11 | 11 | */ |
12 | 12 | |
13 | -defined( 'ABSPATH' ) || exit; |
|
13 | +defined('ABSPATH') || exit; |
|
14 | 14 | |
15 | -do_action( 'getpaid_before_invoice_line_item', $invoice, $item ); |
|
15 | +do_action('getpaid_before_invoice_line_item', $invoice, $item); |
|
16 | 16 | |
17 | 17 | ?> |
18 | 18 | |
19 | -<div class='getpaid-invoice-item item-<?php echo (int) $item->get_id(); ?> item-type-<?php echo sanitize_html_class( $item->get_type() ); ?> border-bottom'> |
|
19 | +<div class='getpaid-invoice-item item-<?php echo (int) $item->get_id(); ?> item-type-<?php echo sanitize_html_class($item->get_type()); ?> border-bottom'> |
|
20 | 20 | |
21 | 21 | <div class="form-row"> |
22 | 22 | |
23 | - <?php foreach ( array_keys( $columns ) as $column ): ?> |
|
23 | + <?php foreach (array_keys($columns) as $column): ?> |
|
24 | 24 | |
25 | - <div class="<?php echo 'name' == $column ? 'col-12 col-sm-6' : 'col-12 col-sm' ?> getpaid-invoice-item-<?php echo sanitize_html_class( $column ); ?>"> |
|
25 | + <div class="<?php echo 'name' == $column ? 'col-12 col-sm-6' : 'col-12 col-sm' ?> getpaid-invoice-item-<?php echo sanitize_html_class($column); ?>"> |
|
26 | 26 | |
27 | 27 | <?php |
28 | 28 | |
29 | 29 | // Fires before printing a line item column. |
30 | - do_action( "getpaid_invoice_line_item_before_$column", $item, $invoice ); |
|
30 | + do_action("getpaid_invoice_line_item_before_$column", $item, $invoice); |
|
31 | 31 | |
32 | 32 | // Item name. |
33 | - if ( 'name' == $column ) { |
|
33 | + if ('name' == $column) { |
|
34 | 34 | |
35 | 35 | // Display the name. |
36 | - echo '<div class="mb-1">' . sanitize_text_field( $item->get_name() ) . '</div>'; |
|
36 | + echo '<div class="mb-1">' . sanitize_text_field($item->get_name()) . '</div>'; |
|
37 | 37 | |
38 | 38 | // And an optional description. |
39 | 39 | $description = $item->get_description(); |
40 | 40 | |
41 | - if ( ! empty( $description ) ) { |
|
42 | - $description = wp_kses_post( $description ); |
|
41 | + if (!empty($description)) { |
|
42 | + $description = wp_kses_post($description); |
|
43 | 43 | echo "<small class='form-text text-muted pr-2 m-0'>$description</small>"; |
44 | 44 | } |
45 | 45 | |
46 | 46 | // Price help text. |
47 | - $description = getpaid_item_recurring_price_help_text( $item, $invoice->get_currency() ); |
|
48 | - if ( $description ) { |
|
47 | + $description = getpaid_item_recurring_price_help_text($item, $invoice->get_currency()); |
|
48 | + if ($description) { |
|
49 | 49 | echo "<small class='form-text text-muted pr-2 m-0'>$description</small>"; |
50 | 50 | } |
51 | 51 | |
52 | 52 | // Fires before printing the line item actions. |
53 | - do_action( "getpaid_before_invoice_line_item_actions", $item, $invoice ); |
|
53 | + do_action("getpaid_before_invoice_line_item_actions", $item, $invoice); |
|
54 | 54 | |
55 | - $actions = apply_filters( 'getpaid-invoice-page-line-item-actions', array(), $item, $invoice ); |
|
55 | + $actions = apply_filters('getpaid-invoice-page-line-item-actions', array(), $item, $invoice); |
|
56 | 56 | |
57 | - if ( ! empty( $actions ) ) { |
|
57 | + if (!empty($actions)) { |
|
58 | 58 | |
59 | - $sanitized = array(); |
|
60 | - foreach ( $actions as $key => $action ) { |
|
61 | - $key = sanitize_html_class( $key ); |
|
62 | - $action = wp_kses_post( $action ); |
|
59 | + $sanitized = array(); |
|
60 | + foreach ($actions as $key => $action) { |
|
61 | + $key = sanitize_html_class($key); |
|
62 | + $action = wp_kses_post($action); |
|
63 | 63 | $sanitized[] = "<span class='$key'>$action</span>"; |
64 | 64 | } |
65 | 65 | |
66 | 66 | echo "<small class='form-text getpaid-line-item-actions'>"; |
67 | - echo implode( ' | ', $sanitized ); |
|
67 | + echo implode(' | ', $sanitized); |
|
68 | 68 | echo '</small>'; |
69 | 69 | |
70 | 70 | } |
@@ -72,30 +72,30 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | // Item price. |
75 | - if ( 'price' == $column ) { |
|
75 | + if ('price' == $column) { |
|
76 | 76 | |
77 | 77 | // Display the item price (or recurring price if this is a renewal invoice) |
78 | 78 | $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
79 | - echo wpinv_price( $price, $invoice->get_currency() ); |
|
79 | + echo wpinv_price($price, $invoice->get_currency()); |
|
80 | 80 | |
81 | 81 | } |
82 | 82 | |
83 | 83 | // Item quantity. |
84 | - if ( 'quantity' == $column ) { |
|
84 | + if ('quantity' == $column) { |
|
85 | 85 | echo (int) $item->get_quantity(); |
86 | 86 | } |
87 | 87 | |
88 | 88 | // Item sub total. |
89 | - if ( 'subtotal' == $column ) { |
|
89 | + if ('subtotal' == $column) { |
|
90 | 90 | $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
91 | - echo wpinv_price( $subtotal, $invoice->get_currency() ); |
|
91 | + echo wpinv_price($subtotal, $invoice->get_currency()); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | // Fires when printing a line item column. |
95 | - do_action( "getpaid_invoice_line_item_$column", $item, $invoice ); |
|
95 | + do_action("getpaid_invoice_line_item_$column", $item, $invoice); |
|
96 | 96 | |
97 | 97 | // Fires after printing a line item column. |
98 | - do_action( "getpaid_invoice_line_item_after_$column", $item, $invoice ); |
|
98 | + do_action("getpaid_invoice_line_item_after_$column", $item, $invoice); |
|
99 | 99 | |
100 | 100 | ?> |
101 | 101 |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * @var WPInv_Invoice $invoice |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | 13 | ?> |
14 | 14 | |
@@ -21,43 +21,43 @@ discard block |
||
21 | 21 | $actions[] = sprintf( |
22 | 22 | '<a href="javascript:void(0)" class="btn btn-sm m-1 d-inline-block btn-secondary invoice-action-print d-none d-lg-inline-block" onclick="window.print();">%s</a>', |
23 | 23 | sprintf( |
24 | - __( 'Print %s', 'invoicing' ), |
|
25 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
24 | + __('Print %s', 'invoicing'), |
|
25 | + ucfirst($invoice->get_invoice_quote_type()) |
|
26 | 26 | ) |
27 | 27 | ); |
28 | 28 | |
29 | - if ( is_user_logged_in() ) { |
|
29 | + if (is_user_logged_in()) { |
|
30 | 30 | |
31 | 31 | $actions[] = sprintf( |
32 | 32 | '<a href="%s" class="btn btn-sm btn-secondary m-1 d-inline-block invoice-action-history">%s</a>', |
33 | - esc_url( wpinv_get_history_page_uri( $invoice->get_post_type() ) ), |
|
33 | + esc_url(wpinv_get_history_page_uri($invoice->get_post_type())), |
|
34 | 34 | sprintf( |
35 | - __( '%s History', 'invoicing' ), |
|
36 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
35 | + __('%s History', 'invoicing'), |
|
36 | + ucfirst($invoice->get_invoice_quote_type()) |
|
37 | 37 | ) |
38 | 38 | ); |
39 | 39 | |
40 | 40 | } |
41 | 41 | |
42 | - if ( wpinv_current_user_can_manage_invoicing() ) { |
|
42 | + if (wpinv_current_user_can_manage_invoicing()) { |
|
43 | 43 | |
44 | 44 | $actions[] = sprintf( |
45 | 45 | '<a href="%s" class="btn btn-sm btn-secondary m-1 d-inline-block invoice-action-edit">%s</a>', |
46 | - esc_url( get_edit_post_link( $invoice->get_id() ) ), |
|
46 | + esc_url(get_edit_post_link($invoice->get_id())), |
|
47 | 47 | sprintf( |
48 | - __( 'Edit %s', 'invoicing' ), |
|
49 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
48 | + __('Edit %s', 'invoicing'), |
|
49 | + ucfirst($invoice->get_invoice_quote_type()) |
|
50 | 50 | ) |
51 | 51 | ); |
52 | 52 | |
53 | 53 | } |
54 | 54 | |
55 | - $actions = apply_filters( 'getpaid_invoice_header_right_actions_array', $actions, $invoice ); |
|
56 | - echo implode( '', $actions ); |
|
55 | + $actions = apply_filters('getpaid_invoice_header_right_actions_array', $actions, $invoice); |
|
56 | + echo implode('', $actions); |
|
57 | 57 | |
58 | 58 | ?> |
59 | 59 | |
60 | - <?php do_action('wpinv_invoice_display_right_actions', $invoice ); ?> |
|
60 | + <?php do_action('wpinv_invoice_display_right_actions', $invoice); ?> |
|
61 | 61 | </div> |
62 | 62 | |
63 | 63 | <?php |