@@ -14,62 +14,62 @@ 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 | - */ |
|
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 | 28 | public $admin_url; |
29 | 29 | |
30 | 30 | /** |
31 | - * Class constructor. |
|
32 | - */ |
|
33 | - public function __construct(){ |
|
31 | + * Class constructor. |
|
32 | + */ |
|
33 | + public function __construct(){ |
|
34 | 34 | |
35 | 35 | $this->admin_path = plugin_dir_path( __FILE__ ); |
36 | 36 | $this->admin_url = plugins_url( '/', __FILE__ ); |
37 | 37 | |
38 | 38 | if ( is_admin() ) { |
39 | - $this->init_admin_hooks(); |
|
39 | + $this->init_admin_hooks(); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
45 | - * Init action and filter hooks |
|
46 | - * |
|
47 | - */ |
|
48 | - private function init_admin_hooks() { |
|
45 | + * Init action and filter hooks |
|
46 | + * |
|
47 | + */ |
|
48 | + private function init_admin_hooks() { |
|
49 | 49 | add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ) ); |
50 | 50 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
51 | 51 | add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
52 | 52 | add_action( 'admin_init', array( $this, 'activation_redirect') ); |
53 | 53 | add_action( 'admin_init', array( $this, 'maybe_do_admin_action') ); |
54 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
55 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
56 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
57 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
54 | + add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
55 | + add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
56 | + add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
57 | + do_action( 'getpaid_init_admin_hooks', $this ); |
|
58 | 58 | |
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | - * Register admin scripts |
|
63 | - * |
|
64 | - */ |
|
65 | - public function enqeue_scripts() { |
|
62 | + * Register admin scripts |
|
63 | + * |
|
64 | + */ |
|
65 | + public function enqeue_scripts() { |
|
66 | 66 | global $current_screen, $pagenow; |
67 | 67 | |
68 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
69 | - $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
68 | + $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
69 | + $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
70 | 70 | |
71 | 71 | if ( ! empty( $current_screen->post_type ) ) { |
72 | - $page = $current_screen->post_type; |
|
72 | + $page = $current_screen->post_type; |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | // General styles. |
@@ -93,30 +93,30 @@ discard block |
||
93 | 93 | } |
94 | 94 | |
95 | 95 | // Payment form scripts. |
96 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
96 | + if ( 'wpi_payment_form' == $page && $editing ) { |
|
97 | 97 | $this->load_payment_form_scripts(); |
98 | 98 | } |
99 | 99 | |
100 | 100 | if ( $page == 'wpinv-subscriptions' ) { |
101 | - wp_register_script( 'wpinv-sub-admin-script', WPINV_PLUGIN_URL . 'assets/js/subscriptions.js', array( 'wpinv-admin-script' ), WPINV_VERSION ); |
|
102 | - wp_enqueue_script( 'wpinv-sub-admin-script' ); |
|
103 | - } |
|
101 | + wp_register_script( 'wpinv-sub-admin-script', WPINV_PLUGIN_URL . 'assets/js/subscriptions.js', array( 'wpinv-admin-script' ), WPINV_VERSION ); |
|
102 | + wp_enqueue_script( 'wpinv-sub-admin-script' ); |
|
103 | + } |
|
104 | 104 | |
105 | - if ( $page == 'wpinv-reports' ) { |
|
106 | - wp_enqueue_script( 'jquery-flot', WPINV_PLUGIN_URL . 'assets/js/jquery.flot.min.js', array( 'jquery' ), '0.7' ); |
|
107 | - } |
|
105 | + if ( $page == 'wpinv-reports' ) { |
|
106 | + wp_enqueue_script( 'jquery-flot', WPINV_PLUGIN_URL . 'assets/js/jquery.flot.min.js', array( 'jquery' ), '0.7' ); |
|
107 | + } |
|
108 | 108 | |
109 | - if ( $page == 'wpinv-subscriptions' ) { |
|
110 | - wp_enqueue_script( 'postbox' ); |
|
111 | - } |
|
109 | + if ( $page == 'wpinv-subscriptions' ) { |
|
110 | + wp_enqueue_script( 'postbox' ); |
|
111 | + } |
|
112 | 112 | |
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
116 | - * Returns admin js translations. |
|
117 | - * |
|
118 | - */ |
|
119 | - protected function get_admin_i18() { |
|
116 | + * Returns admin js translations. |
|
117 | + * |
|
118 | + */ |
|
119 | + protected function get_admin_i18() { |
|
120 | 120 | global $post; |
121 | 121 | |
122 | 122 | return array( |
@@ -157,32 +157,32 @@ discard block |
||
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
160 | - * Loads payment form js. |
|
161 | - * |
|
162 | - */ |
|
163 | - protected function load_payment_form_scripts() { |
|
160 | + * Loads payment form js. |
|
161 | + * |
|
162 | + */ |
|
163 | + protected function load_payment_form_scripts() { |
|
164 | 164 | global $post; |
165 | 165 | |
166 | 166 | wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.js', array(), WPINV_VERSION ); |
167 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
168 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
167 | + wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
168 | + wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
169 | 169 | |
170 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
171 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable' ), $version ); |
|
170 | + $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
171 | + wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable' ), $version ); |
|
172 | 172 | |
173 | - wp_localize_script( |
|
173 | + wp_localize_script( |
|
174 | 174 | 'wpinv-admin-payment-form-script', |
175 | 175 | 'wpinvPaymentFormAdmin', |
176 | 176 | array( |
177 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
178 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
179 | - 'currency' => wpinv_currency_symbol(), |
|
180 | - 'position' => wpinv_currency_position(), |
|
181 | - 'decimals' => (int) wpinv_decimals(), |
|
182 | - 'thousands_sep' => wpinv_thousands_separator(), |
|
183 | - 'decimals_sep' => wpinv_decimal_separator(), |
|
184 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
185 | - 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
177 | + 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
178 | + 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
179 | + 'currency' => wpinv_currency_symbol(), |
|
180 | + 'position' => wpinv_currency_position(), |
|
181 | + 'decimals' => (int) wpinv_decimals(), |
|
182 | + 'thousands_sep' => wpinv_thousands_separator(), |
|
183 | + 'decimals_sep' => wpinv_decimal_separator(), |
|
184 | + 'form_items' => gepaid_get_form_items( $post->ID ), |
|
185 | + 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
186 | 186 | ) |
187 | 187 | ); |
188 | 188 | |
@@ -191,20 +191,20 @@ discard block |
||
191 | 191 | } |
192 | 192 | |
193 | 193 | /** |
194 | - * Add our classes to admin pages. |
|
194 | + * Add our classes to admin pages. |
|
195 | 195 | * |
196 | 196 | * @param string $classes |
197 | 197 | * @return string |
198 | - * |
|
199 | - */ |
|
198 | + * |
|
199 | + */ |
|
200 | 200 | public function admin_body_class( $classes ) { |
201 | - global $pagenow, $post, $current_screen; |
|
201 | + global $pagenow, $post, $current_screen; |
|
202 | 202 | |
203 | 203 | |
204 | 204 | $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
205 | 205 | |
206 | 206 | if ( ! empty( $current_screen->post_type ) ) { |
207 | - $page = $current_screen->post_type; |
|
207 | + $page = $current_screen->post_type; |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | if ( false !== stripos( $page, 'wpi' ) ) { |
@@ -215,27 +215,27 @@ discard block |
||
215 | 215 | $classes .= ' wpinv-cpt wpinv'; |
216 | 216 | } |
217 | 217 | |
218 | - if ( $pagenow == 'post.php' && $page == 'wpi_item' && ! empty( $post ) && ! wpinv_item_is_editable( $post ) ) { |
|
219 | - $classes .= ' wpi-editable-n'; |
|
220 | - } |
|
218 | + if ( $pagenow == 'post.php' && $page == 'wpi_item' && ! empty( $post ) && ! wpinv_item_is_editable( $post ) ) { |
|
219 | + $classes .= ' wpi-editable-n'; |
|
220 | + } |
|
221 | 221 | |
222 | - return $classes; |
|
222 | + return $classes; |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
226 | - * Maybe show the AyeCode Connect Notice. |
|
227 | - */ |
|
228 | - public function init_ayecode_connect_helper(){ |
|
226 | + * Maybe show the AyeCode Connect Notice. |
|
227 | + */ |
|
228 | + public function init_ayecode_connect_helper(){ |
|
229 | 229 | |
230 | 230 | new AyeCode_Connect_Helper( |
231 | 231 | array( |
232 | - 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
233 | - 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
234 | - '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>" ), |
|
235 | - 'connect_button' => __("Connect Site","invoicing"), |
|
236 | - 'connecting_button' => __("Connecting...","invoicing"), |
|
237 | - 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
238 | - 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
232 | + 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
233 | + 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
234 | + '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>" ), |
|
235 | + 'connect_button' => __("Connect Site","invoicing"), |
|
236 | + 'connecting_button' => __("Connecting...","invoicing"), |
|
237 | + 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
238 | + 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
239 | 239 | ), |
240 | 240 | array( 'wpi-addons' ) |
241 | 241 | ); |
@@ -247,21 +247,21 @@ discard block |
||
247 | 247 | */ |
248 | 248 | public function activation_redirect() { |
249 | 249 | |
250 | - // Bail if no activation redirect. |
|
251 | - if ( ! get_transient( '_wpinv_activation_redirect' ) || wp_doing_ajax() ) { |
|
252 | - return; |
|
253 | - } |
|
250 | + // Bail if no activation redirect. |
|
251 | + if ( ! get_transient( '_wpinv_activation_redirect' ) || wp_doing_ajax() ) { |
|
252 | + return; |
|
253 | + } |
|
254 | 254 | |
255 | - // Delete the redirect transient. |
|
256 | - delete_transient( '_wpinv_activation_redirect' ); |
|
255 | + // Delete the redirect transient. |
|
256 | + delete_transient( '_wpinv_activation_redirect' ); |
|
257 | 257 | |
258 | - // Bail if activating from network, or bulk |
|
259 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
260 | - return; |
|
261 | - } |
|
258 | + // Bail if activating from network, or bulk |
|
259 | + if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
260 | + return; |
|
261 | + } |
|
262 | 262 | |
263 | - wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) ); |
|
264 | - exit; |
|
263 | + wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) ); |
|
264 | + exit; |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | /** |
@@ -276,150 +276,150 @@ discard block |
||
276 | 276 | |
277 | 277 | } |
278 | 278 | |
279 | - /** |
|
279 | + /** |
|
280 | 280 | * Sends a payment reminder to a customer. |
281 | - * |
|
282 | - * @param array $args |
|
281 | + * |
|
282 | + * @param array $args |
|
283 | 283 | */ |
284 | 284 | public function send_customer_invoice( $args ) { |
285 | - $sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
285 | + $sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
286 | 286 | |
287 | - if ( $sent ) { |
|
288 | - $this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) ); |
|
289 | - } else { |
|
290 | - $this->show_error( __( 'Could not sent the invoice to the customer', 'invoicing' ) ); |
|
291 | - } |
|
287 | + if ( $sent ) { |
|
288 | + $this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) ); |
|
289 | + } else { |
|
290 | + $this->show_error( __( 'Could not sent the invoice to the customer', 'invoicing' ) ); |
|
291 | + } |
|
292 | 292 | |
293 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
294 | - exit; |
|
295 | - } |
|
293 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
294 | + exit; |
|
295 | + } |
|
296 | 296 | |
297 | - /** |
|
297 | + /** |
|
298 | 298 | * Sends a payment reminder to a customer. |
299 | - * |
|
300 | - * @param array $args |
|
299 | + * |
|
300 | + * @param array $args |
|
301 | 301 | */ |
302 | 302 | public function send_customer_payment_reminder( $args ) { |
303 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
303 | + $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
304 | 304 | |
305 | - if ( $sent ) { |
|
306 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
307 | - } else { |
|
308 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
309 | - } |
|
305 | + if ( $sent ) { |
|
306 | + $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
307 | + } else { |
|
308 | + $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
309 | + } |
|
310 | 310 | |
311 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
312 | - exit; |
|
313 | - } |
|
311 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
312 | + exit; |
|
313 | + } |
|
314 | 314 | |
315 | 315 | /** |
316 | - * Returns an array of admin notices. |
|
317 | - * |
|
318 | - * @since 1.0.19 |
|
316 | + * Returns an array of admin notices. |
|
317 | + * |
|
318 | + * @since 1.0.19 |
|
319 | 319 | * @return array |
320 | - */ |
|
321 | - public function get_notices() { |
|
322 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
320 | + */ |
|
321 | + public function get_notices() { |
|
322 | + $notices = get_option( 'wpinv_admin_notices' ); |
|
323 | 323 | return is_array( $notices ) ? $notices : array(); |
324 | - } |
|
325 | - |
|
326 | - /** |
|
327 | - * Clears all admin notices |
|
328 | - * |
|
329 | - * @access public |
|
330 | - * @since 1.0.19 |
|
331 | - */ |
|
332 | - public function clear_notices() { |
|
333 | - delete_option( 'wpinv_admin_notices' ); |
|
334 | - } |
|
335 | - |
|
336 | - /** |
|
337 | - * Saves a new admin notice |
|
338 | - * |
|
339 | - * @access public |
|
340 | - * @since 1.0.19 |
|
341 | - */ |
|
342 | - public function save_notice( $type, $message ) { |
|
343 | - $notices = $this->get_notices(); |
|
344 | - |
|
345 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
346 | - $notices[ $type ] = array(); |
|
347 | - } |
|
348 | - |
|
349 | - $notices[ $type ][] = $message; |
|
350 | - |
|
351 | - update_option( 'wpinv_admin_notices', $notices ); |
|
352 | - } |
|
353 | - |
|
354 | - /** |
|
355 | - * Displays a success notice |
|
356 | - * |
|
357 | - * @param string $msg The message to qeue. |
|
358 | - * @access public |
|
359 | - * @since 1.0.19 |
|
360 | - */ |
|
361 | - public function show_success( $msg ) { |
|
362 | - $this->save_notice( 'success', $msg ); |
|
363 | - } |
|
364 | - |
|
365 | - /** |
|
366 | - * Displays a error notice |
|
367 | - * |
|
368 | - * @access public |
|
369 | - * @param string $msg The message to qeue. |
|
370 | - * @since 1.0.19 |
|
371 | - */ |
|
372 | - public function show_error( $msg ) { |
|
373 | - $this->save_notice( 'error', $msg ); |
|
374 | - } |
|
375 | - |
|
376 | - /** |
|
377 | - * Displays a warning notice |
|
378 | - * |
|
379 | - * @access public |
|
380 | - * @param string $msg The message to qeue. |
|
381 | - * @since 1.0.19 |
|
382 | - */ |
|
383 | - public function show_warning( $msg ) { |
|
384 | - $this->save_notice( 'warning', $msg ); |
|
385 | - } |
|
386 | - |
|
387 | - /** |
|
388 | - * Displays a info notice |
|
389 | - * |
|
390 | - * @access public |
|
391 | - * @param string $msg The message to qeue. |
|
392 | - * @since 1.0.19 |
|
393 | - */ |
|
394 | - public function show_info( $msg ) { |
|
395 | - $this->save_notice( 'info', $msg ); |
|
396 | - } |
|
397 | - |
|
398 | - /** |
|
399 | - * Show notices |
|
400 | - * |
|
401 | - * @access public |
|
402 | - * @since 1.0.19 |
|
403 | - */ |
|
404 | - public function show_notices() { |
|
324 | + } |
|
325 | + |
|
326 | + /** |
|
327 | + * Clears all admin notices |
|
328 | + * |
|
329 | + * @access public |
|
330 | + * @since 1.0.19 |
|
331 | + */ |
|
332 | + public function clear_notices() { |
|
333 | + delete_option( 'wpinv_admin_notices' ); |
|
334 | + } |
|
335 | + |
|
336 | + /** |
|
337 | + * Saves a new admin notice |
|
338 | + * |
|
339 | + * @access public |
|
340 | + * @since 1.0.19 |
|
341 | + */ |
|
342 | + public function save_notice( $type, $message ) { |
|
343 | + $notices = $this->get_notices(); |
|
344 | + |
|
345 | + if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
346 | + $notices[ $type ] = array(); |
|
347 | + } |
|
348 | + |
|
349 | + $notices[ $type ][] = $message; |
|
350 | + |
|
351 | + update_option( 'wpinv_admin_notices', $notices ); |
|
352 | + } |
|
353 | + |
|
354 | + /** |
|
355 | + * Displays a success notice |
|
356 | + * |
|
357 | + * @param string $msg The message to qeue. |
|
358 | + * @access public |
|
359 | + * @since 1.0.19 |
|
360 | + */ |
|
361 | + public function show_success( $msg ) { |
|
362 | + $this->save_notice( 'success', $msg ); |
|
363 | + } |
|
364 | + |
|
365 | + /** |
|
366 | + * Displays a error notice |
|
367 | + * |
|
368 | + * @access public |
|
369 | + * @param string $msg The message to qeue. |
|
370 | + * @since 1.0.19 |
|
371 | + */ |
|
372 | + public function show_error( $msg ) { |
|
373 | + $this->save_notice( 'error', $msg ); |
|
374 | + } |
|
375 | + |
|
376 | + /** |
|
377 | + * Displays a warning notice |
|
378 | + * |
|
379 | + * @access public |
|
380 | + * @param string $msg The message to qeue. |
|
381 | + * @since 1.0.19 |
|
382 | + */ |
|
383 | + public function show_warning( $msg ) { |
|
384 | + $this->save_notice( 'warning', $msg ); |
|
385 | + } |
|
386 | + |
|
387 | + /** |
|
388 | + * Displays a info notice |
|
389 | + * |
|
390 | + * @access public |
|
391 | + * @param string $msg The message to qeue. |
|
392 | + * @since 1.0.19 |
|
393 | + */ |
|
394 | + public function show_info( $msg ) { |
|
395 | + $this->save_notice( 'info', $msg ); |
|
396 | + } |
|
397 | + |
|
398 | + /** |
|
399 | + * Show notices |
|
400 | + * |
|
401 | + * @access public |
|
402 | + * @since 1.0.19 |
|
403 | + */ |
|
404 | + public function show_notices() { |
|
405 | 405 | |
406 | 406 | $notices = $this->get_notices(); |
407 | 407 | $this->clear_notices(); |
408 | 408 | |
409 | - foreach ( $notices as $type => $messages ) { |
|
409 | + foreach ( $notices as $type => $messages ) { |
|
410 | 410 | |
411 | - if ( ! is_array( $messages ) ) { |
|
412 | - continue; |
|
413 | - } |
|
411 | + if ( ! is_array( $messages ) ) { |
|
412 | + continue; |
|
413 | + } |
|
414 | 414 | |
415 | 415 | $type = sanitize_key( $type ); |
416 | - foreach ( $messages as $message ) { |
|
416 | + foreach ( $messages as $message ) { |
|
417 | 417 | $message = wp_kses_post( $message ); |
418 | - echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
|
418 | + echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
|
419 | 419 | } |
420 | 420 | |
421 | 421 | } |
422 | 422 | |
423 | - } |
|
423 | + } |
|
424 | 424 | |
425 | 425 | } |
@@ -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. |
@@ -30,12 +30,12 @@ discard block |
||
30 | 30 | /** |
31 | 31 | * Class constructor. |
32 | 32 | */ |
33 | - public function __construct(){ |
|
33 | + public function __construct() { |
|
34 | 34 | |
35 | - $this->admin_path = plugin_dir_path( __FILE__ ); |
|
36 | - $this->admin_url = plugins_url( '/', __FILE__ ); |
|
35 | + $this->admin_path = plugin_dir_path(__FILE__); |
|
36 | + $this->admin_url = plugins_url('/', __FILE__); |
|
37 | 37 | |
38 | - if ( is_admin() ) { |
|
38 | + if (is_admin()) { |
|
39 | 39 | $this->init_admin_hooks(); |
40 | 40 | } |
41 | 41 | |
@@ -46,15 +46,15 @@ discard block |
||
46 | 46 | * |
47 | 47 | */ |
48 | 48 | private function init_admin_hooks() { |
49 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ) ); |
|
50 | - add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
|
51 | - add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
|
52 | - add_action( 'admin_init', array( $this, 'activation_redirect') ); |
|
53 | - add_action( 'admin_init', array( $this, 'maybe_do_admin_action') ); |
|
54 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
55 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
56 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
57 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
49 | + add_action('admin_enqueue_scripts', array($this, 'enqeue_scripts')); |
|
50 | + add_filter('admin_body_class', array($this, 'admin_body_class')); |
|
51 | + add_action('admin_init', array($this, 'init_ayecode_connect_helper')); |
|
52 | + add_action('admin_init', array($this, 'activation_redirect')); |
|
53 | + add_action('admin_init', array($this, 'maybe_do_admin_action')); |
|
54 | + add_action('admin_notices', array($this, 'show_notices')); |
|
55 | + add_action('getpaid_authenticated_admin_action_send_invoice', array($this, 'send_customer_invoice')); |
|
56 | + add_action('getpaid_authenticated_admin_action_send_invoice_reminder', array($this, 'send_customer_payment_reminder')); |
|
57 | + do_action('getpaid_init_admin_hooks', $this); |
|
58 | 58 | |
59 | 59 | } |
60 | 60 | |
@@ -65,49 +65,49 @@ discard block |
||
65 | 65 | public function enqeue_scripts() { |
66 | 66 | global $current_screen, $pagenow; |
67 | 67 | |
68 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
68 | + $page = isset($_GET['page']) ? $_GET['page'] : ''; |
|
69 | 69 | $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
70 | 70 | |
71 | - if ( ! empty( $current_screen->post_type ) ) { |
|
71 | + if (!empty($current_screen->post_type)) { |
|
72 | 72 | $page = $current_screen->post_type; |
73 | 73 | } |
74 | 74 | |
75 | 75 | // General styles. |
76 | - if ( false !== stripos( $page, 'wpi' ) ) { |
|
76 | + if (false !== stripos($page, 'wpi')) { |
|
77 | 77 | |
78 | 78 | // Styles. |
79 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/css/admin.css' ); |
|
80 | - wp_enqueue_style( 'wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array( 'wp-color-picker' ), $version ); |
|
81 | - wp_enqueue_style( 'select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all' ); |
|
82 | - wp_enqueue_style( 'wp_enqueue_style', WPINV_PLUGIN_URL . 'assets/css/meta-box.css', array(), WPINV_VERSION ); |
|
83 | - wp_enqueue_style( 'jquery-ui-css', WPINV_PLUGIN_URL . 'assets/css/jquery-ui.min.css', array(), '1.8.16' ); |
|
79 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/css/admin.css'); |
|
80 | + wp_enqueue_style('wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array('wp-color-picker'), $version); |
|
81 | + wp_enqueue_style('select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all'); |
|
82 | + wp_enqueue_style('wp_enqueue_style', WPINV_PLUGIN_URL . 'assets/css/meta-box.css', array(), WPINV_VERSION); |
|
83 | + wp_enqueue_style('jquery-ui-css', WPINV_PLUGIN_URL . 'assets/css/jquery-ui.min.css', array(), '1.8.16'); |
|
84 | 84 | |
85 | 85 | // Scripts. |
86 | - wp_register_script( 'jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array( 'jquery' ), '4.0.13', true ); |
|
87 | - wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array( 'jquery' ), WPINV_VERSION ); |
|
86 | + wp_register_script('jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array('jquery'), '4.0.13', true); |
|
87 | + wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array('jquery'), WPINV_VERSION); |
|
88 | 88 | |
89 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin.js' ); |
|
90 | - 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 ); |
|
91 | - wp_localize_script( 'wpinv-admin-script', 'WPInv_Admin', apply_filters( 'wpinv_admin_js_localize', $this->get_admin_i18() ) ); |
|
89 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/admin.js'); |
|
90 | + 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); |
|
91 | + wp_localize_script('wpinv-admin-script', 'WPInv_Admin', apply_filters('wpinv_admin_js_localize', $this->get_admin_i18())); |
|
92 | 92 | |
93 | 93 | } |
94 | 94 | |
95 | 95 | // Payment form scripts. |
96 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
96 | + if ('wpi_payment_form' == $page && $editing) { |
|
97 | 97 | $this->load_payment_form_scripts(); |
98 | 98 | } |
99 | 99 | |
100 | - if ( $page == 'wpinv-subscriptions' ) { |
|
101 | - wp_register_script( 'wpinv-sub-admin-script', WPINV_PLUGIN_URL . 'assets/js/subscriptions.js', array( 'wpinv-admin-script' ), WPINV_VERSION ); |
|
102 | - wp_enqueue_script( 'wpinv-sub-admin-script' ); |
|
100 | + if ($page == 'wpinv-subscriptions') { |
|
101 | + wp_register_script('wpinv-sub-admin-script', WPINV_PLUGIN_URL . 'assets/js/subscriptions.js', array('wpinv-admin-script'), WPINV_VERSION); |
|
102 | + wp_enqueue_script('wpinv-sub-admin-script'); |
|
103 | 103 | } |
104 | 104 | |
105 | - if ( $page == 'wpinv-reports' ) { |
|
106 | - wp_enqueue_script( 'jquery-flot', WPINV_PLUGIN_URL . 'assets/js/jquery.flot.min.js', array( 'jquery' ), '0.7' ); |
|
105 | + if ($page == 'wpinv-reports') { |
|
106 | + wp_enqueue_script('jquery-flot', WPINV_PLUGIN_URL . 'assets/js/jquery.flot.min.js', array('jquery'), '0.7'); |
|
107 | 107 | } |
108 | 108 | |
109 | - if ( $page == 'wpinv-subscriptions' ) { |
|
110 | - wp_enqueue_script( 'postbox' ); |
|
109 | + if ($page == 'wpinv-subscriptions') { |
|
110 | + wp_enqueue_script('postbox'); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | } |
@@ -120,13 +120,13 @@ discard block |
||
120 | 120 | global $post; |
121 | 121 | |
122 | 122 | return array( |
123 | - 'ajax_url' => admin_url( 'admin-ajax.php' ), |
|
124 | - 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
|
125 | - 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
126 | - 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
|
127 | - 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
|
128 | - 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
|
129 | - 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
|
123 | + 'ajax_url' => admin_url('admin-ajax.php'), |
|
124 | + 'post_ID' => isset($post->ID) ? $post->ID : '', |
|
125 | + 'wpinv_nonce' => wp_create_nonce('wpinv-nonce'), |
|
126 | + 'add_invoice_note_nonce' => wp_create_nonce('add-invoice-note'), |
|
127 | + 'delete_invoice_note_nonce' => wp_create_nonce('delete-invoice-note'), |
|
128 | + 'invoice_item_nonce' => wp_create_nonce('invoice-item'), |
|
129 | + 'billing_details_nonce' => wp_create_nonce('get-billing-details'), |
|
130 | 130 | 'tax' => wpinv_tax_amount(), |
131 | 131 | 'discount' => wpinv_discount_amount(), |
132 | 132 | 'currency_symbol' => wpinv_currency_symbol(), |
@@ -134,24 +134,24 @@ discard block |
||
134 | 134 | 'thousand_sep' => wpinv_thousands_separator(), |
135 | 135 | 'decimal_sep' => wpinv_decimal_separator(), |
136 | 136 | 'decimals' => wpinv_decimals(), |
137 | - 'save_invoice' => __( 'Save Invoice', 'invoicing' ), |
|
138 | - 'status_publish' => wpinv_status_nicename( 'publish' ), |
|
139 | - 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
|
140 | - 'delete_tax_rate' => __( 'Are you sure you wish to delete this tax rate?', 'invoicing' ), |
|
141 | - 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
|
142 | - 'OneItemMin' => __( 'Invoice must contain at least one item', 'invoicing' ), |
|
143 | - 'FillBillingDetails' => __( 'Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing' ), |
|
144 | - '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' ), |
|
145 | - 'AreYouSure' => __( 'Are you sure?', 'invoicing' ), |
|
146 | - 'emptyInvoice' => __( 'Add at least one item to save invoice!', 'invoicing' ), |
|
147 | - 'errDeleteItem' => __( 'This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing' ), |
|
148 | - 'delete_subscription' => __( 'Are you sure you want to delete this subscription?', 'invoicing' ), |
|
149 | - 'action_edit' => __( 'Edit', 'invoicing' ), |
|
150 | - 'action_cancel' => __( 'Cancel', 'invoicing' ), |
|
151 | - 'item_description' => __( 'Item Description', 'invoicing' ), |
|
152 | - 'invoice_description' => __( 'Invoice Description', 'invoicing' ), |
|
153 | - 'discount_description' => __( 'Discount Description', 'invoicing' ), |
|
154 | - 'searching' => __( 'Searching', 'invoicing' ), |
|
137 | + 'save_invoice' => __('Save Invoice', 'invoicing'), |
|
138 | + 'status_publish' => wpinv_status_nicename('publish'), |
|
139 | + 'status_pending' => wpinv_status_nicename('wpi-pending'), |
|
140 | + 'delete_tax_rate' => __('Are you sure you wish to delete this tax rate?', 'invoicing'), |
|
141 | + 'status_pending' => wpinv_status_nicename('wpi-pending'), |
|
142 | + 'OneItemMin' => __('Invoice must contain at least one item', 'invoicing'), |
|
143 | + 'FillBillingDetails' => __('Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing'), |
|
144 | + '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'), |
|
145 | + 'AreYouSure' => __('Are you sure?', 'invoicing'), |
|
146 | + 'emptyInvoice' => __('Add at least one item to save invoice!', 'invoicing'), |
|
147 | + 'errDeleteItem' => __('This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing'), |
|
148 | + 'delete_subscription' => __('Are you sure you want to delete this subscription?', 'invoicing'), |
|
149 | + 'action_edit' => __('Edit', 'invoicing'), |
|
150 | + 'action_cancel' => __('Cancel', 'invoicing'), |
|
151 | + 'item_description' => __('Item Description', 'invoicing'), |
|
152 | + 'invoice_description' => __('Invoice Description', 'invoicing'), |
|
153 | + 'discount_description' => __('Discount Description', 'invoicing'), |
|
154 | + 'searching' => __('Searching', 'invoicing'), |
|
155 | 155 | ); |
156 | 156 | |
157 | 157 | } |
@@ -163,30 +163,30 @@ discard block |
||
163 | 163 | protected function load_payment_form_scripts() { |
164 | 164 | global $post; |
165 | 165 | |
166 | - wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.js', array(), WPINV_VERSION ); |
|
167 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
168 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
166 | + wp_enqueue_script('vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.js', array(), WPINV_VERSION); |
|
167 | + wp_enqueue_script('sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION); |
|
168 | + wp_enqueue_script('vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array('sortable', 'vue'), WPINV_VERSION); |
|
169 | 169 | |
170 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
171 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable' ), $version ); |
|
170 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js'); |
|
171 | + wp_register_script('wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array('wpinv-admin-script', 'vue_draggable'), $version); |
|
172 | 172 | |
173 | 173 | wp_localize_script( |
174 | 174 | 'wpinv-admin-payment-form-script', |
175 | 175 | 'wpinvPaymentFormAdmin', |
176 | 176 | array( |
177 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
178 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
177 | + 'elements' => wpinv_get_data('payment-form-elements'), |
|
178 | + 'form_elements' => getpaid_get_payment_form_elements($post->ID), |
|
179 | 179 | 'currency' => wpinv_currency_symbol(), |
180 | 180 | 'position' => wpinv_currency_position(), |
181 | 181 | 'decimals' => (int) wpinv_decimals(), |
182 | 182 | 'thousands_sep' => wpinv_thousands_separator(), |
183 | 183 | 'decimals_sep' => wpinv_decimal_separator(), |
184 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
184 | + 'form_items' => gepaid_get_form_items($post->ID), |
|
185 | 185 | 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
186 | 186 | ) |
187 | 187 | ); |
188 | 188 | |
189 | - wp_enqueue_script( 'wpinv-admin-payment-form-script' ); |
|
189 | + wp_enqueue_script('wpinv-admin-payment-form-script'); |
|
190 | 190 | |
191 | 191 | } |
192 | 192 | |
@@ -197,25 +197,25 @@ discard block |
||
197 | 197 | * @return string |
198 | 198 | * |
199 | 199 | */ |
200 | - public function admin_body_class( $classes ) { |
|
200 | + public function admin_body_class($classes) { |
|
201 | 201 | global $pagenow, $post, $current_screen; |
202 | 202 | |
203 | 203 | |
204 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
204 | + $page = isset($_GET['page']) ? $_GET['page'] : ''; |
|
205 | 205 | |
206 | - if ( ! empty( $current_screen->post_type ) ) { |
|
206 | + if (!empty($current_screen->post_type)) { |
|
207 | 207 | $page = $current_screen->post_type; |
208 | 208 | } |
209 | 209 | |
210 | - if ( false !== stripos( $page, 'wpi' ) ) { |
|
211 | - $classes .= ' wpi-' . sanitize_key( $page ); |
|
210 | + if (false !== stripos($page, 'wpi')) { |
|
211 | + $classes .= ' wpi-' . sanitize_key($page); |
|
212 | 212 | } |
213 | 213 | |
214 | - if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
|
214 | + if (in_array($page, wpinv_parse_list('wpi_invoice wpi_payment_form wpi_quote'))) { |
|
215 | 215 | $classes .= ' wpinv-cpt wpinv'; |
216 | 216 | } |
217 | 217 | |
218 | - if ( $pagenow == 'post.php' && $page == 'wpi_item' && ! empty( $post ) && ! wpinv_item_is_editable( $post ) ) { |
|
218 | + if ($pagenow == 'post.php' && $page == 'wpi_item' && !empty($post) && !wpinv_item_is_editable($post)) { |
|
219 | 219 | $classes .= ' wpi-editable-n'; |
220 | 220 | } |
221 | 221 | |
@@ -225,19 +225,19 @@ discard block |
||
225 | 225 | /** |
226 | 226 | * Maybe show the AyeCode Connect Notice. |
227 | 227 | */ |
228 | - public function init_ayecode_connect_helper(){ |
|
228 | + public function init_ayecode_connect_helper() { |
|
229 | 229 | |
230 | 230 | new AyeCode_Connect_Helper( |
231 | 231 | array( |
232 | - 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
233 | - 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
234 | - '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>" ), |
|
235 | - 'connect_button' => __("Connect Site","invoicing"), |
|
236 | - 'connecting_button' => __("Connecting...","invoicing"), |
|
237 | - 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
238 | - 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
232 | + 'connect_title' => __("WP Invoicing - an AyeCode product!", "invoicing"), |
|
233 | + 'connect_external' => __("Please confirm you wish to connect your site?", "invoicing"), |
|
234 | + '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>"), |
|
235 | + 'connect_button' => __("Connect Site", "invoicing"), |
|
236 | + 'connecting_button' => __("Connecting...", "invoicing"), |
|
237 | + 'error_localhost' => __("This service will only work with a live domain, not a localhost.", "invoicing"), |
|
238 | + 'error' => __("Something went wrong, please refresh and try again.", "invoicing"), |
|
239 | 239 | ), |
240 | - array( 'wpi-addons' ) |
|
240 | + array('wpi-addons') |
|
241 | 241 | ); |
242 | 242 | |
243 | 243 | } |
@@ -248,19 +248,19 @@ discard block |
||
248 | 248 | public function activation_redirect() { |
249 | 249 | |
250 | 250 | // Bail if no activation redirect. |
251 | - if ( ! get_transient( '_wpinv_activation_redirect' ) || wp_doing_ajax() ) { |
|
251 | + if (!get_transient('_wpinv_activation_redirect') || wp_doing_ajax()) { |
|
252 | 252 | return; |
253 | 253 | } |
254 | 254 | |
255 | 255 | // Delete the redirect transient. |
256 | - delete_transient( '_wpinv_activation_redirect' ); |
|
256 | + delete_transient('_wpinv_activation_redirect'); |
|
257 | 257 | |
258 | 258 | // Bail if activating from network, or bulk |
259 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
259 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
260 | 260 | return; |
261 | 261 | } |
262 | 262 | |
263 | - wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) ); |
|
263 | + wp_safe_redirect(admin_url('admin.php?page=wpinv-settings&tab=general')); |
|
264 | 264 | exit; |
265 | 265 | } |
266 | 266 | |
@@ -269,9 +269,9 @@ discard block |
||
269 | 269 | */ |
270 | 270 | public function maybe_do_admin_action() { |
271 | 271 | |
272 | - if ( wpinv_current_user_can_manage_invoicing() && isset( $_REQUEST['getpaid-admin-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
273 | - $key = sanitize_key( $_REQUEST['getpaid-admin-action'] ); |
|
274 | - do_action( "getpaid_authenticated_admin_action_$key", $_REQUEST ); |
|
272 | + if (wpinv_current_user_can_manage_invoicing() && isset($_REQUEST['getpaid-admin-action']) && isset($_REQUEST['getpaid-nonce']) && wp_verify_nonce($_REQUEST['getpaid-nonce'], 'getpaid-nonce')) { |
|
273 | + $key = sanitize_key($_REQUEST['getpaid-admin-action']); |
|
274 | + do_action("getpaid_authenticated_admin_action_$key", $_REQUEST); |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | } |
@@ -281,16 +281,16 @@ discard block |
||
281 | 281 | * |
282 | 282 | * @param array $args |
283 | 283 | */ |
284 | - public function send_customer_invoice( $args ) { |
|
285 | - $sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
284 | + public function send_customer_invoice($args) { |
|
285 | + $sent = getpaid()->get('invoice_emails')->user_invoice(new WPInv_Invoice($args['invoice_id'])); |
|
286 | 286 | |
287 | - if ( $sent ) { |
|
288 | - $this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) ); |
|
287 | + if ($sent) { |
|
288 | + $this->show_success(__('Invoice was successfully sent to the customer', 'invoicing')); |
|
289 | 289 | } else { |
290 | - $this->show_error( __( 'Could not sent the invoice to the customer', 'invoicing' ) ); |
|
290 | + $this->show_error(__('Could not sent the invoice to the customer', 'invoicing')); |
|
291 | 291 | } |
292 | 292 | |
293 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
293 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce', 'invoice_id'))); |
|
294 | 294 | exit; |
295 | 295 | } |
296 | 296 | |
@@ -299,16 +299,16 @@ discard block |
||
299 | 299 | * |
300 | 300 | * @param array $args |
301 | 301 | */ |
302 | - public function send_customer_payment_reminder( $args ) { |
|
303 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
302 | + public function send_customer_payment_reminder($args) { |
|
303 | + $sent = getpaid()->get('invoice_emails')->force_send_overdue_notice(new WPInv_Invoice($args['invoice_id'])); |
|
304 | 304 | |
305 | - if ( $sent ) { |
|
306 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
305 | + if ($sent) { |
|
306 | + $this->show_success(__('Payment reminder was successfully sent to the customer', 'invoicing')); |
|
307 | 307 | } else { |
308 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
308 | + $this->show_error(__('Could not sent payment reminder to the customer', 'invoicing')); |
|
309 | 309 | } |
310 | 310 | |
311 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
311 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce', 'invoice_id'))); |
|
312 | 312 | exit; |
313 | 313 | } |
314 | 314 | |
@@ -319,8 +319,8 @@ discard block |
||
319 | 319 | * @return array |
320 | 320 | */ |
321 | 321 | public function get_notices() { |
322 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
323 | - return is_array( $notices ) ? $notices : array(); |
|
322 | + $notices = get_option('wpinv_admin_notices'); |
|
323 | + return is_array($notices) ? $notices : array(); |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | /** |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | * @since 1.0.19 |
331 | 331 | */ |
332 | 332 | public function clear_notices() { |
333 | - delete_option( 'wpinv_admin_notices' ); |
|
333 | + delete_option('wpinv_admin_notices'); |
|
334 | 334 | } |
335 | 335 | |
336 | 336 | /** |
@@ -339,16 +339,16 @@ discard block |
||
339 | 339 | * @access public |
340 | 340 | * @since 1.0.19 |
341 | 341 | */ |
342 | - public function save_notice( $type, $message ) { |
|
342 | + public function save_notice($type, $message) { |
|
343 | 343 | $notices = $this->get_notices(); |
344 | 344 | |
345 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
346 | - $notices[ $type ] = array(); |
|
345 | + if (empty($notices[$type]) || !is_array($notices[$type])) { |
|
346 | + $notices[$type] = array(); |
|
347 | 347 | } |
348 | 348 | |
349 | - $notices[ $type ][] = $message; |
|
349 | + $notices[$type][] = $message; |
|
350 | 350 | |
351 | - update_option( 'wpinv_admin_notices', $notices ); |
|
351 | + update_option('wpinv_admin_notices', $notices); |
|
352 | 352 | } |
353 | 353 | |
354 | 354 | /** |
@@ -358,8 +358,8 @@ discard block |
||
358 | 358 | * @access public |
359 | 359 | * @since 1.0.19 |
360 | 360 | */ |
361 | - public function show_success( $msg ) { |
|
362 | - $this->save_notice( 'success', $msg ); |
|
361 | + public function show_success($msg) { |
|
362 | + $this->save_notice('success', $msg); |
|
363 | 363 | } |
364 | 364 | |
365 | 365 | /** |
@@ -369,8 +369,8 @@ discard block |
||
369 | 369 | * @param string $msg The message to qeue. |
370 | 370 | * @since 1.0.19 |
371 | 371 | */ |
372 | - public function show_error( $msg ) { |
|
373 | - $this->save_notice( 'error', $msg ); |
|
372 | + public function show_error($msg) { |
|
373 | + $this->save_notice('error', $msg); |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | /** |
@@ -380,8 +380,8 @@ discard block |
||
380 | 380 | * @param string $msg The message to qeue. |
381 | 381 | * @since 1.0.19 |
382 | 382 | */ |
383 | - public function show_warning( $msg ) { |
|
384 | - $this->save_notice( 'warning', $msg ); |
|
383 | + public function show_warning($msg) { |
|
384 | + $this->save_notice('warning', $msg); |
|
385 | 385 | } |
386 | 386 | |
387 | 387 | /** |
@@ -391,8 +391,8 @@ discard block |
||
391 | 391 | * @param string $msg The message to qeue. |
392 | 392 | * @since 1.0.19 |
393 | 393 | */ |
394 | - public function show_info( $msg ) { |
|
395 | - $this->save_notice( 'info', $msg ); |
|
394 | + public function show_info($msg) { |
|
395 | + $this->save_notice('info', $msg); |
|
396 | 396 | } |
397 | 397 | |
398 | 398 | /** |
@@ -406,15 +406,15 @@ discard block |
||
406 | 406 | $notices = $this->get_notices(); |
407 | 407 | $this->clear_notices(); |
408 | 408 | |
409 | - foreach ( $notices as $type => $messages ) { |
|
409 | + foreach ($notices as $type => $messages) { |
|
410 | 410 | |
411 | - if ( ! is_array( $messages ) ) { |
|
411 | + if (!is_array($messages)) { |
|
412 | 412 | continue; |
413 | 413 | } |
414 | 414 | |
415 | - $type = sanitize_key( $type ); |
|
416 | - foreach ( $messages as $message ) { |
|
417 | - $message = wp_kses_post( $message ); |
|
415 | + $type = sanitize_key($type); |
|
416 | + foreach ($messages as $message) { |
|
417 | + $message = wp_kses_post($message); |
|
418 | 418 | echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
419 | 419 | } |
420 | 420 |
@@ -14,70 +14,70 @@ discard block |
||
14 | 14 | class WPInv_Ajax { |
15 | 15 | |
16 | 16 | /** |
17 | - * Hook in ajax handlers. |
|
18 | - */ |
|
19 | - public static function init() { |
|
20 | - add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | - add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
22 | - self::add_ajax_events(); |
|
17 | + * Hook in ajax handlers. |
|
18 | + */ |
|
19 | + public static function init() { |
|
20 | + add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | + add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
22 | + self::add_ajax_events(); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
26 | - * Set GetPaid AJAX constant and headers. |
|
27 | - */ |
|
28 | - public static function define_ajax() { |
|
29 | - |
|
30 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | - getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | - getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | - if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | - /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
35 | - } |
|
36 | - $GLOBALS['wpdb']->hide_errors(); |
|
37 | - } |
|
26 | + * Set GetPaid AJAX constant and headers. |
|
27 | + */ |
|
28 | + public static function define_ajax() { |
|
29 | + |
|
30 | + if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | + getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | + getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | + if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | + /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
35 | + } |
|
36 | + $GLOBALS['wpdb']->hide_errors(); |
|
37 | + } |
|
38 | 38 | |
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | - * Send headers for GetPaid Ajax Requests. |
|
43 | - * |
|
44 | - * @since 1.0.18 |
|
45 | - */ |
|
46 | - private static function wpinv_ajax_headers() { |
|
47 | - if ( ! headers_sent() ) { |
|
48 | - send_origin_headers(); |
|
49 | - send_nosniff_header(); |
|
50 | - nocache_headers(); |
|
51 | - header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | - header( 'X-Robots-Tag: noindex' ); |
|
53 | - status_header( 200 ); |
|
54 | - } |
|
42 | + * Send headers for GetPaid Ajax Requests. |
|
43 | + * |
|
44 | + * @since 1.0.18 |
|
45 | + */ |
|
46 | + private static function wpinv_ajax_headers() { |
|
47 | + if ( ! headers_sent() ) { |
|
48 | + send_origin_headers(); |
|
49 | + send_nosniff_header(); |
|
50 | + nocache_headers(); |
|
51 | + header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | + header( 'X-Robots-Tag: noindex' ); |
|
53 | + status_header( 200 ); |
|
54 | + } |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | - * Check for GetPaid Ajax request and fire action. |
|
59 | - */ |
|
60 | - public static function do_wpinv_ajax() { |
|
61 | - global $wp_query; |
|
58 | + * Check for GetPaid Ajax request and fire action. |
|
59 | + */ |
|
60 | + public static function do_wpinv_ajax() { |
|
61 | + global $wp_query; |
|
62 | 62 | |
63 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | - $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
65 | - } |
|
63 | + if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | + $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
65 | + } |
|
66 | 66 | |
67 | - $action = $wp_query->get( 'wpinv-ajax' ); |
|
67 | + $action = $wp_query->get( 'wpinv-ajax' ); |
|
68 | 68 | |
69 | - if ( $action ) { |
|
70 | - self::wpinv_ajax_headers(); |
|
71 | - $action = sanitize_text_field( $action ); |
|
72 | - do_action( 'wpinv_ajax_' . $action ); |
|
73 | - wp_die(); |
|
74 | - } |
|
69 | + if ( $action ) { |
|
70 | + self::wpinv_ajax_headers(); |
|
71 | + $action = sanitize_text_field( $action ); |
|
72 | + do_action( 'wpinv_ajax_' . $action ); |
|
73 | + wp_die(); |
|
74 | + } |
|
75 | 75 | |
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * Hook in ajax methods. |
|
80 | - */ |
|
79 | + * Hook in ajax methods. |
|
80 | + */ |
|
81 | 81 | public static function add_ajax_events() { |
82 | 82 | |
83 | 83 | // array( 'event' => is_frontend ) |
@@ -260,24 +260,24 @@ discard block |
||
260 | 260 | } |
261 | 261 | |
262 | 262 | // Is the request set up correctly? |
263 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
264 | - echo aui()->alert( |
|
265 | - array( |
|
266 | - 'type' => 'warning', |
|
267 | - 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
268 | - ) |
|
263 | + if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
264 | + echo aui()->alert( |
|
265 | + array( |
|
266 | + 'type' => 'warning', |
|
267 | + 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
268 | + ) |
|
269 | 269 | ); |
270 | 270 | exit; |
271 | 271 | } |
272 | 272 | |
273 | 273 | // Payment form or button? |
274 | - if ( ! empty( $_GET['form'] ) ) { |
|
274 | + if ( ! empty( $_GET['form'] ) ) { |
|
275 | 275 | getpaid_display_payment_form( $_GET['form'] ); |
276 | - } else if( ! empty( $_GET['invoice'] ) ) { |
|
277 | - getpaid_display_invoice_payment_form( $_GET['invoice'] ); |
|
276 | + } else if( ! empty( $_GET['invoice'] ) ) { |
|
277 | + getpaid_display_invoice_payment_form( $_GET['invoice'] ); |
|
278 | 278 | } else { |
279 | - $items = getpaid_convert_items_to_array( $_GET['item'] ); |
|
280 | - getpaid_display_item_payment_form( $items ); |
|
279 | + $items = getpaid_convert_items_to_array( $_GET['item'] ); |
|
280 | + getpaid_display_item_payment_form( $items ); |
|
281 | 281 | } |
282 | 282 | |
283 | 283 | exit; |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @package Invoicing |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * WPInv_Ajax class. |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | * Hook in ajax handlers. |
18 | 18 | */ |
19 | 19 | public static function init() { |
20 | - add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | - add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
20 | + add_action('init', array(__CLASS__, 'define_ajax'), 0); |
|
21 | + add_action('template_redirect', array(__CLASS__, 'do_wpinv_ajax'), 0); |
|
22 | 22 | self::add_ajax_events(); |
23 | 23 | } |
24 | 24 | |
@@ -27,11 +27,11 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public static function define_ajax() { |
29 | 29 | |
30 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | - getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | - getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | - if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | - /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
30 | + if (!empty($_GET['wpinv-ajax'])) { |
|
31 | + getpaid_maybe_define_constant('DOING_AJAX', true); |
|
32 | + getpaid_maybe_define_constant('WPInv_DOING_AJAX', true); |
|
33 | + if (!WP_DEBUG || (WP_DEBUG && !WP_DEBUG_DISPLAY)) { |
|
34 | + /** @scrutinizer ignore-unhandled */ @ini_set('display_errors', 0); |
|
35 | 35 | } |
36 | 36 | $GLOBALS['wpdb']->hide_errors(); |
37 | 37 | } |
@@ -44,13 +44,13 @@ discard block |
||
44 | 44 | * @since 1.0.18 |
45 | 45 | */ |
46 | 46 | private static function wpinv_ajax_headers() { |
47 | - if ( ! headers_sent() ) { |
|
47 | + if (!headers_sent()) { |
|
48 | 48 | send_origin_headers(); |
49 | 49 | send_nosniff_header(); |
50 | 50 | nocache_headers(); |
51 | - header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | - header( 'X-Robots-Tag: noindex' ); |
|
53 | - status_header( 200 ); |
|
51 | + header('Content-Type: text/html; charset=' . get_option('blog_charset')); |
|
52 | + header('X-Robots-Tag: noindex'); |
|
53 | + status_header(200); |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 | |
@@ -60,16 +60,16 @@ discard block |
||
60 | 60 | public static function do_wpinv_ajax() { |
61 | 61 | global $wp_query; |
62 | 62 | |
63 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | - $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
63 | + if (!empty($_GET['wpinv-ajax'])) { |
|
64 | + $wp_query->set('wpinv-ajax', sanitize_text_field(wp_unslash($_GET['wpinv-ajax']))); |
|
65 | 65 | } |
66 | 66 | |
67 | - $action = $wp_query->get( 'wpinv-ajax' ); |
|
67 | + $action = $wp_query->get('wpinv-ajax'); |
|
68 | 68 | |
69 | - if ( $action ) { |
|
69 | + if ($action) { |
|
70 | 70 | self::wpinv_ajax_headers(); |
71 | - $action = sanitize_text_field( $action ); |
|
72 | - do_action( 'wpinv_ajax_' . $action ); |
|
71 | + $action = sanitize_text_field($action); |
|
72 | + do_action('wpinv_ajax_' . $action); |
|
73 | 73 | wp_die(); |
74 | 74 | } |
75 | 75 | |
@@ -102,36 +102,36 @@ discard block |
||
102 | 102 | 'ip_geolocation' => true, |
103 | 103 | ); |
104 | 104 | |
105 | - foreach ( $ajax_events as $ajax_event => $nopriv ) { |
|
106 | - add_action( 'wp_ajax_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
107 | - add_action( 'wp_ajax_getpaid_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
105 | + foreach ($ajax_events as $ajax_event => $nopriv) { |
|
106 | + add_action('wp_ajax_wpinv_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
107 | + add_action('wp_ajax_getpaid_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
108 | 108 | |
109 | - if ( $nopriv ) { |
|
110 | - add_action( 'wp_ajax_nopriv_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
111 | - add_action( 'wp_ajax_nopriv_getpaid_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
112 | - add_action( 'wpinv_ajax_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
109 | + if ($nopriv) { |
|
110 | + add_action('wp_ajax_nopriv_wpinv_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
111 | + add_action('wp_ajax_nopriv_getpaid_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
112 | + add_action('wpinv_ajax_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
113 | 113 | } |
114 | 114 | } |
115 | 115 | } |
116 | 116 | |
117 | 117 | public static function add_note() { |
118 | - check_ajax_referer( 'add-invoice-note', '_nonce' ); |
|
118 | + check_ajax_referer('add-invoice-note', '_nonce'); |
|
119 | 119 | |
120 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
120 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
121 | 121 | die(-1); |
122 | 122 | } |
123 | 123 | |
124 | - $post_id = absint( $_POST['post_id'] ); |
|
125 | - $note = wp_kses_post( trim( stripslashes( $_POST['note'] ) ) ); |
|
126 | - $note_type = sanitize_text_field( $_POST['note_type'] ); |
|
124 | + $post_id = absint($_POST['post_id']); |
|
125 | + $note = wp_kses_post(trim(stripslashes($_POST['note']))); |
|
126 | + $note_type = sanitize_text_field($_POST['note_type']); |
|
127 | 127 | |
128 | 128 | $is_customer_note = $note_type == 'customer' ? 1 : 0; |
129 | 129 | |
130 | - if ( $post_id > 0 ) { |
|
131 | - $note_id = wpinv_insert_payment_note( $post_id, $note, $is_customer_note ); |
|
130 | + if ($post_id > 0) { |
|
131 | + $note_id = wpinv_insert_payment_note($post_id, $note, $is_customer_note); |
|
132 | 132 | |
133 | - if ( $note_id > 0 && !is_wp_error( $note_id ) ) { |
|
134 | - wpinv_get_invoice_note_line_item( $note_id ); |
|
133 | + if ($note_id > 0 && !is_wp_error($note_id)) { |
|
134 | + wpinv_get_invoice_note_line_item($note_id); |
|
135 | 135 | } |
136 | 136 | } |
137 | 137 | |
@@ -139,16 +139,16 @@ discard block |
||
139 | 139 | } |
140 | 140 | |
141 | 141 | public static function delete_note() { |
142 | - check_ajax_referer( 'delete-invoice-note', '_nonce' ); |
|
142 | + check_ajax_referer('delete-invoice-note', '_nonce'); |
|
143 | 143 | |
144 | - if ( !wpinv_current_user_can_manage_invoicing() ) { |
|
144 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
145 | 145 | die(-1); |
146 | 146 | } |
147 | 147 | |
148 | - $note_id = (int)$_POST['note_id']; |
|
148 | + $note_id = (int) $_POST['note_id']; |
|
149 | 149 | |
150 | - if ( $note_id > 0 ) { |
|
151 | - wp_delete_comment( $note_id, true ); |
|
150 | + if ($note_id > 0) { |
|
151 | + wp_delete_comment($note_id, true); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | die(); |
@@ -166,34 +166,34 @@ discard block |
||
166 | 166 | public static function get_billing_details() { |
167 | 167 | |
168 | 168 | // Verify nonce. |
169 | - check_ajax_referer( 'wpinv-nonce' ); |
|
169 | + check_ajax_referer('wpinv-nonce'); |
|
170 | 170 | |
171 | 171 | // Can the user manage the plugin? |
172 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
172 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
173 | 173 | die(-1); |
174 | 174 | } |
175 | 175 | |
176 | 176 | // Do we have a user id? |
177 | 177 | $user_id = $_GET['user_id']; |
178 | 178 | |
179 | - if ( empty( $user_id ) || ! is_numeric( $user_id ) ) { |
|
179 | + if (empty($user_id) || !is_numeric($user_id)) { |
|
180 | 180 | die(-1); |
181 | 181 | } |
182 | 182 | |
183 | 183 | // Fetch the billing details. |
184 | - $billing_details = wpinv_get_user_address( $user_id ); |
|
185 | - $billing_details = apply_filters( 'wpinv_ajax_billing_details', $billing_details, $user_id ); |
|
184 | + $billing_details = wpinv_get_user_address($user_id); |
|
185 | + $billing_details = apply_filters('wpinv_ajax_billing_details', $billing_details, $user_id); |
|
186 | 186 | |
187 | 187 | // unset the user id and email. |
188 | - $to_ignore = array( 'user_id', 'email' ); |
|
188 | + $to_ignore = array('user_id', 'email'); |
|
189 | 189 | |
190 | - foreach ( $to_ignore as $key ) { |
|
191 | - if ( isset( $billing_details[ $key ] ) ) { |
|
192 | - unset( $billing_details[ $key ] ); |
|
190 | + foreach ($to_ignore as $key) { |
|
191 | + if (isset($billing_details[$key])) { |
|
192 | + unset($billing_details[$key]); |
|
193 | 193 | } |
194 | 194 | } |
195 | 195 | |
196 | - wp_send_json_success( $billing_details ); |
|
196 | + wp_send_json_success($billing_details); |
|
197 | 197 | |
198 | 198 | } |
199 | 199 | |
@@ -203,47 +203,47 @@ discard block |
||
203 | 203 | public static function check_new_user_email() { |
204 | 204 | |
205 | 205 | // Verify nonce. |
206 | - check_ajax_referer( 'wpinv-nonce' ); |
|
206 | + check_ajax_referer('wpinv-nonce'); |
|
207 | 207 | |
208 | 208 | // Can the user manage the plugin? |
209 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
209 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
210 | 210 | die(-1); |
211 | 211 | } |
212 | 212 | |
213 | 213 | // We need an email address. |
214 | - if ( empty( $_GET['email'] ) ) { |
|
215 | - _e( "Provide the new user's email address", 'invoicing' ); |
|
214 | + if (empty($_GET['email'])) { |
|
215 | + _e("Provide the new user's email address", 'invoicing'); |
|
216 | 216 | exit; |
217 | 217 | } |
218 | 218 | |
219 | 219 | // Ensure the email is valid. |
220 | - $email = sanitize_text_field( $_GET['email'] ); |
|
221 | - if ( ! is_email( $email ) ) { |
|
222 | - _e( 'Invalid email address', 'invoicing' ); |
|
220 | + $email = sanitize_text_field($_GET['email']); |
|
221 | + if (!is_email($email)) { |
|
222 | + _e('Invalid email address', 'invoicing'); |
|
223 | 223 | exit; |
224 | 224 | } |
225 | 225 | |
226 | 226 | // And it does not exist. |
227 | - if ( email_exists( $email ) ) { |
|
228 | - _e( 'A user with this email address already exists', 'invoicing' ); |
|
227 | + if (email_exists($email)) { |
|
228 | + _e('A user with this email address already exists', 'invoicing'); |
|
229 | 229 | exit; |
230 | 230 | } |
231 | 231 | |
232 | - wp_send_json_success( true ); |
|
232 | + wp_send_json_success(true); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | public static function run_tool() { |
236 | - check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
|
237 | - if ( !wpinv_current_user_can_manage_invoicing() ) { |
|
236 | + check_ajax_referer('wpinv-nonce', '_nonce'); |
|
237 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
238 | 238 | die(-1); |
239 | 239 | } |
240 | 240 | |
241 | - $tool = sanitize_text_field( $_POST['tool'] ); |
|
241 | + $tool = sanitize_text_field($_POST['tool']); |
|
242 | 242 | |
243 | - do_action( 'wpinv_run_tool' ); |
|
243 | + do_action('wpinv_run_tool'); |
|
244 | 244 | |
245 | - if ( !empty( $tool ) ) { |
|
246 | - do_action( 'wpinv_tool_' . $tool ); |
|
245 | + if (!empty($tool)) { |
|
246 | + do_action('wpinv_tool_' . $tool); |
|
247 | 247 | } |
248 | 248 | } |
249 | 249 | |
@@ -253,30 +253,30 @@ discard block |
||
253 | 253 | public static function get_payment_form() { |
254 | 254 | |
255 | 255 | // Check nonce. |
256 | - if ( ! isset( $_GET['nonce'] ) || ! wp_verify_nonce( $_GET['nonce'], 'getpaid_ajax_form' ) ) { |
|
257 | - _e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
256 | + if (!isset($_GET['nonce']) || !wp_verify_nonce($_GET['nonce'], 'getpaid_ajax_form')) { |
|
257 | + _e('Error: Reload the page and try again.', 'invoicing'); |
|
258 | 258 | exit; |
259 | 259 | } |
260 | 260 | |
261 | 261 | // Is the request set up correctly? |
262 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
262 | + if (empty($_GET['form']) && empty($_GET['item'])) { |
|
263 | 263 | echo aui()->alert( |
264 | 264 | array( |
265 | 265 | 'type' => 'warning', |
266 | - 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
266 | + 'content' => __('No payment form or item provided', 'invoicing'), |
|
267 | 267 | ) |
268 | 268 | ); |
269 | 269 | exit; |
270 | 270 | } |
271 | 271 | |
272 | 272 | // Payment form or button? |
273 | - if ( ! empty( $_GET['form'] ) ) { |
|
274 | - getpaid_display_payment_form( $_GET['form'] ); |
|
275 | - } else if( ! empty( $_GET['invoice'] ) ) { |
|
276 | - getpaid_display_invoice_payment_form( $_GET['invoice'] ); |
|
273 | + if (!empty($_GET['form'])) { |
|
274 | + getpaid_display_payment_form($_GET['form']); |
|
275 | + } else if (!empty($_GET['invoice'])) { |
|
276 | + getpaid_display_invoice_payment_form($_GET['invoice']); |
|
277 | 277 | } else { |
278 | - $items = getpaid_convert_items_to_array( $_GET['item'] ); |
|
279 | - getpaid_display_item_payment_form( $items ); |
|
278 | + $items = getpaid_convert_items_to_array($_GET['item']); |
|
279 | + getpaid_display_item_payment_form($items); |
|
280 | 280 | } |
281 | 281 | |
282 | 282 | exit; |
@@ -291,17 +291,17 @@ discard block |
||
291 | 291 | public static function payment_form() { |
292 | 292 | |
293 | 293 | // Check nonce. |
294 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
294 | + check_ajax_referer('getpaid_form_nonce'); |
|
295 | 295 | |
296 | 296 | // ... form fields... |
297 | - if ( empty( $_POST['getpaid_payment_form_submission'] ) ) { |
|
298 | - _e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
297 | + if (empty($_POST['getpaid_payment_form_submission'])) { |
|
298 | + _e('Error: Reload the page and try again.', 'invoicing'); |
|
299 | 299 | exit; |
300 | 300 | } |
301 | 301 | |
302 | 302 | // Process the payment form. |
303 | - $checkout_class = apply_filters( 'getpaid_checkout_class', 'GetPaid_Checkout' ); |
|
304 | - $checkout = new $checkout_class( new GetPaid_Payment_Form_Submission() ); |
|
303 | + $checkout_class = apply_filters('getpaid_checkout_class', 'GetPaid_Checkout'); |
|
304 | + $checkout = new $checkout_class(new GetPaid_Payment_Form_Submission()); |
|
305 | 305 | $checkout->process_checkout(); |
306 | 306 | |
307 | 307 | exit; |
@@ -314,53 +314,53 @@ discard block |
||
314 | 314 | */ |
315 | 315 | public static function get_payment_form_states_field() { |
316 | 316 | |
317 | - if ( empty( $_GET['country'] ) || empty( $_GET['form'] ) ) { |
|
317 | + if (empty($_GET['country']) || empty($_GET['form'])) { |
|
318 | 318 | exit; |
319 | 319 | } |
320 | 320 | |
321 | - $elements = getpaid_get_payment_form_elements( $_GET['form'] ); |
|
321 | + $elements = getpaid_get_payment_form_elements($_GET['form']); |
|
322 | 322 | |
323 | - if ( empty( $elements ) ) { |
|
323 | + if (empty($elements)) { |
|
324 | 324 | exit; |
325 | 325 | } |
326 | 326 | |
327 | 327 | $address_fields = array(); |
328 | - foreach ( $elements as $element ) { |
|
329 | - if ( 'address' === $element['type'] ) { |
|
328 | + foreach ($elements as $element) { |
|
329 | + if ('address' === $element['type']) { |
|
330 | 330 | $address_fields = $element; |
331 | 331 | break; |
332 | 332 | } |
333 | 333 | } |
334 | 334 | |
335 | - if ( empty( $address_fields ) ) { |
|
335 | + if (empty($address_fields)) { |
|
336 | 336 | exit; |
337 | 337 | } |
338 | 338 | |
339 | - foreach ( $address_fields['fields'] as $address_field ) { |
|
339 | + foreach ($address_fields['fields'] as $address_field) { |
|
340 | 340 | |
341 | - if ( 'wpinv_state' == $address_field['name'] ) { |
|
341 | + if ('wpinv_state' == $address_field['name']) { |
|
342 | 342 | |
343 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
344 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
345 | - $value = is_user_logged_in() ? get_user_meta( get_current_user_id(), '_wpinv_state', true ) : ''; |
|
346 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
343 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
344 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
345 | + $value = is_user_logged_in() ? get_user_meta(get_current_user_id(), '_wpinv_state', true) : ''; |
|
346 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
347 | 347 | |
348 | - if ( ! empty( $address_field['required'] ) ) { |
|
348 | + if (!empty($address_field['required'])) { |
|
349 | 349 | $label .= "<span class='text-danger'> *</span>"; |
350 | 350 | } |
351 | 351 | |
352 | - $states = wpinv_get_country_states( $_GET['country'] ); |
|
352 | + $states = wpinv_get_country_states($_GET['country']); |
|
353 | 353 | |
354 | - if ( ! empty( $states ) ) { |
|
354 | + if (!empty($states)) { |
|
355 | 355 | |
356 | - $html = aui()->select( array( |
|
356 | + $html = aui()->select(array( |
|
357 | 357 | 'options' => $states, |
358 | 358 | 'name' => 'wpinv_state', |
359 | 359 | 'id' => 'wpinv_state' . uniqid(), |
360 | - 'value' => sanitize_text_field( $value ), |
|
360 | + 'value' => sanitize_text_field($value), |
|
361 | 361 | 'placeholder' => $placeholder, |
362 | - 'required' => ! empty( $address_field['required'] ), |
|
363 | - 'label' => wp_kses_post( $label ), |
|
362 | + 'required' => !empty($address_field['required']), |
|
363 | + 'label' => wp_kses_post($label), |
|
364 | 364 | 'label_type' => 'vertical', |
365 | 365 | 'help_text' => $description, |
366 | 366 | 'class' => 'wpinv_state', |
@@ -373,8 +373,8 @@ discard block |
||
373 | 373 | 'name' => 'wpinv_state', |
374 | 374 | 'id' => 'wpinv_state' . uniqid(), |
375 | 375 | 'placeholder'=> $placeholder, |
376 | - 'required' => ! empty( $address_field['required'] ), |
|
377 | - 'label' => wp_kses_post( $label ), |
|
376 | + 'required' => !empty($address_field['required']), |
|
377 | + 'label' => wp_kses_post($label), |
|
378 | 378 | 'label_type' => 'vertical', |
379 | 379 | 'help_text' => $description, |
380 | 380 | 'value' => $value, |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | |
385 | 385 | } |
386 | 386 | |
387 | - wp_send_json_success( $html ); |
|
387 | + wp_send_json_success($html); |
|
388 | 388 | exit; |
389 | 389 | |
390 | 390 | } |
@@ -400,56 +400,56 @@ discard block |
||
400 | 400 | public static function recalculate_invoice_totals() { |
401 | 401 | |
402 | 402 | // Verify nonce. |
403 | - check_ajax_referer( 'wpinv-nonce' ); |
|
403 | + check_ajax_referer('wpinv-nonce'); |
|
404 | 404 | |
405 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
405 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
406 | 406 | exit; |
407 | 407 | } |
408 | 408 | |
409 | 409 | // We need an invoice. |
410 | - if ( empty( $_POST['post_id'] ) ) { |
|
410 | + if (empty($_POST['post_id'])) { |
|
411 | 411 | exit; |
412 | 412 | } |
413 | 413 | |
414 | 414 | // Fetch the invoice. |
415 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
415 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
416 | 416 | |
417 | 417 | // Ensure it exists. |
418 | - if ( ! $invoice->get_id() ) { |
|
418 | + if (!$invoice->get_id()) { |
|
419 | 419 | exit; |
420 | 420 | } |
421 | 421 | |
422 | 422 | // Maybe set the country, state, currency. |
423 | - foreach ( array( 'country', 'state', 'currency' ) as $key ) { |
|
424 | - if ( isset( $_POST[ $key ] ) ) { |
|
423 | + foreach (array('country', 'state', 'currency') as $key) { |
|
424 | + if (isset($_POST[$key])) { |
|
425 | 425 | $method = "set_$key"; |
426 | - $invoice->$method( $_POST[ $key ] ); |
|
426 | + $invoice->$method($_POST[$key]); |
|
427 | 427 | } |
428 | 428 | } |
429 | 429 | |
430 | 430 | // Maybe disable taxes. |
431 | - $invoice->set_disable_taxes( ! empty( $_POST['taxes'] ) ); |
|
431 | + $invoice->set_disable_taxes(!empty($_POST['taxes'])); |
|
432 | 432 | |
433 | 433 | // Recalculate totals. |
434 | 434 | $invoice->recalculate_total(); |
435 | 435 | |
436 | - $total = wpinv_price( wpinv_format_amount( $invoice->get_total() ), $invoice->get_currency() ); |
|
436 | + $total = wpinv_price(wpinv_format_amount($invoice->get_total()), $invoice->get_currency()); |
|
437 | 437 | |
438 | - if ( $invoice->is_recurring() && $invoice->is_parent() && $invoice->get_total() != $invoice->get_recurring_total() ) { |
|
439 | - $recurring_total = wpinv_price( wpinv_format_amount( $invoice->get_recurring_total() ), $invoice->get_currency() ); |
|
440 | - $total .= '<small class="form-text text-muted">' . sprintf( __( 'Recurring Price: %s', 'invoicing' ), $recurring_total ) . '</small>'; |
|
438 | + if ($invoice->is_recurring() && $invoice->is_parent() && $invoice->get_total() != $invoice->get_recurring_total()) { |
|
439 | + $recurring_total = wpinv_price(wpinv_format_amount($invoice->get_recurring_total()), $invoice->get_currency()); |
|
440 | + $total .= '<small class="form-text text-muted">' . sprintf(__('Recurring Price: %s', 'invoicing'), $recurring_total) . '</small>'; |
|
441 | 441 | } |
442 | 442 | |
443 | 443 | $totals = array( |
444 | - 'subtotal' => wpinv_price( wpinv_format_amount( $invoice->get_subtotal() ), $invoice->get_currency() ), |
|
445 | - 'discount' => wpinv_price( wpinv_format_amount( $invoice->get_total_discount() ), $invoice->get_currency() ), |
|
446 | - 'tax' => wpinv_price( wpinv_format_amount( $invoice->get_total_tax() ), $invoice->get_currency() ), |
|
444 | + 'subtotal' => wpinv_price(wpinv_format_amount($invoice->get_subtotal()), $invoice->get_currency()), |
|
445 | + 'discount' => wpinv_price(wpinv_format_amount($invoice->get_total_discount()), $invoice->get_currency()), |
|
446 | + 'tax' => wpinv_price(wpinv_format_amount($invoice->get_total_tax()), $invoice->get_currency()), |
|
447 | 447 | 'total' => $total, |
448 | 448 | ); |
449 | 449 | |
450 | - $totals = apply_filters( 'getpaid_invoice_totals', $totals, $invoice ); |
|
450 | + $totals = apply_filters('getpaid_invoice_totals', $totals, $invoice); |
|
451 | 451 | |
452 | - wp_send_json_success( compact( 'totals' ) ); |
|
452 | + wp_send_json_success(compact('totals')); |
|
453 | 453 | } |
454 | 454 | |
455 | 455 | /** |
@@ -458,33 +458,33 @@ discard block |
||
458 | 458 | public static function get_invoice_items() { |
459 | 459 | |
460 | 460 | // Verify nonce. |
461 | - check_ajax_referer( 'wpinv-nonce' ); |
|
461 | + check_ajax_referer('wpinv-nonce'); |
|
462 | 462 | |
463 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
463 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
464 | 464 | exit; |
465 | 465 | } |
466 | 466 | |
467 | 467 | // We need an invoice and items. |
468 | - if ( empty( $_POST['post_id'] ) ) { |
|
468 | + if (empty($_POST['post_id'])) { |
|
469 | 469 | exit; |
470 | 470 | } |
471 | 471 | |
472 | 472 | // Fetch the invoice. |
473 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
473 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
474 | 474 | |
475 | 475 | // Ensure it exists. |
476 | - if ( ! $invoice->get_id() ) { |
|
476 | + if (!$invoice->get_id()) { |
|
477 | 477 | exit; |
478 | 478 | } |
479 | 479 | |
480 | 480 | // Return an array of invoice items. |
481 | 481 | $items = array(); |
482 | 482 | |
483 | - foreach ( $invoice->get_items() as $item_id => $item ) { |
|
484 | - $items[ $item_id ] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
483 | + foreach ($invoice->get_items() as $item_id => $item) { |
|
484 | + $items[$item_id] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
485 | 485 | } |
486 | 486 | |
487 | - wp_send_json_success( compact( 'items' ) ); |
|
487 | + wp_send_json_success(compact('items')); |
|
488 | 488 | } |
489 | 489 | |
490 | 490 | /** |
@@ -493,50 +493,50 @@ discard block |
||
493 | 493 | public static function edit_invoice_item() { |
494 | 494 | |
495 | 495 | // Verify nonce. |
496 | - check_ajax_referer( 'wpinv-nonce' ); |
|
496 | + check_ajax_referer('wpinv-nonce'); |
|
497 | 497 | |
498 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
498 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
499 | 499 | exit; |
500 | 500 | } |
501 | 501 | |
502 | 502 | // We need an invoice and item details. |
503 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['data'] ) ) { |
|
503 | + if (empty($_POST['post_id']) || empty($_POST['data'])) { |
|
504 | 504 | exit; |
505 | 505 | } |
506 | 506 | |
507 | 507 | // Fetch the invoice. |
508 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
508 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
509 | 509 | |
510 | 510 | // Ensure it exists and its not been paid for. |
511 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
511 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
512 | 512 | exit; |
513 | 513 | } |
514 | 514 | |
515 | 515 | // Format the data. |
516 | - $data = wp_list_pluck( $_POST['data'], 'value', 'field' ); |
|
516 | + $data = wp_list_pluck($_POST['data'], 'value', 'field'); |
|
517 | 517 | |
518 | 518 | // Ensure that we have an item id. |
519 | - if ( empty( $data['id'] ) ) { |
|
519 | + if (empty($data['id'])) { |
|
520 | 520 | exit; |
521 | 521 | } |
522 | 522 | |
523 | 523 | // Abort if the invoice does not have the specified item. |
524 | - $item = $invoice->get_item( (int) $data['id'] ); |
|
524 | + $item = $invoice->get_item((int) $data['id']); |
|
525 | 525 | |
526 | - if ( empty( $item ) ) { |
|
526 | + if (empty($item)) { |
|
527 | 527 | exit; |
528 | 528 | } |
529 | 529 | |
530 | 530 | // Update the item. |
531 | - $item->set_price( $data['price'] ); |
|
532 | - $item->set_name( $data['name'] ); |
|
533 | - $item->set_description( $data['description'] ); |
|
534 | - $item->set_quantity( $data['quantity'] ); |
|
531 | + $item->set_price($data['price']); |
|
532 | + $item->set_name($data['name']); |
|
533 | + $item->set_description($data['description']); |
|
534 | + $item->set_quantity($data['quantity']); |
|
535 | 535 | |
536 | 536 | // Add it to the invoice. |
537 | - $error = $invoice->add_item( $item ); |
|
537 | + $error = $invoice->add_item($item); |
|
538 | 538 | $alert = false; |
539 | - if ( is_wp_error( $error ) ) { |
|
539 | + if (is_wp_error($error)) { |
|
540 | 540 | $alert = $error->get_error_message(); |
541 | 541 | } |
542 | 542 | |
@@ -549,11 +549,11 @@ discard block |
||
549 | 549 | // Return an array of invoice items. |
550 | 550 | $items = array(); |
551 | 551 | |
552 | - foreach ( $invoice->get_items() as $item_id => $item ) { |
|
553 | - $items[ $item_id ] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
552 | + foreach ($invoice->get_items() as $item_id => $item) { |
|
553 | + $items[$item_id] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
554 | 554 | } |
555 | 555 | |
556 | - wp_send_json_success( compact( 'items', 'alert' ) ); |
|
556 | + wp_send_json_success(compact('items', 'alert')); |
|
557 | 557 | } |
558 | 558 | |
559 | 559 | /** |
@@ -562,33 +562,33 @@ discard block |
||
562 | 562 | public static function remove_invoice_item() { |
563 | 563 | |
564 | 564 | // Verify nonce. |
565 | - check_ajax_referer( 'wpinv-nonce' ); |
|
565 | + check_ajax_referer('wpinv-nonce'); |
|
566 | 566 | |
567 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
567 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
568 | 568 | exit; |
569 | 569 | } |
570 | 570 | |
571 | 571 | // We need an invoice and an item. |
572 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['item_id'] ) ) { |
|
572 | + if (empty($_POST['post_id']) || empty($_POST['item_id'])) { |
|
573 | 573 | exit; |
574 | 574 | } |
575 | 575 | |
576 | 576 | // Fetch the invoice. |
577 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
577 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
578 | 578 | |
579 | 579 | // Ensure it exists and its not been paid for. |
580 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
580 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
581 | 581 | exit; |
582 | 582 | } |
583 | 583 | |
584 | 584 | // Abort if the invoice does not have the specified item. |
585 | - $item = $invoice->get_item( (int) $_POST['item_id'] ); |
|
585 | + $item = $invoice->get_item((int) $_POST['item_id']); |
|
586 | 586 | |
587 | - if ( empty( $item ) ) { |
|
587 | + if (empty($item)) { |
|
588 | 588 | exit; |
589 | 589 | } |
590 | 590 | |
591 | - $invoice->remove_item( (int) $_POST['item_id'] ); |
|
591 | + $invoice->remove_item((int) $_POST['item_id']); |
|
592 | 592 | |
593 | 593 | // Update totals. |
594 | 594 | $invoice->recalculate_total(); |
@@ -599,11 +599,11 @@ discard block |
||
599 | 599 | // Return an array of invoice items. |
600 | 600 | $items = array(); |
601 | 601 | |
602 | - foreach ( $invoice->get_items() as $item_id => $item ) { |
|
603 | - $items[ $item_id ] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
602 | + foreach ($invoice->get_items() as $item_id => $item) { |
|
603 | + $items[$item_id] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
604 | 604 | } |
605 | 605 | |
606 | - wp_send_json_success( compact( 'items' ) ); |
|
606 | + wp_send_json_success(compact('items')); |
|
607 | 607 | } |
608 | 608 | |
609 | 609 | /** |
@@ -612,39 +612,39 @@ discard block |
||
612 | 612 | public static function add_invoice_items() { |
613 | 613 | |
614 | 614 | // Verify nonce. |
615 | - check_ajax_referer( 'wpinv-nonce' ); |
|
615 | + check_ajax_referer('wpinv-nonce'); |
|
616 | 616 | |
617 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
617 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
618 | 618 | exit; |
619 | 619 | } |
620 | 620 | |
621 | 621 | // We need an invoice and items. |
622 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['items'] ) ) { |
|
622 | + if (empty($_POST['post_id']) || empty($_POST['items'])) { |
|
623 | 623 | exit; |
624 | 624 | } |
625 | 625 | |
626 | 626 | // Fetch the invoice. |
627 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
627 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
628 | 628 | $alert = false; |
629 | 629 | |
630 | 630 | // Ensure it exists and its not been paid for. |
631 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
631 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
632 | 632 | exit; |
633 | 633 | } |
634 | 634 | |
635 | 635 | // Add the items. |
636 | - foreach ( $_POST['items'] as $data ) { |
|
636 | + foreach ($_POST['items'] as $data) { |
|
637 | 637 | |
638 | - $item = new GetPaid_Form_Item( $data[ 'id' ] ); |
|
638 | + $item = new GetPaid_Form_Item($data['id']); |
|
639 | 639 | |
640 | - if ( is_numeric( $data[ 'qty' ] ) && (int) $data[ 'qty' ] > 0 ) { |
|
641 | - $item->set_quantity( $data[ 'qty' ] ); |
|
640 | + if (is_numeric($data['qty']) && (int) $data['qty'] > 0) { |
|
641 | + $item->set_quantity($data['qty']); |
|
642 | 642 | } |
643 | 643 | |
644 | - if ( $item->get_id() > 0 ) { |
|
645 | - $error = $invoice->add_item( $item ); |
|
644 | + if ($item->get_id() > 0) { |
|
645 | + $error = $invoice->add_item($item); |
|
646 | 646 | |
647 | - if ( is_wp_error( $error ) ) { |
|
647 | + if (is_wp_error($error)) { |
|
648 | 648 | $alert = $error->get_error_message(); |
649 | 649 | } |
650 | 650 | |
@@ -659,11 +659,11 @@ discard block |
||
659 | 659 | // Return an array of invoice items. |
660 | 660 | $items = array(); |
661 | 661 | |
662 | - foreach ( $invoice->get_items() as $item_id => $item ) { |
|
663 | - $items[ $item_id ] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
662 | + foreach ($invoice->get_items() as $item_id => $item) { |
|
663 | + $items[$item_id] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
664 | 664 | } |
665 | 665 | |
666 | - wp_send_json_success( compact( 'items', 'alert' ) ); |
|
666 | + wp_send_json_success(compact('items', 'alert')); |
|
667 | 667 | } |
668 | 668 | |
669 | 669 | /** |
@@ -672,15 +672,15 @@ discard block |
||
672 | 672 | public static function get_invoicing_items() { |
673 | 673 | |
674 | 674 | // Verify nonce. |
675 | - check_ajax_referer( 'wpinv-nonce' ); |
|
675 | + check_ajax_referer('wpinv-nonce'); |
|
676 | 676 | |
677 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
677 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
678 | 678 | exit; |
679 | 679 | } |
680 | 680 | |
681 | 681 | // We need a search term. |
682 | - if ( empty( $_GET['search'] ) ) { |
|
683 | - wp_send_json_success( array() ); |
|
682 | + if (empty($_GET['search'])) { |
|
683 | + wp_send_json_success(array()); |
|
684 | 684 | } |
685 | 685 | |
686 | 686 | // Retrieve items. |
@@ -689,8 +689,8 @@ discard block |
||
689 | 689 | 'orderby' => 'title', |
690 | 690 | 'order' => 'ASC', |
691 | 691 | 'posts_per_page' => -1, |
692 | - 'post_status' => array( 'publish' ), |
|
693 | - 's' => trim( $_GET['search'] ), |
|
692 | + 'post_status' => array('publish'), |
|
693 | + 's' => trim($_GET['search']), |
|
694 | 694 | 'meta_query' => array( |
695 | 695 | array( |
696 | 696 | 'key' => '_wpinv_type', |
@@ -700,22 +700,22 @@ discard block |
||
700 | 700 | ) |
701 | 701 | ); |
702 | 702 | |
703 | - $items = get_posts( apply_filters( 'getpaid_ajax_invoice_items_query_args', $item_args ) ); |
|
703 | + $items = get_posts(apply_filters('getpaid_ajax_invoice_items_query_args', $item_args)); |
|
704 | 704 | $data = array(); |
705 | 705 | |
706 | 706 | |
707 | - $is_payment_form = ( ! empty( $_GET['post_id'] ) && 'wpi_payment_form' == get_post_type( $_GET['post_id'] ) ); |
|
707 | + $is_payment_form = (!empty($_GET['post_id']) && 'wpi_payment_form' == get_post_type($_GET['post_id'])); |
|
708 | 708 | |
709 | - foreach ( $items as $item ) { |
|
710 | - $item = new GetPaid_Form_Item( $item ); |
|
709 | + foreach ($items as $item) { |
|
710 | + $item = new GetPaid_Form_Item($item); |
|
711 | 711 | $data[] = array( |
712 | 712 | 'id' => (int) $item->get_id(), |
713 | - 'text' => strip_tags( $item->get_name() ), |
|
714 | - 'form_data' => $is_payment_form ? $item->prepare_data_for_use( false ) : '', |
|
713 | + 'text' => strip_tags($item->get_name()), |
|
714 | + 'form_data' => $is_payment_form ? $item->prepare_data_for_use(false) : '', |
|
715 | 715 | ); |
716 | 716 | } |
717 | 717 | |
718 | - wp_send_json_success( $data ); |
|
718 | + wp_send_json_success($data); |
|
719 | 719 | |
720 | 720 | } |
721 | 721 | |
@@ -725,24 +725,24 @@ discard block |
||
725 | 725 | public static function get_aui_states_field() { |
726 | 726 | |
727 | 727 | // Verify nonce. |
728 | - check_ajax_referer( 'wpinv-nonce' ); |
|
728 | + check_ajax_referer('wpinv-nonce'); |
|
729 | 729 | |
730 | 730 | // We need a country. |
731 | - if ( empty( $_GET['country'] ) ) { |
|
731 | + if (empty($_GET['country'])) { |
|
732 | 732 | exit; |
733 | 733 | } |
734 | 734 | |
735 | - $states = wpinv_get_country_states( trim( $_GET['country'] ) ); |
|
736 | - $state = isset( $_GET['state'] ) ? trim( $_GET['state'] ) : wpinv_get_default_state(); |
|
735 | + $states = wpinv_get_country_states(trim($_GET['country'])); |
|
736 | + $state = isset($_GET['state']) ? trim($_GET['state']) : wpinv_get_default_state(); |
|
737 | 737 | |
738 | - if ( empty( $states ) ) { |
|
738 | + if (empty($states)) { |
|
739 | 739 | |
740 | 740 | $html = aui()->input( |
741 | 741 | array( |
742 | 742 | 'type' => 'text', |
743 | 743 | 'id' => 'wpinv_state', |
744 | 744 | 'name' => 'wpinv_state', |
745 | - 'label' => __( 'State', 'invoicing' ), |
|
745 | + 'label' => __('State', 'invoicing'), |
|
746 | 746 | 'label_type' => 'vertical', |
747 | 747 | 'placeholder' => 'Liège', |
748 | 748 | 'class' => 'form-control-sm', |
@@ -756,9 +756,9 @@ discard block |
||
756 | 756 | array( |
757 | 757 | 'id' => 'wpinv_state', |
758 | 758 | 'name' => 'wpinv_state', |
759 | - 'label' => __( 'State', 'invoicing' ), |
|
759 | + 'label' => __('State', 'invoicing'), |
|
760 | 760 | 'label_type' => 'vertical', |
761 | - 'placeholder' => __( 'Select a state', 'invoicing' ), |
|
761 | + 'placeholder' => __('Select a state', 'invoicing'), |
|
762 | 762 | 'class' => 'form-control-sm', |
763 | 763 | 'value' => $state, |
764 | 764 | 'options' => $states, |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | wp_send_json_success( |
773 | 773 | array( |
774 | 774 | 'html' => $html, |
775 | - 'select' => ! empty ( $states ) |
|
775 | + 'select' => !empty ($states) |
|
776 | 776 | ) |
777 | 777 | ); |
778 | 778 | |
@@ -786,46 +786,46 @@ discard block |
||
786 | 786 | public static function ip_geolocation() { |
787 | 787 | |
788 | 788 | // Check nonce. |
789 | - check_ajax_referer( 'getpaid-ip-location' ); |
|
789 | + check_ajax_referer('getpaid-ip-location'); |
|
790 | 790 | |
791 | 791 | // IP address. |
792 | - if ( empty( $_GET['ip'] ) || ! rest_is_ip_address( $_GET['ip'] ) ) { |
|
793 | - _e( 'Invalid IP Address.', 'invoicing' ); |
|
792 | + if (empty($_GET['ip']) || !rest_is_ip_address($_GET['ip'])) { |
|
793 | + _e('Invalid IP Address.', 'invoicing'); |
|
794 | 794 | exit; |
795 | 795 | } |
796 | 796 | |
797 | 797 | // Retrieve location info. |
798 | - $location = getpaid_geolocate_ip_address( $_GET['ip'] ); |
|
798 | + $location = getpaid_geolocate_ip_address($_GET['ip']); |
|
799 | 799 | |
800 | - if ( empty( $location ) ) { |
|
801 | - _e( 'Unable to find geolocation for the IP Address.', 'invoicing' ); |
|
800 | + if (empty($location)) { |
|
801 | + _e('Unable to find geolocation for the IP Address.', 'invoicing'); |
|
802 | 802 | exit; |
803 | 803 | } |
804 | 804 | |
805 | 805 | // Sorry. |
806 | - extract( $location ); |
|
806 | + extract($location); |
|
807 | 807 | |
808 | 808 | // Prepare the address. |
809 | 809 | $content = ''; |
810 | 810 | |
811 | - if ( ! empty( $location['city'] ) ) { |
|
812 | - $content .= $location['city'] . ', '; |
|
811 | + if (!empty($location['city'])) { |
|
812 | + $content .= $location['city'] . ', '; |
|
813 | 813 | } |
814 | 814 | |
815 | - if ( ! empty( $location['region'] ) ) { |
|
816 | - $content .= $location['region'] . ', '; |
|
815 | + if (!empty($location['region'])) { |
|
816 | + $content .= $location['region'] . ', '; |
|
817 | 817 | } |
818 | 818 | |
819 | - $content .= $location['country'] . ' (' . $location['iso'] . ')'; |
|
819 | + $content .= $location['country'] . ' (' . $location['iso'] . ')'; |
|
820 | 820 | |
821 | 821 | $location['address'] = $content; |
822 | 822 | |
823 | - $content = '<p>'. sprintf( __( '<b>Address:</b> %s', 'invoicing' ), $content ) . '</p>'; |
|
824 | - $content .= '<p>'. $location['credit'] . '</p>'; |
|
823 | + $content = '<p>' . sprintf(__('<b>Address:</b> %s', 'invoicing'), $content) . '</p>'; |
|
824 | + $content .= '<p>' . $location['credit'] . '</p>'; |
|
825 | 825 | |
826 | 826 | $location['content'] = $content; |
827 | 827 | |
828 | - wpinv_get_template( 'geolocation.php', $location ); |
|
828 | + wpinv_get_template('geolocation.php', $location); |
|
829 | 829 | |
830 | 830 | exit; |
831 | 831 | } |
@@ -838,11 +838,11 @@ discard block |
||
838 | 838 | public static function payment_form_refresh_prices() { |
839 | 839 | |
840 | 840 | // Check nonce. |
841 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
841 | + check_ajax_referer('getpaid_form_nonce'); |
|
842 | 842 | |
843 | 843 | // ... form fields... |
844 | - if ( empty( $_POST['getpaid_payment_form_submission'] ) ) { |
|
845 | - _e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
844 | + if (empty($_POST['getpaid_payment_form_submission'])) { |
|
845 | + _e('Error: Reload the page and try again.', 'invoicing'); |
|
846 | 846 | exit; |
847 | 847 | } |
848 | 848 | |
@@ -850,18 +850,18 @@ discard block |
||
850 | 850 | $submission = new GetPaid_Payment_Form_Submission(); |
851 | 851 | |
852 | 852 | // Do we have an error? |
853 | - if ( ! empty( $submission->last_error ) ) { |
|
853 | + if (!empty($submission->last_error)) { |
|
854 | 854 | echo $submission->last_error; |
855 | 855 | exit; |
856 | 856 | } |
857 | 857 | |
858 | 858 | // Prepare the response. |
859 | - $response = new GetPaid_Payment_Form_Submission_Refresh_Prices( $submission ); |
|
859 | + $response = new GetPaid_Payment_Form_Submission_Refresh_Prices($submission); |
|
860 | 860 | |
861 | 861 | // Filter the response. |
862 | - $response = apply_filters( 'getpaid_payment_form_ajax_refresh_prices', $response->response, $submission ); |
|
862 | + $response = apply_filters('getpaid_payment_form_ajax_refresh_prices', $response->response, $submission); |
|
863 | 863 | |
864 | - wp_send_json_success( $response ); |
|
864 | + wp_send_json_success($response); |
|
865 | 865 | } |
866 | 866 | |
867 | 867 | } |
@@ -13,128 +13,128 @@ |
||
13 | 13 | class GetPaid_Payment_Forms { |
14 | 14 | |
15 | 15 | /** |
16 | - * Class constructor |
|
17 | - * |
|
18 | - */ |
|
19 | - public function __construct() { |
|
20 | - |
|
21 | - // Update a payment form's revenue whenever an invoice is paid for or refunded. |
|
22 | - add_action( 'getpaid_invoice_payment_status_changed', array( $this, 'increment_form_revenue' ) ); |
|
23 | - add_action( 'getpaid_invoice_payment_status_reversed', array( $this, 'decrease_form_revenue' ) ); |
|
24 | - |
|
25 | - // Sync form amount whenever invoice statuses change. |
|
26 | - add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_failed_amount' ), 10, 3 ); |
|
27 | - add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_refunded_amount' ), 10, 3 ); |
|
28 | - add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_cancelled_amount' ), 10, 3 ); |
|
29 | - |
|
30 | - } |
|
31 | - |
|
32 | - /** |
|
33 | - * Increments a form's revenue whenever there is a payment. |
|
34 | - * |
|
35 | - * @param WPInv_Invoice $invoice |
|
36 | - */ |
|
37 | - public function increment_form_revenue( $invoice ) { |
|
38 | - |
|
39 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
40 | - if ( $form->get_id() ) { |
|
41 | - $form->set_earned( $form->get_earned() + $invoice->get_total() ); |
|
42 | - $form->save(); |
|
43 | - } |
|
44 | - |
|
45 | - } |
|
46 | - |
|
47 | - /** |
|
48 | - * Decreases form revenue whenever invoice payment changes. |
|
49 | - * |
|
50 | - * @param WPInv_Invoice $invoice |
|
51 | - */ |
|
52 | - public function decrease_form_revenue( $invoice ) { |
|
53 | - |
|
54 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
55 | - if ( $form->get_id() ) { |
|
56 | - $form->set_earned( $form->get_earned() - $invoice->get_total() ); |
|
57 | - $form->save(); |
|
58 | - } |
|
59 | - |
|
60 | - } |
|
61 | - |
|
62 | - /** |
|
63 | - * Updates a form's failed amount. |
|
64 | - * |
|
65 | - * @param WPInv_Invoice $invoice |
|
66 | - * @param string $from |
|
67 | - * @param string $to |
|
68 | - */ |
|
69 | - public function update_form_failed_amount( $invoice, $from, $to ) { |
|
70 | - |
|
71 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
72 | - if ( $form->get_id() ) { |
|
73 | - return; |
|
74 | - } |
|
75 | - |
|
76 | - if ( 'wpi-failed' == $from ) { |
|
77 | - $form->set_failed( $form->get_failed() - $invoice->get_total() ); |
|
78 | - $form->save(); |
|
79 | - } |
|
80 | - |
|
81 | - if ( 'wpi-failed' == $to ) { |
|
82 | - $form->set_failed( $form->get_failed() + $invoice->get_total() ); |
|
83 | - $form->save(); |
|
84 | - } |
|
85 | - |
|
86 | - } |
|
87 | - |
|
88 | - /** |
|
89 | - * Updates a form's refunded amount. |
|
90 | - * |
|
91 | - * @param WPInv_Invoice $invoice |
|
92 | - * @param string $from |
|
93 | - * @param string $to |
|
94 | - */ |
|
95 | - public function update_form_refunded_amount( $invoice, $from, $to ) { |
|
96 | - |
|
97 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
98 | - if ( $form->get_id() ) { |
|
99 | - return; |
|
100 | - } |
|
101 | - |
|
102 | - if ( 'wpi-refunded' == $from ) { |
|
103 | - $form->set_refunded( $form->get_refunded() - $invoice->get_total() ); |
|
104 | - $form->save(); |
|
105 | - } |
|
106 | - |
|
107 | - if ( 'wpi-refunded' == $to ) { |
|
108 | - $form->set_refunded( $form->get_refunded() + $invoice->get_total() ); |
|
109 | - $form->save(); |
|
110 | - } |
|
111 | - |
|
112 | - } |
|
113 | - |
|
114 | - /** |
|
115 | - * Updates a form's cancelled amount. |
|
116 | - * |
|
117 | - * @param WPInv_Invoice $invoice |
|
118 | - * @param string $from |
|
119 | - * @param string $to |
|
120 | - */ |
|
121 | - public function update_form_cancelled_amount( $invoice, $from, $to ) { |
|
122 | - |
|
123 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
124 | - if ( $form->get_id() ) { |
|
125 | - return; |
|
126 | - } |
|
127 | - |
|
128 | - if ( 'wpi-cancelled' == $from ) { |
|
129 | - $form->set_cancelled( $form->get_cancelled() - $invoice->get_total() ); |
|
130 | - $form->save(); |
|
131 | - } |
|
132 | - |
|
133 | - if ( 'wpi-cancelled' == $to ) { |
|
134 | - $form->set_cancelled( $form->get_cancelled() + $invoice->get_total() ); |
|
135 | - $form->save(); |
|
136 | - } |
|
137 | - |
|
138 | - } |
|
16 | + * Class constructor |
|
17 | + * |
|
18 | + */ |
|
19 | + public function __construct() { |
|
20 | + |
|
21 | + // Update a payment form's revenue whenever an invoice is paid for or refunded. |
|
22 | + add_action( 'getpaid_invoice_payment_status_changed', array( $this, 'increment_form_revenue' ) ); |
|
23 | + add_action( 'getpaid_invoice_payment_status_reversed', array( $this, 'decrease_form_revenue' ) ); |
|
24 | + |
|
25 | + // Sync form amount whenever invoice statuses change. |
|
26 | + add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_failed_amount' ), 10, 3 ); |
|
27 | + add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_refunded_amount' ), 10, 3 ); |
|
28 | + add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_cancelled_amount' ), 10, 3 ); |
|
29 | + |
|
30 | + } |
|
31 | + |
|
32 | + /** |
|
33 | + * Increments a form's revenue whenever there is a payment. |
|
34 | + * |
|
35 | + * @param WPInv_Invoice $invoice |
|
36 | + */ |
|
37 | + public function increment_form_revenue( $invoice ) { |
|
38 | + |
|
39 | + $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
40 | + if ( $form->get_id() ) { |
|
41 | + $form->set_earned( $form->get_earned() + $invoice->get_total() ); |
|
42 | + $form->save(); |
|
43 | + } |
|
44 | + |
|
45 | + } |
|
46 | + |
|
47 | + /** |
|
48 | + * Decreases form revenue whenever invoice payment changes. |
|
49 | + * |
|
50 | + * @param WPInv_Invoice $invoice |
|
51 | + */ |
|
52 | + public function decrease_form_revenue( $invoice ) { |
|
53 | + |
|
54 | + $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
55 | + if ( $form->get_id() ) { |
|
56 | + $form->set_earned( $form->get_earned() - $invoice->get_total() ); |
|
57 | + $form->save(); |
|
58 | + } |
|
59 | + |
|
60 | + } |
|
61 | + |
|
62 | + /** |
|
63 | + * Updates a form's failed amount. |
|
64 | + * |
|
65 | + * @param WPInv_Invoice $invoice |
|
66 | + * @param string $from |
|
67 | + * @param string $to |
|
68 | + */ |
|
69 | + public function update_form_failed_amount( $invoice, $from, $to ) { |
|
70 | + |
|
71 | + $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
72 | + if ( $form->get_id() ) { |
|
73 | + return; |
|
74 | + } |
|
75 | + |
|
76 | + if ( 'wpi-failed' == $from ) { |
|
77 | + $form->set_failed( $form->get_failed() - $invoice->get_total() ); |
|
78 | + $form->save(); |
|
79 | + } |
|
80 | + |
|
81 | + if ( 'wpi-failed' == $to ) { |
|
82 | + $form->set_failed( $form->get_failed() + $invoice->get_total() ); |
|
83 | + $form->save(); |
|
84 | + } |
|
85 | + |
|
86 | + } |
|
87 | + |
|
88 | + /** |
|
89 | + * Updates a form's refunded amount. |
|
90 | + * |
|
91 | + * @param WPInv_Invoice $invoice |
|
92 | + * @param string $from |
|
93 | + * @param string $to |
|
94 | + */ |
|
95 | + public function update_form_refunded_amount( $invoice, $from, $to ) { |
|
96 | + |
|
97 | + $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
98 | + if ( $form->get_id() ) { |
|
99 | + return; |
|
100 | + } |
|
101 | + |
|
102 | + if ( 'wpi-refunded' == $from ) { |
|
103 | + $form->set_refunded( $form->get_refunded() - $invoice->get_total() ); |
|
104 | + $form->save(); |
|
105 | + } |
|
106 | + |
|
107 | + if ( 'wpi-refunded' == $to ) { |
|
108 | + $form->set_refunded( $form->get_refunded() + $invoice->get_total() ); |
|
109 | + $form->save(); |
|
110 | + } |
|
111 | + |
|
112 | + } |
|
113 | + |
|
114 | + /** |
|
115 | + * Updates a form's cancelled amount. |
|
116 | + * |
|
117 | + * @param WPInv_Invoice $invoice |
|
118 | + * @param string $from |
|
119 | + * @param string $to |
|
120 | + */ |
|
121 | + public function update_form_cancelled_amount( $invoice, $from, $to ) { |
|
122 | + |
|
123 | + $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
124 | + if ( $form->get_id() ) { |
|
125 | + return; |
|
126 | + } |
|
127 | + |
|
128 | + if ( 'wpi-cancelled' == $from ) { |
|
129 | + $form->set_cancelled( $form->get_cancelled() - $invoice->get_total() ); |
|
130 | + $form->save(); |
|
131 | + } |
|
132 | + |
|
133 | + if ( 'wpi-cancelled' == $to ) { |
|
134 | + $form->set_cancelled( $form->get_cancelled() + $invoice->get_total() ); |
|
135 | + $form->save(); |
|
136 | + } |
|
137 | + |
|
138 | + } |
|
139 | 139 | |
140 | 140 | } |
@@ -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 | * Payment forms controller class |
@@ -19,13 +19,13 @@ discard block |
||
19 | 19 | public function __construct() { |
20 | 20 | |
21 | 21 | // Update a payment form's revenue whenever an invoice is paid for or refunded. |
22 | - add_action( 'getpaid_invoice_payment_status_changed', array( $this, 'increment_form_revenue' ) ); |
|
23 | - add_action( 'getpaid_invoice_payment_status_reversed', array( $this, 'decrease_form_revenue' ) ); |
|
22 | + add_action('getpaid_invoice_payment_status_changed', array($this, 'increment_form_revenue')); |
|
23 | + add_action('getpaid_invoice_payment_status_reversed', array($this, 'decrease_form_revenue')); |
|
24 | 24 | |
25 | 25 | // Sync form amount whenever invoice statuses change. |
26 | - add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_failed_amount' ), 10, 3 ); |
|
27 | - add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_refunded_amount' ), 10, 3 ); |
|
28 | - add_action( 'getpaid_invoice_status_changed', array( $this, 'update_form_cancelled_amount' ), 10, 3 ); |
|
26 | + add_action('getpaid_invoice_status_changed', array($this, 'update_form_failed_amount'), 10, 3); |
|
27 | + add_action('getpaid_invoice_status_changed', array($this, 'update_form_refunded_amount'), 10, 3); |
|
28 | + add_action('getpaid_invoice_status_changed', array($this, 'update_form_cancelled_amount'), 10, 3); |
|
29 | 29 | |
30 | 30 | } |
31 | 31 | |
@@ -34,11 +34,11 @@ discard block |
||
34 | 34 | * |
35 | 35 | * @param WPInv_Invoice $invoice |
36 | 36 | */ |
37 | - public function increment_form_revenue( $invoice ) { |
|
37 | + public function increment_form_revenue($invoice) { |
|
38 | 38 | |
39 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
40 | - if ( $form->get_id() ) { |
|
41 | - $form->set_earned( $form->get_earned() + $invoice->get_total() ); |
|
39 | + $form = new GetPaid_Payment_Form($invoice->get_payment_form()); |
|
40 | + if ($form->get_id()) { |
|
41 | + $form->set_earned($form->get_earned() + $invoice->get_total()); |
|
42 | 42 | $form->save(); |
43 | 43 | } |
44 | 44 | |
@@ -49,11 +49,11 @@ discard block |
||
49 | 49 | * |
50 | 50 | * @param WPInv_Invoice $invoice |
51 | 51 | */ |
52 | - public function decrease_form_revenue( $invoice ) { |
|
52 | + public function decrease_form_revenue($invoice) { |
|
53 | 53 | |
54 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
55 | - if ( $form->get_id() ) { |
|
56 | - $form->set_earned( $form->get_earned() - $invoice->get_total() ); |
|
54 | + $form = new GetPaid_Payment_Form($invoice->get_payment_form()); |
|
55 | + if ($form->get_id()) { |
|
56 | + $form->set_earned($form->get_earned() - $invoice->get_total()); |
|
57 | 57 | $form->save(); |
58 | 58 | } |
59 | 59 | |
@@ -66,20 +66,20 @@ discard block |
||
66 | 66 | * @param string $from |
67 | 67 | * @param string $to |
68 | 68 | */ |
69 | - public function update_form_failed_amount( $invoice, $from, $to ) { |
|
69 | + public function update_form_failed_amount($invoice, $from, $to) { |
|
70 | 70 | |
71 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
72 | - if ( $form->get_id() ) { |
|
71 | + $form = new GetPaid_Payment_Form($invoice->get_payment_form()); |
|
72 | + if ($form->get_id()) { |
|
73 | 73 | return; |
74 | 74 | } |
75 | 75 | |
76 | - if ( 'wpi-failed' == $from ) { |
|
77 | - $form->set_failed( $form->get_failed() - $invoice->get_total() ); |
|
76 | + if ('wpi-failed' == $from) { |
|
77 | + $form->set_failed($form->get_failed() - $invoice->get_total()); |
|
78 | 78 | $form->save(); |
79 | 79 | } |
80 | 80 | |
81 | - if ( 'wpi-failed' == $to ) { |
|
82 | - $form->set_failed( $form->get_failed() + $invoice->get_total() ); |
|
81 | + if ('wpi-failed' == $to) { |
|
82 | + $form->set_failed($form->get_failed() + $invoice->get_total()); |
|
83 | 83 | $form->save(); |
84 | 84 | } |
85 | 85 | |
@@ -92,20 +92,20 @@ discard block |
||
92 | 92 | * @param string $from |
93 | 93 | * @param string $to |
94 | 94 | */ |
95 | - public function update_form_refunded_amount( $invoice, $from, $to ) { |
|
95 | + public function update_form_refunded_amount($invoice, $from, $to) { |
|
96 | 96 | |
97 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
98 | - if ( $form->get_id() ) { |
|
97 | + $form = new GetPaid_Payment_Form($invoice->get_payment_form()); |
|
98 | + if ($form->get_id()) { |
|
99 | 99 | return; |
100 | 100 | } |
101 | 101 | |
102 | - if ( 'wpi-refunded' == $from ) { |
|
103 | - $form->set_refunded( $form->get_refunded() - $invoice->get_total() ); |
|
102 | + if ('wpi-refunded' == $from) { |
|
103 | + $form->set_refunded($form->get_refunded() - $invoice->get_total()); |
|
104 | 104 | $form->save(); |
105 | 105 | } |
106 | 106 | |
107 | - if ( 'wpi-refunded' == $to ) { |
|
108 | - $form->set_refunded( $form->get_refunded() + $invoice->get_total() ); |
|
107 | + if ('wpi-refunded' == $to) { |
|
108 | + $form->set_refunded($form->get_refunded() + $invoice->get_total()); |
|
109 | 109 | $form->save(); |
110 | 110 | } |
111 | 111 | |
@@ -118,20 +118,20 @@ discard block |
||
118 | 118 | * @param string $from |
119 | 119 | * @param string $to |
120 | 120 | */ |
121 | - public function update_form_cancelled_amount( $invoice, $from, $to ) { |
|
121 | + public function update_form_cancelled_amount($invoice, $from, $to) { |
|
122 | 122 | |
123 | - $form = new GetPaid_Payment_Form( $invoice->get_payment_form() ); |
|
124 | - if ( $form->get_id() ) { |
|
123 | + $form = new GetPaid_Payment_Form($invoice->get_payment_form()); |
|
124 | + if ($form->get_id()) { |
|
125 | 125 | return; |
126 | 126 | } |
127 | 127 | |
128 | - if ( 'wpi-cancelled' == $from ) { |
|
129 | - $form->set_cancelled( $form->get_cancelled() - $invoice->get_total() ); |
|
128 | + if ('wpi-cancelled' == $from) { |
|
129 | + $form->set_cancelled($form->get_cancelled() - $invoice->get_total()); |
|
130 | 130 | $form->save(); |
131 | 131 | } |
132 | 132 | |
133 | - if ( 'wpi-cancelled' == $to ) { |
|
134 | - $form->set_cancelled( $form->get_cancelled() + $invoice->get_total() ); |
|
133 | + if ('wpi-cancelled' == $to) { |
|
134 | + $form->set_cancelled($form->get_cancelled() + $invoice->get_total()); |
|
135 | 135 | $form->save(); |
136 | 136 | } |
137 | 137 |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | */ |
8 | 8 | |
9 | 9 | if ( ! defined( 'ABSPATH' ) ) { |
10 | - exit; // Exit if accessed directly |
|
10 | + exit; // Exit if accessed directly |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | /** |
@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | class GetPaid_Meta_Box_Payment_Form { |
17 | 17 | |
18 | 18 | /** |
19 | - * Output the metabox. |
|
20 | - * |
|
21 | - * @param WP_Post $post |
|
22 | - */ |
|
19 | + * Output the metabox. |
|
20 | + * |
|
21 | + * @param WP_Post $post |
|
22 | + */ |
|
23 | 23 | public static function output( $post ) { |
24 | 24 | ?> |
25 | 25 | <div id="wpinv-form-builder" class="bsui"> |
@@ -86,11 +86,11 @@ discard block |
||
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
89 | - * Save meta box data. |
|
90 | - * |
|
91 | - * @param int $post_id |
|
92 | - */ |
|
93 | - public static function save( $post_id ) { |
|
89 | + * Save meta box data. |
|
90 | + * |
|
91 | + * @param int $post_id |
|
92 | + */ |
|
93 | + public static function save( $post_id ) { |
|
94 | 94 | |
95 | 95 | // Prepare the form. |
96 | 96 | $form = new GetPaid_Payment_Form( $post_id ); |
@@ -121,11 +121,11 @@ discard block |
||
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
124 | - * Converts an array fo form items to objects. |
|
125 | - * |
|
126 | - * @param array $items |
|
127 | - */ |
|
128 | - public static function item_to_objects( $items ) { |
|
124 | + * Converts an array fo form items to objects. |
|
125 | + * |
|
126 | + * @param array $items |
|
127 | + */ |
|
128 | + public static function item_to_objects( $items ) { |
|
129 | 129 | |
130 | 130 | $objects = array(); |
131 | 131 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if (!defined('ABSPATH')) { |
|
10 | 10 | exit; // Exit if accessed directly |
11 | 11 | } |
12 | 12 | |
@@ -20,14 +20,14 @@ discard block |
||
20 | 20 | * |
21 | 21 | * @param WP_Post $post |
22 | 22 | */ |
23 | - public static function output( $post ) { |
|
23 | + public static function output($post) { |
|
24 | 24 | ?> |
25 | 25 | <div id="wpinv-form-builder" class="bsui"> |
26 | 26 | <div class="row"> |
27 | 27 | <div class="col-sm-4"> |
28 | 28 | |
29 | 29 | <!-- Builder tabs --> |
30 | - <button class="button button-primary" v-if="active_tab!='new_item'" @click.prevent="active_tab='new_item'"><?php _e( 'Go Back', 'invoicing' ); ?></button> |
|
30 | + <button class="button button-primary" v-if="active_tab!='new_item'" @click.prevent="active_tab='new_item'"><?php _e('Go Back', 'invoicing'); ?></button> |
|
31 | 31 | |
32 | 32 | <!-- Builder tab content --> |
33 | 33 | <div class="mt-4"> |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | <!-- Available builder elements --> |
36 | 36 | <div class="wpinv-form-builder-tab-pane" v-if="active_tab=='new_item'"> |
37 | 37 | <div class="wpinv-form-builder-add-field-types"> |
38 | - <small class='form-text text-muted'><?php _e( 'Add an element by dragging it to the payment form.', 'invoicing' ); ?></small> |
|
38 | + <small class='form-text text-muted'><?php _e('Add an element by dragging it to the payment form.', 'invoicing'); ?></small> |
|
39 | 39 | <draggable class="section mt-2" style="display: flex; flex-flow: wrap; justify-content: space-between;" v-model="elements" :group="{ name: 'fields', pull: 'clone', put: false }" :sort="false" :clone="addDraggedField" tag="ul" filter=".wpinv-undraggable"> |
40 | 40 | <li v-for="element in elements" class= "wpinv-payment-form-left-fields-field" @click.prevent="addField(element)" :class="{ 'd-none': element.defaults.premade }"> |
41 | 41 | <button class="button btn"> |
@@ -50,10 +50,10 @@ discard block |
||
50 | 50 | <!-- Edit an element --> |
51 | 51 | <div class="wpinv-form-builder-tab-pane" v-if="active_tab=='edit_item'" style="font-size: 14px;"> |
52 | 52 | <div class="wpinv-form-builder-edit-field-wrapper"> |
53 | - <?php do_action( 'wpinv_payment_form_edit_element_template', 'active_form_element', $post ); ?> |
|
54 | - <?php do_action( 'getpaid_payment_form_edit_element_template', $post ); ?> |
|
53 | + <?php do_action('wpinv_payment_form_edit_element_template', 'active_form_element', $post); ?> |
|
54 | + <?php do_action('getpaid_payment_form_edit_element_template', $post); ?> |
|
55 | 55 | <div> |
56 | - <button type="button" class="button button-link button-link-delete" @click.prevent="removeField(active_form_element)" v-show="! active_form_element.premade"><?php _e( 'Delete Element', 'invoicing' ); ?></button> |
|
56 | + <button type="button" class="button button-link button-link-delete" @click.prevent="removeField(active_form_element)" v-show="! active_form_element.premade"><?php _e('Delete Element', 'invoicing'); ?></button> |
|
57 | 57 | </div> |
58 | 58 | </div> |
59 | 59 | </div> |
@@ -62,14 +62,14 @@ discard block |
||
62 | 62 | |
63 | 63 | </div> |
64 | 64 | <div class="col-sm-8 border-left"> |
65 | - <small class='form-text text-muted' v-if='form_elements.length'><?php _e( 'Click on any element to edit or delete it.', 'invoicing' ); ?></small> |
|
66 | - <p class='form-text text-muted' v-if='! form_elements.length'><?php _e( 'This form is empty. Add new elements by dragging them from the right.', 'invoicing' ); ?></p> |
|
65 | + <small class='form-text text-muted' v-if='form_elements.length'><?php _e('Click on any element to edit or delete it.', 'invoicing'); ?></small> |
|
66 | + <p class='form-text text-muted' v-if='! form_elements.length'><?php _e('This form is empty. Add new elements by dragging them from the right.', 'invoicing'); ?></p> |
|
67 | 67 | |
68 | 68 | <draggable class="section bsui" v-model="form_elements" @add="highlightLastDroppedField" group="fields" tag="div" style="min-height: 100%; font-size: 14px;"> |
69 | 69 | <div v-for="form_element in form_elements" class="wpinv-form-builder-element-preview" :class="[{ active: active_form_element==form_element && active_tab=='edit_item' }, form_element.type]" @click="active_tab = 'edit_item'; active_form_element = form_element"> |
70 | 70 | <div class="wpinv-form-builder-element-preview-inner"> |
71 | 71 | <div class="wpinv-payment-form-field-preview-overlay"></div> |
72 | - <?php do_action( 'wpinv_payment_form_render_element_template', 'form_element', $post ); ?> |
|
72 | + <?php do_action('wpinv_payment_form_render_element_template', 'form_element', $post); ?> |
|
73 | 73 | </div> |
74 | 74 | </div> |
75 | 75 | </draggable> |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | </div> |
83 | 83 | <?php |
84 | 84 | |
85 | - wp_nonce_field( 'getpaid_meta_nonce', 'getpaid_meta_nonce' ); |
|
85 | + wp_nonce_field('getpaid_meta_nonce', 'getpaid_meta_nonce'); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -90,33 +90,33 @@ discard block |
||
90 | 90 | * |
91 | 91 | * @param int $post_id |
92 | 92 | */ |
93 | - public static function save( $post_id ) { |
|
93 | + public static function save($post_id) { |
|
94 | 94 | |
95 | 95 | // Prepare the form. |
96 | - $form = new GetPaid_Payment_Form( $post_id ); |
|
96 | + $form = new GetPaid_Payment_Form($post_id); |
|
97 | 97 | |
98 | 98 | // Fetch form items. |
99 | - $form_items = json_decode( wp_unslash( $_POST['wpinv_form_items'] ), true ); |
|
99 | + $form_items = json_decode(wp_unslash($_POST['wpinv_form_items']), true); |
|
100 | 100 | |
101 | 101 | // Ensure that we have an array... |
102 | - if ( empty( $form_items ) ) { |
|
102 | + if (empty($form_items)) { |
|
103 | 103 | $form_items = array(); |
104 | 104 | } |
105 | 105 | |
106 | 106 | // Add it to the form. |
107 | - $form->set_items( self::item_to_objects( $form_items ) ); |
|
107 | + $form->set_items(self::item_to_objects($form_items)); |
|
108 | 108 | |
109 | 109 | // Save form elements. |
110 | - $form_elements = json_decode( wp_unslash( $_POST['wpinv_form_elements'] ), true ); |
|
111 | - if ( empty( $form_elements ) ) { |
|
110 | + $form_elements = json_decode(wp_unslash($_POST['wpinv_form_elements']), true); |
|
111 | + if (empty($form_elements)) { |
|
112 | 112 | $form_elements = array(); |
113 | 113 | } |
114 | 114 | |
115 | - $form->set_elements( $form_elements ); |
|
115 | + $form->set_elements($form_elements); |
|
116 | 116 | |
117 | 117 | // Persist data to the datastore. |
118 | 118 | $form->save(); |
119 | - do_action( 'getpaid_payment_form_metabox_save', $post_id, $form ); |
|
119 | + do_action('getpaid_payment_form_metabox_save', $post_id, $form); |
|
120 | 120 | |
121 | 121 | } |
122 | 122 | |
@@ -125,14 +125,14 @@ discard block |
||
125 | 125 | * |
126 | 126 | * @param array $items |
127 | 127 | */ |
128 | - public static function item_to_objects( $items ) { |
|
128 | + public static function item_to_objects($items) { |
|
129 | 129 | |
130 | 130 | $objects = array(); |
131 | 131 | |
132 | - foreach ( $items as $item ) { |
|
133 | - $_item = new GetPaid_Form_Item( $item['id'] ); |
|
134 | - $_item->set_allow_quantities( (bool) $item['allow_quantities'] ); |
|
135 | - $_item->set_is_required( (bool) $item['required'] ); |
|
132 | + foreach ($items as $item) { |
|
133 | + $_item = new GetPaid_Form_Item($item['id']); |
|
134 | + $_item->set_allow_quantities((bool) $item['allow_quantities']); |
|
135 | + $_item->set_is_required((bool) $item['required']); |
|
136 | 136 | $objects[] = $_item; |
137 | 137 | } |
138 | 138 |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
11 | - exit; // Exit if accessed directly |
|
11 | + exit; // Exit if accessed directly |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
17 | 17 | class GetPaid_Meta_Box_Discount_Details { |
18 | 18 | |
19 | 19 | /** |
20 | - * Output the metabox. |
|
21 | - * |
|
22 | - * @param WP_Post $post |
|
23 | - */ |
|
20 | + * Output the metabox. |
|
21 | + * |
|
22 | + * @param WP_Post $post |
|
23 | + */ |
|
24 | 24 | public static function output( $post ) { |
25 | 25 | |
26 | 26 | // Prepare the discount. |
@@ -368,34 +368,34 @@ discard block |
||
368 | 368 | } |
369 | 369 | |
370 | 370 | /** |
371 | - * Save meta box data. |
|
372 | - * |
|
373 | - * @param int $post_id |
|
374 | - */ |
|
375 | - public static function save( $post_id ) { |
|
371 | + * Save meta box data. |
|
372 | + * |
|
373 | + * @param int $post_id |
|
374 | + */ |
|
375 | + public static function save( $post_id ) { |
|
376 | 376 | |
377 | 377 | // Prepare the discount. |
378 | 378 | $discount = new WPInv_Discount( $post_id ); |
379 | 379 | |
380 | 380 | // Load new data. |
381 | 381 | $discount->set_props( |
382 | - array( |
|
383 | - 'code' => isset( $_POST['wpinv_discount_code'] ) ? $_POST['wpinv_discount_code'] : null, |
|
384 | - 'amount' => isset( $_POST['wpinv_discount_amount'] ) ? $_POST['wpinv_discount_amount'] : null, |
|
385 | - 'start' => isset( $_POST['wpinv_discount_start'] ) ? wpinv_clean( $_POST['wpinv_discount_start'] ) : null, |
|
386 | - 'expiration' => isset( $_POST['wpinv_discount_expiration'] ) ? wpinv_clean( $_POST['wpinv_discount_expiration'] ) : null, |
|
387 | - 'is_single_use' => isset( $_POST['wpinv_discount_single_use'] ), |
|
382 | + array( |
|
383 | + 'code' => isset( $_POST['wpinv_discount_code'] ) ? $_POST['wpinv_discount_code'] : null, |
|
384 | + 'amount' => isset( $_POST['wpinv_discount_amount'] ) ? $_POST['wpinv_discount_amount'] : null, |
|
385 | + 'start' => isset( $_POST['wpinv_discount_start'] ) ? wpinv_clean( $_POST['wpinv_discount_start'] ) : null, |
|
386 | + 'expiration' => isset( $_POST['wpinv_discount_expiration'] ) ? wpinv_clean( $_POST['wpinv_discount_expiration'] ) : null, |
|
387 | + 'is_single_use' => isset( $_POST['wpinv_discount_single_use'] ), |
|
388 | 388 | 'type' => isset( $_POST['wpinv_discount_type'] ) ? $_POST['wpinv_discount_type'] : null, |
389 | - 'is_recurring' => isset( $_POST['wpinv_discount_recurring'] ), |
|
390 | - 'items' => isset( $_POST['wpinv_discount_items'] ) ? $_POST['wpinv_discount_items'] : array(), |
|
391 | - 'excluded_items' => isset( $_POST['wpinv_discount_excluded_items'] ) ? $_POST['wpinv_discount_excluded_items'] : array(), |
|
392 | - 'max_uses' => isset( $_POST['wpinv_discount_max_uses'] ) ? $_POST['wpinv_discount_max_uses'] : null, |
|
393 | - 'min_total' => isset( $_POST['wpinv_discount_min_total'] ) ? $_POST['wpinv_discount_min_total'] : null, |
|
394 | - 'max_total' => isset( $_POST['wpinv_discount_max_total'] ) ? $_POST['wpinv_discount_max_total'] : null, |
|
395 | - ) |
|
389 | + 'is_recurring' => isset( $_POST['wpinv_discount_recurring'] ), |
|
390 | + 'items' => isset( $_POST['wpinv_discount_items'] ) ? $_POST['wpinv_discount_items'] : array(), |
|
391 | + 'excluded_items' => isset( $_POST['wpinv_discount_excluded_items'] ) ? $_POST['wpinv_discount_excluded_items'] : array(), |
|
392 | + 'max_uses' => isset( $_POST['wpinv_discount_max_uses'] ) ? $_POST['wpinv_discount_max_uses'] : null, |
|
393 | + 'min_total' => isset( $_POST['wpinv_discount_min_total'] ) ? $_POST['wpinv_discount_min_total'] : null, |
|
394 | + 'max_total' => isset( $_POST['wpinv_discount_max_total'] ) ? $_POST['wpinv_discount_max_total'] : null, |
|
395 | + ) |
|
396 | 396 | ); |
397 | 397 | |
398 | - $discount->save(); |
|
399 | - do_action( 'getpaid_discount_metabox_save', $post_id, $discount ); |
|
400 | - } |
|
398 | + $discount->save(); |
|
399 | + do_action( 'getpaid_discount_metabox_save', $post_id, $discount ); |
|
400 | + } |
|
401 | 401 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,24 +21,24 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the discount. |
27 | - $discount = new WPInv_Discount( $post ); |
|
27 | + $discount = new WPInv_Discount($post); |
|
28 | 28 | |
29 | 29 | // Nonce field. |
30 | - wp_nonce_field( 'getpaid_meta_nonce', 'getpaid_meta_nonce' ); |
|
30 | + wp_nonce_field('getpaid_meta_nonce', 'getpaid_meta_nonce'); |
|
31 | 31 | |
32 | - do_action( 'wpinv_discount_form_top', $discount ); |
|
32 | + do_action('wpinv_discount_form_top', $discount); |
|
33 | 33 | |
34 | 34 | // Set the currency position. |
35 | 35 | $position = wpinv_currency_position(); |
36 | 36 | |
37 | - if ( $position == 'left_space' ) { |
|
37 | + if ($position == 'left_space') { |
|
38 | 38 | $position = 'left'; |
39 | 39 | } |
40 | 40 | |
41 | - if ( $position == 'right_space' ) { |
|
41 | + if ($position == 'right_space') { |
|
42 | 42 | $position = 'right'; |
43 | 43 | } |
44 | 44 | |
@@ -52,66 +52,66 @@ discard block |
||
52 | 52 | </style> |
53 | 53 | <div class='bsui' style='max-width: 600px;padding-top: 10px;'> |
54 | 54 | |
55 | - <?php do_action( 'wpinv_discount_form_first', $discount ); ?> |
|
55 | + <?php do_action('wpinv_discount_form_first', $discount); ?> |
|
56 | 56 | |
57 | - <?php do_action( 'wpinv_discount_form_before_code', $discount ); ?> |
|
57 | + <?php do_action('wpinv_discount_form_before_code', $discount); ?> |
|
58 | 58 | <div class="form-group row"> |
59 | 59 | <label for="wpinv_discount_code" class="col-sm-3 col-form-label"> |
60 | - <?php _e( 'Discount Code', 'invoicing' );?> |
|
60 | + <?php _e('Discount Code', 'invoicing'); ?> |
|
61 | 61 | </label> |
62 | 62 | <div class="col-sm-8"> |
63 | 63 | <div class="row"> |
64 | 64 | <div class="col-sm-12 form-group"> |
65 | - <input type="text" value="<?php echo esc_attr( $discount->get_code( 'edit' ) ); ?>" placeholder="SUMMER_SALE" name="wpinv_discount_code" id="wpinv_discount_code" style="width: 100%;" /> |
|
65 | + <input type="text" value="<?php echo esc_attr($discount->get_code('edit')); ?>" placeholder="SUMMER_SALE" name="wpinv_discount_code" id="wpinv_discount_code" style="width: 100%;" /> |
|
66 | 66 | </div> |
67 | 67 | <div class="col-sm-12"> |
68 | 68 | <?php |
69 | - do_action( 'wpinv_discount_form_before_single_use', $discount ); |
|
69 | + do_action('wpinv_discount_form_before_single_use', $discount); |
|
70 | 70 | |
71 | 71 | echo aui()->input( |
72 | 72 | array( |
73 | 73 | 'id' => 'wpinv_discount_single_use', |
74 | 74 | 'name' => 'wpinv_discount_single_use', |
75 | 75 | 'type' => 'checkbox', |
76 | - 'label' => __( 'Each customer can only use this discount once', 'invoicing' ), |
|
76 | + 'label' => __('Each customer can only use this discount once', 'invoicing'), |
|
77 | 77 | 'value' => '1', |
78 | 78 | 'checked' => $discount->is_single_use(), |
79 | 79 | ) |
80 | 80 | ); |
81 | 81 | |
82 | - do_action( 'wpinv_discount_form_single_use', $discount ); |
|
82 | + do_action('wpinv_discount_form_single_use', $discount); |
|
83 | 83 | ?> |
84 | 84 | </div> |
85 | 85 | <div class="col-sm-12"> |
86 | 86 | <?php |
87 | - do_action( 'wpinv_discount_form_before_recurring', $discount ); |
|
87 | + do_action('wpinv_discount_form_before_recurring', $discount); |
|
88 | 88 | |
89 | 89 | echo aui()->input( |
90 | 90 | array( |
91 | 91 | 'id' => 'wpinv_discount_recurring', |
92 | 92 | 'name' => 'wpinv_discount_recurring', |
93 | 93 | 'type' => 'checkbox', |
94 | - 'label' => __( 'Apply this discount to all recurring payments for subscriptions', 'invoicing' ), |
|
94 | + 'label' => __('Apply this discount to all recurring payments for subscriptions', 'invoicing'), |
|
95 | 95 | 'value' => '1', |
96 | 96 | 'checked' => $discount->is_recurring(), |
97 | 97 | ) |
98 | 98 | ); |
99 | 99 | |
100 | - do_action( 'wpinv_discount_form_recurring', $discount ); |
|
100 | + do_action('wpinv_discount_form_recurring', $discount); |
|
101 | 101 | ?> |
102 | 102 | </div> |
103 | 103 | </div> |
104 | 104 | </div> |
105 | 105 | <div class="col-sm-1 pt-2 pl-0"> |
106 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Enter a discount code such as 10OFF.', 'invoicing' ); ?>"></span> |
|
106 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Enter a discount code such as 10OFF.', 'invoicing'); ?>"></span> |
|
107 | 107 | </div> |
108 | 108 | </div> |
109 | - <?php do_action( 'wpinv_discount_form_code', $discount ); ?> |
|
109 | + <?php do_action('wpinv_discount_form_code', $discount); ?> |
|
110 | 110 | |
111 | - <?php do_action( 'wpinv_discount_form_before_type', $discount ); ?> |
|
111 | + <?php do_action('wpinv_discount_form_before_type', $discount); ?> |
|
112 | 112 | <div class="form-group row"> |
113 | 113 | <label for="wpinv_discount_type" class="col-sm-3 col-form-label"> |
114 | - <?php _e( 'Discount Type', 'invoicing' );?> |
|
114 | + <?php _e('Discount Type', 'invoicing'); ?> |
|
115 | 115 | </label> |
116 | 116 | <div class="col-sm-8"> |
117 | 117 | <?php |
@@ -119,9 +119,9 @@ discard block |
||
119 | 119 | array( |
120 | 120 | 'id' => 'wpinv_discount_type', |
121 | 121 | 'name' => 'wpinv_discount_type', |
122 | - 'label' => __( 'Discount Type', 'invoicing' ), |
|
123 | - 'placeholder' => __( 'Select Discount Type', 'invoicing' ), |
|
124 | - 'value' => $discount->get_type( 'edit' ), |
|
122 | + 'label' => __('Discount Type', 'invoicing'), |
|
123 | + 'placeholder' => __('Select Discount Type', 'invoicing'), |
|
124 | + 'value' => $discount->get_type('edit'), |
|
125 | 125 | 'select2' => true, |
126 | 126 | 'data-allow-clear' => 'false', |
127 | 127 | 'options' => wpinv_get_discount_types() |
@@ -130,19 +130,19 @@ discard block |
||
130 | 130 | ?> |
131 | 131 | </div> |
132 | 132 | <div class="col-sm-1 pt-2 pl-0"> |
133 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Discount type.', 'invoicing' ); ?>"></span> |
|
133 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Discount type.', 'invoicing'); ?>"></span> |
|
134 | 134 | </div> |
135 | 135 | </div> |
136 | - <?php do_action( 'wpinv_discount_form_type', $discount ); ?> |
|
136 | + <?php do_action('wpinv_discount_form_type', $discount); ?> |
|
137 | 137 | |
138 | - <?php do_action( 'wpinv_discount_form_before_amount', $discount ); ?> |
|
139 | - <div class="form-group row <?php echo esc_attr( $discount->get_type( 'edit' ) ); ?>" id="wpinv_discount_amount_wrap"> |
|
138 | + <?php do_action('wpinv_discount_form_before_amount', $discount); ?> |
|
139 | + <div class="form-group row <?php echo esc_attr($discount->get_type('edit')); ?>" id="wpinv_discount_amount_wrap"> |
|
140 | 140 | <label for="wpinv_discount_amount" class="col-sm-3 col-form-label"> |
141 | - <?php _e( 'Discount Amount', 'invoicing' );?> |
|
141 | + <?php _e('Discount Amount', 'invoicing'); ?> |
|
142 | 142 | </label> |
143 | 143 | <div class="col-sm-8"> |
144 | 144 | <div class="input-group input-group-sm"> |
145 | - <?php if( 'left' == $position ) : ?> |
|
145 | + <?php if ('left' == $position) : ?> |
|
146 | 146 | <div class="input-group-prepend left wpinv-if-flat"> |
147 | 147 | <span class="input-group-text"> |
148 | 148 | <?php echo wpinv_currency_symbol(); ?> |
@@ -150,9 +150,9 @@ discard block |
||
150 | 150 | </div> |
151 | 151 | <?php endif; ?> |
152 | 152 | |
153 | - <input type="text" name="wpinv_discount_amount" id="wpinv_discount_amount" value="<?php echo esc_attr( $discount->get_amount( 'edit' ) ); ?>" placeholder="0" class="form-control"> |
|
153 | + <input type="text" name="wpinv_discount_amount" id="wpinv_discount_amount" value="<?php echo esc_attr($discount->get_amount('edit')); ?>" placeholder="0" class="form-control"> |
|
154 | 154 | |
155 | - <?php if( 'right' == $position ) : ?> |
|
155 | + <?php if ('right' == $position) : ?> |
|
156 | 156 | <div class="input-group-prepend left wpinv-if-flat"> |
157 | 157 | <span class="input-group-text"> |
158 | 158 | <?php echo wpinv_currency_symbol(); ?> |
@@ -165,15 +165,15 @@ discard block |
||
165 | 165 | </div> |
166 | 166 | </div> |
167 | 167 | <div class="col-sm-1 pt-2 pl-0"> |
168 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Enter the discount value. Ex: 10', 'invoicing' ); ?>"></span> |
|
168 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Enter the discount value. Ex: 10', 'invoicing'); ?>"></span> |
|
169 | 169 | </div> |
170 | 170 | </div> |
171 | - <?php do_action( 'wpinv_discount_form_amount', $discount ); ?> |
|
171 | + <?php do_action('wpinv_discount_form_amount', $discount); ?> |
|
172 | 172 | |
173 | - <?php do_action( 'wpinv_discount_form_before_items', $discount ); ?> |
|
173 | + <?php do_action('wpinv_discount_form_before_items', $discount); ?> |
|
174 | 174 | <div class="form-group row"> |
175 | 175 | <label for="wpinv_discount_items" class="col-sm-3 col-form-label"> |
176 | - <?php _e( 'Items', 'invoicing' );?> |
|
176 | + <?php _e('Items', 'invoicing'); ?> |
|
177 | 177 | </label> |
178 | 178 | <div class="col-sm-8"> |
179 | 179 | <?php |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | array( |
182 | 182 | 'id' => 'wpinv_discount_items', |
183 | 183 | 'name' => 'wpinv_discount_items[]', |
184 | - 'label' => __( 'Items', 'invoicing' ), |
|
185 | - 'placeholder' => __( 'Select Items', 'invoicing' ), |
|
186 | - 'value' => $discount->get_items( 'edit' ), |
|
184 | + 'label' => __('Items', 'invoicing'), |
|
185 | + 'placeholder' => __('Select Items', 'invoicing'), |
|
186 | + 'value' => $discount->get_items('edit'), |
|
187 | 187 | 'select2' => true, |
188 | 188 | 'multiple' => true, |
189 | 189 | 'data-allow-clear' => 'false', |
@@ -193,15 +193,15 @@ discard block |
||
193 | 193 | ?> |
194 | 194 | </div> |
195 | 195 | <div class="col-sm-1 pt-2 pl-0"> |
196 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Select the items that are allowed to use this discount or leave blank to use this discount all items.', 'invoicing' ); ?>"></span> |
|
196 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Select the items that are allowed to use this discount or leave blank to use this discount all items.', 'invoicing'); ?>"></span> |
|
197 | 197 | </div> |
198 | 198 | </div> |
199 | - <?php do_action( 'wpinv_discount_form_items', $discount ); ?> |
|
199 | + <?php do_action('wpinv_discount_form_items', $discount); ?> |
|
200 | 200 | |
201 | - <?php do_action( 'wpinv_discount_form_before_excluded_items', $discount ); ?> |
|
201 | + <?php do_action('wpinv_discount_form_before_excluded_items', $discount); ?> |
|
202 | 202 | <div class="form-group row"> |
203 | 203 | <label for="wpinv_discount_excluded_items" class="col-sm-3 col-form-label"> |
204 | - <?php _e( 'Excluded Items', 'invoicing' );?> |
|
204 | + <?php _e('Excluded Items', 'invoicing'); ?> |
|
205 | 205 | </label> |
206 | 206 | <div class="col-sm-8"> |
207 | 207 | <?php |
@@ -209,9 +209,9 @@ discard block |
||
209 | 209 | array( |
210 | 210 | 'id' => 'wpinv_discount_excluded_items', |
211 | 211 | 'name' => 'wpinv_discount_excluded_items[]', |
212 | - 'label' => __( 'Excluded Items', 'invoicing' ), |
|
213 | - 'placeholder' => __( 'Select Items', 'invoicing' ), |
|
214 | - 'value' => $discount->get_excluded_items( 'edit' ), |
|
212 | + 'label' => __('Excluded Items', 'invoicing'), |
|
213 | + 'placeholder' => __('Select Items', 'invoicing'), |
|
214 | + 'value' => $discount->get_excluded_items('edit'), |
|
215 | 215 | 'select2' => true, |
216 | 216 | 'multiple' => true, |
217 | 217 | 'data-allow-clear' => 'false', |
@@ -221,15 +221,15 @@ discard block |
||
221 | 221 | ?> |
222 | 222 | </div> |
223 | 223 | <div class="col-sm-1 pt-2 pl-0"> |
224 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Select all the items that are not allowed to use this discount.', 'invoicing' ); ?>"></span> |
|
224 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Select all the items that are not allowed to use this discount.', 'invoicing'); ?>"></span> |
|
225 | 225 | </div> |
226 | 226 | </div> |
227 | - <?php do_action( 'wpinv_discount_form_excluded_items', $discount ); ?> |
|
227 | + <?php do_action('wpinv_discount_form_excluded_items', $discount); ?> |
|
228 | 228 | |
229 | - <?php do_action( 'wpinv_discount_form_before_start', $discount ); ?> |
|
229 | + <?php do_action('wpinv_discount_form_before_start', $discount); ?> |
|
230 | 230 | <div class="form-group row"> |
231 | 231 | <label for="wpinv_discount_start" class="col-sm-3 col-form-label"> |
232 | - <?php _e( 'Start Date', 'invoicing' );?> |
|
232 | + <?php _e('Start Date', 'invoicing'); ?> |
|
233 | 233 | </label> |
234 | 234 | <div class="col-sm-8"> |
235 | 235 | <?php |
@@ -238,10 +238,10 @@ discard block |
||
238 | 238 | 'type' => 'datepicker', |
239 | 239 | 'id' => 'wpinv_discount_start', |
240 | 240 | 'name' => 'wpinv_discount_start', |
241 | - 'label' => __( 'Start Date', 'invoicing' ), |
|
241 | + 'label' => __('Start Date', 'invoicing'), |
|
242 | 242 | 'placeholder' => 'YYYY-MM-DD 00:00', |
243 | 243 | 'class' => 'form-control-sm', |
244 | - 'value' => $discount->get_start_date( 'edit' ), |
|
244 | + 'value' => $discount->get_start_date('edit'), |
|
245 | 245 | 'extra_attributes' => array( |
246 | 246 | 'data-enable-time' => 'true', |
247 | 247 | 'data-time_24hr' => 'true', |
@@ -252,15 +252,15 @@ discard block |
||
252 | 252 | ?> |
253 | 253 | </div> |
254 | 254 | <div class="col-sm-1 pt-2 pl-0"> |
255 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'For no start date, leave blank. If entered, the discount can only be used after or on this date.', 'invoicing' ); ?>"></span> |
|
255 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('For no start date, leave blank. If entered, the discount can only be used after or on this date.', 'invoicing'); ?>"></span> |
|
256 | 256 | </div> |
257 | 257 | </div> |
258 | - <?php do_action( 'wpinv_discount_form_start', $discount ); ?> |
|
258 | + <?php do_action('wpinv_discount_form_start', $discount); ?> |
|
259 | 259 | |
260 | - <?php do_action( 'wpinv_discount_form_before_expiration', $discount ); ?> |
|
260 | + <?php do_action('wpinv_discount_form_before_expiration', $discount); ?> |
|
261 | 261 | <div class="form-group row"> |
262 | 262 | <label for="wpinv_discount_expiration" class="col-sm-3 col-form-label"> |
263 | - <?php _e( 'Expiration Date', 'invoicing' );?> |
|
263 | + <?php _e('Expiration Date', 'invoicing'); ?> |
|
264 | 264 | </label> |
265 | 265 | <div class="col-sm-8"> |
266 | 266 | <?php |
@@ -269,10 +269,10 @@ discard block |
||
269 | 269 | 'type' => 'datepicker', |
270 | 270 | 'id' => 'wpinv_discount_expiration', |
271 | 271 | 'name' => 'wpinv_discount_expiration', |
272 | - 'label' => __( 'Expiration Date', 'invoicing' ), |
|
272 | + 'label' => __('Expiration Date', 'invoicing'), |
|
273 | 273 | 'placeholder' => 'YYYY-MM-DD 00:00', |
274 | 274 | 'class' => 'form-control-sm', |
275 | - 'value' => $discount->get_end_date( 'edit' ), |
|
275 | + 'value' => $discount->get_end_date('edit'), |
|
276 | 276 | 'extra_attributes' => array( |
277 | 277 | 'data-enable-time' => 'true', |
278 | 278 | 'data-time_24hr' => 'true', |
@@ -285,27 +285,27 @@ discard block |
||
285 | 285 | ?> |
286 | 286 | </div> |
287 | 287 | <div class="col-sm-1 pt-2 pl-0"> |
288 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Optionally set the date after which the discount will expire.', 'invoicing' ); ?>"></span> |
|
288 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Optionally set the date after which the discount will expire.', 'invoicing'); ?>"></span> |
|
289 | 289 | </div> |
290 | 290 | </div> |
291 | - <?php do_action( 'wpinv_discount_form_expiration', $discount ); ?> |
|
291 | + <?php do_action('wpinv_discount_form_expiration', $discount); ?> |
|
292 | 292 | |
293 | - <?php do_action( 'wpinv_discount_form_before_min_total', $discount ); ?> |
|
293 | + <?php do_action('wpinv_discount_form_before_min_total', $discount); ?> |
|
294 | 294 | <div class="form-group row"> |
295 | 295 | <label for="wpinv_discount_min_total" class="col-sm-3 col-form-label"> |
296 | - <?php _e( 'Minimum Amount', 'invoicing' );?> |
|
296 | + <?php _e('Minimum Amount', 'invoicing'); ?> |
|
297 | 297 | </label> |
298 | 298 | <div class="col-sm-8"> |
299 | 299 | <div class="input-group input-group-sm"> |
300 | - <?php if( 'left' == $position ) : ?> |
|
300 | + <?php if ('left' == $position) : ?> |
|
301 | 301 | <div class="input-group-prepend"> |
302 | 302 | <span class="input-group-text"><?php echo wpinv_currency_symbol(); ?></span> |
303 | 303 | </div> |
304 | 304 | <?php endif; ?> |
305 | 305 | |
306 | - <input type="text" name="wpinv_discount_min_total" id="wpinv_discount_min_total" value="<?php echo esc_attr( $discount->get_minimum_total( 'edit' ) ); ?>" placeholder="<?php esc_attr_e( 'No minimum', 'invoicing' ); ?>" class="form-control"> |
|
306 | + <input type="text" name="wpinv_discount_min_total" id="wpinv_discount_min_total" value="<?php echo esc_attr($discount->get_minimum_total('edit')); ?>" placeholder="<?php esc_attr_e('No minimum', 'invoicing'); ?>" class="form-control"> |
|
307 | 307 | |
308 | - <?php if( 'left' != $position ) : ?> |
|
308 | + <?php if ('left' != $position) : ?> |
|
309 | 309 | <div class="input-group-append"> |
310 | 310 | <span class="input-group-text"><?php echo wpinv_currency_symbol(); ?></span> |
311 | 311 | </div> |
@@ -313,27 +313,27 @@ discard block |
||
313 | 313 | </div> |
314 | 314 | </div> |
315 | 315 | <div class="col-sm-1 pt-2 pl-0"> |
316 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Optionally set the minimum amount (including taxes) required to use this discount.', 'invoicing' ); ?>"></span> |
|
316 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Optionally set the minimum amount (including taxes) required to use this discount.', 'invoicing'); ?>"></span> |
|
317 | 317 | </div> |
318 | 318 | </div> |
319 | - <?php do_action( 'wpinv_discount_form_min_total', $discount ); ?> |
|
319 | + <?php do_action('wpinv_discount_form_min_total', $discount); ?> |
|
320 | 320 | |
321 | - <?php do_action( 'wpinv_discount_form_before_max_total', $discount ); ?> |
|
321 | + <?php do_action('wpinv_discount_form_before_max_total', $discount); ?> |
|
322 | 322 | <div class="form-group row"> |
323 | 323 | <label for="wpinv_discount_max_total" class="col-sm-3 col-form-label"> |
324 | - <?php _e( 'Maximum Amount', 'invoicing' );?> |
|
324 | + <?php _e('Maximum Amount', 'invoicing'); ?> |
|
325 | 325 | </label> |
326 | 326 | <div class="col-sm-8"> |
327 | 327 | <div class="input-group input-group-sm"> |
328 | - <?php if( 'left' == $position ) : ?> |
|
328 | + <?php if ('left' == $position) : ?> |
|
329 | 329 | <div class="input-group-prepend"> |
330 | 330 | <span class="input-group-text"><?php echo wpinv_currency_symbol(); ?></span> |
331 | 331 | </div> |
332 | 332 | <?php endif; ?> |
333 | 333 | |
334 | - <input type="text" name="wpinv_discount_max_total" id="wpinv_discount_max_total" value="<?php echo esc_attr( $discount->get_maximum_total( 'edit' ) ); ?>" placeholder="<?php esc_attr_e( 'No maximum', 'invoicing' ); ?>" class="form-control"> |
|
334 | + <input type="text" name="wpinv_discount_max_total" id="wpinv_discount_max_total" value="<?php echo esc_attr($discount->get_maximum_total('edit')); ?>" placeholder="<?php esc_attr_e('No maximum', 'invoicing'); ?>" class="form-control"> |
|
335 | 335 | |
336 | - <?php if( 'left' != $position ) : ?> |
|
336 | + <?php if ('left' != $position) : ?> |
|
337 | 337 | <div class="input-group-append"> |
338 | 338 | <span class="input-group-text"><?php echo wpinv_currency_symbol(); ?></span> |
339 | 339 | </div> |
@@ -341,30 +341,30 @@ discard block |
||
341 | 341 | </div> |
342 | 342 | </div> |
343 | 343 | <div class="col-sm-1 pt-2 pl-0"> |
344 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Optionally set the maximum amount (including taxes) allowed when using this discount.', 'invoicing' ); ?>"></span> |
|
344 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Optionally set the maximum amount (including taxes) allowed when using this discount.', 'invoicing'); ?>"></span> |
|
345 | 345 | </div> |
346 | 346 | </div> |
347 | - <?php do_action( 'wpinv_discount_form_before_max_total', $discount ); ?> |
|
347 | + <?php do_action('wpinv_discount_form_before_max_total', $discount); ?> |
|
348 | 348 | |
349 | - <?php do_action( 'wpinv_discount_form_before_max_uses', $discount ); ?> |
|
349 | + <?php do_action('wpinv_discount_form_before_max_uses', $discount); ?> |
|
350 | 350 | <div class="form-group row"> |
351 | 351 | <label for="wpinv_discount_max_uses" class="col-sm-3 col-form-label"> |
352 | - <?php _e( 'Maximum Uses', 'invoicing' );?> |
|
352 | + <?php _e('Maximum Uses', 'invoicing'); ?> |
|
353 | 353 | </label> |
354 | 354 | <div class="col-sm-8"> |
355 | - <input type="text" value="<?php echo esc_attr( $discount->get_max_uses( 'edit' ) ); ?>" placeholder="<?php esc_attr_e( 'Unlimited', 'invoicing' ); ?>" name="wpinv_discount_max_uses" id="wpinv_discount_max_uses" style="width: 100%;" /> |
|
355 | + <input type="text" value="<?php echo esc_attr($discount->get_max_uses('edit')); ?>" placeholder="<?php esc_attr_e('Unlimited', 'invoicing'); ?>" name="wpinv_discount_max_uses" id="wpinv_discount_max_uses" style="width: 100%;" /> |
|
356 | 356 | </div> |
357 | 357 | <div class="col-sm-1 pt-2 pl-0"> |
358 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Optionally set the maximum number of times that this discount code can be used.', 'invoicing' ); ?>"></span> |
|
358 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Optionally set the maximum number of times that this discount code can be used.', 'invoicing'); ?>"></span> |
|
359 | 359 | </div> |
360 | 360 | </div> |
361 | - <?php do_action( 'wpinv_discount_form_max_uses', $discount ); ?> |
|
361 | + <?php do_action('wpinv_discount_form_max_uses', $discount); ?> |
|
362 | 362 | |
363 | - <?php do_action( 'wpinv_discount_form_last', $discount ); ?> |
|
363 | + <?php do_action('wpinv_discount_form_last', $discount); ?> |
|
364 | 364 | |
365 | 365 | </div> |
366 | 366 | <?php |
367 | - do_action( 'wpinv_discount_form_bottom', $post ); |
|
367 | + do_action('wpinv_discount_form_bottom', $post); |
|
368 | 368 | } |
369 | 369 | |
370 | 370 | /** |
@@ -372,30 +372,30 @@ discard block |
||
372 | 372 | * |
373 | 373 | * @param int $post_id |
374 | 374 | */ |
375 | - public static function save( $post_id ) { |
|
375 | + public static function save($post_id) { |
|
376 | 376 | |
377 | 377 | // Prepare the discount. |
378 | - $discount = new WPInv_Discount( $post_id ); |
|
378 | + $discount = new WPInv_Discount($post_id); |
|
379 | 379 | |
380 | 380 | // Load new data. |
381 | 381 | $discount->set_props( |
382 | 382 | array( |
383 | - 'code' => isset( $_POST['wpinv_discount_code'] ) ? $_POST['wpinv_discount_code'] : null, |
|
384 | - 'amount' => isset( $_POST['wpinv_discount_amount'] ) ? $_POST['wpinv_discount_amount'] : null, |
|
385 | - 'start' => isset( $_POST['wpinv_discount_start'] ) ? wpinv_clean( $_POST['wpinv_discount_start'] ) : null, |
|
386 | - 'expiration' => isset( $_POST['wpinv_discount_expiration'] ) ? wpinv_clean( $_POST['wpinv_discount_expiration'] ) : null, |
|
387 | - 'is_single_use' => isset( $_POST['wpinv_discount_single_use'] ), |
|
388 | - 'type' => isset( $_POST['wpinv_discount_type'] ) ? $_POST['wpinv_discount_type'] : null, |
|
389 | - 'is_recurring' => isset( $_POST['wpinv_discount_recurring'] ), |
|
390 | - 'items' => isset( $_POST['wpinv_discount_items'] ) ? $_POST['wpinv_discount_items'] : array(), |
|
391 | - 'excluded_items' => isset( $_POST['wpinv_discount_excluded_items'] ) ? $_POST['wpinv_discount_excluded_items'] : array(), |
|
392 | - 'max_uses' => isset( $_POST['wpinv_discount_max_uses'] ) ? $_POST['wpinv_discount_max_uses'] : null, |
|
393 | - 'min_total' => isset( $_POST['wpinv_discount_min_total'] ) ? $_POST['wpinv_discount_min_total'] : null, |
|
394 | - 'max_total' => isset( $_POST['wpinv_discount_max_total'] ) ? $_POST['wpinv_discount_max_total'] : null, |
|
383 | + 'code' => isset($_POST['wpinv_discount_code']) ? $_POST['wpinv_discount_code'] : null, |
|
384 | + 'amount' => isset($_POST['wpinv_discount_amount']) ? $_POST['wpinv_discount_amount'] : null, |
|
385 | + 'start' => isset($_POST['wpinv_discount_start']) ? wpinv_clean($_POST['wpinv_discount_start']) : null, |
|
386 | + 'expiration' => isset($_POST['wpinv_discount_expiration']) ? wpinv_clean($_POST['wpinv_discount_expiration']) : null, |
|
387 | + 'is_single_use' => isset($_POST['wpinv_discount_single_use']), |
|
388 | + 'type' => isset($_POST['wpinv_discount_type']) ? $_POST['wpinv_discount_type'] : null, |
|
389 | + 'is_recurring' => isset($_POST['wpinv_discount_recurring']), |
|
390 | + 'items' => isset($_POST['wpinv_discount_items']) ? $_POST['wpinv_discount_items'] : array(), |
|
391 | + 'excluded_items' => isset($_POST['wpinv_discount_excluded_items']) ? $_POST['wpinv_discount_excluded_items'] : array(), |
|
392 | + 'max_uses' => isset($_POST['wpinv_discount_max_uses']) ? $_POST['wpinv_discount_max_uses'] : null, |
|
393 | + 'min_total' => isset($_POST['wpinv_discount_min_total']) ? $_POST['wpinv_discount_min_total'] : null, |
|
394 | + 'max_total' => isset($_POST['wpinv_discount_max_total']) ? $_POST['wpinv_discount_max_total'] : null, |
|
395 | 395 | ) |
396 | 396 | ); |
397 | 397 | |
398 | 398 | $discount->save(); |
399 | - do_action( 'getpaid_discount_metabox_save', $post_id, $discount ); |
|
399 | + do_action('getpaid_discount_metabox_save', $post_id, $discount); |
|
400 | 400 | } |
401 | 401 | } |
@@ -12,108 +12,108 @@ |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Payment_Form_Submission_Fees { |
14 | 14 | |
15 | - /** |
|
16 | - * The fee validation error. |
|
17 | - * @var string |
|
18 | - */ |
|
19 | - public $fee_error; |
|
20 | - |
|
21 | - /** |
|
22 | - * Submission fees. |
|
23 | - * @var array |
|
24 | - */ |
|
25 | - public $fees = array(); |
|
15 | + /** |
|
16 | + * The fee validation error. |
|
17 | + * @var string |
|
18 | + */ |
|
19 | + public $fee_error; |
|
20 | + |
|
21 | + /** |
|
22 | + * Submission fees. |
|
23 | + * @var array |
|
24 | + */ |
|
25 | + public $fees = array(); |
|
26 | + |
|
27 | + /** |
|
28 | + * Class constructor |
|
29 | + * |
|
30 | + * @param GetPaid_Payment_Form_Submission $submission |
|
31 | + */ |
|
32 | + public function __construct( $submission ) { |
|
33 | + |
|
34 | + // Process any existing invoice fees. |
|
35 | + if ( $submission->has_invoice() ) { |
|
36 | + $this->fees = $submission->get_invoice()->get_fees(); |
|
37 | + } |
|
38 | + |
|
39 | + // Process price fields. |
|
40 | + $data = $submission->get_data(); |
|
41 | + $payment_form = $submission->get_payment_form(); |
|
42 | + |
|
43 | + foreach ( $payment_form->get_elements() as $element ) { |
|
44 | + |
|
45 | + if ( 'price_input' == $element['type'] ) { |
|
46 | + $this->process_price_input( $element, $data ); |
|
47 | + } |
|
48 | + |
|
49 | + if ( 'price_select' == $element['type'] ) { |
|
50 | + $this->process_price_select( $element, $data ); |
|
51 | + } |
|
52 | + |
|
53 | + } |
|
54 | + |
|
55 | + } |
|
56 | + |
|
57 | + /** |
|
58 | + * Process a price input field. |
|
59 | + * |
|
60 | + * @param array $element |
|
61 | + * @param array $data |
|
62 | + */ |
|
63 | + public function process_price_input( $element, $data ) { |
|
64 | + |
|
65 | + // Abort if not passed. |
|
66 | + if ( empty( $data[ $element['id'] ] ) ) { |
|
67 | + return; |
|
68 | + } |
|
69 | + |
|
70 | + $amount = (float) wpinv_sanitize_amount( $data[ $element['id'] ] ); |
|
71 | + $minimum = empty( $element['minimum'] ) ? 0 : (float) wpinv_sanitize_amount( $element['minimum'] ); |
|
72 | + |
|
73 | + if ( $amount < $minimum ) { |
|
74 | + throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), $minimum ) ); |
|
75 | + } |
|
76 | + |
|
77 | + $this->fees[ $element['label'] ] = array( |
|
78 | + 'name' => $element['label'], |
|
79 | + 'initial_fee' => $amount, |
|
80 | + 'recurring_fee' => 0, |
|
81 | + ); |
|
82 | + |
|
83 | + } |
|
26 | 84 | |
27 | 85 | /** |
28 | - * Class constructor |
|
29 | - * |
|
30 | - * @param GetPaid_Payment_Form_Submission $submission |
|
31 | - */ |
|
32 | - public function __construct( $submission ) { |
|
33 | - |
|
34 | - // Process any existing invoice fees. |
|
35 | - if ( $submission->has_invoice() ) { |
|
36 | - $this->fees = $submission->get_invoice()->get_fees(); |
|
37 | - } |
|
38 | - |
|
39 | - // Process price fields. |
|
40 | - $data = $submission->get_data(); |
|
41 | - $payment_form = $submission->get_payment_form(); |
|
42 | - |
|
43 | - foreach ( $payment_form->get_elements() as $element ) { |
|
44 | - |
|
45 | - if ( 'price_input' == $element['type'] ) { |
|
46 | - $this->process_price_input( $element, $data ); |
|
47 | - } |
|
48 | - |
|
49 | - if ( 'price_select' == $element['type'] ) { |
|
50 | - $this->process_price_select( $element, $data ); |
|
51 | - } |
|
52 | - |
|
53 | - } |
|
54 | - |
|
55 | - } |
|
56 | - |
|
57 | - /** |
|
58 | - * Process a price input field. |
|
59 | - * |
|
60 | - * @param array $element |
|
61 | - * @param array $data |
|
62 | - */ |
|
63 | - public function process_price_input( $element, $data ) { |
|
64 | - |
|
65 | - // Abort if not passed. |
|
66 | - if ( empty( $data[ $element['id'] ] ) ) { |
|
67 | - return; |
|
68 | - } |
|
69 | - |
|
70 | - $amount = (float) wpinv_sanitize_amount( $data[ $element['id'] ] ); |
|
71 | - $minimum = empty( $element['minimum'] ) ? 0 : (float) wpinv_sanitize_amount( $element['minimum'] ); |
|
72 | - |
|
73 | - if ( $amount < $minimum ) { |
|
74 | - throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), $minimum ) ); |
|
75 | - } |
|
76 | - |
|
77 | - $this->fees[ $element['label'] ] = array( |
|
78 | - 'name' => $element['label'], |
|
79 | - 'initial_fee' => $amount, |
|
80 | - 'recurring_fee' => 0, |
|
81 | - ); |
|
82 | - |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Process a price select field. |
|
87 | - * |
|
88 | - * @param array $element |
|
89 | - * @param array $data |
|
90 | - */ |
|
91 | - public function process_price_select( $element, $data ) { |
|
92 | - |
|
93 | - // Abort if not passed. |
|
94 | - if ( empty( $data[ $element['id'] ] ) ) { |
|
95 | - return; |
|
96 | - } |
|
97 | - |
|
98 | - $options = getpaid_convert_price_string_to_options( $element['options'] ); |
|
99 | - $selected = wpinv_parse_list( $data[ $element['id'] ] ); |
|
100 | - $total = 0; |
|
101 | - |
|
102 | - foreach ( $selected as $price ) { |
|
103 | - |
|
104 | - if ( ! isset( $options[ $price ] ) ) { |
|
105 | - throw new Exception( __( 'You have selected an invalid amount', 'invoicing' ) ); |
|
106 | - } |
|
107 | - |
|
108 | - $total += (float) wpinv_sanitize_amount( $price ); |
|
109 | - } |
|
110 | - |
|
111 | - $this->fees[ $element['label'] ] = array( |
|
112 | - 'name' => $element['label'], |
|
113 | - 'initial_fee' => $total, |
|
114 | - 'recurring_fee' => 0, |
|
115 | - ); |
|
116 | - |
|
117 | - } |
|
86 | + * Process a price select field. |
|
87 | + * |
|
88 | + * @param array $element |
|
89 | + * @param array $data |
|
90 | + */ |
|
91 | + public function process_price_select( $element, $data ) { |
|
92 | + |
|
93 | + // Abort if not passed. |
|
94 | + if ( empty( $data[ $element['id'] ] ) ) { |
|
95 | + return; |
|
96 | + } |
|
97 | + |
|
98 | + $options = getpaid_convert_price_string_to_options( $element['options'] ); |
|
99 | + $selected = wpinv_parse_list( $data[ $element['id'] ] ); |
|
100 | + $total = 0; |
|
101 | + |
|
102 | + foreach ( $selected as $price ) { |
|
103 | + |
|
104 | + if ( ! isset( $options[ $price ] ) ) { |
|
105 | + throw new Exception( __( 'You have selected an invalid amount', 'invoicing' ) ); |
|
106 | + } |
|
107 | + |
|
108 | + $total += (float) wpinv_sanitize_amount( $price ); |
|
109 | + } |
|
110 | + |
|
111 | + $this->fees[ $element['label'] ] = array( |
|
112 | + 'name' => $element['label'], |
|
113 | + 'initial_fee' => $total, |
|
114 | + 'recurring_fee' => 0, |
|
115 | + ); |
|
116 | + |
|
117 | + } |
|
118 | 118 | |
119 | 119 | } |
@@ -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 | * Payment form submission fees class |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | * |
30 | 30 | * @param GetPaid_Payment_Form_Submission $submission |
31 | 31 | */ |
32 | - public function __construct( $submission ) { |
|
32 | + public function __construct($submission) { |
|
33 | 33 | |
34 | 34 | // Process any existing invoice fees. |
35 | - if ( $submission->has_invoice() ) { |
|
35 | + if ($submission->has_invoice()) { |
|
36 | 36 | $this->fees = $submission->get_invoice()->get_fees(); |
37 | 37 | } |
38 | 38 | |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | $data = $submission->get_data(); |
41 | 41 | $payment_form = $submission->get_payment_form(); |
42 | 42 | |
43 | - foreach ( $payment_form->get_elements() as $element ) { |
|
43 | + foreach ($payment_form->get_elements() as $element) { |
|
44 | 44 | |
45 | - if ( 'price_input' == $element['type'] ) { |
|
46 | - $this->process_price_input( $element, $data ); |
|
45 | + if ('price_input' == $element['type']) { |
|
46 | + $this->process_price_input($element, $data); |
|
47 | 47 | } |
48 | 48 | |
49 | - if ( 'price_select' == $element['type'] ) { |
|
50 | - $this->process_price_select( $element, $data ); |
|
49 | + if ('price_select' == $element['type']) { |
|
50 | + $this->process_price_select($element, $data); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | } |
@@ -60,21 +60,21 @@ discard block |
||
60 | 60 | * @param array $element |
61 | 61 | * @param array $data |
62 | 62 | */ |
63 | - public function process_price_input( $element, $data ) { |
|
63 | + public function process_price_input($element, $data) { |
|
64 | 64 | |
65 | 65 | // Abort if not passed. |
66 | - if ( empty( $data[ $element['id'] ] ) ) { |
|
66 | + if (empty($data[$element['id']])) { |
|
67 | 67 | return; |
68 | 68 | } |
69 | 69 | |
70 | - $amount = (float) wpinv_sanitize_amount( $data[ $element['id'] ] ); |
|
71 | - $minimum = empty( $element['minimum'] ) ? 0 : (float) wpinv_sanitize_amount( $element['minimum'] ); |
|
70 | + $amount = (float) wpinv_sanitize_amount($data[$element['id']]); |
|
71 | + $minimum = empty($element['minimum']) ? 0 : (float) wpinv_sanitize_amount($element['minimum']); |
|
72 | 72 | |
73 | - if ( $amount < $minimum ) { |
|
74 | - throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), $minimum ) ); |
|
73 | + if ($amount < $minimum) { |
|
74 | + throw new Exception(sprintf(__('The minimum allowed amount is %s', 'invoicing'), $minimum)); |
|
75 | 75 | } |
76 | 76 | |
77 | - $this->fees[ $element['label'] ] = array( |
|
77 | + $this->fees[$element['label']] = array( |
|
78 | 78 | 'name' => $element['label'], |
79 | 79 | 'initial_fee' => $amount, |
80 | 80 | 'recurring_fee' => 0, |
@@ -88,27 +88,27 @@ discard block |
||
88 | 88 | * @param array $element |
89 | 89 | * @param array $data |
90 | 90 | */ |
91 | - public function process_price_select( $element, $data ) { |
|
91 | + public function process_price_select($element, $data) { |
|
92 | 92 | |
93 | 93 | // Abort if not passed. |
94 | - if ( empty( $data[ $element['id'] ] ) ) { |
|
94 | + if (empty($data[$element['id']])) { |
|
95 | 95 | return; |
96 | 96 | } |
97 | 97 | |
98 | - $options = getpaid_convert_price_string_to_options( $element['options'] ); |
|
99 | - $selected = wpinv_parse_list( $data[ $element['id'] ] ); |
|
98 | + $options = getpaid_convert_price_string_to_options($element['options']); |
|
99 | + $selected = wpinv_parse_list($data[$element['id']]); |
|
100 | 100 | $total = 0; |
101 | 101 | |
102 | - foreach ( $selected as $price ) { |
|
102 | + foreach ($selected as $price) { |
|
103 | 103 | |
104 | - if ( ! isset( $options[ $price ] ) ) { |
|
105 | - throw new Exception( __( 'You have selected an invalid amount', 'invoicing' ) ); |
|
104 | + if (!isset($options[$price])) { |
|
105 | + throw new Exception(__('You have selected an invalid amount', 'invoicing')); |
|
106 | 106 | } |
107 | 107 | |
108 | - $total += (float) wpinv_sanitize_amount( $price ); |
|
108 | + $total += (float) wpinv_sanitize_amount($price); |
|
109 | 109 | } |
110 | 110 | |
111 | - $this->fees[ $element['label'] ] = array( |
|
111 | + $this->fees[$element['label']] = array( |
|
112 | 112 | 'name' => $element['label'], |
113 | 113 | 'initial_fee' => $total, |
114 | 114 | 'recurring_fee' => 0, |
@@ -12,231 +12,231 @@ |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Payment_Form_Submission_Taxes { |
14 | 14 | |
15 | - /** |
|
16 | - * Submission taxes. |
|
17 | - * @var array |
|
18 | - */ |
|
19 | - public $taxes = array(); |
|
20 | - |
|
21 | - /** |
|
22 | - * Initial tax. |
|
23 | - * @var float |
|
24 | - */ |
|
25 | - protected $initial_tax = 0; |
|
26 | - |
|
27 | - /** |
|
28 | - * Recurring tax. |
|
29 | - * @var float |
|
30 | - */ |
|
31 | - protected $recurring_tax = 0; |
|
15 | + /** |
|
16 | + * Submission taxes. |
|
17 | + * @var array |
|
18 | + */ |
|
19 | + public $taxes = array(); |
|
20 | + |
|
21 | + /** |
|
22 | + * Initial tax. |
|
23 | + * @var float |
|
24 | + */ |
|
25 | + protected $initial_tax = 0; |
|
26 | + |
|
27 | + /** |
|
28 | + * Recurring tax. |
|
29 | + * @var float |
|
30 | + */ |
|
31 | + protected $recurring_tax = 0; |
|
32 | + |
|
33 | + /** |
|
34 | + * Class constructor |
|
35 | + * |
|
36 | + * @param GetPaid_Payment_Form_Submission $submission |
|
37 | + */ |
|
38 | + public function __construct( $submission ) { |
|
39 | + |
|
40 | + // Validate VAT number. |
|
41 | + $this->validate_vat( $submission ); |
|
42 | + |
|
43 | + foreach ( $submission->get_items() as $item ) { |
|
44 | + $this->process_item_tax( $item, $submission ); |
|
45 | + } |
|
46 | + |
|
47 | + // Process any existing invoice taxes. |
|
48 | + if ( $submission->has_invoice() ) { |
|
49 | + $this->taxes = $submission->get_invoice()->get_taxes(); |
|
50 | + } |
|
51 | + |
|
52 | + // Add VAT. |
|
53 | + $this->taxes['vat'] = array( |
|
54 | + 'name' => 'vat', |
|
55 | + 'initial_tax' => $this->initial_tax, |
|
56 | + 'recurring_tax' => $this->recurring_tax, |
|
57 | + ); |
|
58 | + |
|
59 | + } |
|
60 | + |
|
61 | + /** |
|
62 | + * Maybe process tax. |
|
63 | + * |
|
64 | + * @since 1.0.19 |
|
65 | + * @param GetPaid_Form_Item $item |
|
66 | + * @param GetPaid_Payment_Form_Submission $submission |
|
67 | + */ |
|
68 | + public function process_item_tax( $item, $submission ) { |
|
69 | + |
|
70 | + $rate = wpinv_get_tax_rate( $submission->country, $submission->state, $item->get_id() ); |
|
71 | + $price = $item->get_sub_total(); |
|
72 | + $item_tax = $price * $rate * 0.01; |
|
73 | + |
|
74 | + if ( wpinv_prices_include_tax() ) { |
|
75 | + $item_tax = $price - ( $price - $price * $rate * 0.01 ); |
|
76 | + } |
|
77 | + |
|
78 | + $this->initial_tax += $item_tax; |
|
79 | + |
|
80 | + if ( $item->is_recurring() ) { |
|
81 | + $this->recurring_tax += $item_tax; |
|
82 | + } |
|
83 | + |
|
84 | + } |
|
85 | + |
|
86 | + /** |
|
87 | + * Checks if the submission has a digital item. |
|
88 | + * |
|
89 | + * @param GetPaid_Payment_Form_Submission $submission |
|
90 | + * @since 1.0.19 |
|
91 | + * @return bool |
|
92 | + */ |
|
93 | + public function has_digital_item( $submission ) { |
|
94 | + |
|
95 | + foreach ( $submission->get_items() as $item ) { |
|
96 | + |
|
97 | + if ( 'digital' == $item->get_vat_rule() ) { |
|
98 | + return true; |
|
99 | + } |
|
100 | + |
|
101 | + } |
|
102 | + |
|
103 | + return false; |
|
104 | + } |
|
105 | + |
|
106 | + /** |
|
107 | + * Checks if this is an eu store. |
|
108 | + * |
|
109 | + * @since 1.0.19 |
|
110 | + * @return bool |
|
111 | + */ |
|
112 | + public function is_eu_store() { |
|
113 | + return $this->is_eu_country( wpinv_get_default_country() ); |
|
114 | + } |
|
115 | + |
|
116 | + /** |
|
117 | + * Checks if this is an eu country. |
|
118 | + * |
|
119 | + * @param string $country |
|
120 | + * @since 1.0.19 |
|
121 | + * @return bool |
|
122 | + */ |
|
123 | + public function is_eu_country( $country ) { |
|
124 | + return getpaid_is_eu_state( $country ) || getpaid_is_gst_country( $country ); |
|
125 | + } |
|
126 | + |
|
127 | + /** |
|
128 | + * Checks if this is an eu purchase. |
|
129 | + * |
|
130 | + * @param string $customer_country |
|
131 | + * @since 1.0.19 |
|
132 | + * @return bool |
|
133 | + */ |
|
134 | + public function is_eu_transaction( $customer_country ) { |
|
135 | + return $this->is_eu_country( $customer_country ) && $this->is_eu_store(); |
|
136 | + } |
|
137 | + |
|
138 | + /** |
|
139 | + * Retrieves the vat number. |
|
140 | + * |
|
141 | + * @param GetPaid_Payment_Form_Submission $submission |
|
142 | + * @since 1.0.19 |
|
143 | + * @return string |
|
144 | + */ |
|
145 | + public function get_vat_number( $submission ) { |
|
146 | + |
|
147 | + // Retrieve from the posted number. |
|
148 | + $vat_number = $submission->get_field( 'wpinv_vat_number' ); |
|
149 | + if ( ! empty( $vat_number ) ) { |
|
150 | + return wpinv_clean( $vat_number ); |
|
151 | + } |
|
152 | + |
|
153 | + // Retrieve from the invoice. |
|
154 | + return $submission->has_invoice() ? $submission->get_invoice()->get_vat_number() : ''; |
|
155 | + } |
|
156 | + |
|
157 | + /** |
|
158 | + * Retrieves the company. |
|
159 | + * |
|
160 | + * @param GetPaid_Payment_Form_Submission $submission |
|
161 | + * @since 1.0.19 |
|
162 | + * @return string |
|
163 | + */ |
|
164 | + public function get_company( $submission ) { |
|
165 | + |
|
166 | + // Retrieve from the posted data. |
|
167 | + $company = $submission->get_field( 'wpinv_company' ); |
|
168 | + if ( ! empty( $company ) ) { |
|
169 | + return wpinv_clean( $company ); |
|
170 | + } |
|
171 | + |
|
172 | + // Retrieve from the invoice. |
|
173 | + return $submission->has_invoice() ? $submission->get_invoice()->get_company() : ''; |
|
174 | + } |
|
175 | + |
|
176 | + /** |
|
177 | + * Checks if we requires a VAT number. |
|
178 | + * |
|
179 | + * @param bool $ip_in_eu Whether the customer IP is from the EU |
|
180 | + * @param bool $country_in_eu Whether the customer country is from the EU |
|
181 | + * @since 1.0.19 |
|
182 | + * @return string |
|
183 | + */ |
|
184 | + public function requires_vat( $ip_in_eu, $country_in_eu ) { |
|
185 | + |
|
186 | + $prevent_b2c = wpinv_get_option( 'vat_prevent_b2c_purchase' ); |
|
187 | + $prevent_b2c = ! empty( $prevent_b2c ); |
|
188 | + $is_eu = $ip_in_eu || $country_in_eu; |
|
189 | + |
|
190 | + return $prevent_b2c && $is_eu; |
|
191 | + } |
|
32 | 192 | |
33 | 193 | /** |
34 | - * Class constructor |
|
35 | - * |
|
36 | - * @param GetPaid_Payment_Form_Submission $submission |
|
37 | - */ |
|
38 | - public function __construct( $submission ) { |
|
39 | - |
|
40 | - // Validate VAT number. |
|
41 | - $this->validate_vat( $submission ); |
|
42 | - |
|
43 | - foreach ( $submission->get_items() as $item ) { |
|
44 | - $this->process_item_tax( $item, $submission ); |
|
45 | - } |
|
46 | - |
|
47 | - // Process any existing invoice taxes. |
|
48 | - if ( $submission->has_invoice() ) { |
|
49 | - $this->taxes = $submission->get_invoice()->get_taxes(); |
|
50 | - } |
|
51 | - |
|
52 | - // Add VAT. |
|
53 | - $this->taxes['vat'] = array( |
|
54 | - 'name' => 'vat', |
|
55 | - 'initial_tax' => $this->initial_tax, |
|
56 | - 'recurring_tax' => $this->recurring_tax, |
|
57 | - ); |
|
58 | - |
|
59 | - } |
|
60 | - |
|
61 | - /** |
|
62 | - * Maybe process tax. |
|
63 | - * |
|
64 | - * @since 1.0.19 |
|
65 | - * @param GetPaid_Form_Item $item |
|
66 | - * @param GetPaid_Payment_Form_Submission $submission |
|
67 | - */ |
|
68 | - public function process_item_tax( $item, $submission ) { |
|
69 | - |
|
70 | - $rate = wpinv_get_tax_rate( $submission->country, $submission->state, $item->get_id() ); |
|
71 | - $price = $item->get_sub_total(); |
|
72 | - $item_tax = $price * $rate * 0.01; |
|
73 | - |
|
74 | - if ( wpinv_prices_include_tax() ) { |
|
75 | - $item_tax = $price - ( $price - $price * $rate * 0.01 ); |
|
76 | - } |
|
77 | - |
|
78 | - $this->initial_tax += $item_tax; |
|
79 | - |
|
80 | - if ( $item->is_recurring() ) { |
|
81 | - $this->recurring_tax += $item_tax; |
|
82 | - } |
|
83 | - |
|
84 | - } |
|
85 | - |
|
86 | - /** |
|
87 | - * Checks if the submission has a digital item. |
|
88 | - * |
|
89 | - * @param GetPaid_Payment_Form_Submission $submission |
|
90 | - * @since 1.0.19 |
|
91 | - * @return bool |
|
92 | - */ |
|
93 | - public function has_digital_item( $submission ) { |
|
94 | - |
|
95 | - foreach ( $submission->get_items() as $item ) { |
|
96 | - |
|
97 | - if ( 'digital' == $item->get_vat_rule() ) { |
|
98 | - return true; |
|
99 | - } |
|
100 | - |
|
101 | - } |
|
102 | - |
|
103 | - return false; |
|
104 | - } |
|
105 | - |
|
106 | - /** |
|
107 | - * Checks if this is an eu store. |
|
108 | - * |
|
109 | - * @since 1.0.19 |
|
110 | - * @return bool |
|
111 | - */ |
|
112 | - public function is_eu_store() { |
|
113 | - return $this->is_eu_country( wpinv_get_default_country() ); |
|
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * Checks if this is an eu country. |
|
118 | - * |
|
119 | - * @param string $country |
|
120 | - * @since 1.0.19 |
|
121 | - * @return bool |
|
122 | - */ |
|
123 | - public function is_eu_country( $country ) { |
|
124 | - return getpaid_is_eu_state( $country ) || getpaid_is_gst_country( $country ); |
|
125 | - } |
|
126 | - |
|
127 | - /** |
|
128 | - * Checks if this is an eu purchase. |
|
129 | - * |
|
130 | - * @param string $customer_country |
|
131 | - * @since 1.0.19 |
|
132 | - * @return bool |
|
133 | - */ |
|
134 | - public function is_eu_transaction( $customer_country ) { |
|
135 | - return $this->is_eu_country( $customer_country ) && $this->is_eu_store(); |
|
136 | - } |
|
137 | - |
|
138 | - /** |
|
139 | - * Retrieves the vat number. |
|
140 | - * |
|
141 | - * @param GetPaid_Payment_Form_Submission $submission |
|
142 | - * @since 1.0.19 |
|
143 | - * @return string |
|
144 | - */ |
|
145 | - public function get_vat_number( $submission ) { |
|
146 | - |
|
147 | - // Retrieve from the posted number. |
|
148 | - $vat_number = $submission->get_field( 'wpinv_vat_number' ); |
|
149 | - if ( ! empty( $vat_number ) ) { |
|
150 | - return wpinv_clean( $vat_number ); |
|
151 | - } |
|
152 | - |
|
153 | - // Retrieve from the invoice. |
|
154 | - return $submission->has_invoice() ? $submission->get_invoice()->get_vat_number() : ''; |
|
155 | - } |
|
156 | - |
|
157 | - /** |
|
158 | - * Retrieves the company. |
|
159 | - * |
|
160 | - * @param GetPaid_Payment_Form_Submission $submission |
|
161 | - * @since 1.0.19 |
|
162 | - * @return string |
|
163 | - */ |
|
164 | - public function get_company( $submission ) { |
|
165 | - |
|
166 | - // Retrieve from the posted data. |
|
167 | - $company = $submission->get_field( 'wpinv_company' ); |
|
168 | - if ( ! empty( $company ) ) { |
|
169 | - return wpinv_clean( $company ); |
|
170 | - } |
|
171 | - |
|
172 | - // Retrieve from the invoice. |
|
173 | - return $submission->has_invoice() ? $submission->get_invoice()->get_company() : ''; |
|
174 | - } |
|
175 | - |
|
176 | - /** |
|
177 | - * Checks if we requires a VAT number. |
|
178 | - * |
|
179 | - * @param bool $ip_in_eu Whether the customer IP is from the EU |
|
180 | - * @param bool $country_in_eu Whether the customer country is from the EU |
|
181 | - * @since 1.0.19 |
|
182 | - * @return string |
|
183 | - */ |
|
184 | - public function requires_vat( $ip_in_eu, $country_in_eu ) { |
|
185 | - |
|
186 | - $prevent_b2c = wpinv_get_option( 'vat_prevent_b2c_purchase' ); |
|
187 | - $prevent_b2c = ! empty( $prevent_b2c ); |
|
188 | - $is_eu = $ip_in_eu || $country_in_eu; |
|
189 | - |
|
190 | - return $prevent_b2c && $is_eu; |
|
191 | - } |
|
192 | - |
|
193 | - /** |
|
194 | - * Validate VAT data. |
|
195 | - * |
|
196 | - * @param GetPaid_Payment_Form_Submission $submission |
|
197 | - * @since 1.0.19 |
|
198 | - */ |
|
199 | - public function validate_vat( $submission ) { |
|
200 | - |
|
201 | - $has_digital = $this->has_digital_item( $submission ); |
|
202 | - $in_eu = $this->is_eu_transaction( $submission->country ); |
|
203 | - |
|
204 | - // Abort if we are not validating vat numbers. |
|
205 | - if ( ! $has_digital && ! $in_eu ) { |
|
194 | + * Validate VAT data. |
|
195 | + * |
|
196 | + * @param GetPaid_Payment_Form_Submission $submission |
|
197 | + * @since 1.0.19 |
|
198 | + */ |
|
199 | + public function validate_vat( $submission ) { |
|
200 | + |
|
201 | + $has_digital = $this->has_digital_item( $submission ); |
|
202 | + $in_eu = $this->is_eu_transaction( $submission->country ); |
|
203 | + |
|
204 | + // Abort if we are not validating vat numbers. |
|
205 | + if ( ! $has_digital && ! $in_eu ) { |
|
206 | 206 | return; |
207 | - } |
|
207 | + } |
|
208 | 208 | |
209 | - // Prepare variables. |
|
210 | - $vat_number = $this->get_vat_number( $submission ); |
|
211 | - $company = $this->get_company( $submission ); |
|
212 | - $ip_country = WPInv_EUVat::get_country_by_ip(); |
|
209 | + // Prepare variables. |
|
210 | + $vat_number = $this->get_vat_number( $submission ); |
|
211 | + $company = $this->get_company( $submission ); |
|
212 | + $ip_country = WPInv_EUVat::get_country_by_ip(); |
|
213 | 213 | $is_eu = $this->is_eu_country( $submission->country ); |
214 | 214 | $is_ip_eu = $this->is_eu_country( $ip_country ); |
215 | 215 | |
216 | - // If we're preventing business to consumer purchases, ensure |
|
217 | - if ( $this->requires_vat( $is_ip_eu, $is_eu ) && empty( $vat_number ) ) { |
|
216 | + // If we're preventing business to consumer purchases, ensure |
|
217 | + if ( $this->requires_vat( $is_ip_eu, $is_eu ) && empty( $vat_number ) ) { |
|
218 | 218 | |
219 | - // Ensure that a vat number has been specified. |
|
220 | - throw new Exception( |
|
221 | - wp_sprintf( |
|
222 | - __( 'Please enter your %s number to verify your purchase is by an EU business.', 'invoicing' ), |
|
223 | - getpaid_vat_name() |
|
224 | - ) |
|
225 | - ); |
|
219 | + // Ensure that a vat number has been specified. |
|
220 | + throw new Exception( |
|
221 | + wp_sprintf( |
|
222 | + __( 'Please enter your %s number to verify your purchase is by an EU business.', 'invoicing' ), |
|
223 | + getpaid_vat_name() |
|
224 | + ) |
|
225 | + ); |
|
226 | 226 | |
227 | - } |
|
227 | + } |
|
228 | 228 | |
229 | - // Abort if we are not validating vat (vat number should exist, user should be in eu and business too). |
|
230 | - if ( ! $is_eu || ! $in_eu || empty( $vat_number ) ) { |
|
229 | + // Abort if we are not validating vat (vat number should exist, user should be in eu and business too). |
|
230 | + if ( ! $is_eu || ! $in_eu || empty( $vat_number ) ) { |
|
231 | 231 | return; |
232 | - } |
|
232 | + } |
|
233 | 233 | |
234 | - $is_valid = WPInv_EUVat::validate_vat_number( $vat_number, $company, $submission->country ); |
|
234 | + $is_valid = WPInv_EUVat::validate_vat_number( $vat_number, $company, $submission->country ); |
|
235 | 235 | |
236 | - if ( is_string( $is_valid ) ) { |
|
237 | - throw new Exception( $is_valid ); |
|
238 | - } |
|
236 | + if ( is_string( $is_valid ) ) { |
|
237 | + throw new Exception( $is_valid ); |
|
238 | + } |
|
239 | 239 | |
240 | - } |
|
240 | + } |
|
241 | 241 | |
242 | 242 | } |
@@ -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 | * Payment form submission taxes class |
@@ -35,17 +35,17 @@ discard block |
||
35 | 35 | * |
36 | 36 | * @param GetPaid_Payment_Form_Submission $submission |
37 | 37 | */ |
38 | - public function __construct( $submission ) { |
|
38 | + public function __construct($submission) { |
|
39 | 39 | |
40 | 40 | // Validate VAT number. |
41 | - $this->validate_vat( $submission ); |
|
41 | + $this->validate_vat($submission); |
|
42 | 42 | |
43 | - foreach ( $submission->get_items() as $item ) { |
|
44 | - $this->process_item_tax( $item, $submission ); |
|
43 | + foreach ($submission->get_items() as $item) { |
|
44 | + $this->process_item_tax($item, $submission); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | // Process any existing invoice taxes. |
48 | - if ( $submission->has_invoice() ) { |
|
48 | + if ($submission->has_invoice()) { |
|
49 | 49 | $this->taxes = $submission->get_invoice()->get_taxes(); |
50 | 50 | } |
51 | 51 | |
@@ -65,19 +65,19 @@ discard block |
||
65 | 65 | * @param GetPaid_Form_Item $item |
66 | 66 | * @param GetPaid_Payment_Form_Submission $submission |
67 | 67 | */ |
68 | - public function process_item_tax( $item, $submission ) { |
|
68 | + public function process_item_tax($item, $submission) { |
|
69 | 69 | |
70 | - $rate = wpinv_get_tax_rate( $submission->country, $submission->state, $item->get_id() ); |
|
70 | + $rate = wpinv_get_tax_rate($submission->country, $submission->state, $item->get_id()); |
|
71 | 71 | $price = $item->get_sub_total(); |
72 | 72 | $item_tax = $price * $rate * 0.01; |
73 | 73 | |
74 | - if ( wpinv_prices_include_tax() ) { |
|
75 | - $item_tax = $price - ( $price - $price * $rate * 0.01 ); |
|
74 | + if (wpinv_prices_include_tax()) { |
|
75 | + $item_tax = $price - ($price - $price * $rate * 0.01); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | $this->initial_tax += $item_tax; |
79 | 79 | |
80 | - if ( $item->is_recurring() ) { |
|
80 | + if ($item->is_recurring()) { |
|
81 | 81 | $this->recurring_tax += $item_tax; |
82 | 82 | } |
83 | 83 | |
@@ -90,11 +90,11 @@ discard block |
||
90 | 90 | * @since 1.0.19 |
91 | 91 | * @return bool |
92 | 92 | */ |
93 | - public function has_digital_item( $submission ) { |
|
93 | + public function has_digital_item($submission) { |
|
94 | 94 | |
95 | - foreach ( $submission->get_items() as $item ) { |
|
95 | + foreach ($submission->get_items() as $item) { |
|
96 | 96 | |
97 | - if ( 'digital' == $item->get_vat_rule() ) { |
|
97 | + if ('digital' == $item->get_vat_rule()) { |
|
98 | 98 | return true; |
99 | 99 | } |
100 | 100 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | * @return bool |
111 | 111 | */ |
112 | 112 | public function is_eu_store() { |
113 | - return $this->is_eu_country( wpinv_get_default_country() ); |
|
113 | + return $this->is_eu_country(wpinv_get_default_country()); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -120,8 +120,8 @@ discard block |
||
120 | 120 | * @since 1.0.19 |
121 | 121 | * @return bool |
122 | 122 | */ |
123 | - public function is_eu_country( $country ) { |
|
124 | - return getpaid_is_eu_state( $country ) || getpaid_is_gst_country( $country ); |
|
123 | + public function is_eu_country($country) { |
|
124 | + return getpaid_is_eu_state($country) || getpaid_is_gst_country($country); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -131,8 +131,8 @@ discard block |
||
131 | 131 | * @since 1.0.19 |
132 | 132 | * @return bool |
133 | 133 | */ |
134 | - public function is_eu_transaction( $customer_country ) { |
|
135 | - return $this->is_eu_country( $customer_country ) && $this->is_eu_store(); |
|
134 | + public function is_eu_transaction($customer_country) { |
|
135 | + return $this->is_eu_country($customer_country) && $this->is_eu_store(); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -142,12 +142,12 @@ discard block |
||
142 | 142 | * @since 1.0.19 |
143 | 143 | * @return string |
144 | 144 | */ |
145 | - public function get_vat_number( $submission ) { |
|
145 | + public function get_vat_number($submission) { |
|
146 | 146 | |
147 | 147 | // Retrieve from the posted number. |
148 | - $vat_number = $submission->get_field( 'wpinv_vat_number' ); |
|
149 | - if ( ! empty( $vat_number ) ) { |
|
150 | - return wpinv_clean( $vat_number ); |
|
148 | + $vat_number = $submission->get_field('wpinv_vat_number'); |
|
149 | + if (!empty($vat_number)) { |
|
150 | + return wpinv_clean($vat_number); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | // Retrieve from the invoice. |
@@ -161,12 +161,12 @@ discard block |
||
161 | 161 | * @since 1.0.19 |
162 | 162 | * @return string |
163 | 163 | */ |
164 | - public function get_company( $submission ) { |
|
164 | + public function get_company($submission) { |
|
165 | 165 | |
166 | 166 | // Retrieve from the posted data. |
167 | - $company = $submission->get_field( 'wpinv_company' ); |
|
168 | - if ( ! empty( $company ) ) { |
|
169 | - return wpinv_clean( $company ); |
|
167 | + $company = $submission->get_field('wpinv_company'); |
|
168 | + if (!empty($company)) { |
|
169 | + return wpinv_clean($company); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | // Retrieve from the invoice. |
@@ -181,10 +181,10 @@ discard block |
||
181 | 181 | * @since 1.0.19 |
182 | 182 | * @return string |
183 | 183 | */ |
184 | - public function requires_vat( $ip_in_eu, $country_in_eu ) { |
|
184 | + public function requires_vat($ip_in_eu, $country_in_eu) { |
|
185 | 185 | |
186 | - $prevent_b2c = wpinv_get_option( 'vat_prevent_b2c_purchase' ); |
|
187 | - $prevent_b2c = ! empty( $prevent_b2c ); |
|
186 | + $prevent_b2c = wpinv_get_option('vat_prevent_b2c_purchase'); |
|
187 | + $prevent_b2c = !empty($prevent_b2c); |
|
188 | 188 | $is_eu = $ip_in_eu || $country_in_eu; |
189 | 189 | |
190 | 190 | return $prevent_b2c && $is_eu; |
@@ -196,30 +196,30 @@ discard block |
||
196 | 196 | * @param GetPaid_Payment_Form_Submission $submission |
197 | 197 | * @since 1.0.19 |
198 | 198 | */ |
199 | - public function validate_vat( $submission ) { |
|
199 | + public function validate_vat($submission) { |
|
200 | 200 | |
201 | - $has_digital = $this->has_digital_item( $submission ); |
|
202 | - $in_eu = $this->is_eu_transaction( $submission->country ); |
|
201 | + $has_digital = $this->has_digital_item($submission); |
|
202 | + $in_eu = $this->is_eu_transaction($submission->country); |
|
203 | 203 | |
204 | 204 | // Abort if we are not validating vat numbers. |
205 | - if ( ! $has_digital && ! $in_eu ) { |
|
205 | + if (!$has_digital && !$in_eu) { |
|
206 | 206 | return; |
207 | 207 | } |
208 | 208 | |
209 | 209 | // Prepare variables. |
210 | - $vat_number = $this->get_vat_number( $submission ); |
|
211 | - $company = $this->get_company( $submission ); |
|
210 | + $vat_number = $this->get_vat_number($submission); |
|
211 | + $company = $this->get_company($submission); |
|
212 | 212 | $ip_country = WPInv_EUVat::get_country_by_ip(); |
213 | - $is_eu = $this->is_eu_country( $submission->country ); |
|
214 | - $is_ip_eu = $this->is_eu_country( $ip_country ); |
|
213 | + $is_eu = $this->is_eu_country($submission->country); |
|
214 | + $is_ip_eu = $this->is_eu_country($ip_country); |
|
215 | 215 | |
216 | 216 | // If we're preventing business to consumer purchases, ensure |
217 | - if ( $this->requires_vat( $is_ip_eu, $is_eu ) && empty( $vat_number ) ) { |
|
217 | + if ($this->requires_vat($is_ip_eu, $is_eu) && empty($vat_number)) { |
|
218 | 218 | |
219 | 219 | // Ensure that a vat number has been specified. |
220 | 220 | throw new Exception( |
221 | 221 | wp_sprintf( |
222 | - __( 'Please enter your %s number to verify your purchase is by an EU business.', 'invoicing' ), |
|
222 | + __('Please enter your %s number to verify your purchase is by an EU business.', 'invoicing'), |
|
223 | 223 | getpaid_vat_name() |
224 | 224 | ) |
225 | 225 | ); |
@@ -227,14 +227,14 @@ discard block |
||
227 | 227 | } |
228 | 228 | |
229 | 229 | // Abort if we are not validating vat (vat number should exist, user should be in eu and business too). |
230 | - if ( ! $is_eu || ! $in_eu || empty( $vat_number ) ) { |
|
230 | + if (!$is_eu || !$in_eu || empty($vat_number)) { |
|
231 | 231 | return; |
232 | 232 | } |
233 | 233 | |
234 | - $is_valid = WPInv_EUVat::validate_vat_number( $vat_number, $company, $submission->country ); |
|
234 | + $is_valid = WPInv_EUVat::validate_vat_number($vat_number, $company, $submission->country); |
|
235 | 235 | |
236 | - if ( is_string( $is_valid ) ) { |
|
237 | - throw new Exception( $is_valid ); |
|
236 | + if (is_string($is_valid)) { |
|
237 | + throw new Exception($is_valid); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | } |
@@ -12,77 +12,77 @@ |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Payment_Form_Submission_Items { |
14 | 14 | |
15 | - /** |
|
16 | - * Submission items. |
|
17 | - * @var GetPaid_Form_Item[] |
|
18 | - */ |
|
19 | - public $items = array(); |
|
15 | + /** |
|
16 | + * Submission items. |
|
17 | + * @var GetPaid_Form_Item[] |
|
18 | + */ |
|
19 | + public $items = array(); |
|
20 | 20 | |
21 | 21 | /** |
22 | - * Class constructor |
|
23 | - * |
|
24 | - * @param GetPaid_Payment_Form_Submission $submission |
|
25 | - */ |
|
26 | - public function __construct( $submission ) { |
|
22 | + * Class constructor |
|
23 | + * |
|
24 | + * @param GetPaid_Payment_Form_Submission $submission |
|
25 | + */ |
|
26 | + public function __construct( $submission ) { |
|
27 | 27 | |
28 | - $data = $submission->get_data(); |
|
29 | - $payment_form = $submission->get_payment_form(); |
|
28 | + $data = $submission->get_data(); |
|
29 | + $payment_form = $submission->get_payment_form(); |
|
30 | 30 | |
31 | - // Prepare the selected items. |
|
32 | - $selected_items = array(); |
|
33 | - if ( ! empty( $data['getpaid-items'] ) ) { |
|
34 | - $selected_items = wpinv_clean( $data['getpaid-items'] ); |
|
35 | - } |
|
31 | + // Prepare the selected items. |
|
32 | + $selected_items = array(); |
|
33 | + if ( ! empty( $data['getpaid-items'] ) ) { |
|
34 | + $selected_items = wpinv_clean( $data['getpaid-items'] ); |
|
35 | + } |
|
36 | 36 | |
37 | - // For default forms, ensure that an item has been set. |
|
38 | - if ( $payment_form->is_default() && ! $submission->has_invoice() ) { |
|
39 | - $payment_form->set_items( $selected_items ); |
|
40 | - } |
|
37 | + // For default forms, ensure that an item has been set. |
|
38 | + if ( $payment_form->is_default() && ! $submission->has_invoice() ) { |
|
39 | + $payment_form->set_items( $selected_items ); |
|
40 | + } |
|
41 | 41 | |
42 | - // Process each individual item. |
|
43 | - foreach ( $payment_form->get_items() as $item ) { |
|
44 | - $this->process_item( $item, $selected_items ); |
|
45 | - } |
|
42 | + // Process each individual item. |
|
43 | + foreach ( $payment_form->get_items() as $item ) { |
|
44 | + $this->process_item( $item, $selected_items ); |
|
45 | + } |
|
46 | 46 | |
47 | - } |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * Process a single item. |
|
51 | - * |
|
52 | - * @param GetPaid_Form_Item $item |
|
53 | - * @param array $selected_items |
|
54 | - */ |
|
55 | - public function process_item( $item, $selected_items ) { |
|
49 | + /** |
|
50 | + * Process a single item. |
|
51 | + * |
|
52 | + * @param GetPaid_Form_Item $item |
|
53 | + * @param array $selected_items |
|
54 | + */ |
|
55 | + public function process_item( $item, $selected_items ) { |
|
56 | 56 | |
57 | - // Abort if this is an optional item and it has not been selected. |
|
58 | - if ( ! $item->is_required() && ! isset( $selected_items[ $item->get_id() ] ) ) { |
|
59 | - return; |
|
60 | - } |
|
57 | + // Abort if this is an optional item and it has not been selected. |
|
58 | + if ( ! $item->is_required() && ! isset( $selected_items[ $item->get_id() ] ) ) { |
|
59 | + return; |
|
60 | + } |
|
61 | 61 | |
62 | - // (maybe) let customers change the quantities and prices. |
|
63 | - if ( isset( $selected_items[ $item->get_id() ] ) ) { |
|
62 | + // (maybe) let customers change the quantities and prices. |
|
63 | + if ( isset( $selected_items[ $item->get_id() ] ) ) { |
|
64 | 64 | |
65 | - // Maybe change the quantities. |
|
66 | - if ( $item->allows_quantities() ) { |
|
67 | - $item->set_quantity( (int) $selected_items[ $item->get_id() ]['quantity'] ); |
|
68 | - } |
|
65 | + // Maybe change the quantities. |
|
66 | + if ( $item->allows_quantities() ) { |
|
67 | + $item->set_quantity( (int) $selected_items[ $item->get_id() ]['quantity'] ); |
|
68 | + } |
|
69 | 69 | |
70 | - // Maybe change the price. |
|
71 | - if ( $item->user_can_set_their_price() ) { |
|
72 | - $price = (float) wpinv_sanitize_amount( $selected_items[ $item->get_id() ]['price'] ); |
|
70 | + // Maybe change the price. |
|
71 | + if ( $item->user_can_set_their_price() ) { |
|
72 | + $price = (float) wpinv_sanitize_amount( $selected_items[ $item->get_id() ]['price'] ); |
|
73 | 73 | |
74 | - // But don't get lower than the minimum price. |
|
75 | - $price = max( $price, $item->get_minimum_price() ); |
|
74 | + // But don't get lower than the minimum price. |
|
75 | + $price = max( $price, $item->get_minimum_price() ); |
|
76 | 76 | |
77 | - $item->set_price( $price ); |
|
77 | + $item->set_price( $price ); |
|
78 | 78 | |
79 | - } |
|
79 | + } |
|
80 | 80 | |
81 | - } |
|
81 | + } |
|
82 | 82 | |
83 | - // Save the item. |
|
84 | - $this->items[] = $item; |
|
83 | + // Save the item. |
|
84 | + $this->items[] = $item; |
|
85 | 85 | |
86 | - } |
|
86 | + } |
|
87 | 87 | |
88 | 88 | } |
@@ -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 | * Payment form submission itemss class |
@@ -23,25 +23,25 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @param GetPaid_Payment_Form_Submission $submission |
25 | 25 | */ |
26 | - public function __construct( $submission ) { |
|
26 | + public function __construct($submission) { |
|
27 | 27 | |
28 | 28 | $data = $submission->get_data(); |
29 | 29 | $payment_form = $submission->get_payment_form(); |
30 | 30 | |
31 | 31 | // Prepare the selected items. |
32 | 32 | $selected_items = array(); |
33 | - if ( ! empty( $data['getpaid-items'] ) ) { |
|
34 | - $selected_items = wpinv_clean( $data['getpaid-items'] ); |
|
33 | + if (!empty($data['getpaid-items'])) { |
|
34 | + $selected_items = wpinv_clean($data['getpaid-items']); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | // For default forms, ensure that an item has been set. |
38 | - if ( $payment_form->is_default() && ! $submission->has_invoice() ) { |
|
39 | - $payment_form->set_items( $selected_items ); |
|
38 | + if ($payment_form->is_default() && !$submission->has_invoice()) { |
|
39 | + $payment_form->set_items($selected_items); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | // Process each individual item. |
43 | - foreach ( $payment_form->get_items() as $item ) { |
|
44 | - $this->process_item( $item, $selected_items ); |
|
43 | + foreach ($payment_form->get_items() as $item) { |
|
44 | + $this->process_item($item, $selected_items); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | } |
@@ -52,29 +52,29 @@ discard block |
||
52 | 52 | * @param GetPaid_Form_Item $item |
53 | 53 | * @param array $selected_items |
54 | 54 | */ |
55 | - public function process_item( $item, $selected_items ) { |
|
55 | + public function process_item($item, $selected_items) { |
|
56 | 56 | |
57 | 57 | // Abort if this is an optional item and it has not been selected. |
58 | - if ( ! $item->is_required() && ! isset( $selected_items[ $item->get_id() ] ) ) { |
|
58 | + if (!$item->is_required() && !isset($selected_items[$item->get_id()])) { |
|
59 | 59 | return; |
60 | 60 | } |
61 | 61 | |
62 | 62 | // (maybe) let customers change the quantities and prices. |
63 | - if ( isset( $selected_items[ $item->get_id() ] ) ) { |
|
63 | + if (isset($selected_items[$item->get_id()])) { |
|
64 | 64 | |
65 | 65 | // Maybe change the quantities. |
66 | - if ( $item->allows_quantities() ) { |
|
67 | - $item->set_quantity( (int) $selected_items[ $item->get_id() ]['quantity'] ); |
|
66 | + if ($item->allows_quantities()) { |
|
67 | + $item->set_quantity((int) $selected_items[$item->get_id()]['quantity']); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | // Maybe change the price. |
71 | - if ( $item->user_can_set_their_price() ) { |
|
72 | - $price = (float) wpinv_sanitize_amount( $selected_items[ $item->get_id() ]['price'] ); |
|
71 | + if ($item->user_can_set_their_price()) { |
|
72 | + $price = (float) wpinv_sanitize_amount($selected_items[$item->get_id()]['price']); |
|
73 | 73 | |
74 | 74 | // But don't get lower than the minimum price. |
75 | - $price = max( $price, $item->get_minimum_price() ); |
|
75 | + $price = max($price, $item->get_minimum_price()); |
|
76 | 76 | |
77 | - $item->set_price( $price ); |
|
77 | + $item->set_price($price); |
|
78 | 78 | |
79 | 79 | } |
80 | 80 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
3 | - exit; |
|
3 | + exit; |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -10,55 +10,55 @@ discard block |
||
10 | 10 | class GetPaid_Payment_Form extends GetPaid_Data { |
11 | 11 | |
12 | 12 | /** |
13 | - * Which data store to load. |
|
14 | - * |
|
15 | - * @var string |
|
16 | - */ |
|
13 | + * Which data store to load. |
|
14 | + * |
|
15 | + * @var string |
|
16 | + */ |
|
17 | 17 | protected $data_store_name = 'payment_form'; |
18 | 18 | |
19 | 19 | /** |
20 | - * This is the name of this object type. |
|
21 | - * |
|
22 | - * @var string |
|
23 | - */ |
|
24 | - protected $object_type = 'payment_form'; |
|
20 | + * This is the name of this object type. |
|
21 | + * |
|
22 | + * @var string |
|
23 | + */ |
|
24 | + protected $object_type = 'payment_form'; |
|
25 | 25 | |
26 | 26 | /** |
27 | - * Form Data array. This is the core form data exposed in APIs. |
|
28 | - * |
|
29 | - * @since 1.0.19 |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - protected $data = array( |
|
33 | - 'status' => 'draft', |
|
34 | - 'version' => '', |
|
35 | - 'date_created' => null, |
|
27 | + * Form Data array. This is the core form data exposed in APIs. |
|
28 | + * |
|
29 | + * @since 1.0.19 |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + protected $data = array( |
|
33 | + 'status' => 'draft', |
|
34 | + 'version' => '', |
|
35 | + 'date_created' => null, |
|
36 | 36 | 'date_modified' => null, |
37 | 37 | 'name' => '', |
38 | 38 | 'author' => 1, |
39 | 39 | 'elements' => null, |
40 | - 'items' => null, |
|
41 | - 'earned' => 0, |
|
42 | - 'refunded' => 0, |
|
43 | - 'cancelled' => 0, |
|
44 | - 'failed' => 0, |
|
45 | - ); |
|
46 | - |
|
47 | - /** |
|
48 | - * Stores meta in cache for future reads. |
|
49 | - * |
|
50 | - * A group must be set to to enable caching. |
|
51 | - * |
|
52 | - * @var string |
|
53 | - */ |
|
54 | - protected $cache_group = 'getpaid_forms'; |
|
55 | - |
|
56 | - /** |
|
57 | - * Stores a reference to the invoice if the form is for an invoice.. |
|
58 | - * |
|
59 | - * @var WPInv_Invoice |
|
60 | - */ |
|
61 | - public $invoice = 0; |
|
40 | + 'items' => null, |
|
41 | + 'earned' => 0, |
|
42 | + 'refunded' => 0, |
|
43 | + 'cancelled' => 0, |
|
44 | + 'failed' => 0, |
|
45 | + ); |
|
46 | + |
|
47 | + /** |
|
48 | + * Stores meta in cache for future reads. |
|
49 | + * |
|
50 | + * A group must be set to to enable caching. |
|
51 | + * |
|
52 | + * @var string |
|
53 | + */ |
|
54 | + protected $cache_group = 'getpaid_forms'; |
|
55 | + |
|
56 | + /** |
|
57 | + * Stores a reference to the invoice if the form is for an invoice.. |
|
58 | + * |
|
59 | + * @var WPInv_Invoice |
|
60 | + */ |
|
61 | + public $invoice = 0; |
|
62 | 62 | |
63 | 63 | /** |
64 | 64 | * Stores a reference to the original WP_Post object |
@@ -68,35 +68,35 @@ discard block |
||
68 | 68 | protected $post = null; |
69 | 69 | |
70 | 70 | /** |
71 | - * Get the form if ID is passed, otherwise the form is new and empty. |
|
72 | - * |
|
73 | - * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
74 | - */ |
|
75 | - public function __construct( $form = 0 ) { |
|
76 | - parent::__construct( $form ); |
|
71 | + * Get the form if ID is passed, otherwise the form is new and empty. |
|
72 | + * |
|
73 | + * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
74 | + */ |
|
75 | + public function __construct( $form = 0 ) { |
|
76 | + parent::__construct( $form ); |
|
77 | 77 | |
78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
79 | - $this->set_id( $form ); |
|
80 | - } elseif ( $form instanceof self ) { |
|
78 | + if ( is_numeric( $form ) && $form > 0 ) { |
|
79 | + $this->set_id( $form ); |
|
80 | + } elseif ( $form instanceof self ) { |
|
81 | 81 | |
82 | - $this->set_id( $form->get_id() ); |
|
83 | - $this->invoice = $form->invoice; |
|
82 | + $this->set_id( $form->get_id() ); |
|
83 | + $this->invoice = $form->invoice; |
|
84 | 84 | |
85 | - } elseif ( ! empty( $form->ID ) ) { |
|
86 | - $this->set_id( $form->ID ); |
|
87 | - } else { |
|
88 | - $this->set_object_read( true ); |
|
89 | - } |
|
85 | + } elseif ( ! empty( $form->ID ) ) { |
|
86 | + $this->set_id( $form->ID ); |
|
87 | + } else { |
|
88 | + $this->set_object_read( true ); |
|
89 | + } |
|
90 | 90 | |
91 | 91 | // Load the datastore. |
92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
92 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
93 | 93 | |
94 | - if ( $this->get_id() > 0 ) { |
|
94 | + if ( $this->get_id() > 0 ) { |
|
95 | 95 | $this->post = get_post( $this->get_id() ); |
96 | - $this->data_store->read( $this ); |
|
96 | + $this->data_store->read( $this ); |
|
97 | 97 | } |
98 | 98 | |
99 | - } |
|
99 | + } |
|
100 | 100 | |
101 | 101 | /* |
102 | 102 | |-------------------------------------------------------------------------- |
@@ -114,351 +114,351 @@ discard block |
||
114 | 114 | */ |
115 | 115 | |
116 | 116 | /** |
117 | - * Get plugin version when the form was created. |
|
118 | - * |
|
119 | - * @since 1.0.19 |
|
120 | - * @param string $context View or edit context. |
|
121 | - * @return string |
|
122 | - */ |
|
123 | - public function get_version( $context = 'view' ) { |
|
124 | - return $this->get_prop( 'version', $context ); |
|
117 | + * Get plugin version when the form was created. |
|
118 | + * |
|
119 | + * @since 1.0.19 |
|
120 | + * @param string $context View or edit context. |
|
121 | + * @return string |
|
122 | + */ |
|
123 | + public function get_version( $context = 'view' ) { |
|
124 | + return $this->get_prop( 'version', $context ); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
128 | - * Get date when the form was created. |
|
129 | - * |
|
130 | - * @since 1.0.19 |
|
131 | - * @param string $context View or edit context. |
|
132 | - * @return string |
|
133 | - */ |
|
134 | - public function get_date_created( $context = 'view' ) { |
|
135 | - return $this->get_prop( 'date_created', $context ); |
|
128 | + * Get date when the form was created. |
|
129 | + * |
|
130 | + * @since 1.0.19 |
|
131 | + * @param string $context View or edit context. |
|
132 | + * @return string |
|
133 | + */ |
|
134 | + public function get_date_created( $context = 'view' ) { |
|
135 | + return $this->get_prop( 'date_created', $context ); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
139 | - * Get GMT date when the form was created. |
|
140 | - * |
|
141 | - * @since 1.0.19 |
|
142 | - * @param string $context View or edit context. |
|
143 | - * @return string |
|
144 | - */ |
|
145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
139 | + * Get GMT date when the form was created. |
|
140 | + * |
|
141 | + * @since 1.0.19 |
|
142 | + * @param string $context View or edit context. |
|
143 | + * @return string |
|
144 | + */ |
|
145 | + public function get_date_created_gmt( $context = 'view' ) { |
|
146 | 146 | $date = $this->get_date_created( $context ); |
147 | 147 | |
148 | 148 | if ( $date ) { |
149 | 149 | $date = get_gmt_from_date( $date ); |
150 | 150 | } |
151 | - return $date; |
|
151 | + return $date; |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
155 | - * Get date when the form was last modified. |
|
156 | - * |
|
157 | - * @since 1.0.19 |
|
158 | - * @param string $context View or edit context. |
|
159 | - * @return string |
|
160 | - */ |
|
161 | - public function get_date_modified( $context = 'view' ) { |
|
162 | - return $this->get_prop( 'date_modified', $context ); |
|
155 | + * Get date when the form was last modified. |
|
156 | + * |
|
157 | + * @since 1.0.19 |
|
158 | + * @param string $context View or edit context. |
|
159 | + * @return string |
|
160 | + */ |
|
161 | + public function get_date_modified( $context = 'view' ) { |
|
162 | + return $this->get_prop( 'date_modified', $context ); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
166 | - * Get GMT date when the form was last modified. |
|
167 | - * |
|
168 | - * @since 1.0.19 |
|
169 | - * @param string $context View or edit context. |
|
170 | - * @return string |
|
171 | - */ |
|
172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
166 | + * Get GMT date when the form was last modified. |
|
167 | + * |
|
168 | + * @since 1.0.19 |
|
169 | + * @param string $context View or edit context. |
|
170 | + * @return string |
|
171 | + */ |
|
172 | + public function get_date_modified_gmt( $context = 'view' ) { |
|
173 | 173 | $date = $this->get_date_modified( $context ); |
174 | 174 | |
175 | 175 | if ( $date ) { |
176 | 176 | $date = get_gmt_from_date( $date ); |
177 | 177 | } |
178 | - return $date; |
|
178 | + return $date; |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
182 | - * Get the form name. |
|
183 | - * |
|
184 | - * @since 1.0.19 |
|
185 | - * @param string $context View or edit context. |
|
186 | - * @return string |
|
187 | - */ |
|
188 | - public function get_name( $context = 'view' ) { |
|
189 | - return $this->get_prop( 'name', $context ); |
|
182 | + * Get the form name. |
|
183 | + * |
|
184 | + * @since 1.0.19 |
|
185 | + * @param string $context View or edit context. |
|
186 | + * @return string |
|
187 | + */ |
|
188 | + public function get_name( $context = 'view' ) { |
|
189 | + return $this->get_prop( 'name', $context ); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
193 | - * Alias of self::get_name(). |
|
194 | - * |
|
195 | - * @since 1.0.19 |
|
196 | - * @param string $context View or edit context. |
|
197 | - * @return string |
|
198 | - */ |
|
199 | - public function get_title( $context = 'view' ) { |
|
200 | - return $this->get_name( $context ); |
|
201 | - } |
|
193 | + * Alias of self::get_name(). |
|
194 | + * |
|
195 | + * @since 1.0.19 |
|
196 | + * @param string $context View or edit context. |
|
197 | + * @return string |
|
198 | + */ |
|
199 | + public function get_title( $context = 'view' ) { |
|
200 | + return $this->get_name( $context ); |
|
201 | + } |
|
202 | 202 | |
203 | 203 | /** |
204 | - * Get the owner of the form. |
|
205 | - * |
|
206 | - * @since 1.0.19 |
|
207 | - * @param string $context View or edit context. |
|
208 | - * @return int |
|
209 | - */ |
|
210 | - public function get_author( $context = 'view' ) { |
|
211 | - return (int) $this->get_prop( 'author', $context ); |
|
204 | + * Get the owner of the form. |
|
205 | + * |
|
206 | + * @since 1.0.19 |
|
207 | + * @param string $context View or edit context. |
|
208 | + * @return int |
|
209 | + */ |
|
210 | + public function get_author( $context = 'view' ) { |
|
211 | + return (int) $this->get_prop( 'author', $context ); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | /** |
215 | - * Get the elements that make up the form. |
|
216 | - * |
|
217 | - * @since 1.0.19 |
|
218 | - * @param string $context View or edit context. |
|
219 | - * @return array |
|
220 | - */ |
|
221 | - public function get_elements( $context = 'view' ) { |
|
222 | - $elements = $this->get_prop( 'elements', $context ); |
|
215 | + * Get the elements that make up the form. |
|
216 | + * |
|
217 | + * @since 1.0.19 |
|
218 | + * @param string $context View or edit context. |
|
219 | + * @return array |
|
220 | + */ |
|
221 | + public function get_elements( $context = 'view' ) { |
|
222 | + $elements = $this->get_prop( 'elements', $context ); |
|
223 | 223 | |
224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
224 | + if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
225 | 225 | return wpinv_get_data( 'sample-payment-form' ); |
226 | - } |
|
226 | + } |
|
227 | 227 | |
228 | - // Ensure that all required elements exist. |
|
229 | - $_elements = array(); |
|
230 | - foreach ( $elements as $element ) { |
|
228 | + // Ensure that all required elements exist. |
|
229 | + $_elements = array(); |
|
230 | + foreach ( $elements as $element ) { |
|
231 | 231 | |
232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
232 | + if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
233 | 233 | |
234 | - $_elements[] = array( |
|
235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
236 | - 'id' => 'gtscicd', |
|
237 | - 'name' => 'gtscicd', |
|
238 | - 'type' => 'gateway_select', |
|
239 | - 'premade' => true |
|
234 | + $_elements[] = array( |
|
235 | + 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
236 | + 'id' => 'gtscicd', |
|
237 | + 'name' => 'gtscicd', |
|
238 | + 'type' => 'gateway_select', |
|
239 | + 'premade' => true |
|
240 | 240 | |
241 | - ); |
|
241 | + ); |
|
242 | 242 | |
243 | - } |
|
243 | + } |
|
244 | 244 | |
245 | - $_elements[] = $element; |
|
245 | + $_elements[] = $element; |
|
246 | 246 | |
247 | - } |
|
247 | + } |
|
248 | 248 | |
249 | 249 | return $_elements; |
250 | - } |
|
251 | - |
|
252 | - /** |
|
253 | - * Get the items sold via the form. |
|
254 | - * |
|
255 | - * @since 1.0.19 |
|
256 | - * @param string $context View or edit context. |
|
257 | - * @param string $return objects or arrays. |
|
258 | - * @return GetPaid_Form_Item[] |
|
259 | - */ |
|
260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
261 | - $items = $this->get_prop( 'items', $context ); |
|
262 | - |
|
263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
250 | + } |
|
251 | + |
|
252 | + /** |
|
253 | + * Get the items sold via the form. |
|
254 | + * |
|
255 | + * @since 1.0.19 |
|
256 | + * @param string $context View or edit context. |
|
257 | + * @param string $return objects or arrays. |
|
258 | + * @return GetPaid_Form_Item[] |
|
259 | + */ |
|
260 | + public function get_items( $context = 'view', $return = 'objects' ) { |
|
261 | + $items = $this->get_prop( 'items', $context ); |
|
262 | + |
|
263 | + if ( empty( $items ) || ! is_array( $items ) ) { |
|
264 | 264 | $items = wpinv_get_data( 'sample-payment-form-items' ); |
265 | - } |
|
265 | + } |
|
266 | + |
|
267 | + // Convert the items. |
|
268 | + $prepared = array(); |
|
266 | 269 | |
267 | - // Convert the items. |
|
268 | - $prepared = array(); |
|
270 | + foreach ( $items as $key => $value ) { |
|
269 | 271 | |
270 | - foreach ( $items as $key => $value ) { |
|
272 | + // Form items. |
|
273 | + if ( $value instanceof GetPaid_Form_Item ) { |
|
271 | 274 | |
272 | - // Form items. |
|
273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
275 | + if ( $value->can_purchase() ) { |
|
276 | + $prepared[] = $value; |
|
277 | + } |
|
274 | 278 | |
275 | - if ( $value->can_purchase() ) { |
|
276 | - $prepared[] = $value; |
|
277 | - } |
|
279 | + continue; |
|
278 | 280 | |
279 | - continue; |
|
281 | + } |
|
280 | 282 | |
281 | - } |
|
283 | + // $item_id => $quantity (buy buttons) |
|
284 | + if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
285 | + $item = new GetPaid_Form_Item( $key ); |
|
282 | 286 | |
283 | - // $item_id => $quantity (buy buttons) |
|
284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
285 | - $item = new GetPaid_Form_Item( $key ); |
|
287 | + if ( $item->can_purchase() ) { |
|
288 | + $item->set_quantity( $value ); |
|
289 | + $prepared[] = $item; |
|
290 | + } |
|
286 | 291 | |
287 | - if ( $item->can_purchase() ) { |
|
288 | - $item->set_quantity( $value ); |
|
289 | - $prepared[] = $item; |
|
290 | - } |
|
292 | + continue; |
|
293 | + } |
|
291 | 294 | |
292 | - continue; |
|
293 | - } |
|
295 | + // Items saved via payment forms editor. |
|
296 | + if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
294 | 297 | |
295 | - // Items saved via payment forms editor. |
|
296 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
298 | + $item = new GetPaid_Form_Item( $value['id'] ); |
|
297 | 299 | |
298 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
300 | + if ( ! $item->can_purchase() ) { |
|
301 | + continue; |
|
302 | + } |
|
299 | 303 | |
300 | - if ( ! $item->can_purchase() ) { |
|
301 | - continue; |
|
302 | - } |
|
304 | + // Sub-total (Cart items). |
|
305 | + if ( isset( $value['subtotal'] ) ) { |
|
306 | + $item->set_price( $value['subtotal'] ); |
|
307 | + } |
|
303 | 308 | |
304 | - // Sub-total (Cart items). |
|
305 | - if ( isset( $value['subtotal'] ) ) { |
|
306 | - $item->set_price( $value['subtotal'] ); |
|
307 | - } |
|
309 | + if ( isset( $value['quantity'] ) ) { |
|
310 | + $item->set_quantity( $value['quantity'] ); |
|
311 | + } |
|
308 | 312 | |
309 | - if ( isset( $value['quantity'] ) ) { |
|
310 | - $item->set_quantity( $value['quantity'] ); |
|
311 | - } |
|
313 | + if ( isset( $value['allow_quantities'] ) ) { |
|
314 | + $item->set_allow_quantities( $value['allow_quantities'] ); |
|
315 | + } |
|
312 | 316 | |
313 | - if ( isset( $value['allow_quantities'] ) ) { |
|
314 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
315 | - } |
|
317 | + if ( isset( $value['required'] ) ) { |
|
318 | + $item->set_is_required( $value['required'] ); |
|
319 | + } |
|
316 | 320 | |
317 | - if ( isset( $value['required'] ) ) { |
|
318 | - $item->set_is_required( $value['required'] ); |
|
319 | - } |
|
321 | + if ( isset( $value['description'] ) ) { |
|
322 | + $item->set_custom_description( $value['description'] ); |
|
323 | + } |
|
320 | 324 | |
321 | - if ( isset( $value['description'] ) ) { |
|
322 | - $item->set_custom_description( $value['description'] ); |
|
323 | - } |
|
325 | + $prepared[] = $item; |
|
326 | + continue; |
|
324 | 327 | |
325 | - $prepared[] = $item; |
|
326 | - continue; |
|
328 | + } |
|
329 | + |
|
330 | + // $item_id => array( 'price' => 10 ) (item variations) |
|
331 | + if ( is_numeric( $key ) && is_array( $value ) ) { |
|
332 | + $item = new GetPaid_Form_Item( $key ); |
|
333 | + |
|
334 | + if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
335 | + $item->set_price( $value['price'] ); |
|
336 | + } |
|
337 | + |
|
338 | + if ( $item->can_purchase() ) { |
|
339 | + $prepared[] = $item; |
|
340 | + } |
|
341 | + |
|
342 | + continue; |
|
343 | + } |
|
344 | + |
|
345 | + } |
|
346 | + |
|
347 | + if ( 'objects' == $return && 'view' == $context ) { |
|
348 | + return $prepared; |
|
349 | + } |
|
350 | + |
|
351 | + $items = array(); |
|
352 | + foreach ( $prepared as $item ) { |
|
353 | + $items[] = $item->prepare_data_for_use(); |
|
354 | + } |
|
355 | + |
|
356 | + return $items; |
|
357 | + } |
|
358 | + |
|
359 | + /** |
|
360 | + * Get a single item belonging to the form. |
|
361 | + * |
|
362 | + * @since 1.0.19 |
|
363 | + * @param int $item_id The item id to return. |
|
364 | + * @return GetPaid_Form_Item|bool |
|
365 | + */ |
|
366 | + public function get_item( $item_id ) { |
|
367 | + |
|
368 | + if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
369 | + return false; |
|
370 | + } |
|
371 | + |
|
372 | + foreach( $this->get_items() as $item ) { |
|
373 | + if ( $item->get_id() == (int) $item_id ) { |
|
374 | + return $item; |
|
375 | + } |
|
376 | + } |
|
377 | + |
|
378 | + return false; |
|
379 | + |
|
380 | + } |
|
381 | + |
|
382 | + /** |
|
383 | + * Gets a single element. |
|
384 | + * |
|
385 | + * @since 1.0.19 |
|
386 | + * @param string $element_type The element type to return. |
|
387 | + * @return array|bool |
|
388 | + */ |
|
389 | + public function get_element_type( $element_type ) { |
|
390 | + |
|
391 | + if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
392 | + return false; |
|
393 | + } |
|
394 | + |
|
395 | + foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
396 | + |
|
397 | + if ( $element['type'] == $element_type ) { |
|
398 | + return $element; |
|
399 | + } |
|
400 | + |
|
401 | + } |
|
402 | + |
|
403 | + return false; |
|
404 | + |
|
405 | + } |
|
406 | + |
|
407 | + /** |
|
408 | + * Get the total amount earned via this form. |
|
409 | + * |
|
410 | + * @since 1.0.19 |
|
411 | + * @param string $context View or edit context. |
|
412 | + * @return array |
|
413 | + */ |
|
414 | + public function get_earned( $context = 'view' ) { |
|
415 | + return $this->get_prop( 'earned', $context ); |
|
416 | + } |
|
417 | + |
|
418 | + /** |
|
419 | + * Get the total amount refunded via this form. |
|
420 | + * |
|
421 | + * @since 1.0.19 |
|
422 | + * @param string $context View or edit context. |
|
423 | + * @return array |
|
424 | + */ |
|
425 | + public function get_refunded( $context = 'view' ) { |
|
426 | + return $this->get_prop( 'refunded', $context ); |
|
427 | + } |
|
327 | 428 | |
328 | - } |
|
429 | + /** |
|
430 | + * Get the total amount cancelled via this form. |
|
431 | + * |
|
432 | + * @since 1.0.19 |
|
433 | + * @param string $context View or edit context. |
|
434 | + * @return array |
|
435 | + */ |
|
436 | + public function get_cancelled( $context = 'view' ) { |
|
437 | + return $this->get_prop( 'cancelled', $context ); |
|
438 | + } |
|
329 | 439 | |
330 | - // $item_id => array( 'price' => 10 ) (item variations) |
|
331 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
332 | - $item = new GetPaid_Form_Item( $key ); |
|
440 | + /** |
|
441 | + * Get the total amount failed via this form. |
|
442 | + * |
|
443 | + * @since 1.0.19 |
|
444 | + * @param string $context View or edit context. |
|
445 | + * @return array |
|
446 | + */ |
|
447 | + public function get_failed( $context = 'view' ) { |
|
448 | + return $this->get_prop( 'failed', $context ); |
|
449 | + } |
|
333 | 450 | |
334 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
335 | - $item->set_price( $value['price'] ); |
|
336 | - } |
|
337 | - |
|
338 | - if ( $item->can_purchase() ) { |
|
339 | - $prepared[] = $item; |
|
340 | - } |
|
341 | - |
|
342 | - continue; |
|
343 | - } |
|
344 | - |
|
345 | - } |
|
346 | - |
|
347 | - if ( 'objects' == $return && 'view' == $context ) { |
|
348 | - return $prepared; |
|
349 | - } |
|
350 | - |
|
351 | - $items = array(); |
|
352 | - foreach ( $prepared as $item ) { |
|
353 | - $items[] = $item->prepare_data_for_use(); |
|
354 | - } |
|
355 | - |
|
356 | - return $items; |
|
357 | - } |
|
358 | - |
|
359 | - /** |
|
360 | - * Get a single item belonging to the form. |
|
361 | - * |
|
362 | - * @since 1.0.19 |
|
363 | - * @param int $item_id The item id to return. |
|
364 | - * @return GetPaid_Form_Item|bool |
|
365 | - */ |
|
366 | - public function get_item( $item_id ) { |
|
367 | - |
|
368 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
369 | - return false; |
|
370 | - } |
|
371 | - |
|
372 | - foreach( $this->get_items() as $item ) { |
|
373 | - if ( $item->get_id() == (int) $item_id ) { |
|
374 | - return $item; |
|
375 | - } |
|
376 | - } |
|
377 | - |
|
378 | - return false; |
|
379 | - |
|
380 | - } |
|
381 | - |
|
382 | - /** |
|
383 | - * Gets a single element. |
|
384 | - * |
|
385 | - * @since 1.0.19 |
|
386 | - * @param string $element_type The element type to return. |
|
387 | - * @return array|bool |
|
388 | - */ |
|
389 | - public function get_element_type( $element_type ) { |
|
390 | - |
|
391 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
392 | - return false; |
|
393 | - } |
|
394 | - |
|
395 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
396 | - |
|
397 | - if ( $element['type'] == $element_type ) { |
|
398 | - return $element; |
|
399 | - } |
|
400 | - |
|
401 | - } |
|
402 | - |
|
403 | - return false; |
|
404 | - |
|
405 | - } |
|
406 | - |
|
407 | - /** |
|
408 | - * Get the total amount earned via this form. |
|
409 | - * |
|
410 | - * @since 1.0.19 |
|
411 | - * @param string $context View or edit context. |
|
412 | - * @return array |
|
413 | - */ |
|
414 | - public function get_earned( $context = 'view' ) { |
|
415 | - return $this->get_prop( 'earned', $context ); |
|
416 | - } |
|
417 | - |
|
418 | - /** |
|
419 | - * Get the total amount refunded via this form. |
|
420 | - * |
|
421 | - * @since 1.0.19 |
|
422 | - * @param string $context View or edit context. |
|
423 | - * @return array |
|
424 | - */ |
|
425 | - public function get_refunded( $context = 'view' ) { |
|
426 | - return $this->get_prop( 'refunded', $context ); |
|
427 | - } |
|
428 | - |
|
429 | - /** |
|
430 | - * Get the total amount cancelled via this form. |
|
431 | - * |
|
432 | - * @since 1.0.19 |
|
433 | - * @param string $context View or edit context. |
|
434 | - * @return array |
|
435 | - */ |
|
436 | - public function get_cancelled( $context = 'view' ) { |
|
437 | - return $this->get_prop( 'cancelled', $context ); |
|
438 | - } |
|
439 | - |
|
440 | - /** |
|
441 | - * Get the total amount failed via this form. |
|
442 | - * |
|
443 | - * @since 1.0.19 |
|
444 | - * @param string $context View or edit context. |
|
445 | - * @return array |
|
446 | - */ |
|
447 | - public function get_failed( $context = 'view' ) { |
|
448 | - return $this->get_prop( 'failed', $context ); |
|
449 | - } |
|
450 | - |
|
451 | - /** |
|
452 | - * Get the currency. |
|
453 | - * |
|
454 | - * @since 1.0.19 |
|
455 | - * @param string $context View or edit context. |
|
456 | - * @return string |
|
457 | - */ |
|
458 | - public function get_currency() { |
|
459 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
460 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
461 | - } |
|
451 | + /** |
|
452 | + * Get the currency. |
|
453 | + * |
|
454 | + * @since 1.0.19 |
|
455 | + * @param string $context View or edit context. |
|
456 | + * @return string |
|
457 | + */ |
|
458 | + public function get_currency() { |
|
459 | + $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
460 | + return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
461 | + } |
|
462 | 462 | |
463 | 463 | /* |
464 | 464 | |-------------------------------------------------------------------------- |
@@ -471,22 +471,22 @@ discard block |
||
471 | 471 | */ |
472 | 472 | |
473 | 473 | /** |
474 | - * Set plugin version when the item was created. |
|
475 | - * |
|
476 | - * @since 1.0.19 |
|
477 | - */ |
|
478 | - public function set_version( $value ) { |
|
479 | - $this->set_prop( 'version', $value ); |
|
474 | + * Set plugin version when the item was created. |
|
475 | + * |
|
476 | + * @since 1.0.19 |
|
477 | + */ |
|
478 | + public function set_version( $value ) { |
|
479 | + $this->set_prop( 'version', $value ); |
|
480 | 480 | } |
481 | 481 | |
482 | 482 | /** |
483 | - * Set date when the item was created. |
|
484 | - * |
|
485 | - * @since 1.0.19 |
|
486 | - * @param string $value Value to set. |
|
483 | + * Set date when the item was created. |
|
484 | + * |
|
485 | + * @since 1.0.19 |
|
486 | + * @param string $value Value to set. |
|
487 | 487 | * @return bool Whether or not the date was set. |
488 | - */ |
|
489 | - public function set_date_created( $value ) { |
|
488 | + */ |
|
489 | + public function set_date_created( $value ) { |
|
490 | 490 | $date = strtotime( $value ); |
491 | 491 | |
492 | 492 | if ( $date ) { |
@@ -499,13 +499,13 @@ discard block |
||
499 | 499 | } |
500 | 500 | |
501 | 501 | /** |
502 | - * Set date when the item was last modified. |
|
503 | - * |
|
504 | - * @since 1.0.19 |
|
505 | - * @param string $value Value to set. |
|
502 | + * Set date when the item was last modified. |
|
503 | + * |
|
504 | + * @since 1.0.19 |
|
505 | + * @param string $value Value to set. |
|
506 | 506 | * @return bool Whether or not the date was set. |
507 | - */ |
|
508 | - public function set_date_modified( $value ) { |
|
507 | + */ |
|
508 | + public function set_date_modified( $value ) { |
|
509 | 509 | $date = strtotime( $value ); |
510 | 510 | |
511 | 511 | if ( $date ) { |
@@ -518,118 +518,118 @@ discard block |
||
518 | 518 | } |
519 | 519 | |
520 | 520 | /** |
521 | - * Set the item name. |
|
522 | - * |
|
523 | - * @since 1.0.19 |
|
524 | - * @param string $value New name. |
|
525 | - */ |
|
526 | - public function set_name( $value ) { |
|
527 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
528 | - } |
|
529 | - |
|
530 | - /** |
|
531 | - * Alias of self::set_name(). |
|
532 | - * |
|
533 | - * @since 1.0.19 |
|
534 | - * @param string $value New name. |
|
535 | - */ |
|
536 | - public function set_title( $value ) { |
|
537 | - $this->set_name( $value ); |
|
538 | - } |
|
539 | - |
|
540 | - /** |
|
541 | - * Set the owner of the item. |
|
542 | - * |
|
543 | - * @since 1.0.19 |
|
544 | - * @param int $value New author. |
|
545 | - */ |
|
546 | - public function set_author( $value ) { |
|
547 | - $this->set_prop( 'author', (int) $value ); |
|
548 | - } |
|
549 | - |
|
550 | - /** |
|
551 | - * Set the form elements. |
|
552 | - * |
|
553 | - * @since 1.0.19 |
|
554 | - * @param array $value Form elements. |
|
555 | - */ |
|
556 | - public function set_elements( $value ) { |
|
557 | - if ( is_array( $value ) ) { |
|
558 | - $this->set_prop( 'elements', $value ); |
|
559 | - } |
|
560 | - } |
|
561 | - |
|
562 | - /** |
|
563 | - * Set the form items. |
|
564 | - * |
|
565 | - * @since 1.0.19 |
|
566 | - * @param array $value Form elements. |
|
567 | - */ |
|
568 | - public function set_items( $value ) { |
|
569 | - if ( is_array( $value ) ) { |
|
570 | - $this->set_prop( 'items', $value ); |
|
571 | - } |
|
572 | - } |
|
573 | - |
|
574 | - /** |
|
575 | - * Set the total amount earned via this form. |
|
576 | - * |
|
577 | - * @since 1.0.19 |
|
578 | - * @param float $value Amount earned. |
|
579 | - */ |
|
580 | - public function set_earned( $value ) { |
|
581 | - $value = max( (float) $value, 0 ); |
|
582 | - $this->set_prop( 'earned', $value ); |
|
583 | - } |
|
584 | - |
|
585 | - /** |
|
586 | - * Set the total amount refunded via this form. |
|
587 | - * |
|
588 | - * @since 1.0.19 |
|
589 | - * @param float $value Amount refunded. |
|
590 | - */ |
|
591 | - public function set_refunded( $value ) { |
|
592 | - $value = max( (float) $value, 0 ); |
|
593 | - $this->set_prop( 'refunded', $value ); |
|
594 | - } |
|
595 | - |
|
596 | - /** |
|
597 | - * Set the total amount cancelled via this form. |
|
598 | - * |
|
599 | - * @since 1.0.19 |
|
600 | - * @param float $value Amount cancelled. |
|
601 | - */ |
|
602 | - public function set_cancelled( $value ) { |
|
603 | - $value = max( (float) $value, 0 ); |
|
604 | - $this->set_prop( 'cancelled', $value ); |
|
605 | - } |
|
606 | - |
|
607 | - /** |
|
608 | - * Set the total amount failed via this form. |
|
609 | - * |
|
610 | - * @since 1.0.19 |
|
611 | - * @param float $value Amount cancelled. |
|
612 | - */ |
|
613 | - public function set_failed( $value ) { |
|
614 | - $value = max( (float) $value, 0 ); |
|
615 | - $this->set_prop( 'failed', $value ); |
|
616 | - } |
|
521 | + * Set the item name. |
|
522 | + * |
|
523 | + * @since 1.0.19 |
|
524 | + * @param string $value New name. |
|
525 | + */ |
|
526 | + public function set_name( $value ) { |
|
527 | + $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
528 | + } |
|
529 | + |
|
530 | + /** |
|
531 | + * Alias of self::set_name(). |
|
532 | + * |
|
533 | + * @since 1.0.19 |
|
534 | + * @param string $value New name. |
|
535 | + */ |
|
536 | + public function set_title( $value ) { |
|
537 | + $this->set_name( $value ); |
|
538 | + } |
|
539 | + |
|
540 | + /** |
|
541 | + * Set the owner of the item. |
|
542 | + * |
|
543 | + * @since 1.0.19 |
|
544 | + * @param int $value New author. |
|
545 | + */ |
|
546 | + public function set_author( $value ) { |
|
547 | + $this->set_prop( 'author', (int) $value ); |
|
548 | + } |
|
549 | + |
|
550 | + /** |
|
551 | + * Set the form elements. |
|
552 | + * |
|
553 | + * @since 1.0.19 |
|
554 | + * @param array $value Form elements. |
|
555 | + */ |
|
556 | + public function set_elements( $value ) { |
|
557 | + if ( is_array( $value ) ) { |
|
558 | + $this->set_prop( 'elements', $value ); |
|
559 | + } |
|
560 | + } |
|
561 | + |
|
562 | + /** |
|
563 | + * Set the form items. |
|
564 | + * |
|
565 | + * @since 1.0.19 |
|
566 | + * @param array $value Form elements. |
|
567 | + */ |
|
568 | + public function set_items( $value ) { |
|
569 | + if ( is_array( $value ) ) { |
|
570 | + $this->set_prop( 'items', $value ); |
|
571 | + } |
|
572 | + } |
|
573 | + |
|
574 | + /** |
|
575 | + * Set the total amount earned via this form. |
|
576 | + * |
|
577 | + * @since 1.0.19 |
|
578 | + * @param float $value Amount earned. |
|
579 | + */ |
|
580 | + public function set_earned( $value ) { |
|
581 | + $value = max( (float) $value, 0 ); |
|
582 | + $this->set_prop( 'earned', $value ); |
|
583 | + } |
|
584 | + |
|
585 | + /** |
|
586 | + * Set the total amount refunded via this form. |
|
587 | + * |
|
588 | + * @since 1.0.19 |
|
589 | + * @param float $value Amount refunded. |
|
590 | + */ |
|
591 | + public function set_refunded( $value ) { |
|
592 | + $value = max( (float) $value, 0 ); |
|
593 | + $this->set_prop( 'refunded', $value ); |
|
594 | + } |
|
595 | + |
|
596 | + /** |
|
597 | + * Set the total amount cancelled via this form. |
|
598 | + * |
|
599 | + * @since 1.0.19 |
|
600 | + * @param float $value Amount cancelled. |
|
601 | + */ |
|
602 | + public function set_cancelled( $value ) { |
|
603 | + $value = max( (float) $value, 0 ); |
|
604 | + $this->set_prop( 'cancelled', $value ); |
|
605 | + } |
|
606 | + |
|
607 | + /** |
|
608 | + * Set the total amount failed via this form. |
|
609 | + * |
|
610 | + * @since 1.0.19 |
|
611 | + * @param float $value Amount cancelled. |
|
612 | + */ |
|
613 | + public function set_failed( $value ) { |
|
614 | + $value = max( (float) $value, 0 ); |
|
615 | + $this->set_prop( 'failed', $value ); |
|
616 | + } |
|
617 | 617 | |
618 | 618 | /** |
619 | 619 | * Create an item. For backwards compatibilty. |
620 | 620 | * |
621 | 621 | * @deprecated |
622 | - * @return int item id |
|
622 | + * @return int item id |
|
623 | 623 | */ |
624 | 624 | public function create( $data = array() ) { |
625 | 625 | |
626 | - // Set the properties. |
|
627 | - if ( is_array( $data ) ) { |
|
628 | - $this->set_props( $data ); |
|
629 | - } |
|
626 | + // Set the properties. |
|
627 | + if ( is_array( $data ) ) { |
|
628 | + $this->set_props( $data ); |
|
629 | + } |
|
630 | 630 | |
631 | - // Save the item. |
|
632 | - return $this->save(); |
|
631 | + // Save the item. |
|
632 | + return $this->save(); |
|
633 | 633 | |
634 | 634 | } |
635 | 635 | |
@@ -637,7 +637,7 @@ discard block |
||
637 | 637 | * Updates an item. For backwards compatibilty. |
638 | 638 | * |
639 | 639 | * @deprecated |
640 | - * @return int item id |
|
640 | + * @return int item id |
|
641 | 641 | */ |
642 | 642 | public function update( $data = array() ) { |
643 | 643 | return $this->create( $data ); |
@@ -653,22 +653,22 @@ discard block |
||
653 | 653 | */ |
654 | 654 | |
655 | 655 | /** |
656 | - * Checks whether this is the default payment form. |
|
657 | - * |
|
658 | - * @since 1.0.19 |
|
659 | - * @return bool |
|
660 | - */ |
|
656 | + * Checks whether this is the default payment form. |
|
657 | + * |
|
658 | + * @since 1.0.19 |
|
659 | + * @return bool |
|
660 | + */ |
|
661 | 661 | public function is_default() { |
662 | 662 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
663 | 663 | return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
664 | - } |
|
664 | + } |
|
665 | 665 | |
666 | 666 | /** |
667 | - * Checks whether the form is active. |
|
668 | - * |
|
669 | - * @since 1.0.19 |
|
670 | - * @return bool |
|
671 | - */ |
|
667 | + * Checks whether the form is active. |
|
668 | + * |
|
669 | + * @since 1.0.19 |
|
670 | + * @return bool |
|
671 | + */ |
|
672 | 672 | public function is_active() { |
673 | 673 | $is_active = 0 !== (int) $this->get_id(); |
674 | 674 | |
@@ -677,70 +677,70 @@ discard block |
||
677 | 677 | } |
678 | 678 | |
679 | 679 | return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
680 | - } |
|
681 | - |
|
682 | - /** |
|
683 | - * Checks whether the form has a given item. |
|
684 | - * |
|
685 | - * @since 1.0.19 |
|
686 | - * @return bool |
|
687 | - */ |
|
680 | + } |
|
681 | + |
|
682 | + /** |
|
683 | + * Checks whether the form has a given item. |
|
684 | + * |
|
685 | + * @since 1.0.19 |
|
686 | + * @return bool |
|
687 | + */ |
|
688 | 688 | public function has_item( $item_id ) { |
689 | 689 | return false !== $this->get_item( $item_id ); |
690 | - } |
|
691 | - |
|
692 | - /** |
|
693 | - * Checks whether the form has a given element. |
|
694 | - * |
|
695 | - * @since 1.0.19 |
|
696 | - * @return bool |
|
697 | - */ |
|
690 | + } |
|
691 | + |
|
692 | + /** |
|
693 | + * Checks whether the form has a given element. |
|
694 | + * |
|
695 | + * @since 1.0.19 |
|
696 | + * @return bool |
|
697 | + */ |
|
698 | 698 | public function has_element_type( $element_type ) { |
699 | 699 | return false !== $this->get_element_type( $element_type ); |
700 | - } |
|
701 | - |
|
702 | - /** |
|
703 | - * Checks whether this form is recurring or not. |
|
704 | - * |
|
705 | - * @since 1.0.19 |
|
706 | - * @return bool |
|
707 | - */ |
|
700 | + } |
|
701 | + |
|
702 | + /** |
|
703 | + * Checks whether this form is recurring or not. |
|
704 | + * |
|
705 | + * @since 1.0.19 |
|
706 | + * @return bool |
|
707 | + */ |
|
708 | 708 | public function is_recurring() { |
709 | 709 | |
710 | - if ( ! empty( $this->invoice ) ) { |
|
711 | - return $this->invoice->is_recurring(); |
|
712 | - } |
|
710 | + if ( ! empty( $this->invoice ) ) { |
|
711 | + return $this->invoice->is_recurring(); |
|
712 | + } |
|
713 | 713 | |
714 | - foreach ( $this->get_items() as $item ) { |
|
714 | + foreach ( $this->get_items() as $item ) { |
|
715 | 715 | |
716 | - if ( $item->is_recurring() ) { |
|
717 | - return true; |
|
718 | - } |
|
716 | + if ( $item->is_recurring() ) { |
|
717 | + return true; |
|
718 | + } |
|
719 | 719 | |
720 | - } |
|
720 | + } |
|
721 | 721 | |
722 | 722 | return false; |
723 | - } |
|
723 | + } |
|
724 | 724 | |
725 | - /** |
|
726 | - * Retrieves the form's html. |
|
727 | - * |
|
728 | - * @since 1.0.19 |
|
729 | - */ |
|
725 | + /** |
|
726 | + * Retrieves the form's html. |
|
727 | + * |
|
728 | + * @since 1.0.19 |
|
729 | + */ |
|
730 | 730 | public function get_html() { |
731 | 731 | |
732 | - // Return the HTML. |
|
733 | - return wpinv_get_template_html( 'payment-forms/form.php', array( 'form' => $this ) ); |
|
732 | + // Return the HTML. |
|
733 | + return wpinv_get_template_html( 'payment-forms/form.php', array( 'form' => $this ) ); |
|
734 | 734 | |
735 | - } |
|
735 | + } |
|
736 | 736 | |
737 | - /** |
|
738 | - * Displays the payment form. |
|
739 | - * |
|
740 | - * @since 1.0.19 |
|
741 | - */ |
|
737 | + /** |
|
738 | + * Displays the payment form. |
|
739 | + * |
|
740 | + * @since 1.0.19 |
|
741 | + */ |
|
742 | 742 | public function display() { |
743 | - echo $this->get_html(); |
|
743 | + echo $this->get_html(); |
|
744 | 744 | } |
745 | 745 | |
746 | 746 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -72,28 +72,28 @@ discard block |
||
72 | 72 | * |
73 | 73 | * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
74 | 74 | */ |
75 | - public function __construct( $form = 0 ) { |
|
76 | - parent::__construct( $form ); |
|
75 | + public function __construct($form = 0) { |
|
76 | + parent::__construct($form); |
|
77 | 77 | |
78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
79 | - $this->set_id( $form ); |
|
80 | - } elseif ( $form instanceof self ) { |
|
78 | + if (is_numeric($form) && $form > 0) { |
|
79 | + $this->set_id($form); |
|
80 | + } elseif ($form instanceof self) { |
|
81 | 81 | |
82 | - $this->set_id( $form->get_id() ); |
|
82 | + $this->set_id($form->get_id()); |
|
83 | 83 | $this->invoice = $form->invoice; |
84 | 84 | |
85 | - } elseif ( ! empty( $form->ID ) ) { |
|
86 | - $this->set_id( $form->ID ); |
|
85 | + } elseif (!empty($form->ID)) { |
|
86 | + $this->set_id($form->ID); |
|
87 | 87 | } else { |
88 | - $this->set_object_read( true ); |
|
88 | + $this->set_object_read(true); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | // Load the datastore. |
92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
92 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
93 | 93 | |
94 | - if ( $this->get_id() > 0 ) { |
|
95 | - $this->post = get_post( $this->get_id() ); |
|
96 | - $this->data_store->read( $this ); |
|
94 | + if ($this->get_id() > 0) { |
|
95 | + $this->post = get_post($this->get_id()); |
|
96 | + $this->data_store->read($this); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | } |
@@ -120,8 +120,8 @@ discard block |
||
120 | 120 | * @param string $context View or edit context. |
121 | 121 | * @return string |
122 | 122 | */ |
123 | - public function get_version( $context = 'view' ) { |
|
124 | - return $this->get_prop( 'version', $context ); |
|
123 | + public function get_version($context = 'view') { |
|
124 | + return $this->get_prop('version', $context); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -131,8 +131,8 @@ discard block |
||
131 | 131 | * @param string $context View or edit context. |
132 | 132 | * @return string |
133 | 133 | */ |
134 | - public function get_date_created( $context = 'view' ) { |
|
135 | - return $this->get_prop( 'date_created', $context ); |
|
134 | + public function get_date_created($context = 'view') { |
|
135 | + return $this->get_prop('date_created', $context); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -142,11 +142,11 @@ discard block |
||
142 | 142 | * @param string $context View or edit context. |
143 | 143 | * @return string |
144 | 144 | */ |
145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
146 | - $date = $this->get_date_created( $context ); |
|
145 | + public function get_date_created_gmt($context = 'view') { |
|
146 | + $date = $this->get_date_created($context); |
|
147 | 147 | |
148 | - if ( $date ) { |
|
149 | - $date = get_gmt_from_date( $date ); |
|
148 | + if ($date) { |
|
149 | + $date = get_gmt_from_date($date); |
|
150 | 150 | } |
151 | 151 | return $date; |
152 | 152 | } |
@@ -158,8 +158,8 @@ discard block |
||
158 | 158 | * @param string $context View or edit context. |
159 | 159 | * @return string |
160 | 160 | */ |
161 | - public function get_date_modified( $context = 'view' ) { |
|
162 | - return $this->get_prop( 'date_modified', $context ); |
|
161 | + public function get_date_modified($context = 'view') { |
|
162 | + return $this->get_prop('date_modified', $context); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -169,11 +169,11 @@ discard block |
||
169 | 169 | * @param string $context View or edit context. |
170 | 170 | * @return string |
171 | 171 | */ |
172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
173 | - $date = $this->get_date_modified( $context ); |
|
172 | + public function get_date_modified_gmt($context = 'view') { |
|
173 | + $date = $this->get_date_modified($context); |
|
174 | 174 | |
175 | - if ( $date ) { |
|
176 | - $date = get_gmt_from_date( $date ); |
|
175 | + if ($date) { |
|
176 | + $date = get_gmt_from_date($date); |
|
177 | 177 | } |
178 | 178 | return $date; |
179 | 179 | } |
@@ -185,8 +185,8 @@ discard block |
||
185 | 185 | * @param string $context View or edit context. |
186 | 186 | * @return string |
187 | 187 | */ |
188 | - public function get_name( $context = 'view' ) { |
|
189 | - return $this->get_prop( 'name', $context ); |
|
188 | + public function get_name($context = 'view') { |
|
189 | + return $this->get_prop('name', $context); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -196,8 +196,8 @@ discard block |
||
196 | 196 | * @param string $context View or edit context. |
197 | 197 | * @return string |
198 | 198 | */ |
199 | - public function get_title( $context = 'view' ) { |
|
200 | - return $this->get_name( $context ); |
|
199 | + public function get_title($context = 'view') { |
|
200 | + return $this->get_name($context); |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | /** |
@@ -207,8 +207,8 @@ discard block |
||
207 | 207 | * @param string $context View or edit context. |
208 | 208 | * @return int |
209 | 209 | */ |
210 | - public function get_author( $context = 'view' ) { |
|
211 | - return (int) $this->get_prop( 'author', $context ); |
|
210 | + public function get_author($context = 'view') { |
|
211 | + return (int) $this->get_prop('author', $context); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | /** |
@@ -218,21 +218,21 @@ discard block |
||
218 | 218 | * @param string $context View or edit context. |
219 | 219 | * @return array |
220 | 220 | */ |
221 | - public function get_elements( $context = 'view' ) { |
|
222 | - $elements = $this->get_prop( 'elements', $context ); |
|
221 | + public function get_elements($context = 'view') { |
|
222 | + $elements = $this->get_prop('elements', $context); |
|
223 | 223 | |
224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
225 | - return wpinv_get_data( 'sample-payment-form' ); |
|
224 | + if (empty($elements) || !is_array($elements)) { |
|
225 | + return wpinv_get_data('sample-payment-form'); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | // Ensure that all required elements exist. |
229 | 229 | $_elements = array(); |
230 | - foreach ( $elements as $element ) { |
|
230 | + foreach ($elements as $element) { |
|
231 | 231 | |
232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
232 | + if ($element['type'] == 'pay_button' && !$this->has_element_type('gateway_select')) { |
|
233 | 233 | |
234 | 234 | $_elements[] = array( |
235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
235 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
236 | 236 | 'id' => 'gtscicd', |
237 | 237 | 'name' => 'gtscicd', |
238 | 238 | 'type' => 'gateway_select', |
@@ -257,22 +257,22 @@ discard block |
||
257 | 257 | * @param string $return objects or arrays. |
258 | 258 | * @return GetPaid_Form_Item[] |
259 | 259 | */ |
260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
261 | - $items = $this->get_prop( 'items', $context ); |
|
260 | + public function get_items($context = 'view', $return = 'objects') { |
|
261 | + $items = $this->get_prop('items', $context); |
|
262 | 262 | |
263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
264 | - $items = wpinv_get_data( 'sample-payment-form-items' ); |
|
263 | + if (empty($items) || !is_array($items)) { |
|
264 | + $items = wpinv_get_data('sample-payment-form-items'); |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | // Convert the items. |
268 | 268 | $prepared = array(); |
269 | 269 | |
270 | - foreach ( $items as $key => $value ) { |
|
270 | + foreach ($items as $key => $value) { |
|
271 | 271 | |
272 | 272 | // Form items. |
273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
273 | + if ($value instanceof GetPaid_Form_Item) { |
|
274 | 274 | |
275 | - if ( $value->can_purchase() ) { |
|
275 | + if ($value->can_purchase()) { |
|
276 | 276 | $prepared[] = $value; |
277 | 277 | } |
278 | 278 | |
@@ -281,11 +281,11 @@ discard block |
||
281 | 281 | } |
282 | 282 | |
283 | 283 | // $item_id => $quantity (buy buttons) |
284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
285 | - $item = new GetPaid_Form_Item( $key ); |
|
284 | + if (is_numeric($key) && is_numeric($value)) { |
|
285 | + $item = new GetPaid_Form_Item($key); |
|
286 | 286 | |
287 | - if ( $item->can_purchase() ) { |
|
288 | - $item->set_quantity( $value ); |
|
287 | + if ($item->can_purchase()) { |
|
288 | + $item->set_quantity($value); |
|
289 | 289 | $prepared[] = $item; |
290 | 290 | } |
291 | 291 | |
@@ -293,33 +293,33 @@ discard block |
||
293 | 293 | } |
294 | 294 | |
295 | 295 | // Items saved via payment forms editor. |
296 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
296 | + if (is_array($value) && isset($value['id'])) { |
|
297 | 297 | |
298 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
298 | + $item = new GetPaid_Form_Item($value['id']); |
|
299 | 299 | |
300 | - if ( ! $item->can_purchase() ) { |
|
300 | + if (!$item->can_purchase()) { |
|
301 | 301 | continue; |
302 | 302 | } |
303 | 303 | |
304 | 304 | // Sub-total (Cart items). |
305 | - if ( isset( $value['subtotal'] ) ) { |
|
306 | - $item->set_price( $value['subtotal'] ); |
|
305 | + if (isset($value['subtotal'])) { |
|
306 | + $item->set_price($value['subtotal']); |
|
307 | 307 | } |
308 | 308 | |
309 | - if ( isset( $value['quantity'] ) ) { |
|
310 | - $item->set_quantity( $value['quantity'] ); |
|
309 | + if (isset($value['quantity'])) { |
|
310 | + $item->set_quantity($value['quantity']); |
|
311 | 311 | } |
312 | 312 | |
313 | - if ( isset( $value['allow_quantities'] ) ) { |
|
314 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
313 | + if (isset($value['allow_quantities'])) { |
|
314 | + $item->set_allow_quantities($value['allow_quantities']); |
|
315 | 315 | } |
316 | 316 | |
317 | - if ( isset( $value['required'] ) ) { |
|
318 | - $item->set_is_required( $value['required'] ); |
|
317 | + if (isset($value['required'])) { |
|
318 | + $item->set_is_required($value['required']); |
|
319 | 319 | } |
320 | 320 | |
321 | - if ( isset( $value['description'] ) ) { |
|
322 | - $item->set_custom_description( $value['description'] ); |
|
321 | + if (isset($value['description'])) { |
|
322 | + $item->set_custom_description($value['description']); |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | $prepared[] = $item; |
@@ -328,14 +328,14 @@ discard block |
||
328 | 328 | } |
329 | 329 | |
330 | 330 | // $item_id => array( 'price' => 10 ) (item variations) |
331 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
332 | - $item = new GetPaid_Form_Item( $key ); |
|
331 | + if (is_numeric($key) && is_array($value)) { |
|
332 | + $item = new GetPaid_Form_Item($key); |
|
333 | 333 | |
334 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
335 | - $item->set_price( $value['price'] ); |
|
334 | + if (isset($value['price']) && $item->user_can_set_their_price()) { |
|
335 | + $item->set_price($value['price']); |
|
336 | 336 | } |
337 | 337 | |
338 | - if ( $item->can_purchase() ) { |
|
338 | + if ($item->can_purchase()) { |
|
339 | 339 | $prepared[] = $item; |
340 | 340 | } |
341 | 341 | |
@@ -344,12 +344,12 @@ discard block |
||
344 | 344 | |
345 | 345 | } |
346 | 346 | |
347 | - if ( 'objects' == $return && 'view' == $context ) { |
|
347 | + if ('objects' == $return && 'view' == $context) { |
|
348 | 348 | return $prepared; |
349 | 349 | } |
350 | 350 | |
351 | 351 | $items = array(); |
352 | - foreach ( $prepared as $item ) { |
|
352 | + foreach ($prepared as $item) { |
|
353 | 353 | $items[] = $item->prepare_data_for_use(); |
354 | 354 | } |
355 | 355 | |
@@ -363,14 +363,14 @@ discard block |
||
363 | 363 | * @param int $item_id The item id to return. |
364 | 364 | * @return GetPaid_Form_Item|bool |
365 | 365 | */ |
366 | - public function get_item( $item_id ) { |
|
366 | + public function get_item($item_id) { |
|
367 | 367 | |
368 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
368 | + if (empty($item_id) || !is_numeric($item_id)) { |
|
369 | 369 | return false; |
370 | 370 | } |
371 | 371 | |
372 | - foreach( $this->get_items() as $item ) { |
|
373 | - if ( $item->get_id() == (int) $item_id ) { |
|
372 | + foreach ($this->get_items() as $item) { |
|
373 | + if ($item->get_id() == (int) $item_id) { |
|
374 | 374 | return $item; |
375 | 375 | } |
376 | 376 | } |
@@ -386,15 +386,15 @@ discard block |
||
386 | 386 | * @param string $element_type The element type to return. |
387 | 387 | * @return array|bool |
388 | 388 | */ |
389 | - public function get_element_type( $element_type ) { |
|
389 | + public function get_element_type($element_type) { |
|
390 | 390 | |
391 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
391 | + if (empty($element_type) || !is_scalar($element_type)) { |
|
392 | 392 | return false; |
393 | 393 | } |
394 | 394 | |
395 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
395 | + foreach ($this->get_prop('elements') as $element) { |
|
396 | 396 | |
397 | - if ( $element['type'] == $element_type ) { |
|
397 | + if ($element['type'] == $element_type) { |
|
398 | 398 | return $element; |
399 | 399 | } |
400 | 400 | |
@@ -411,8 +411,8 @@ discard block |
||
411 | 411 | * @param string $context View or edit context. |
412 | 412 | * @return array |
413 | 413 | */ |
414 | - public function get_earned( $context = 'view' ) { |
|
415 | - return $this->get_prop( 'earned', $context ); |
|
414 | + public function get_earned($context = 'view') { |
|
415 | + return $this->get_prop('earned', $context); |
|
416 | 416 | } |
417 | 417 | |
418 | 418 | /** |
@@ -422,8 +422,8 @@ discard block |
||
422 | 422 | * @param string $context View or edit context. |
423 | 423 | * @return array |
424 | 424 | */ |
425 | - public function get_refunded( $context = 'view' ) { |
|
426 | - return $this->get_prop( 'refunded', $context ); |
|
425 | + public function get_refunded($context = 'view') { |
|
426 | + return $this->get_prop('refunded', $context); |
|
427 | 427 | } |
428 | 428 | |
429 | 429 | /** |
@@ -433,8 +433,8 @@ discard block |
||
433 | 433 | * @param string $context View or edit context. |
434 | 434 | * @return array |
435 | 435 | */ |
436 | - public function get_cancelled( $context = 'view' ) { |
|
437 | - return $this->get_prop( 'cancelled', $context ); |
|
436 | + public function get_cancelled($context = 'view') { |
|
437 | + return $this->get_prop('cancelled', $context); |
|
438 | 438 | } |
439 | 439 | |
440 | 440 | /** |
@@ -444,8 +444,8 @@ discard block |
||
444 | 444 | * @param string $context View or edit context. |
445 | 445 | * @return array |
446 | 446 | */ |
447 | - public function get_failed( $context = 'view' ) { |
|
448 | - return $this->get_prop( 'failed', $context ); |
|
447 | + public function get_failed($context = 'view') { |
|
448 | + return $this->get_prop('failed', $context); |
|
449 | 449 | } |
450 | 450 | |
451 | 451 | /** |
@@ -456,8 +456,8 @@ discard block |
||
456 | 456 | * @return string |
457 | 457 | */ |
458 | 458 | public function get_currency() { |
459 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
460 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
459 | + $currency = empty($this->invoice) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
460 | + return apply_filters('getpaid-payment-form-currency', $currency, $this); |
|
461 | 461 | } |
462 | 462 | |
463 | 463 | /* |
@@ -475,8 +475,8 @@ discard block |
||
475 | 475 | * |
476 | 476 | * @since 1.0.19 |
477 | 477 | */ |
478 | - public function set_version( $value ) { |
|
479 | - $this->set_prop( 'version', $value ); |
|
478 | + public function set_version($value) { |
|
479 | + $this->set_prop('version', $value); |
|
480 | 480 | } |
481 | 481 | |
482 | 482 | /** |
@@ -486,11 +486,11 @@ discard block |
||
486 | 486 | * @param string $value Value to set. |
487 | 487 | * @return bool Whether or not the date was set. |
488 | 488 | */ |
489 | - public function set_date_created( $value ) { |
|
490 | - $date = strtotime( $value ); |
|
489 | + public function set_date_created($value) { |
|
490 | + $date = strtotime($value); |
|
491 | 491 | |
492 | - if ( $date ) { |
|
493 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
492 | + if ($date) { |
|
493 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
494 | 494 | return true; |
495 | 495 | } |
496 | 496 | |
@@ -505,11 +505,11 @@ discard block |
||
505 | 505 | * @param string $value Value to set. |
506 | 506 | * @return bool Whether or not the date was set. |
507 | 507 | */ |
508 | - public function set_date_modified( $value ) { |
|
509 | - $date = strtotime( $value ); |
|
508 | + public function set_date_modified($value) { |
|
509 | + $date = strtotime($value); |
|
510 | 510 | |
511 | - if ( $date ) { |
|
512 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
511 | + if ($date) { |
|
512 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
513 | 513 | return true; |
514 | 514 | } |
515 | 515 | |
@@ -523,8 +523,8 @@ discard block |
||
523 | 523 | * @since 1.0.19 |
524 | 524 | * @param string $value New name. |
525 | 525 | */ |
526 | - public function set_name( $value ) { |
|
527 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
526 | + public function set_name($value) { |
|
527 | + $this->set_prop('name', sanitize_text_field($value)); |
|
528 | 528 | } |
529 | 529 | |
530 | 530 | /** |
@@ -533,8 +533,8 @@ discard block |
||
533 | 533 | * @since 1.0.19 |
534 | 534 | * @param string $value New name. |
535 | 535 | */ |
536 | - public function set_title( $value ) { |
|
537 | - $this->set_name( $value ); |
|
536 | + public function set_title($value) { |
|
537 | + $this->set_name($value); |
|
538 | 538 | } |
539 | 539 | |
540 | 540 | /** |
@@ -543,8 +543,8 @@ discard block |
||
543 | 543 | * @since 1.0.19 |
544 | 544 | * @param int $value New author. |
545 | 545 | */ |
546 | - public function set_author( $value ) { |
|
547 | - $this->set_prop( 'author', (int) $value ); |
|
546 | + public function set_author($value) { |
|
547 | + $this->set_prop('author', (int) $value); |
|
548 | 548 | } |
549 | 549 | |
550 | 550 | /** |
@@ -553,9 +553,9 @@ discard block |
||
553 | 553 | * @since 1.0.19 |
554 | 554 | * @param array $value Form elements. |
555 | 555 | */ |
556 | - public function set_elements( $value ) { |
|
557 | - if ( is_array( $value ) ) { |
|
558 | - $this->set_prop( 'elements', $value ); |
|
556 | + public function set_elements($value) { |
|
557 | + if (is_array($value)) { |
|
558 | + $this->set_prop('elements', $value); |
|
559 | 559 | } |
560 | 560 | } |
561 | 561 | |
@@ -565,9 +565,9 @@ discard block |
||
565 | 565 | * @since 1.0.19 |
566 | 566 | * @param array $value Form elements. |
567 | 567 | */ |
568 | - public function set_items( $value ) { |
|
569 | - if ( is_array( $value ) ) { |
|
570 | - $this->set_prop( 'items', $value ); |
|
568 | + public function set_items($value) { |
|
569 | + if (is_array($value)) { |
|
570 | + $this->set_prop('items', $value); |
|
571 | 571 | } |
572 | 572 | } |
573 | 573 | |
@@ -577,9 +577,9 @@ discard block |
||
577 | 577 | * @since 1.0.19 |
578 | 578 | * @param float $value Amount earned. |
579 | 579 | */ |
580 | - public function set_earned( $value ) { |
|
581 | - $value = max( (float) $value, 0 ); |
|
582 | - $this->set_prop( 'earned', $value ); |
|
580 | + public function set_earned($value) { |
|
581 | + $value = max((float) $value, 0); |
|
582 | + $this->set_prop('earned', $value); |
|
583 | 583 | } |
584 | 584 | |
585 | 585 | /** |
@@ -588,9 +588,9 @@ discard block |
||
588 | 588 | * @since 1.0.19 |
589 | 589 | * @param float $value Amount refunded. |
590 | 590 | */ |
591 | - public function set_refunded( $value ) { |
|
592 | - $value = max( (float) $value, 0 ); |
|
593 | - $this->set_prop( 'refunded', $value ); |
|
591 | + public function set_refunded($value) { |
|
592 | + $value = max((float) $value, 0); |
|
593 | + $this->set_prop('refunded', $value); |
|
594 | 594 | } |
595 | 595 | |
596 | 596 | /** |
@@ -599,9 +599,9 @@ discard block |
||
599 | 599 | * @since 1.0.19 |
600 | 600 | * @param float $value Amount cancelled. |
601 | 601 | */ |
602 | - public function set_cancelled( $value ) { |
|
603 | - $value = max( (float) $value, 0 ); |
|
604 | - $this->set_prop( 'cancelled', $value ); |
|
602 | + public function set_cancelled($value) { |
|
603 | + $value = max((float) $value, 0); |
|
604 | + $this->set_prop('cancelled', $value); |
|
605 | 605 | } |
606 | 606 | |
607 | 607 | /** |
@@ -610,9 +610,9 @@ discard block |
||
610 | 610 | * @since 1.0.19 |
611 | 611 | * @param float $value Amount cancelled. |
612 | 612 | */ |
613 | - public function set_failed( $value ) { |
|
614 | - $value = max( (float) $value, 0 ); |
|
615 | - $this->set_prop( 'failed', $value ); |
|
613 | + public function set_failed($value) { |
|
614 | + $value = max((float) $value, 0); |
|
615 | + $this->set_prop('failed', $value); |
|
616 | 616 | } |
617 | 617 | |
618 | 618 | /** |
@@ -621,11 +621,11 @@ discard block |
||
621 | 621 | * @deprecated |
622 | 622 | * @return int item id |
623 | 623 | */ |
624 | - public function create( $data = array() ) { |
|
624 | + public function create($data = array()) { |
|
625 | 625 | |
626 | 626 | // Set the properties. |
627 | - if ( is_array( $data ) ) { |
|
628 | - $this->set_props( $data ); |
|
627 | + if (is_array($data)) { |
|
628 | + $this->set_props($data); |
|
629 | 629 | } |
630 | 630 | |
631 | 631 | // Save the item. |
@@ -639,8 +639,8 @@ discard block |
||
639 | 639 | * @deprecated |
640 | 640 | * @return int item id |
641 | 641 | */ |
642 | - public function update( $data = array() ) { |
|
643 | - return $this->create( $data ); |
|
642 | + public function update($data = array()) { |
|
643 | + return $this->create($data); |
|
644 | 644 | } |
645 | 645 | |
646 | 646 | /* |
@@ -660,7 +660,7 @@ discard block |
||
660 | 660 | */ |
661 | 661 | public function is_default() { |
662 | 662 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
663 | - return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
|
663 | + return (bool) apply_filters('wpinv_is_default_payment_form', $is_default, $this->get_id(), $this); |
|
664 | 664 | } |
665 | 665 | |
666 | 666 | /** |
@@ -672,11 +672,11 @@ discard block |
||
672 | 672 | public function is_active() { |
673 | 673 | $is_active = 0 !== (int) $this->get_id(); |
674 | 674 | |
675 | - if ( $is_active && ! current_user_can( 'edit_post', $this->get_id() ) && $this->get_status() != 'publish' ) { |
|
675 | + if ($is_active && !current_user_can('edit_post', $this->get_id()) && $this->get_status() != 'publish') { |
|
676 | 676 | $is_active = false; |
677 | 677 | } |
678 | 678 | |
679 | - return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
|
679 | + return (bool) apply_filters('wpinv_is_payment_form_active', $is_active, $this); |
|
680 | 680 | } |
681 | 681 | |
682 | 682 | /** |
@@ -685,8 +685,8 @@ discard block |
||
685 | 685 | * @since 1.0.19 |
686 | 686 | * @return bool |
687 | 687 | */ |
688 | - public function has_item( $item_id ) { |
|
689 | - return false !== $this->get_item( $item_id ); |
|
688 | + public function has_item($item_id) { |
|
689 | + return false !== $this->get_item($item_id); |
|
690 | 690 | } |
691 | 691 | |
692 | 692 | /** |
@@ -695,8 +695,8 @@ discard block |
||
695 | 695 | * @since 1.0.19 |
696 | 696 | * @return bool |
697 | 697 | */ |
698 | - public function has_element_type( $element_type ) { |
|
699 | - return false !== $this->get_element_type( $element_type ); |
|
698 | + public function has_element_type($element_type) { |
|
699 | + return false !== $this->get_element_type($element_type); |
|
700 | 700 | } |
701 | 701 | |
702 | 702 | /** |
@@ -707,13 +707,13 @@ discard block |
||
707 | 707 | */ |
708 | 708 | public function is_recurring() { |
709 | 709 | |
710 | - if ( ! empty( $this->invoice ) ) { |
|
710 | + if (!empty($this->invoice)) { |
|
711 | 711 | return $this->invoice->is_recurring(); |
712 | 712 | } |
713 | 713 | |
714 | - foreach ( $this->get_items() as $item ) { |
|
714 | + foreach ($this->get_items() as $item) { |
|
715 | 715 | |
716 | - if ( $item->is_recurring() ) { |
|
716 | + if ($item->is_recurring()) { |
|
717 | 717 | return true; |
718 | 718 | } |
719 | 719 | |
@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | public function get_html() { |
731 | 731 | |
732 | 732 | // Return the HTML. |
733 | - return wpinv_get_template_html( 'payment-forms/form.php', array( 'form' => $this ) ); |
|
733 | + return wpinv_get_template_html('payment-forms/form.php', array('form' => $this)); |
|
734 | 734 | |
735 | 735 | } |
736 | 736 |