@@ -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 | * Returns an array of eu states. |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | * @return array |
| 13 | 13 | */ |
| 14 | 14 | function getpaid_get_eu_states() { |
| 15 | - return wpinv_get_data( 'eu-states' ); |
|
| 15 | + return wpinv_get_data('eu-states'); |
|
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | /** |
@@ -20,8 +20,8 @@ discard block |
||
| 20 | 20 | * |
| 21 | 21 | * @return bool |
| 22 | 22 | */ |
| 23 | -function getpaid_is_eu_state( $country ) { |
|
| 24 | - return ! empty( $country ) && in_array( strtoupper( $country ), getpaid_get_eu_states(), true ) ? true : false; |
|
| 23 | +function getpaid_is_eu_state($country) { |
|
| 24 | + return !empty($country) && in_array(strtoupper($country), getpaid_get_eu_states(), true) ? true : false; |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | * @return array |
| 31 | 31 | */ |
| 32 | 32 | function getpaid_get_gst_states() { |
| 33 | - return array( 'AU', 'NZ', 'CA', 'CN' ); |
|
| 33 | + return array('AU', 'NZ', 'CA', 'CN'); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * @return bool |
| 40 | 40 | */ |
| 41 | -function getpaid_is_gst_country( $country ) { |
|
| 42 | - return ! empty( $country ) && in_array( strtoupper( $country ), getpaid_get_gst_states(), true ) ? true : false; |
|
| 41 | +function getpaid_is_gst_country($country) { |
|
| 42 | + return !empty($country) && in_array(strtoupper($country), getpaid_get_gst_states(), true) ? true : false; |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -49,8 +49,8 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | function wpinv_use_taxes() { |
| 51 | 51 | |
| 52 | - $ret = wpinv_get_option( 'enable_taxes', false ); |
|
| 53 | - return (bool) apply_filters( 'wpinv_use_taxes', ! empty( $ret ) ); |
|
| 52 | + $ret = wpinv_get_option('enable_taxes', false); |
|
| 53 | + return (bool) apply_filters('wpinv_use_taxes', !empty($ret)); |
|
| 54 | 54 | |
| 55 | 55 | } |
| 56 | 56 | |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | * @param WPInv_Invoice $invoice |
| 61 | 61 | * @return bool |
| 62 | 62 | */ |
| 63 | -function wpinv_is_invoice_taxable( $invoice ) { |
|
| 63 | +function wpinv_is_invoice_taxable($invoice) { |
|
| 64 | 64 | return $invoice->is_taxable(); |
| 65 | 65 | } |
| 66 | 66 | |
@@ -70,11 +70,11 @@ discard block |
||
| 70 | 70 | * @param string $country |
| 71 | 71 | * @return bool |
| 72 | 72 | */ |
| 73 | -function wpinv_is_country_taxable( $country ) { |
|
| 74 | - $is_eu = getpaid_is_eu_state( $country ); |
|
| 75 | - $is_exempt = ! $is_eu && wpinv_is_base_country( $country ) && wpinv_same_country_exempt_vat(); |
|
| 73 | +function wpinv_is_country_taxable($country) { |
|
| 74 | + $is_eu = getpaid_is_eu_state($country); |
|
| 75 | + $is_exempt = !$is_eu && wpinv_is_base_country($country) && wpinv_same_country_exempt_vat(); |
|
| 76 | 76 | |
| 77 | - return (bool) apply_filters( 'wpinv_is_country_taxable', ! $is_exempt, $country ); |
|
| 77 | + return (bool) apply_filters('wpinv_is_country_taxable', !$is_exempt, $country); |
|
| 78 | 78 | |
| 79 | 79 | } |
| 80 | 80 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | * @param WPInv_Item|GetPaid_Form_Item $item |
| 85 | 85 | * @return bool |
| 86 | 86 | */ |
| 87 | -function wpinv_is_item_taxable( $item ) { |
|
| 87 | +function wpinv_is_item_taxable($item) { |
|
| 88 | 88 | return '_exempt' !== $item->get_vat_rule(); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -93,15 +93,15 @@ discard block |
||
| 93 | 93 | * |
| 94 | 94 | * @return bool |
| 95 | 95 | */ |
| 96 | -function wpinv_use_store_address_as_tax_base( $tax_rule = false ) { |
|
| 97 | - $use_base = wpinv_get_option( 'tax_base', 'billing' ) === 'base'; |
|
| 96 | +function wpinv_use_store_address_as_tax_base($tax_rule = false) { |
|
| 97 | + $use_base = wpinv_get_option('tax_base', 'billing') === 'base'; |
|
| 98 | 98 | |
| 99 | - if ( $tax_rule ) { |
|
| 100 | - $rules = getpaid_get_tax_rules( 'tax_base' ); |
|
| 101 | - $use_base = isset( $rules[ $tax_rule ] ) ? 'base' === $rules[ $tax_rule ] : $use_base; |
|
| 99 | + if ($tax_rule) { |
|
| 100 | + $rules = getpaid_get_tax_rules('tax_base'); |
|
| 101 | + $use_base = isset($rules[$tax_rule]) ? 'base' === $rules[$tax_rule] : $use_base; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - return (bool) apply_filters( 'wpinv_use_store_address_as_tax_base', $use_base, $tax_rule ); |
|
| 104 | + return (bool) apply_filters('wpinv_use_store_address_as_tax_base', $use_base, $tax_rule); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | /** |
@@ -109,15 +109,15 @@ discard block |
||
| 109 | 109 | * |
| 110 | 110 | * @return bool |
| 111 | 111 | */ |
| 112 | -function wpinv_get_vat_same_country_rule( $tax_rule = false ) { |
|
| 113 | - $rule = wpinv_get_option( 'vat_same_country_rule', 'vat_too' ); |
|
| 112 | +function wpinv_get_vat_same_country_rule($tax_rule = false) { |
|
| 113 | + $rule = wpinv_get_option('vat_same_country_rule', 'vat_too'); |
|
| 114 | 114 | |
| 115 | - if ( $tax_rule ) { |
|
| 116 | - $rules = getpaid_get_tax_rules( 'same_country_rule' ); |
|
| 117 | - $rule = isset( $rules[ $tax_rule ] ) ? $rules[ $tax_rule ] : $rule; |
|
| 115 | + if ($tax_rule) { |
|
| 116 | + $rules = getpaid_get_tax_rules('same_country_rule'); |
|
| 117 | + $rule = isset($rules[$tax_rule]) ? $rules[$tax_rule] : $rule; |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - return (bool) apply_filters( 'wpinv_get_vat_same_country_rule', $rule, $tax_rule ); |
|
| 120 | + return (bool) apply_filters('wpinv_get_vat_same_country_rule', $rule, $tax_rule); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | /** |
@@ -126,8 +126,8 @@ discard block |
||
| 126 | 126 | * @return bool |
| 127 | 127 | */ |
| 128 | 128 | function wpinv_prices_include_tax() { |
| 129 | - $is_inclusive = wpinv_get_option( 'prices_include_tax', 'no' ) === 'yes'; |
|
| 130 | - return (bool) apply_filters( 'wpinv_prices_include_tax', $is_inclusive ); |
|
| 129 | + $is_inclusive = wpinv_get_option('prices_include_tax', 'no') === 'yes'; |
|
| 130 | + return (bool) apply_filters('wpinv_prices_include_tax', $is_inclusive); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
@@ -136,8 +136,8 @@ discard block |
||
| 136 | 136 | * @return bool |
| 137 | 137 | */ |
| 138 | 138 | function wpinv_round_tax_per_tax_rate() { |
| 139 | - $subtotal_rounding = wpinv_get_option( 'tax_subtotal_rounding', 1 ); |
|
| 140 | - return (bool) apply_filters( 'wpinv_round_tax_per_tax_rate', empty( $subtotal_rounding ) ); |
|
| 139 | + $subtotal_rounding = wpinv_get_option('tax_subtotal_rounding', 1); |
|
| 140 | + return (bool) apply_filters('wpinv_round_tax_per_tax_rate', empty($subtotal_rounding)); |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | /** |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | * @return bool |
| 147 | 147 | */ |
| 148 | 148 | function wpinv_display_individual_tax_rates() { |
| 149 | - $individual = wpinv_get_option( 'tax_display_totals', 'single' ) === 'individual'; |
|
| 150 | - return (bool) apply_filters( 'wpinv_display_individual_tax_rates', $individual ); |
|
| 149 | + $individual = wpinv_get_option('tax_display_totals', 'single') === 'individual'; |
|
| 150 | + return (bool) apply_filters('wpinv_display_individual_tax_rates', $individual); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | /** |
@@ -156,8 +156,8 @@ discard block |
||
| 156 | 156 | * @return float |
| 157 | 157 | */ |
| 158 | 158 | function wpinv_get_default_tax_rate() { |
| 159 | - $rate = wpinv_get_option( 'tax_rate', 0 ); |
|
| 160 | - return (float) apply_filters( 'wpinv_get_default_tax_rate', floatval( $rate ) ); |
|
| 159 | + $rate = wpinv_get_option('tax_rate', 0); |
|
| 160 | + return (float) apply_filters('wpinv_get_default_tax_rate', floatval($rate)); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | /** |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | * @return bool |
| 167 | 167 | */ |
| 168 | 168 | function wpinv_same_country_exempt_vat() { |
| 169 | - return 'no' === wpinv_get_option( 'vat_same_country_rule', 'vat_too' ); |
|
| 169 | + return 'no' === wpinv_get_option('vat_same_country_rule', 'vat_too'); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | /** |
@@ -186,28 +186,28 @@ discard block |
||
| 186 | 186 | * @param string $state |
| 187 | 187 | * @return array |
| 188 | 188 | */ |
| 189 | -function getpaid_get_item_tax_rates( $item, $country = '', $state = '' ) { |
|
| 189 | +function getpaid_get_item_tax_rates($item, $country = '', $state = '') { |
|
| 190 | 190 | |
| 191 | 191 | // Abort if the item is not taxable. |
| 192 | - if ( ! wpinv_is_item_taxable( $item ) ) { |
|
| 192 | + if (!wpinv_is_item_taxable($item)) { |
|
| 193 | 193 | return array(); |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | // Maybe use the store address. |
| 197 | - if ( wpinv_use_store_address_as_tax_base( $item->get_vat_rule() ) ) { |
|
| 197 | + if (wpinv_use_store_address_as_tax_base($item->get_vat_rule())) { |
|
| 198 | 198 | $country = wpinv_get_default_country(); |
| 199 | 199 | $state = wpinv_get_default_state(); |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | // Retrieve tax rates. |
| 203 | - $tax_rates = GetPaid_Tax::get_address_tax_rates( $country, $state ); |
|
| 203 | + $tax_rates = GetPaid_Tax::get_address_tax_rates($country, $state); |
|
| 204 | 204 | |
| 205 | 205 | // Fallback to the default tax rates if non were found. |
| 206 | - if ( empty( $tax_rates ) ) { |
|
| 206 | + if (empty($tax_rates)) { |
|
| 207 | 207 | $tax_rates = GetPaid_Tax::get_default_tax_rates(); |
| 208 | 208 | } |
| 209 | 209 | |
| 210 | - return apply_filters( 'getpaid_get_item_tax_rates', $tax_rates, $item, $country, $state ); |
|
| 210 | + return apply_filters('getpaid_get_item_tax_rates', $tax_rates, $item, $country, $state); |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | /** |
@@ -217,22 +217,22 @@ discard block |
||
| 217 | 217 | * @param array $rates |
| 218 | 218 | * @return array |
| 219 | 219 | */ |
| 220 | -function getpaid_filter_item_tax_rates( $item, $rates ) { |
|
| 220 | +function getpaid_filter_item_tax_rates($item, $rates) { |
|
| 221 | 221 | |
| 222 | 222 | $tax_class = $item->get_vat_class(); |
| 223 | 223 | |
| 224 | - foreach ( $rates as $i => $rate ) { |
|
| 224 | + foreach ($rates as $i => $rate) { |
|
| 225 | 225 | |
| 226 | - if ( '_reduced' === $tax_class ) { |
|
| 227 | - $rates[ $i ]['rate'] = empty( $rate['reduced_rate'] ) ? 0 : $rate['reduced_rate']; |
|
| 226 | + if ('_reduced' === $tax_class) { |
|
| 227 | + $rates[$i]['rate'] = empty($rate['reduced_rate']) ? 0 : $rate['reduced_rate']; |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | - if ( '_exempt' === $tax_class ) { |
|
| 231 | - $rates[ $i ]['rate'] = 0; |
|
| 230 | + if ('_exempt' === $tax_class) { |
|
| 231 | + $rates[$i]['rate'] = 0; |
|
| 232 | 232 | } |
| 233 | 233 | } |
| 234 | 234 | |
| 235 | - return apply_filters( 'getpaid_filter_item_tax_rates', $rates, $item ); |
|
| 235 | + return apply_filters('getpaid_filter_item_tax_rates', $rates, $item); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | /** |
@@ -242,12 +242,12 @@ discard block |
||
| 242 | 242 | * @param array $rates |
| 243 | 243 | * @return array |
| 244 | 244 | */ |
| 245 | -function getpaid_calculate_item_taxes( $amount, $rates ) { |
|
| 245 | +function getpaid_calculate_item_taxes($amount, $rates) { |
|
| 246 | 246 | |
| 247 | 247 | $is_inclusive = wpinv_prices_include_tax(); |
| 248 | - $taxes = GetPaid_Tax::calc_tax( $amount, $rates, $is_inclusive ); |
|
| 248 | + $taxes = GetPaid_Tax::calc_tax($amount, $rates, $is_inclusive); |
|
| 249 | 249 | |
| 250 | - return apply_filters( 'getpaid_calculate_taxes', $taxes, $amount, $rates ); |
|
| 250 | + return apply_filters('getpaid_calculate_taxes', $taxes, $amount, $rates); |
|
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | /** |
@@ -259,17 +259,17 @@ discard block |
||
| 259 | 259 | * @param float $recurring_tax_amount |
| 260 | 260 | * @return array |
| 261 | 261 | */ |
| 262 | -function getpaid_prepare_item_tax( $item, $tax_name, $tax_amount, $recurring_tax_amount ) { |
|
| 262 | +function getpaid_prepare_item_tax($item, $tax_name, $tax_amount, $recurring_tax_amount) { |
|
| 263 | 263 | |
| 264 | - $initial_tax = $tax_amount; |
|
| 264 | + $initial_tax = $tax_amount; |
|
| 265 | 265 | $recurring_tax = 0; |
| 266 | 266 | |
| 267 | - if ( $item->is_recurring() ) { |
|
| 267 | + if ($item->is_recurring()) { |
|
| 268 | 268 | $recurring_tax = $recurring_tax_amount; |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | return array( |
| 272 | - 'name' => sanitize_text_field( $tax_name ), |
|
| 272 | + 'name' => sanitize_text_field($tax_name), |
|
| 273 | 273 | 'initial_tax' => $initial_tax, |
| 274 | 274 | 'recurring_tax' => $recurring_tax, |
| 275 | 275 | ); |
@@ -282,8 +282,8 @@ discard block |
||
| 282 | 282 | * @param string $vat_number |
| 283 | 283 | * @return string |
| 284 | 284 | */ |
| 285 | -function wpinv_sanitize_vat_number( $vat_number ) { |
|
| 286 | - return str_replace( array( ' ', '.', '-', '_', ',' ), '', strtoupper( trim( $vat_number ) ) ); |
|
| 285 | +function wpinv_sanitize_vat_number($vat_number) { |
|
| 286 | + return str_replace(array(' ', '.', '-', '_', ','), '', strtoupper(trim($vat_number))); |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | /** |
@@ -292,22 +292,22 @@ discard block |
||
| 292 | 292 | * @param string $vat_number |
| 293 | 293 | * @return bool |
| 294 | 294 | */ |
| 295 | -function wpinv_regex_validate_vat_number( $vat_number ) { |
|
| 295 | +function wpinv_regex_validate_vat_number($vat_number) { |
|
| 296 | 296 | |
| 297 | - $country = substr( $vat_number, 0, 2 ); |
|
| 298 | - $vatin = substr( $vat_number, 2 ); |
|
| 299 | - $regexes = wpinv_get_data( 'vat-number-regexes' ); |
|
| 297 | + $country = substr($vat_number, 0, 2); |
|
| 298 | + $vatin = substr($vat_number, 2); |
|
| 299 | + $regexes = wpinv_get_data('vat-number-regexes'); |
|
| 300 | 300 | |
| 301 | - if ( isset( $regexes[ $country ] ) ) { |
|
| 301 | + if (isset($regexes[$country])) { |
|
| 302 | 302 | |
| 303 | - $regex = $regexes[ $country ]; |
|
| 303 | + $regex = $regexes[$country]; |
|
| 304 | 304 | $regex = '/^(?:' . $regex . ')$/'; |
| 305 | - return 1 === preg_match( $regex, $vatin ); |
|
| 305 | + return 1 === preg_match($regex, $vatin); |
|
| 306 | 306 | |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | 309 | // Not an EU state, use filters to validate the number. |
| 310 | - return apply_filters( 'wpinv_regex_validate_vat_number', true, $vat_number ); |
|
| 310 | + return apply_filters('wpinv_regex_validate_vat_number', true, $vat_number); |
|
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | /** |
@@ -316,29 +316,29 @@ discard block |
||
| 316 | 316 | * @param string $vat_number |
| 317 | 317 | * @return bool |
| 318 | 318 | */ |
| 319 | -function wpinv_vies_validate_vat_number( $vat_number ) { |
|
| 319 | +function wpinv_vies_validate_vat_number($vat_number) { |
|
| 320 | 320 | |
| 321 | - $country = substr( $vat_number, 0, 2 ); |
|
| 322 | - $vatin = substr( $vat_number, 2 ); |
|
| 321 | + $country = substr($vat_number, 0, 2); |
|
| 322 | + $vatin = substr($vat_number, 2); |
|
| 323 | 323 | |
| 324 | 324 | $url = add_query_arg( |
| 325 | 325 | array( |
| 326 | - 'ms' => rawurlencode( $country ), |
|
| 327 | - 'iso' => rawurlencode( $country ), |
|
| 328 | - 'vat' => rawurlencode( $vatin ), |
|
| 326 | + 'ms' => rawurlencode($country), |
|
| 327 | + 'iso' => rawurlencode($country), |
|
| 328 | + 'vat' => rawurlencode($vatin), |
|
| 329 | 329 | ), |
| 330 | 330 | 'http://ec.europa.eu/taxation_customs/vies/viesquer.do' |
| 331 | 331 | ); |
| 332 | 332 | |
| 333 | - $response = wp_remote_get( $url ); |
|
| 334 | - $response = wp_remote_retrieve_body( $response ); |
|
| 333 | + $response = wp_remote_get($url); |
|
| 334 | + $response = wp_remote_retrieve_body($response); |
|
| 335 | 335 | |
| 336 | 336 | // Fallback gracefully if the VIES website is down. |
| 337 | - if ( empty( $response ) ) { |
|
| 337 | + if (empty($response)) { |
|
| 338 | 338 | return true; |
| 339 | 339 | } |
| 340 | 340 | |
| 341 | - return 1 !== preg_match( '/invalid VAT number/i', $response ); |
|
| 341 | + return 1 !== preg_match('/invalid VAT number/i', $response); |
|
| 342 | 342 | |
| 343 | 343 | } |
| 344 | 344 | |
@@ -349,17 +349,17 @@ discard block |
||
| 349 | 349 | * @param string $country |
| 350 | 350 | * @return bool |
| 351 | 351 | */ |
| 352 | -function wpinv_validate_vat_number( $vat_number, $country ) { |
|
| 352 | +function wpinv_validate_vat_number($vat_number, $country) { |
|
| 353 | 353 | |
| 354 | 354 | // In case the vat number does not have a country code... |
| 355 | - $vat_number = wpinv_sanitize_vat_number( $vat_number ); |
|
| 356 | - $_country = substr( $vat_number, 0, 2 ); |
|
| 355 | + $vat_number = wpinv_sanitize_vat_number($vat_number); |
|
| 356 | + $_country = substr($vat_number, 0, 2); |
|
| 357 | 357 | |
| 358 | - if ( wpinv_country_name( $_country ) === $_country ) { |
|
| 359 | - $vat_number = strtoupper( $country ) . $vat_number; |
|
| 358 | + if (wpinv_country_name($_country) === $_country) { |
|
| 359 | + $vat_number = strtoupper($country) . $vat_number; |
|
| 360 | 360 | } |
| 361 | 361 | |
| 362 | - return wpinv_regex_validate_vat_number( $vat_number ) && wpinv_vies_validate_vat_number( $vat_number ); |
|
| 362 | + return wpinv_regex_validate_vat_number($vat_number) && wpinv_vies_validate_vat_number($vat_number); |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | /** |
@@ -368,39 +368,39 @@ discard block |
||
| 368 | 368 | * @return bool |
| 369 | 369 | */ |
| 370 | 370 | function wpinv_should_validate_vat_number() { |
| 371 | - $validate = wpinv_get_option( 'validate_vat_number' ); |
|
| 372 | - return ! empty( $validate ); |
|
| 371 | + $validate = wpinv_get_option('validate_vat_number'); |
|
| 372 | + return !empty($validate); |
|
| 373 | 373 | } |
| 374 | 374 | |
| 375 | -function wpinv_sales_tax_for_year( $year = null ) { |
|
| 376 | - return wpinv_price( wpinv_get_sales_tax_for_year( $year ) ); |
|
| 375 | +function wpinv_sales_tax_for_year($year = null) { |
|
| 376 | + return wpinv_price(wpinv_get_sales_tax_for_year($year)); |
|
| 377 | 377 | } |
| 378 | 378 | |
| 379 | -function wpinv_get_sales_tax_for_year( $year = null ) { |
|
| 379 | +function wpinv_get_sales_tax_for_year($year = null) { |
|
| 380 | 380 | global $wpdb; |
| 381 | 381 | |
| 382 | 382 | // Start at zero |
| 383 | 383 | $tax = 0; |
| 384 | 384 | |
| 385 | - if ( ! empty( $year ) ) { |
|
| 385 | + if (!empty($year)) { |
|
| 386 | 386 | $args = array( |
| 387 | 387 | 'post_type' => 'wpi_invoice', |
| 388 | - 'post_status' => array( 'publish' ), |
|
| 388 | + 'post_status' => array('publish'), |
|
| 389 | 389 | 'posts_per_page' => -1, |
| 390 | 390 | 'year' => $year, |
| 391 | 391 | 'fields' => 'ids', |
| 392 | 392 | ); |
| 393 | 393 | |
| 394 | - $payments = get_posts( $args ); |
|
| 395 | - $payment_ids = implode( ',', $payments ); |
|
| 394 | + $payments = get_posts($args); |
|
| 395 | + $payment_ids = implode(',', $payments); |
|
| 396 | 396 | |
| 397 | - if ( count( $payments ) > 0 ) { |
|
| 397 | + if (count($payments) > 0) { |
|
| 398 | 398 | $sql = "SELECT SUM( meta_value ) FROM $wpdb->postmeta WHERE meta_key = '_wpinv_tax' AND post_id IN( $payment_ids )"; |
| 399 | - $tax = $wpdb->get_var( $sql ); |
|
| 399 | + $tax = $wpdb->get_var($sql); |
|
| 400 | 400 | } |
| 401 | 401 | } |
| 402 | 402 | |
| 403 | - return apply_filters( 'wpinv_get_sales_tax_for_year', $tax, $year ); |
|
| 403 | + return apply_filters('wpinv_get_sales_tax_for_year', $tax, $year); |
|
| 404 | 404 | } |
| 405 | 405 | |
| 406 | 406 | function wpinv_is_cart_taxed() { |
@@ -409,34 +409,34 @@ discard block |
||
| 409 | 409 | |
| 410 | 410 | function wpinv_prices_show_tax_on_checkout() { |
| 411 | 411 | return false; // TODO |
| 412 | - $ret = ( wpinv_get_option( 'checkout_include_tax', false ) === 'yes' && wpinv_use_taxes() ); |
|
| 412 | + $ret = (wpinv_get_option('checkout_include_tax', false) === 'yes' && wpinv_use_taxes()); |
|
| 413 | 413 | |
| 414 | - return apply_filters( 'wpinv_taxes_on_prices_on_checkout', $ret ); |
|
| 414 | + return apply_filters('wpinv_taxes_on_prices_on_checkout', $ret); |
|
| 415 | 415 | } |
| 416 | 416 | |
| 417 | 417 | function wpinv_display_tax_rate() { |
| 418 | - $ret = wpinv_use_taxes() && wpinv_get_option( 'display_tax_rate', false ); |
|
| 418 | + $ret = wpinv_use_taxes() && wpinv_get_option('display_tax_rate', false); |
|
| 419 | 419 | |
| 420 | - return apply_filters( 'wpinv_display_tax_rate', $ret ); |
|
| 420 | + return apply_filters('wpinv_display_tax_rate', $ret); |
|
| 421 | 421 | } |
| 422 | 422 | |
| 423 | 423 | function wpinv_cart_needs_tax_address_fields() { |
| 424 | - if ( ! wpinv_is_cart_taxed() ) { |
|
| 424 | + if (!wpinv_is_cart_taxed()) { |
|
| 425 | 425 | return false; |
| 426 | 426 | } |
| 427 | 427 | |
| 428 | - return ! did_action( 'wpinv_after_cc_fields', 'wpinv_default_cc_address_fields' ); |
|
| 428 | + return !did_action('wpinv_after_cc_fields', 'wpinv_default_cc_address_fields'); |
|
| 429 | 429 | } |
| 430 | 430 | |
| 431 | -function wpinv_item_is_tax_exclusive( $item_id = 0 ) { |
|
| 432 | - $ret = (bool)get_post_meta( $item_id, '_wpinv_tax_exclusive', false ); |
|
| 433 | - return apply_filters( 'wpinv_is_tax_exclusive', $ret, $item_id ); |
|
| 431 | +function wpinv_item_is_tax_exclusive($item_id = 0) { |
|
| 432 | + $ret = (bool) get_post_meta($item_id, '_wpinv_tax_exclusive', false); |
|
| 433 | + return apply_filters('wpinv_is_tax_exclusive', $ret, $item_id); |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | -function wpinv_currency_decimal_filter( $decimals = 2 ) { |
|
| 436 | +function wpinv_currency_decimal_filter($decimals = 2) { |
|
| 437 | 437 | $currency = wpinv_get_currency(); |
| 438 | 438 | |
| 439 | - switch ( $currency ) { |
|
| 439 | + switch ($currency) { |
|
| 440 | 440 | case 'RIAL': |
| 441 | 441 | case 'JPY': |
| 442 | 442 | case 'TWD': |
@@ -445,13 +445,13 @@ discard block |
||
| 445 | 445 | break; |
| 446 | 446 | } |
| 447 | 447 | |
| 448 | - return apply_filters( 'wpinv_currency_decimal_count', $decimals, $currency ); |
|
| 448 | + return apply_filters('wpinv_currency_decimal_count', $decimals, $currency); |
|
| 449 | 449 | } |
| 450 | 450 | |
| 451 | 451 | function wpinv_tax_amount() { |
| 452 | 452 | $output = 0.00; |
| 453 | 453 | |
| 454 | - return apply_filters( 'wpinv_tax_amount', $output ); |
|
| 454 | + return apply_filters('wpinv_tax_amount', $output); |
|
| 455 | 455 | } |
| 456 | 456 | |
| 457 | 457 | /** |
@@ -459,25 +459,25 @@ discard block |
||
| 459 | 459 | * |
| 460 | 460 | * @param string|bool|null $vat_rule |
| 461 | 461 | */ |
| 462 | -function getpaid_filter_vat_rule( $vat_rule ) { |
|
| 462 | +function getpaid_filter_vat_rule($vat_rule) { |
|
| 463 | 463 | |
| 464 | - if ( empty( $vat_rule ) ) { |
|
| 464 | + if (empty($vat_rule)) { |
|
| 465 | 465 | return 'digital'; |
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | return $vat_rule; |
| 469 | 469 | } |
| 470 | -add_filter( 'wpinv_get_item_vat_rule', 'getpaid_filter_vat_rule' ); |
|
| 470 | +add_filter('wpinv_get_item_vat_rule', 'getpaid_filter_vat_rule'); |
|
| 471 | 471 | |
| 472 | 472 | /** |
| 473 | 473 | * Filters the VAT class to ensure that each item has a VAT class. |
| 474 | 474 | * |
| 475 | 475 | * @param string|bool|null $vat_rule |
| 476 | 476 | */ |
| 477 | -function getpaid_filter_vat_class( $vat_class ) { |
|
| 478 | - return empty( $vat_class ) ? '_standard' : $vat_class; |
|
| 477 | +function getpaid_filter_vat_class($vat_class) { |
|
| 478 | + return empty($vat_class) ? '_standard' : $vat_class; |
|
| 479 | 479 | } |
| 480 | -add_filter( 'wpinv_get_item_vat_class', 'getpaid_filter_vat_class' ); |
|
| 480 | +add_filter('wpinv_get_item_vat_class', 'getpaid_filter_vat_class'); |
|
| 481 | 481 | |
| 482 | 482 | /** |
| 483 | 483 | * Returns a list of all tax classes. |
@@ -489,9 +489,9 @@ discard block |
||
| 489 | 489 | return apply_filters( |
| 490 | 490 | 'getpaid_tax_classes', |
| 491 | 491 | array( |
| 492 | - '_standard' => __( 'Standard Tax Rate', 'invoicing' ), |
|
| 493 | - '_reduced' => __( 'Reduced Tax Rate', 'invoicing' ), |
|
| 494 | - '_exempt' => __( 'Tax Exempt', 'invoicing' ), |
|
| 492 | + '_standard' => __('Standard Tax Rate', 'invoicing'), |
|
| 493 | + '_reduced' => __('Reduced Tax Rate', 'invoicing'), |
|
| 494 | + '_exempt' => __('Tax Exempt', 'invoicing'), |
|
| 495 | 495 | ) |
| 496 | 496 | ); |
| 497 | 497 | |
@@ -502,8 +502,8 @@ discard block |
||
| 502 | 502 | * |
| 503 | 503 | * @return array |
| 504 | 504 | */ |
| 505 | -function getpaid_get_tax_rules( $return = 'label' ) { |
|
| 506 | - return wp_list_pluck( GetPaid_Tax::get_all_tax_rules(), $return, 'key' ); |
|
| 505 | +function getpaid_get_tax_rules($return = 'label') { |
|
| 506 | + return wp_list_pluck(GetPaid_Tax::get_all_tax_rules(), $return, 'key'); |
|
| 507 | 507 | } |
| 508 | 508 | |
| 509 | 509 | /** |
@@ -512,15 +512,15 @@ discard block |
||
| 512 | 512 | * @param string $tax_class |
| 513 | 513 | * @return string |
| 514 | 514 | */ |
| 515 | -function getpaid_get_tax_class_label( $tax_class ) { |
|
| 515 | +function getpaid_get_tax_class_label($tax_class) { |
|
| 516 | 516 | |
| 517 | 517 | $classes = getpaid_get_tax_classes(); |
| 518 | 518 | |
| 519 | - if ( isset( $classes[ $tax_class ] ) ) { |
|
| 520 | - return sanitize_text_field( $classes[ $tax_class ] ); |
|
| 519 | + if (isset($classes[$tax_class])) { |
|
| 520 | + return sanitize_text_field($classes[$tax_class]); |
|
| 521 | 521 | } |
| 522 | 522 | |
| 523 | - return sanitize_text_field( $tax_class ); |
|
| 523 | + return sanitize_text_field($tax_class); |
|
| 524 | 524 | |
| 525 | 525 | } |
| 526 | 526 | |
@@ -530,15 +530,15 @@ discard block |
||
| 530 | 530 | * @param string $tax_rule |
| 531 | 531 | * @return string |
| 532 | 532 | */ |
| 533 | -function getpaid_get_tax_rule_label( $tax_rule ) { |
|
| 533 | +function getpaid_get_tax_rule_label($tax_rule) { |
|
| 534 | 534 | |
| 535 | 535 | $rules = getpaid_get_tax_rules(); |
| 536 | 536 | |
| 537 | - if ( isset( $rules[ $tax_rule ] ) ) { |
|
| 538 | - return sanitize_text_field( $rules[ $tax_rule ] ); |
|
| 537 | + if (isset($rules[$tax_rule])) { |
|
| 538 | + return sanitize_text_field($rules[$tax_rule]); |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | - return sanitize_text_field( $tax_rule ); |
|
| 541 | + return sanitize_text_field($tax_rule); |
|
| 542 | 542 | |
| 543 | 543 | } |
| 544 | 544 | |
@@ -549,11 +549,11 @@ discard block |
||
| 549 | 549 | * @param string $recurring |
| 550 | 550 | * @return string |
| 551 | 551 | */ |
| 552 | -function getpaid_get_taxable_amount( $item, $recurring = false ) { |
|
| 552 | +function getpaid_get_taxable_amount($item, $recurring = false) { |
|
| 553 | 553 | |
| 554 | 554 | $taxable_amount = $recurring ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
| 555 | 555 | $taxable_amount -= $recurring ? $item->recurring_item_discount : $item->item_discount; |
| 556 | - $taxable_amount = max( 0, $taxable_amount ); |
|
| 557 | - return apply_filters( 'getpaid_taxable_amount', $taxable_amount, $item, $recurring ); |
|
| 556 | + $taxable_amount = max(0, $taxable_amount); |
|
| 557 | + return apply_filters('getpaid_taxable_amount', $taxable_amount, $item, $recurring); |
|
| 558 | 558 | |
| 559 | 559 | } |
@@ -12,75 +12,75 @@ discard block |
||
| 12 | 12 | * @var GetPaid_Payment_Form $form |
| 13 | 13 | */ |
| 14 | 14 | |
| 15 | -defined( 'ABSPATH' ) || exit; |
|
| 15 | +defined('ABSPATH') || exit; |
|
| 16 | 16 | |
| 17 | -$field_type = sanitize_key( $field_type ); |
|
| 17 | +$field_type = sanitize_key($field_type); |
|
| 18 | 18 | |
| 19 | -echo "<div class='row " . esc_attr( $field_type ) . "'>"; |
|
| 19 | +echo "<div class='row " . esc_attr($field_type) . "'>"; |
|
| 20 | 20 | |
| 21 | 21 | // Prepare current user. |
| 22 | -if ( ! empty( $form->invoice ) ) { |
|
| 22 | +if (!empty($form->invoice)) { |
|
| 23 | 23 | $user_id = $form->invoice->get_user_id(); |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | -if ( empty( $user_id ) && is_user_logged_in() ) { |
|
| 26 | +if (empty($user_id) && is_user_logged_in()) { |
|
| 27 | 27 | $user_id = get_current_user_id(); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | -if ( ! empty( $user_id ) ) { |
|
| 31 | - $user = wp_get_current_user(); |
|
| 30 | +if (!empty($user_id)) { |
|
| 31 | + $user = wp_get_current_user(); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | -foreach ( $fields as $address_field ) { |
|
| 34 | +foreach ($fields as $address_field) { |
|
| 35 | 35 | |
| 36 | 36 | // Skip if it is hidden. |
| 37 | - if ( empty( $address_field['visible'] ) ) { |
|
| 37 | + if (empty($address_field['visible'])) { |
|
| 38 | 38 | continue; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - do_action( 'getpaid_payment_form_address_field_before_' . $address_field['name'], $field_type, $address_field ); |
|
| 41 | + do_action('getpaid_payment_form_address_field_before_' . $address_field['name'], $field_type, $address_field); |
|
| 42 | 42 | |
| 43 | 43 | // Prepare variables. |
| 44 | 44 | $field_name = $address_field['name']; |
| 45 | 45 | $field_name = "{$field_type}[$field_name]"; |
| 46 | - $wrap_class = getpaid_get_form_element_grid_class( $address_field ); |
|
| 47 | - $wrap_class = esc_attr( "$wrap_class getpaid-address-field-wrapper" ); |
|
| 48 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
| 49 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
| 50 | - $value = ! empty( $user_id ) ? get_user_meta( $user_id, '_' . $address_field['name'], true ) : ''; |
|
| 51 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
| 52 | - |
|
| 53 | - $method_name = 'get_' . str_replace( 'wpinv_', '', $address_field['name'] ); |
|
| 54 | - if ( ! empty( $form->invoice ) && is_callable( array( $form->invoice, $method_name ) ) ) { |
|
| 55 | - $value = call_user_func( array( $form->invoice, $method_name ) ); |
|
| 46 | + $wrap_class = getpaid_get_form_element_grid_class($address_field); |
|
| 47 | + $wrap_class = esc_attr("$wrap_class getpaid-address-field-wrapper"); |
|
| 48 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
| 49 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
| 50 | + $value = !empty($user_id) ? get_user_meta($user_id, '_' . $address_field['name'], true) : ''; |
|
| 51 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
| 52 | + |
|
| 53 | + $method_name = 'get_' . str_replace('wpinv_', '', $address_field['name']); |
|
| 54 | + if (!empty($form->invoice) && is_callable(array($form->invoice, $method_name))) { |
|
| 55 | + $value = call_user_func(array($form->invoice, $method_name)); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - if ( empty( $value ) && 'wpinv_first_name' === $address_field['name'] && ! empty( $user ) ) { |
|
| 58 | + if (empty($value) && 'wpinv_first_name' === $address_field['name'] && !empty($user)) { |
|
| 59 | 59 | $value = $user->first_name; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - if ( empty( $value ) && 'wpinv_last_name' === $address_field['name'] && ! empty( $user ) ) { |
|
| 62 | + if (empty($value) && 'wpinv_last_name' === $address_field['name'] && !empty($user)) { |
|
| 63 | 63 | $value = $user->last_name; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - if ( ! empty( $address_field['required'] ) ) { |
|
| 66 | + if (!empty($address_field['required'])) { |
|
| 67 | 67 | $label .= "<span class='text-danger'> *</span>"; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | // Display the country. |
| 71 | - if ( 'wpinv_country' === $address_field['name'] ) { |
|
| 71 | + if ('wpinv_country' === $address_field['name']) { |
|
| 72 | 72 | |
| 73 | - echo "<div class='form-group mb-3 " . esc_attr( $wrap_class ) . " getpaid-address-field-wrapper__country'"; |
|
| 73 | + echo "<div class='form-group mb-3 " . esc_attr($wrap_class) . " getpaid-address-field-wrapper__country'"; |
|
| 74 | 74 | |
| 75 | 75 | aui()->select( |
| 76 | 76 | array( |
| 77 | 77 | 'options' => wpinv_get_country_list(), |
| 78 | - 'name' => esc_attr( $field_name ), |
|
| 79 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 80 | - 'value' => esc_attr( $country ), |
|
| 78 | + 'name' => esc_attr($field_name), |
|
| 79 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
| 80 | + 'value' => esc_attr($country), |
|
| 81 | 81 | 'placeholder' => $placeholder, |
| 82 | - 'required' => ! empty( $address_field['required'] ), |
|
| 83 | - 'label' => wp_kses_post( $label ), |
|
| 82 | + 'required' => !empty($address_field['required']), |
|
| 83 | + 'label' => wp_kses_post($label), |
|
| 84 | 84 | 'label_type' => 'vertical', |
| 85 | 85 | 'help_text' => $description, |
| 86 | 86 | 'class' => 'getpaid-address-field wpinv_country', |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | true |
| 95 | 95 | ); |
| 96 | 96 | |
| 97 | - if ( wpinv_should_validate_vat_number() ) { |
|
| 97 | + if (wpinv_should_validate_vat_number()) { |
|
| 98 | 98 | |
| 99 | 99 | aui()->input( |
| 100 | 100 | array( |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | 'id' => "shipping-toggle$uniqid", |
| 104 | 104 | 'wrap_class' => 'getpaid-address-field-wrapper__address-confirm mt-1 d-none', |
| 105 | 105 | 'required' => false, |
| 106 | - 'label' => __( 'I certify that I live in the country selected above', 'invoicing' ) . "<span class='text-danger'> *</span>", |
|
| 106 | + 'label' => __('I certify that I live in the country selected above', 'invoicing') . "<span class='text-danger'> *</span>", |
|
| 107 | 107 | 'value' => 1, |
| 108 | 108 | 'checked' => true, |
| 109 | 109 | 'class' => 'w-auto', |
@@ -118,9 +118,9 @@ discard block |
||
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | // Display the state. |
| 121 | - elseif ( 'wpinv_state' == $address_field['name'] ) { |
|
| 121 | + elseif ('wpinv_state' == $address_field['name']) { |
|
| 122 | 122 | |
| 123 | - if ( empty( $value ) ) { |
|
| 123 | + if (empty($value)) { |
|
| 124 | 124 | $value = wpinv_get_default_state(); |
| 125 | 125 | } |
| 126 | 126 | |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | $placeholder, |
| 131 | 131 | $label, |
| 132 | 132 | $description, |
| 133 | - ! empty( $address_field['required'] ), |
|
| 133 | + !empty($address_field['required']), |
|
| 134 | 134 | $wrap_class, |
| 135 | 135 | $field_name, |
| 136 | 136 | true |
@@ -138,8 +138,8 @@ discard block |
||
| 138 | 138 | |
| 139 | 139 | } else { |
| 140 | 140 | |
| 141 | - $key = str_replace( 'wpinv_', '', $address_field['name'] ); |
|
| 142 | - $key = esc_attr( str_replace( '_', '-', $key ) ); |
|
| 141 | + $key = str_replace('wpinv_', '', $address_field['name']); |
|
| 142 | + $key = esc_attr(str_replace('_', '-', $key)); |
|
| 143 | 143 | $autocomplete = ''; |
| 144 | 144 | $replacements = array( |
| 145 | 145 | 'zip' => 'postal-code', |
@@ -152,37 +152,37 @@ discard block |
||
| 152 | 152 | ); |
| 153 | 153 | |
| 154 | 154 | |
| 155 | - if ( isset( $replacements[ $key ] ) ) { |
|
| 155 | + if (isset($replacements[$key])) { |
|
| 156 | 156 | $autocomplete = array( |
| 157 | - 'autocomplete' => "$field_type {$replacements[ $key ]}", |
|
| 157 | + 'autocomplete' => "$field_type {$replacements[$key]}", |
|
| 158 | 158 | ); |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | $append = ''; |
| 162 | 162 | |
| 163 | - if ( 'billing' === $field_type && wpinv_should_validate_vat_number() && 'vat-number' === $key ) { |
|
| 164 | - $valid = esc_attr__( 'Valid', 'invoicing' ); |
|
| 165 | - $invalid = esc_attr__( 'Invalid', 'invoicing' ); |
|
| 166 | - $validate = esc_attr__( 'Validate', 'invoicing' ); |
|
| 163 | + if ('billing' === $field_type && wpinv_should_validate_vat_number() && 'vat-number' === $key) { |
|
| 164 | + $valid = esc_attr__('Valid', 'invoicing'); |
|
| 165 | + $invalid = esc_attr__('Invalid', 'invoicing'); |
|
| 166 | + $validate = esc_attr__('Validate', 'invoicing'); |
|
| 167 | 167 | $append = "<span class='btn btn-primary getpaid-vat-number-validate' data-valid='$valid' data-invalid='$invalid' data-validate='$validate'>$validate</span>"; |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - if ( 'billing' === $field_type ) { |
|
| 171 | - $description .= '<div class="getpaid-error-' . esc_attr( $field_name ) . ' getpaid-custom-payment-form-errors alert alert-danger d-none"></div>'; |
|
| 170 | + if ('billing' === $field_type) { |
|
| 171 | + $description .= '<div class="getpaid-error-' . esc_attr($field_name) . ' getpaid-custom-payment-form-errors alert alert-danger d-none"></div>'; |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | aui()->input( |
| 175 | 175 | array( |
| 176 | - 'name' => esc_attr( $field_name ), |
|
| 177 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 178 | - 'required' => ! empty( $address_field['required'] ), |
|
| 176 | + 'name' => esc_attr($field_name), |
|
| 177 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
| 178 | + 'required' => !empty($address_field['required']), |
|
| 179 | 179 | 'placeholder' => $placeholder, |
| 180 | - 'label' => wp_kses_post( $label ), |
|
| 180 | + 'label' => wp_kses_post($label), |
|
| 181 | 181 | 'label_type' => 'vertical', |
| 182 | 182 | 'help_text' => $description, |
| 183 | 183 | 'type' => 'text', |
| 184 | - 'value' => apply_filters( 'getpaid_payment_form_value_' . $address_field['name'], esc_attr( $value ) ), |
|
| 185 | - 'class' => 'getpaid-address-field ' . esc_attr( $address_field['name'] ), |
|
| 184 | + 'value' => apply_filters('getpaid_payment_form_value_' . $address_field['name'], esc_attr($value)), |
|
| 185 | + 'class' => 'getpaid-address-field ' . esc_attr($address_field['name']), |
|
| 186 | 186 | 'wrap_class' => "$wrap_class getpaid-address-field-wrapper__$key", |
| 187 | 187 | 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__' . $key, |
| 188 | 188 | 'extra_attributes' => $autocomplete, |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - do_action( 'getpaid_payment_form_address_field_after_' . $address_field['name'], $field_type, $address_field ); |
|
| 196 | + do_action('getpaid_payment_form_address_field_after_' . $address_field['name'], $field_type, $address_field); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | echo '</div>'; |
@@ -7,57 +7,57 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -if ( empty( $fields ) ) { |
|
| 12 | +if (empty($fields)) { |
|
| 13 | 13 | return; |
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | // A prefix for all ids (so that a form can be included in the same page multiple times). |
| 17 | -$uniqid = uniqid( '_' ); |
|
| 17 | +$uniqid = uniqid('_'); |
|
| 18 | 18 | |
| 19 | 19 | // Prepare the user's country. |
| 20 | -if ( ! empty( $form->invoice ) ) { |
|
| 20 | +if (!empty($form->invoice)) { |
|
| 21 | 21 | $country = $form->invoice->get_country(); |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | -if ( empty( $country ) ) { |
|
| 25 | - $country = empty( $country ) ? getpaid_get_ip_country() : $country; |
|
| 26 | - $country = empty( $country ) ? wpinv_get_default_country() : $country; |
|
| 24 | +if (empty($country)) { |
|
| 25 | + $country = empty($country) ? getpaid_get_ip_country() : $country; |
|
| 26 | + $country = empty($country) ? wpinv_get_default_country() : $country; |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | // A prefix for all ids (so that a form can be included in the same page multiple times). |
| 30 | -$uniqid = uniqid( '_' ); |
|
| 30 | +$uniqid = uniqid('_'); |
|
| 31 | 31 | |
| 32 | -$address_type = empty( $address_type ) ? 'billing' : $address_type; |
|
| 32 | +$address_type = empty($address_type) ? 'billing' : $address_type; |
|
| 33 | 33 | |
| 34 | 34 | ?> |
| 35 | 35 | |
| 36 | -<?php if ( 'both' === $address_type ) : ?> |
|
| 36 | +<?php if ('both' === $address_type) : ?> |
|
| 37 | 37 | |
| 38 | 38 | <!-- Start Billing/Shipping Address Title --> |
| 39 | 39 | <h4 class="mb-3 getpaid-shipping-billing-address-title"> |
| 40 | - <?php esc_html_e( 'Billing / Shipping Address', 'invoicing' ); ?> |
|
| 40 | + <?php esc_html_e('Billing / Shipping Address', 'invoicing'); ?> |
|
| 41 | 41 | </h4> |
| 42 | 42 | <!-- End Billing Address Title --> |
| 43 | 43 | |
| 44 | 44 | <!-- Start Billing Address Title --> |
| 45 | 45 | <h4 class="mb-3 getpaid-billing-address-title"> |
| 46 | - <?php esc_html_e( 'Billing Address', 'invoicing' ); ?> |
|
| 46 | + <?php esc_html_e('Billing Address', 'invoicing'); ?> |
|
| 47 | 47 | </h4> |
| 48 | 48 | <!-- End Billing Address Title --> |
| 49 | 49 | |
| 50 | 50 | <?php endif; ?> |
| 51 | 51 | |
| 52 | 52 | |
| 53 | -<?php if ( 'both' === $address_type || 'billing' === $address_type ) : ?> |
|
| 53 | +<?php if ('both' === $address_type || 'billing' === $address_type) : ?> |
|
| 54 | 54 | |
| 55 | 55 | <!-- Start Billing Address --> |
| 56 | 56 | <div class="getpaid-billing-address-wrapper"> |
| 57 | 57 | <?php |
| 58 | 58 | $field_type = 'billing'; |
| 59 | - include plugin_dir_path( __FILE__ ) . 'address-fields.php'; |
|
| 60 | - do_action( 'getpaid_after_payment_form_billing_fields', $form ); |
|
| 59 | + include plugin_dir_path(__FILE__) . 'address-fields.php'; |
|
| 60 | + do_action('getpaid_after_payment_form_billing_fields', $form); |
|
| 61 | 61 | ?> |
| 62 | 62 | </div> |
| 63 | 63 | <!-- End Billing Address --> |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | <?php endif; ?> |
| 66 | 66 | |
| 67 | 67 | |
| 68 | -<?php if ( 'both' === $address_type ) : ?> |
|
| 68 | +<?php if ('both' === $address_type) : ?> |
|
| 69 | 69 | |
| 70 | 70 | |
| 71 | 71 | <?php |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | 'name' => 'same-shipping-address', |
| 77 | 77 | 'id' => "shipping-toggle$uniqid", |
| 78 | 78 | 'required' => false, |
| 79 | - 'label' => empty( $shipping_address_toggle ) ? esc_html__( 'Same billing & shipping address.', 'invoicing' ) : wp_kses_post( $shipping_address_toggle ), |
|
| 79 | + 'label' => empty($shipping_address_toggle) ? esc_html__('Same billing & shipping address.', 'invoicing') : wp_kses_post($shipping_address_toggle), |
|
| 80 | 80 | 'value' => 1, |
| 81 | 81 | 'checked' => true, |
| 82 | 82 | 'class' => 'w-auto', |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | <!-- Start Shipping Address Title --> |
| 91 | 91 | <h4 class="mb-3 getpaid-shipping-address-title"> |
| 92 | - <?php esc_html_e( 'Shipping Address', 'invoicing' ); ?> |
|
| 92 | + <?php esc_html_e('Shipping Address', 'invoicing'); ?> |
|
| 93 | 93 | </h4> |
| 94 | 94 | <!-- End Shipping Address Title --> |
| 95 | 95 | |
@@ -98,14 +98,14 @@ discard block |
||
| 98 | 98 | |
| 99 | 99 | |
| 100 | 100 | |
| 101 | -<?php if ( 'both' === $address_type || 'shipping' === $address_type ) : ?> |
|
| 101 | +<?php if ('both' === $address_type || 'shipping' === $address_type) : ?> |
|
| 102 | 102 | |
| 103 | 103 | <!-- Start Shipping Address --> |
| 104 | 104 | <div class="getpaid-shipping-address-wrapper"> |
| 105 | 105 | <?php |
| 106 | 106 | $field_type = 'shipping'; |
| 107 | - include plugin_dir_path( __FILE__ ) . 'address-fields.php'; |
|
| 108 | - do_action( 'getpaid_after_payment_form_shipping_fields', $form ); |
|
| 107 | + include plugin_dir_path(__FILE__) . 'address-fields.php'; |
|
| 108 | + do_action('getpaid_after_payment_form_shipping_fields', $form); |
|
| 109 | 109 | ?> |
| 110 | 110 | </div> |
| 111 | 111 | <!-- End Shipping Address --> |
@@ -7,37 +7,37 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | $value = $query_value; |
| 13 | 13 | $class = ''; |
| 14 | 14 | |
| 15 | -if ( ! empty( $form->invoice ) ) { |
|
| 16 | - $value = sanitize_email( $form->invoice->get_email() ); |
|
| 17 | -} elseif ( is_user_logged_in() ) { |
|
| 15 | +if (!empty($form->invoice)) { |
|
| 16 | + $value = sanitize_email($form->invoice->get_email()); |
|
| 17 | +} elseif (is_user_logged_in()) { |
|
| 18 | 18 | $user = wp_get_current_user(); |
| 19 | - $value = sanitize_email( $user->user_email ); |
|
| 19 | + $value = sanitize_email($user->user_email); |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | -if ( ! empty( $value ) && ! empty( $hide_billing_email ) ) { |
|
| 22 | +if (!empty($value) && !empty($hide_billing_email)) { |
|
| 23 | 23 | $class = 'd-none'; |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | -do_action( 'getpaid_before_payment_form_billing_email', $form ); |
|
| 26 | +do_action('getpaid_before_payment_form_billing_email', $form); |
|
| 27 | 27 | |
| 28 | -echo "<span class='" . esc_attr( $class ) . "'>"; |
|
| 28 | +echo "<span class='" . esc_attr($class) . "'>"; |
|
| 29 | 29 | |
| 30 | 30 | aui()->input( |
| 31 | 31 | array( |
| 32 | 32 | 'name' => 'billing_email', |
| 33 | - 'id' => esc_attr( $element_id ), |
|
| 34 | - 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 35 | - 'required' => ! empty( $required ), |
|
| 36 | - 'label' => empty( $label ) ? '' : wp_kses_post( $label ) . '<span class="text-danger"> *</span>', |
|
| 33 | + 'id' => esc_attr($element_id), |
|
| 34 | + 'placeholder' => empty($placeholder) ? '' : esc_attr($placeholder), |
|
| 35 | + 'required' => !empty($required), |
|
| 36 | + 'label' => empty($label) ? '' : wp_kses_post($label) . '<span class="text-danger"> *</span>', |
|
| 37 | 37 | 'label_type' => 'vertical', |
| 38 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 38 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
| 39 | 39 | 'type' => 'email', |
| 40 | - 'value' => apply_filters ( 'getpaid_payment_form_billing_email_value', $value ), |
|
| 40 | + 'value' => apply_filters('getpaid_payment_form_billing_email_value', $value), |
|
| 41 | 41 | 'class' => 'wpinv_billing_email getpaid-refresh-on-change', |
| 42 | 42 | 'extra_attributes' => array( |
| 43 | 43 | 'autocomplete' => 'billing email', |
@@ -48,4 +48,4 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | echo '</span>'; |
| 50 | 50 | |
| 51 | -do_action( 'getpaid_after_payment_form_billing_email', $form ); |
|
| 51 | +do_action('getpaid_after_payment_form_billing_email', $form); |
|
@@ -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 | * Returns an array of discount type. |
@@ -17,8 +17,8 @@ discard block |
||
| 17 | 17 | return apply_filters( |
| 18 | 18 | 'wpinv_discount_types', |
| 19 | 19 | array( |
| 20 | - 'percent' => __( 'Percentage', 'invoicing' ), |
|
| 21 | - 'flat' => __( 'Flat Amount', 'invoicing' ), |
|
| 20 | + 'percent' => __('Percentage', 'invoicing'), |
|
| 21 | + 'flat' => __('Flat Amount', 'invoicing'), |
|
| 22 | 22 | ) |
| 23 | 23 | ); |
| 24 | 24 | } |
@@ -28,46 +28,46 @@ discard block |
||
| 28 | 28 | * |
| 29 | 29 | * @return string |
| 30 | 30 | */ |
| 31 | -function wpinv_get_discount_type_name( $type = '' ) { |
|
| 31 | +function wpinv_get_discount_type_name($type = '') { |
|
| 32 | 32 | $types = wpinv_get_discount_types(); |
| 33 | - return isset( $types[ $type ] ) ? $types[ $type ] : $type; |
|
| 33 | + return isset($types[$type]) ? $types[$type] : $type; |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | 37 | * Deletes a discount via the admin page. |
| 38 | 38 | * |
| 39 | 39 | */ |
| 40 | -function wpinv_delete_discount( $data ) { |
|
| 40 | +function wpinv_delete_discount($data) { |
|
| 41 | 41 | |
| 42 | - $discount = new WPInv_Discount( absint( $data['discount'] ) ); |
|
| 43 | - $discount->delete( true ); |
|
| 42 | + $discount = new WPInv_Discount(absint($data['discount'])); |
|
| 43 | + $discount->delete(true); |
|
| 44 | 44 | |
| 45 | 45 | } |
| 46 | -add_action( 'getpaid_authenticated_admin_action_delete_discount', 'wpinv_delete_discount' ); |
|
| 46 | +add_action('getpaid_authenticated_admin_action_delete_discount', 'wpinv_delete_discount'); |
|
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * Deactivates a discount via the admin page. |
| 50 | 50 | */ |
| 51 | -function wpinv_activate_discount( $data ) { |
|
| 51 | +function wpinv_activate_discount($data) { |
|
| 52 | 52 | |
| 53 | - $discount = new WPInv_Discount( absint( $data['discount'] ) ); |
|
| 54 | - $discount->set_status( 'publish' ); |
|
| 53 | + $discount = new WPInv_Discount(absint($data['discount'])); |
|
| 54 | + $discount->set_status('publish'); |
|
| 55 | 55 | $discount->save(); |
| 56 | 56 | |
| 57 | 57 | } |
| 58 | -add_action( 'getpaid_authenticated_admin_action_activate_discount', 'wpinv_activate_discount' ); |
|
| 58 | +add_action('getpaid_authenticated_admin_action_activate_discount', 'wpinv_activate_discount'); |
|
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * Activates a discount via the admin page. |
| 62 | 62 | */ |
| 63 | -function wpinv_deactivate_discount( $data ) { |
|
| 63 | +function wpinv_deactivate_discount($data) { |
|
| 64 | 64 | |
| 65 | - $discount = new WPInv_Discount( absint( $data['discount'] ) ); |
|
| 66 | - $discount->set_status( 'pending' ); |
|
| 65 | + $discount = new WPInv_Discount(absint($data['discount'])); |
|
| 66 | + $discount->set_status('pending'); |
|
| 67 | 67 | $discount->save(); |
| 68 | 68 | |
| 69 | 69 | } |
| 70 | -add_action( 'getpaid_authenticated_admin_action_deactivate_discount', 'wpinv_deactivate_discount' ); |
|
| 70 | +add_action('getpaid_authenticated_admin_action_deactivate_discount', 'wpinv_deactivate_discount'); |
|
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * Fetches a discount object. |
@@ -76,8 +76,8 @@ discard block |
||
| 76 | 76 | * @since 1.0.15 |
| 77 | 77 | * @return WPInv_Discount |
| 78 | 78 | */ |
| 79 | -function wpinv_get_discount( $discount ) { |
|
| 80 | - return new WPInv_Discount( $discount ); |
|
| 79 | +function wpinv_get_discount($discount) { |
|
| 80 | + return new WPInv_Discount($discount); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
@@ -87,8 +87,8 @@ discard block |
||
| 87 | 87 | * @since 1.0.15 |
| 88 | 88 | * @return WPInv_Discount |
| 89 | 89 | */ |
| 90 | -function wpinv_get_discount_obj( $discount = 0 ) { |
|
| 91 | - return new WPInv_Discount( $discount ); |
|
| 90 | +function wpinv_get_discount_obj($discount = 0) { |
|
| 91 | + return new WPInv_Discount($discount); |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | /** |
@@ -98,10 +98,10 @@ discard block |
||
| 98 | 98 | * @param string|int $value The field value |
| 99 | 99 | * @return bool|WPInv_Discount |
| 100 | 100 | */ |
| 101 | -function wpinv_get_discount_by( $deprecated = null, $value = '' ) { |
|
| 102 | - $discount = new WPInv_Discount( $value ); |
|
| 101 | +function wpinv_get_discount_by($deprecated = null, $value = '') { |
|
| 102 | + $discount = new WPInv_Discount($value); |
|
| 103 | 103 | |
| 104 | - if ( $discount->get_id() != 0 ) { |
|
| 104 | + if ($discount->get_id() != 0) { |
|
| 105 | 105 | return $discount; |
| 106 | 106 | } |
| 107 | 107 | |
@@ -116,9 +116,9 @@ discard block |
||
| 116 | 116 | function wpinv_get_discount_statuses() { |
| 117 | 117 | |
| 118 | 118 | return array( |
| 119 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
| 120 | - 'publish' => __( 'Active', 'invoicing' ), |
|
| 121 | - 'inactive' => __( 'Inactive', 'invoicing' ), |
|
| 119 | + 'expired' => __('Expired', 'invoicing'), |
|
| 120 | + 'publish' => __('Active', 'invoicing'), |
|
| 121 | + 'inactive' => __('Inactive', 'invoicing'), |
|
| 122 | 122 | ); |
| 123 | 123 | |
| 124 | 124 | } |
@@ -126,9 +126,9 @@ discard block |
||
| 126 | 126 | /** |
| 127 | 127 | * Retrieves an invoice status label. |
| 128 | 128 | */ |
| 129 | -function wpinv_discount_status( $status ) { |
|
| 129 | +function wpinv_discount_status($status) { |
|
| 130 | 130 | $statuses = wpinv_get_discount_statuses(); |
| 131 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : __( 'Inactive', 'invoicing' ); |
|
| 131 | + return isset($statuses[$status]) ? $statuses[$status] : __('Inactive', 'invoicing'); |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
@@ -138,12 +138,12 @@ discard block |
||
| 138 | 138 | * @param int|array|string|WPInv_Discount $code discount data, object, ID or code. |
| 139 | 139 | * @return bool |
| 140 | 140 | */ |
| 141 | -function wpinv_discount_is_recurring( $discount = 0, $code = 0 ) { |
|
| 141 | +function wpinv_discount_is_recurring($discount = 0, $code = 0) { |
|
| 142 | 142 | |
| 143 | - if ( ! empty( $discount ) ) { |
|
| 144 | - $discount = wpinv_get_discount_obj( $discount ); |
|
| 143 | + if (!empty($discount)) { |
|
| 144 | + $discount = wpinv_get_discount_obj($discount); |
|
| 145 | 145 | } else { |
| 146 | - $discount = wpinv_get_discount_obj( $code ); |
|
| 146 | + $discount = wpinv_get_discount_obj($code); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | return $discount->get_is_recurring(); |
@@ -158,35 +158,35 @@ discard block |
||
| 158 | 158 | * @param WPInv_Discount $discount |
| 159 | 159 | * @return array |
| 160 | 160 | */ |
| 161 | -function getpaid_calculate_invoice_discount( $invoice, $discount ) { |
|
| 161 | +function getpaid_calculate_invoice_discount($invoice, $discount) { |
|
| 162 | 162 | |
| 163 | 163 | $initial_discount = 0; |
| 164 | 164 | $recurring_discount = 0; |
| 165 | 165 | |
| 166 | - foreach ( $invoice->get_items() as $item ) { |
|
| 166 | + foreach ($invoice->get_items() as $item) { |
|
| 167 | 167 | |
| 168 | 168 | // Abort if it is not valid for this item. |
| 169 | - if ( ! $discount->is_valid_for_items( array( $item->get_id() ) ) ) { |
|
| 169 | + if (!$discount->is_valid_for_items(array($item->get_id()))) { |
|
| 170 | 170 | continue; |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | // Calculate the initial amount... |
| 174 | - $item_discount = $discount->get_discounted_amount( $item->get_sub_total() ); |
|
| 174 | + $item_discount = $discount->get_discounted_amount($item->get_sub_total()); |
|
| 175 | 175 | $recurring_item_discount = 0; |
| 176 | 176 | |
| 177 | 177 | // ... and maybe the recurring amount. |
| 178 | - if ( $item->is_recurring() && $discount->is_recurring() ) { |
|
| 179 | - $recurring_item_discount = $discount->get_discounted_amount( $item->get_recurring_sub_total() ); |
|
| 178 | + if ($item->is_recurring() && $discount->is_recurring()) { |
|
| 179 | + $recurring_item_discount = $discount->get_discounted_amount($item->get_recurring_sub_total()); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | // Discount should not exceed discounted amount. |
| 183 | - if ( ! $discount->is_type( 'percent' ) ) { |
|
| 183 | + if (!$discount->is_type('percent')) { |
|
| 184 | 184 | |
| 185 | - if ( ( $initial_discount + $item_discount ) > $discount->get_amount() ) { |
|
| 185 | + if (($initial_discount + $item_discount) > $discount->get_amount()) { |
|
| 186 | 186 | $item_discount = $discount->get_amount() - $initial_discount; |
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - if ( ( $recurring_discount + $recurring_item_discount ) > $discount->get_amount() ) { |
|
| 189 | + if (($recurring_discount + $recurring_item_discount) > $discount->get_amount()) { |
|
| 190 | 190 | $recurring_item_discount = $discount->get_amount() - $recurring_discount; |
| 191 | 191 | } |
| 192 | 192 | } |
@@ -218,10 +218,10 @@ discard block |
||
| 218 | 218 | array( |
| 219 | 219 | 'post_type' => 'wpi_discount', |
| 220 | 220 | 'numberposts' => 1, |
| 221 | - 'fields' => array( 'ids' ), |
|
| 221 | + 'fields' => array('ids'), |
|
| 222 | 222 | ) |
| 223 | 223 | ); |
| 224 | 224 | |
| 225 | - return ! empty( $discounts ); |
|
| 225 | + return !empty($discounts); |
|
| 226 | 226 | |
| 227 | 227 | } |
@@ -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,16 +281,16 @@ 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() ) { |
|
| 287 | + if ($item->can_purchase()) { |
|
| 288 | 288 | |
| 289 | 289 | $value = (float) $value; |
| 290 | - $item->set_quantity( $value ); |
|
| 291 | - if ( 0 == $value ) { |
|
| 292 | - $item->set_quantity( 1 ); |
|
| 293 | - $item->set_allow_quantities( true ); |
|
| 290 | + $item->set_quantity($value); |
|
| 291 | + if (0 == $value) { |
|
| 292 | + $item->set_quantity(1); |
|
| 293 | + $item->set_allow_quantities(true); |
|
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | $prepared[] = $item; |
@@ -300,33 +300,33 @@ discard block |
||
| 300 | 300 | } |
| 301 | 301 | |
| 302 | 302 | // Items saved via payment forms editor. |
| 303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 303 | + if (is_array($value) && isset($value['id'])) { |
|
| 304 | 304 | |
| 305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 305 | + $item = new GetPaid_Form_Item($value['id']); |
|
| 306 | 306 | |
| 307 | - if ( ! $item->can_purchase() ) { |
|
| 307 | + if (!$item->can_purchase()) { |
|
| 308 | 308 | continue; |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | 311 | // Sub-total (Cart items). |
| 312 | - if ( isset( $value['subtotal'] ) ) { |
|
| 313 | - $item->set_price( $value['subtotal'] ); |
|
| 312 | + if (isset($value['subtotal'])) { |
|
| 313 | + $item->set_price($value['subtotal']); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | - if ( isset( $value['quantity'] ) ) { |
|
| 317 | - $item->set_quantity( $value['quantity'] ); |
|
| 316 | + if (isset($value['quantity'])) { |
|
| 317 | + $item->set_quantity($value['quantity']); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 320 | + if (isset($value['allow_quantities'])) { |
|
| 321 | + $item->set_allow_quantities($value['allow_quantities']); |
|
| 322 | 322 | } |
| 323 | 323 | |
| 324 | - if ( isset( $value['required'] ) ) { |
|
| 325 | - $item->set_is_required( $value['required'] ); |
|
| 324 | + if (isset($value['required'])) { |
|
| 325 | + $item->set_is_required($value['required']); |
|
| 326 | 326 | } |
| 327 | 327 | |
| 328 | - if ( isset( $value['description'] ) ) { |
|
| 329 | - $item->set_custom_description( $value['description'] ); |
|
| 328 | + if (isset($value['description'])) { |
|
| 329 | + $item->set_custom_description($value['description']); |
|
| 330 | 330 | } |
| 331 | 331 | |
| 332 | 332 | $prepared[] = $item; |
@@ -335,14 +335,14 @@ discard block |
||
| 335 | 335 | } |
| 336 | 336 | |
| 337 | 337 | // $item_id => array( 'price' => 10 ) (item variations) |
| 338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | - $item = new GetPaid_Form_Item( $key ); |
|
| 338 | + if (is_numeric($key) && is_array($value)) { |
|
| 339 | + $item = new GetPaid_Form_Item($key); |
|
| 340 | 340 | |
| 341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | - $item->set_price( $value['price'] ); |
|
| 341 | + if (isset($value['price']) && $item->user_can_set_their_price()) { |
|
| 342 | + $item->set_price($value['price']); |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | - if ( $item->can_purchase() ) { |
|
| 345 | + if ($item->can_purchase()) { |
|
| 346 | 346 | $prepared[] = $item; |
| 347 | 347 | } |
| 348 | 348 | |
@@ -350,12 +350,12 @@ discard block |
||
| 350 | 350 | } |
| 351 | 351 | } |
| 352 | 352 | |
| 353 | - if ( 'objects' == $return && 'view' == $context ) { |
|
| 353 | + if ('objects' == $return && 'view' == $context) { |
|
| 354 | 354 | return $prepared; |
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | $items = array(); |
| 358 | - foreach ( $prepared as $item ) { |
|
| 358 | + foreach ($prepared as $item) { |
|
| 359 | 359 | $items[] = $item->prepare_data_for_use(); |
| 360 | 360 | } |
| 361 | 361 | |
@@ -369,14 +369,14 @@ discard block |
||
| 369 | 369 | * @param int $item_id The item id to return. |
| 370 | 370 | * @return GetPaid_Form_Item|bool |
| 371 | 371 | */ |
| 372 | - public function get_item( $item_id ) { |
|
| 372 | + public function get_item($item_id) { |
|
| 373 | 373 | |
| 374 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 374 | + if (empty($item_id) || !is_numeric($item_id)) { |
|
| 375 | 375 | return false; |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | - foreach ( $this->get_items() as $item ) { |
|
| 379 | - if ( $item->get_id() == (int) $item_id ) { |
|
| 378 | + foreach ($this->get_items() as $item) { |
|
| 379 | + if ($item->get_id() == (int) $item_id) { |
|
| 380 | 380 | return $item; |
| 381 | 381 | } |
| 382 | 382 | } |
@@ -392,15 +392,15 @@ discard block |
||
| 392 | 392 | * @param string $element_type The element type to return. |
| 393 | 393 | * @return array|bool |
| 394 | 394 | */ |
| 395 | - public function get_element_type( $element_type ) { |
|
| 395 | + public function get_element_type($element_type) { |
|
| 396 | 396 | |
| 397 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 397 | + if (empty($element_type) || !is_scalar($element_type)) { |
|
| 398 | 398 | return false; |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 401 | + foreach ($this->get_prop('elements') as $element) { |
|
| 402 | 402 | |
| 403 | - if ( $element['type'] === $element_type ) { |
|
| 403 | + if ($element['type'] === $element_type) { |
|
| 404 | 404 | return $element; |
| 405 | 405 | } |
| 406 | 406 | } |
@@ -416,8 +416,8 @@ discard block |
||
| 416 | 416 | * @param string $context View or edit context. |
| 417 | 417 | * @return float |
| 418 | 418 | */ |
| 419 | - public function get_earned( $context = 'view' ) { |
|
| 420 | - return $this->get_prop( 'earned', $context ); |
|
| 419 | + public function get_earned($context = 'view') { |
|
| 420 | + return $this->get_prop('earned', $context); |
|
| 421 | 421 | } |
| 422 | 422 | |
| 423 | 423 | /** |
@@ -427,8 +427,8 @@ discard block |
||
| 427 | 427 | * @param string $context View or edit context. |
| 428 | 428 | * @return float |
| 429 | 429 | */ |
| 430 | - public function get_refunded( $context = 'view' ) { |
|
| 431 | - return $this->get_prop( 'refunded', $context ); |
|
| 430 | + public function get_refunded($context = 'view') { |
|
| 431 | + return $this->get_prop('refunded', $context); |
|
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | /** |
@@ -438,8 +438,8 @@ discard block |
||
| 438 | 438 | * @param string $context View or edit context. |
| 439 | 439 | * @return float |
| 440 | 440 | */ |
| 441 | - public function get_cancelled( $context = 'view' ) { |
|
| 442 | - return $this->get_prop( 'cancelled', $context ); |
|
| 441 | + public function get_cancelled($context = 'view') { |
|
| 442 | + return $this->get_prop('cancelled', $context); |
|
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | /** |
@@ -449,8 +449,8 @@ discard block |
||
| 449 | 449 | * @param string $context View or edit context. |
| 450 | 450 | * @return float |
| 451 | 451 | */ |
| 452 | - public function get_failed( $context = 'view' ) { |
|
| 453 | - return $this->get_prop( 'failed', $context ); |
|
| 452 | + public function get_failed($context = 'view') { |
|
| 453 | + return $this->get_prop('failed', $context); |
|
| 454 | 454 | } |
| 455 | 455 | |
| 456 | 456 | /** |
@@ -461,8 +461,8 @@ discard block |
||
| 461 | 461 | * @return string |
| 462 | 462 | */ |
| 463 | 463 | public function get_currency() { |
| 464 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 465 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 464 | + $currency = empty($this->invoice) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 465 | + return apply_filters('getpaid-payment-form-currency', $currency, $this); |
|
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | /* |
@@ -480,8 +480,8 @@ discard block |
||
| 480 | 480 | * |
| 481 | 481 | * @since 1.0.19 |
| 482 | 482 | */ |
| 483 | - public function set_version( $value ) { |
|
| 484 | - $this->set_prop( 'version', $value ); |
|
| 483 | + public function set_version($value) { |
|
| 484 | + $this->set_prop('version', $value); |
|
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | /** |
@@ -491,11 +491,11 @@ discard block |
||
| 491 | 491 | * @param string $value Value to set. |
| 492 | 492 | * @return bool Whether or not the date was set. |
| 493 | 493 | */ |
| 494 | - public function set_date_created( $value ) { |
|
| 495 | - $date = strtotime( $value ); |
|
| 494 | + public function set_date_created($value) { |
|
| 495 | + $date = strtotime($value); |
|
| 496 | 496 | |
| 497 | - if ( $date ) { |
|
| 498 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
| 497 | + if ($date) { |
|
| 498 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
| 499 | 499 | return true; |
| 500 | 500 | } |
| 501 | 501 | |
@@ -510,11 +510,11 @@ discard block |
||
| 510 | 510 | * @param string $value Value to set. |
| 511 | 511 | * @return bool Whether or not the date was set. |
| 512 | 512 | */ |
| 513 | - public function set_date_modified( $value ) { |
|
| 514 | - $date = strtotime( $value ); |
|
| 513 | + public function set_date_modified($value) { |
|
| 514 | + $date = strtotime($value); |
|
| 515 | 515 | |
| 516 | - if ( $date ) { |
|
| 517 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
| 516 | + if ($date) { |
|
| 517 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
| 518 | 518 | return true; |
| 519 | 519 | } |
| 520 | 520 | |
@@ -528,8 +528,8 @@ discard block |
||
| 528 | 528 | * @since 1.0.19 |
| 529 | 529 | * @param string $value New name. |
| 530 | 530 | */ |
| 531 | - public function set_name( $value ) { |
|
| 532 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 531 | + public function set_name($value) { |
|
| 532 | + $this->set_prop('name', sanitize_text_field($value)); |
|
| 533 | 533 | } |
| 534 | 534 | |
| 535 | 535 | /** |
@@ -538,8 +538,8 @@ discard block |
||
| 538 | 538 | * @since 1.0.19 |
| 539 | 539 | * @param string $value New name. |
| 540 | 540 | */ |
| 541 | - public function set_title( $value ) { |
|
| 542 | - $this->set_name( $value ); |
|
| 541 | + public function set_title($value) { |
|
| 542 | + $this->set_name($value); |
|
| 543 | 543 | } |
| 544 | 544 | |
| 545 | 545 | /** |
@@ -548,8 +548,8 @@ discard block |
||
| 548 | 548 | * @since 1.0.19 |
| 549 | 549 | * @param int $value New author. |
| 550 | 550 | */ |
| 551 | - public function set_author( $value ) { |
|
| 552 | - $this->set_prop( 'author', (int) $value ); |
|
| 551 | + public function set_author($value) { |
|
| 552 | + $this->set_prop('author', (int) $value); |
|
| 553 | 553 | } |
| 554 | 554 | |
| 555 | 555 | /** |
@@ -559,9 +559,9 @@ discard block |
||
| 559 | 559 | * @sinve 2.3.4 Array values sanitized. |
| 560 | 560 | * @param array $value Form elements. |
| 561 | 561 | */ |
| 562 | - public function set_elements( $value ) { |
|
| 563 | - if ( is_array( $value ) ) { |
|
| 564 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 562 | + public function set_elements($value) { |
|
| 563 | + if (is_array($value)) { |
|
| 564 | + $this->set_prop('elements', wp_kses_post_deep($value)); |
|
| 565 | 565 | } |
| 566 | 566 | } |
| 567 | 567 | |
@@ -572,36 +572,36 @@ discard block |
||
| 572 | 572 | * |
| 573 | 573 | * @return mixed |
| 574 | 574 | */ |
| 575 | - public function sanitize_array_values( $value ) { |
|
| 575 | + public function sanitize_array_values($value) { |
|
| 576 | 576 | |
| 577 | 577 | // sanitize |
| 578 | - if ( ! empty( $value ) ) { |
|
| 578 | + if (!empty($value)) { |
|
| 579 | 579 | |
| 580 | - foreach ( $value as $key => $val_arr ) { |
|
| 580 | + foreach ($value as $key => $val_arr) { |
|
| 581 | 581 | |
| 582 | - if ( is_array( $val_arr ) ) { |
|
| 582 | + if (is_array($val_arr)) { |
|
| 583 | 583 | // check if we have sub array items. |
| 584 | 584 | $sub_arr = array(); |
| 585 | - foreach ( $val_arr as $key2 => $val2 ) { |
|
| 586 | - if ( is_array( $val2 ) ) { |
|
| 587 | - $sub_arr[ $key2 ] = $this->sanitize_array_values( $val2 ); |
|
| 588 | - unset( $val_arr[ $key ][ $key2 ] ); |
|
| 585 | + foreach ($val_arr as $key2 => $val2) { |
|
| 586 | + if (is_array($val2)) { |
|
| 587 | + $sub_arr[$key2] = $this->sanitize_array_values($val2); |
|
| 588 | + unset($val_arr[$key][$key2]); |
|
| 589 | 589 | } |
| 590 | 590 | } |
| 591 | 591 | |
| 592 | 592 | // we allow some html in description so we sanitize it separately. |
| 593 | - $help_text = ! empty( $val_arr['description'] ) ? wp_kses_post( $val_arr['description'] ) : ''; |
|
| 593 | + $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
|
| 594 | 594 | |
| 595 | 595 | // sanitize array elements |
| 596 | - $value[ $key ] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 596 | + $value[$key] = array_map('sanitize_text_field', $val_arr); |
|
| 597 | 597 | |
| 598 | 598 | // add back the description if set |
| 599 | - if ( isset( $val_arr['description'] ) ) { |
|
| 600 | -$value[ $key ]['description'] = $help_text;} |
|
| 599 | + if (isset($val_arr['description'])) { |
|
| 600 | +$value[$key]['description'] = $help_text; } |
|
| 601 | 601 | |
| 602 | 602 | // add back sub array items after its been sanitized. |
| 603 | - if ( ! empty( $sub_arr ) ) { |
|
| 604 | - $value[ $key ] = array_merge( $value[ $key ], $sub_arr ); |
|
| 603 | + if (!empty($sub_arr)) { |
|
| 604 | + $value[$key] = array_merge($value[$key], $sub_arr); |
|
| 605 | 605 | } |
| 606 | 606 | } |
| 607 | 607 | } |
@@ -616,9 +616,9 @@ discard block |
||
| 616 | 616 | * @since 1.0.19 |
| 617 | 617 | * @param array $value Form elements. |
| 618 | 618 | */ |
| 619 | - public function set_items( $value ) { |
|
| 620 | - if ( is_array( $value ) ) { |
|
| 621 | - $this->set_prop( 'items', $value ); |
|
| 619 | + public function set_items($value) { |
|
| 620 | + if (is_array($value)) { |
|
| 621 | + $this->set_prop('items', $value); |
|
| 622 | 622 | } |
| 623 | 623 | } |
| 624 | 624 | |
@@ -628,9 +628,9 @@ discard block |
||
| 628 | 628 | * @since 1.0.19 |
| 629 | 629 | * @param float $value Amount earned. |
| 630 | 630 | */ |
| 631 | - public function set_earned( $value ) { |
|
| 632 | - $value = max( (float) $value, 0 ); |
|
| 633 | - $this->set_prop( 'earned', $value ); |
|
| 631 | + public function set_earned($value) { |
|
| 632 | + $value = max((float) $value, 0); |
|
| 633 | + $this->set_prop('earned', $value); |
|
| 634 | 634 | } |
| 635 | 635 | |
| 636 | 636 | /** |
@@ -639,9 +639,9 @@ discard block |
||
| 639 | 639 | * @since 1.0.19 |
| 640 | 640 | * @param float $value Amount refunded. |
| 641 | 641 | */ |
| 642 | - public function set_refunded( $value ) { |
|
| 643 | - $value = max( (float) $value, 0 ); |
|
| 644 | - $this->set_prop( 'refunded', $value ); |
|
| 642 | + public function set_refunded($value) { |
|
| 643 | + $value = max((float) $value, 0); |
|
| 644 | + $this->set_prop('refunded', $value); |
|
| 645 | 645 | } |
| 646 | 646 | |
| 647 | 647 | /** |
@@ -650,9 +650,9 @@ discard block |
||
| 650 | 650 | * @since 1.0.19 |
| 651 | 651 | * @param float $value Amount cancelled. |
| 652 | 652 | */ |
| 653 | - public function set_cancelled( $value ) { |
|
| 654 | - $value = max( (float) $value, 0 ); |
|
| 655 | - $this->set_prop( 'cancelled', $value ); |
|
| 653 | + public function set_cancelled($value) { |
|
| 654 | + $value = max((float) $value, 0); |
|
| 655 | + $this->set_prop('cancelled', $value); |
|
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | /** |
@@ -661,9 +661,9 @@ discard block |
||
| 661 | 661 | * @since 1.0.19 |
| 662 | 662 | * @param float $value Amount cancelled. |
| 663 | 663 | */ |
| 664 | - public function set_failed( $value ) { |
|
| 665 | - $value = max( (float) $value, 0 ); |
|
| 666 | - $this->set_prop( 'failed', $value ); |
|
| 664 | + public function set_failed($value) { |
|
| 665 | + $value = max((float) $value, 0); |
|
| 666 | + $this->set_prop('failed', $value); |
|
| 667 | 667 | } |
| 668 | 668 | |
| 669 | 669 | /** |
@@ -672,11 +672,11 @@ discard block |
||
| 672 | 672 | * @deprecated |
| 673 | 673 | * @return int item id |
| 674 | 674 | */ |
| 675 | - public function create( $data = array() ) { |
|
| 675 | + public function create($data = array()) { |
|
| 676 | 676 | |
| 677 | 677 | // Set the properties. |
| 678 | - if ( is_array( $data ) ) { |
|
| 679 | - $this->set_props( $data ); |
|
| 678 | + if (is_array($data)) { |
|
| 679 | + $this->set_props($data); |
|
| 680 | 680 | } |
| 681 | 681 | |
| 682 | 682 | // Save the item. |
@@ -690,8 +690,8 @@ discard block |
||
| 690 | 690 | * @deprecated |
| 691 | 691 | * @return int item id |
| 692 | 692 | */ |
| 693 | - public function update( $data = array() ) { |
|
| 694 | - return $this->create( $data ); |
|
| 693 | + public function update($data = array()) { |
|
| 694 | + return $this->create($data); |
|
| 695 | 695 | } |
| 696 | 696 | |
| 697 | 697 | /* |
@@ -711,7 +711,7 @@ discard block |
||
| 711 | 711 | */ |
| 712 | 712 | public function is_default() { |
| 713 | 713 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
| 714 | - return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
|
| 714 | + return (bool) apply_filters('wpinv_is_default_payment_form', $is_default, $this->get_id(), $this); |
|
| 715 | 715 | } |
| 716 | 716 | |
| 717 | 717 | /** |
@@ -723,11 +723,11 @@ discard block |
||
| 723 | 723 | public function is_active() { |
| 724 | 724 | $is_active = 0 !== (int) $this->get_id(); |
| 725 | 725 | |
| 726 | - if ( $is_active && ! current_user_can( 'edit_post', $this->get_id() ) && $this->get_status() != 'publish' ) { |
|
| 726 | + if ($is_active && !current_user_can('edit_post', $this->get_id()) && $this->get_status() != 'publish') { |
|
| 727 | 727 | $is_active = false; |
| 728 | 728 | } |
| 729 | 729 | |
| 730 | - return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
|
| 730 | + return (bool) apply_filters('wpinv_is_payment_form_active', $is_active, $this); |
|
| 731 | 731 | } |
| 732 | 732 | |
| 733 | 733 | /** |
@@ -736,8 +736,8 @@ discard block |
||
| 736 | 736 | * @since 1.0.19 |
| 737 | 737 | * @return bool |
| 738 | 738 | */ |
| 739 | - public function has_item( $item_id ) { |
|
| 740 | - return false !== $this->get_item( $item_id ); |
|
| 739 | + public function has_item($item_id) { |
|
| 740 | + return false !== $this->get_item($item_id); |
|
| 741 | 741 | } |
| 742 | 742 | |
| 743 | 743 | /** |
@@ -746,8 +746,8 @@ discard block |
||
| 746 | 746 | * @since 1.0.19 |
| 747 | 747 | * @return bool |
| 748 | 748 | */ |
| 749 | - public function has_element_type( $element_type ) { |
|
| 750 | - return false !== $this->get_element_type( $element_type ); |
|
| 749 | + public function has_element_type($element_type) { |
|
| 750 | + return false !== $this->get_element_type($element_type); |
|
| 751 | 751 | } |
| 752 | 752 | |
| 753 | 753 | /** |
@@ -758,13 +758,13 @@ discard block |
||
| 758 | 758 | */ |
| 759 | 759 | public function is_recurring() { |
| 760 | 760 | |
| 761 | - if ( ! empty( $this->invoice ) ) { |
|
| 761 | + if (!empty($this->invoice)) { |
|
| 762 | 762 | return $this->invoice->is_recurring(); |
| 763 | 763 | } |
| 764 | 764 | |
| 765 | - foreach ( $this->get_items() as $item ) { |
|
| 765 | + foreach ($this->get_items() as $item) { |
|
| 766 | 766 | |
| 767 | - if ( $item->is_recurring() ) { |
|
| 767 | + if ($item->is_recurring()) { |
|
| 768 | 768 | return true; |
| 769 | 769 | } |
| 770 | 770 | } |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | * |
| 778 | 778 | * @since 1.0.19 |
| 779 | 779 | */ |
| 780 | - public function get_html( $extra_markup = '' ) { |
|
| 780 | + public function get_html($extra_markup = '') { |
|
| 781 | 781 | |
| 782 | 782 | // Return the HTML. |
| 783 | 783 | return wpinv_get_template_html( |
@@ -795,7 +795,7 @@ discard block |
||
| 795 | 795 | * |
| 796 | 796 | * @since 1.0.19 |
| 797 | 797 | */ |
| 798 | - public function display( $extra_markup = '' ) { |
|
| 798 | + public function display($extra_markup = '') { |
|
| 799 | 799 | wpinv_get_template( |
| 800 | 800 | 'payment-forms/form.php', |
| 801 | 801 | array( |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * This class handles invoice notificaiton emails. |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | $this->invoice_actions = apply_filters( |
| 29 | 29 | 'getpaid_notification_email_invoice_triggers', |
| 30 | 30 | array( |
| 31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
| 31 | + 'getpaid_new_invoice' => array('new_invoice', 'user_invoice'), |
|
| 32 | 32 | 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
| 33 | 33 | 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
| 34 | 34 | 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
@@ -50,11 +50,11 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | public function init_hooks() { |
| 52 | 52 | |
| 53 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
| 54 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
| 53 | + add_filter('getpaid_get_email_merge_tags', array($this, 'invoice_merge_tags'), 10, 2); |
|
| 54 | + add_filter('getpaid_invoice_email_recipients', array($this, 'filter_email_recipients'), 10, 2); |
|
| 55 | 55 | |
| 56 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
| 57 | - $this->init_email_type_hook( $hook, $email_type ); |
|
| 56 | + foreach ($this->invoice_actions as $hook => $email_type) { |
|
| 57 | + $this->init_email_type_hook($hook, $email_type); |
|
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | |
@@ -64,25 +64,25 @@ discard block |
||
| 64 | 64 | * @param string $hook |
| 65 | 65 | * @param string|array $email_type |
| 66 | 66 | */ |
| 67 | - public function init_email_type_hook( $hook, $email_type ) { |
|
| 67 | + public function init_email_type_hook($hook, $email_type) { |
|
| 68 | 68 | |
| 69 | - $email_type = wpinv_parse_list( $email_type ); |
|
| 69 | + $email_type = wpinv_parse_list($email_type); |
|
| 70 | 70 | |
| 71 | - foreach ( $email_type as $type ) { |
|
| 71 | + foreach ($email_type as $type) { |
|
| 72 | 72 | |
| 73 | - $email = new GetPaid_Notification_Email( $type ); |
|
| 73 | + $email = new GetPaid_Notification_Email($type); |
|
| 74 | 74 | |
| 75 | 75 | // Abort if it is not active. |
| 76 | - if ( ! $email->is_active() ) { |
|
| 76 | + if (!$email->is_active()) { |
|
| 77 | 77 | continue; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - if ( method_exists( $this, $type ) ) { |
|
| 81 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
| 80 | + if (method_exists($this, $type)) { |
|
| 81 | + add_action($hook, array($this, $type), 100, 2); |
|
| 82 | 82 | continue; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
| 85 | + do_action('getpaid_invoice_init_email_type_hook', $type, $hook); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | } |
@@ -93,19 +93,19 @@ discard block |
||
| 93 | 93 | * @param array $merge_tags |
| 94 | 94 | * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
| 95 | 95 | */ |
| 96 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
| 96 | + public function invoice_merge_tags($merge_tags, $object) { |
|
| 97 | 97 | |
| 98 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 98 | + if (is_a($object, 'WPInv_Invoice')) { |
|
| 99 | 99 | return array_merge( |
| 100 | 100 | $merge_tags, |
| 101 | - $this->get_invoice_merge_tags( $object ) |
|
| 101 | + $this->get_invoice_merge_tags($object) |
|
| 102 | 102 | ); |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
| 105 | + if (is_a($object, 'WPInv_Subscription')) { |
|
| 106 | 106 | return array_merge( |
| 107 | 107 | $merge_tags, |
| 108 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
| 108 | + $this->get_invoice_merge_tags($object->get_parent_payment()) |
|
| 109 | 109 | ); |
| 110 | 110 | } |
| 111 | 111 | |
@@ -119,52 +119,52 @@ discard block |
||
| 119 | 119 | * @param WPInv_Invoice $invoice |
| 120 | 120 | * @return array |
| 121 | 121 | */ |
| 122 | - public function get_invoice_merge_tags( $invoice ) { |
|
| 122 | + public function get_invoice_merge_tags($invoice) { |
|
| 123 | 123 | |
| 124 | 124 | // Abort if it does not exist. |
| 125 | - if ( ! $invoice->get_id() ) { |
|
| 125 | + if (!$invoice->get_id()) { |
|
| 126 | 126 | return array(); |
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | $due_date = $invoice->get_due_date(); |
| 130 | - $due_date = empty( $due_date ) ? time() + MINUTE_IN_SECONDS : strtotime( $due_date ) + ( (int) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); |
|
| 130 | + $due_date = empty($due_date) ? time() + MINUTE_IN_SECONDS : strtotime($due_date) + ((int) get_option('gmt_offset') * HOUR_IN_SECONDS); |
|
| 131 | 131 | $merge_tags = array( |
| 132 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 133 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 134 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 135 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 136 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 137 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 138 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
| 139 | - '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
| 140 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 141 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 142 | - '{invoice_receipt_link}' => esc_url( $invoice->get_receipt_url() ), |
|
| 143 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
| 144 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
| 145 | - '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
| 146 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
| 147 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
| 148 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
| 149 | - '{is_was}' => $due_date < time() ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 132 | + '{name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
| 133 | + '{full_name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
| 134 | + '{first_name}' => sanitize_text_field($invoice->get_first_name()), |
|
| 135 | + '{last_name}' => sanitize_text_field($invoice->get_last_name()), |
|
| 136 | + '{email}' => sanitize_email($invoice->get_email()), |
|
| 137 | + '{invoice_number}' => sanitize_text_field($invoice->get_number()), |
|
| 138 | + '{invoice_currency}' => sanitize_text_field($invoice->get_currency()), |
|
| 139 | + '{invoice_total}' => sanitize_text_field(wpinv_price($invoice->get_total(), $invoice->get_currency())), |
|
| 140 | + '{invoice_link}' => esc_url($invoice->get_view_url()), |
|
| 141 | + '{invoice_pay_link}' => esc_url($invoice->get_checkout_payment_url()), |
|
| 142 | + '{invoice_receipt_link}' => esc_url($invoice->get_receipt_url()), |
|
| 143 | + '{invoice_date}' => getpaid_format_date_value($invoice->get_date_created()), |
|
| 144 | + '{invoice_due_date}' => getpaid_format_date_value($invoice->get_due_date(), __('on receipt', 'invoicing')), |
|
| 145 | + '{invoice_quote}' => sanitize_text_field(strtolower($invoice->get_label())), |
|
| 146 | + '{invoice_label}' => sanitize_text_field(ucfirst($invoice->get_label())), |
|
| 147 | + '{invoice_description}' => wp_kses_post($invoice->get_description()), |
|
| 148 | + '{subscription_name}' => wp_kses_post($invoice->get_subscription_name()), |
|
| 149 | + '{is_was}' => $due_date < time() ? __('was', 'invoicing') : __('is', 'invoicing'), |
|
| 150 | 150 | ); |
| 151 | 151 | |
| 152 | - $payment_form_data = $invoice->get_meta( 'payment_form_data', true ); |
|
| 152 | + $payment_form_data = $invoice->get_meta('payment_form_data', true); |
|
| 153 | 153 | |
| 154 | - if ( is_array( $payment_form_data ) ) { |
|
| 154 | + if (is_array($payment_form_data)) { |
|
| 155 | 155 | |
| 156 | - foreach ( $payment_form_data as $label => $value ) { |
|
| 156 | + foreach ($payment_form_data as $label => $value) { |
|
| 157 | 157 | |
| 158 | - $label = preg_replace( '/[^a-z0-9]+/', '_', strtolower( $label ) ); |
|
| 159 | - $value = is_array( $value ) ? implode( ', ', $value ) : $value; |
|
| 158 | + $label = preg_replace('/[^a-z0-9]+/', '_', strtolower($label)); |
|
| 159 | + $value = is_array($value) ? implode(', ', $value) : $value; |
|
| 160 | 160 | |
| 161 | - if ( is_scalar( $value ) ) { |
|
| 162 | - $merge_tags[ "{{$label}}" ] = wp_kses_post( $value ); |
|
| 161 | + if (is_scalar($value)) { |
|
| 162 | + $merge_tags["{{$label}}"] = wp_kses_post($value); |
|
| 163 | 163 | } |
| 164 | 164 | } |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | - return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
| 167 | + return apply_filters('getpaid_invoice_email_merge_tags', $merge_tags, $invoice); |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | /** |
@@ -176,12 +176,12 @@ discard block |
||
| 176 | 176 | * @param string|array $recipients |
| 177 | 177 | * @param array $extra_args Extra template args. |
| 178 | 178 | */ |
| 179 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
| 179 | + public function send_email($invoice, $email, $type, $recipients, $extra_args = array()) { |
|
| 180 | 180 | |
| 181 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
| 181 | + do_action('getpaid_before_send_invoice_notification', $type, $invoice, $email); |
|
| 182 | 182 | |
| 183 | - $skip = $invoice->is_free() && wpinv_get_option( 'skip_email_free_invoice' ); |
|
| 184 | - if ( apply_filters( 'getpaid_skip_invoice_email', $skip, $type, $invoice ) ) { |
|
| 183 | + $skip = $invoice->is_free() && wpinv_get_option('skip_email_free_invoice'); |
|
| 184 | + if (apply_filters('getpaid_skip_invoice_email', $skip, $type, $invoice)) { |
|
| 185 | 185 | return; |
| 186 | 186 | } |
| 187 | 187 | |
@@ -189,43 +189,43 @@ discard block |
||
| 189 | 189 | $merge_tags = $email->get_merge_tags(); |
| 190 | 190 | |
| 191 | 191 | $result = $mailer->send( |
| 192 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
| 193 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
| 194 | - $email->get_content( $merge_tags, $extra_args ), |
|
| 192 | + apply_filters('getpaid_invoice_email_recipients', wpinv_parse_list($recipients), $email), |
|
| 193 | + $email->add_merge_tags($email->get_subject(), $merge_tags), |
|
| 194 | + $email->get_content($merge_tags, $extra_args), |
|
| 195 | 195 | $email->get_attachments() |
| 196 | 196 | ); |
| 197 | 197 | |
| 198 | 198 | // Maybe send a copy to the admin. |
| 199 | - if ( $email->include_admin_bcc() ) { |
|
| 199 | + if ($email->include_admin_bcc()) { |
|
| 200 | 200 | $mailer->send( |
| 201 | 201 | wpinv_get_admin_email(), |
| 202 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
| 203 | - $email->get_content( $merge_tags ), |
|
| 202 | + $email->add_merge_tags($email->get_subject() . __(' - ADMIN BCC COPY', 'invoicing'), $merge_tags), |
|
| 203 | + $email->get_content($merge_tags), |
|
| 204 | 204 | $email->get_attachments() |
| 205 | 205 | ); |
| 206 | 206 | } |
| 207 | 207 | |
| 208 | - if ( $result ) { |
|
| 208 | + if ($result) { |
|
| 209 | 209 | $invoice->add_system_note( |
| 210 | 210 | sprintf( |
| 211 | 211 | // translators: %1 is the email type, %2 is the invoice recipient. |
| 212 | - __( 'Successfully sent %1$s notification email to %2$s.', 'invoicing' ), |
|
| 213 | - sanitize_key( $type ), |
|
| 214 | - $email->is_admin_email() ? __( 'admin', 'invoicing' ) : __( 'the customer', 'invoicing' ) |
|
| 212 | + __('Successfully sent %1$s notification email to %2$s.', 'invoicing'), |
|
| 213 | + sanitize_key($type), |
|
| 214 | + $email->is_admin_email() ? __('admin', 'invoicing') : __('the customer', 'invoicing') |
|
| 215 | 215 | ) |
| 216 | 216 | ); |
| 217 | 217 | } else { |
| 218 | 218 | $invoice->add_system_note( |
| 219 | 219 | sprintf( |
| 220 | 220 | // translators: %1 is the email type, %2 is the invoice recipient. |
| 221 | - __( 'Failed sending %1$s notification email to %2$s.', 'invoicing' ), |
|
| 222 | - sanitize_key( $type ), |
|
| 223 | - $email->is_admin_email() ? __( 'admin', 'invoicing' ) : __( 'the customer', 'invoicing' ) |
|
| 221 | + __('Failed sending %1$s notification email to %2$s.', 'invoicing'), |
|
| 222 | + sanitize_key($type), |
|
| 223 | + $email->is_admin_email() ? __('admin', 'invoicing') : __('the customer', 'invoicing') |
|
| 224 | 224 | ) |
| 225 | 225 | ); |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
| 228 | + do_action('getpaid_after_send_invoice_notification', $type, $invoice, $email); |
|
| 229 | 229 | |
| 230 | 230 | return $result; |
| 231 | 231 | } |
@@ -236,20 +236,20 @@ discard block |
||
| 236 | 236 | * @param array $recipients |
| 237 | 237 | * @param GetPaid_Notification_Email $email |
| 238 | 238 | */ |
| 239 | - public function filter_email_recipients( $recipients, $email ) { |
|
| 239 | + public function filter_email_recipients($recipients, $email) { |
|
| 240 | 240 | |
| 241 | - if ( ! $email->is_admin_email() ) { |
|
| 241 | + if (!$email->is_admin_email()) { |
|
| 242 | 242 | $cc = $email->object->get_email_cc(); |
| 243 | - $cc_2 = get_user_meta( $email->object->get_user_id(), '_wpinv_email_cc', true ); |
|
| 243 | + $cc_2 = get_user_meta($email->object->get_user_id(), '_wpinv_email_cc', true); |
|
| 244 | 244 | |
| 245 | - if ( ! empty( $cc ) ) { |
|
| 246 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
| 247 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
| 245 | + if (!empty($cc)) { |
|
| 246 | + $cc = array_map('sanitize_email', wpinv_parse_list($cc)); |
|
| 247 | + $recipients = array_filter(array_unique(array_merge($recipients, $cc))); |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | - if ( ! empty( $cc_2 ) ) { |
|
| 251 | - $cc_2 = array_map( 'sanitize_email', wpinv_parse_list( $cc_2 ) ); |
|
| 252 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc_2 ) ) ); |
|
| 250 | + if (!empty($cc_2)) { |
|
| 251 | + $cc_2 = array_map('sanitize_email', wpinv_parse_list($cc_2)); |
|
| 252 | + $recipients = array_filter(array_unique(array_merge($recipients, $cc_2))); |
|
| 253 | 253 | } |
| 254 | 254 | } |
| 255 | 255 | |
@@ -262,17 +262,17 @@ discard block |
||
| 262 | 262 | * |
| 263 | 263 | * @param WPInv_Invoice $invoice |
| 264 | 264 | */ |
| 265 | - public function new_invoice( $invoice ) { |
|
| 265 | + public function new_invoice($invoice) { |
|
| 266 | 266 | |
| 267 | 267 | // Only send this email for invoices created via the admin page. |
| 268 | - if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 268 | + if (!$invoice->is_type('invoice') || $invoice->is_paid() || $this->is_payment_form_invoice($invoice->get_id())) { |
|
| 269 | 269 | return; |
| 270 | 270 | } |
| 271 | 271 | |
| 272 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 272 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 273 | 273 | $recipient = wpinv_get_admin_email(); |
| 274 | 274 | |
| 275 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 275 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 276 | 276 | |
| 277 | 277 | } |
| 278 | 278 | |
@@ -281,12 +281,12 @@ discard block |
||
| 281 | 281 | * |
| 282 | 282 | * @param WPInv_Invoice $invoice |
| 283 | 283 | */ |
| 284 | - public function cancelled_invoice( $invoice ) { |
|
| 284 | + public function cancelled_invoice($invoice) { |
|
| 285 | 285 | |
| 286 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 286 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 287 | 287 | $recipient = $invoice->get_email(); |
| 288 | 288 | |
| 289 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 289 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | /** |
@@ -294,12 +294,12 @@ discard block |
||
| 294 | 294 | * |
| 295 | 295 | * @param WPInv_Invoice $invoice |
| 296 | 296 | */ |
| 297 | - public function failed_invoice( $invoice ) { |
|
| 297 | + public function failed_invoice($invoice) { |
|
| 298 | 298 | |
| 299 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 299 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 300 | 300 | $recipient = wpinv_get_admin_email(); |
| 301 | 301 | |
| 302 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 302 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 303 | 303 | |
| 304 | 304 | } |
| 305 | 305 | |
@@ -308,12 +308,12 @@ discard block |
||
| 308 | 308 | * |
| 309 | 309 | * @param WPInv_Invoice $invoice |
| 310 | 310 | */ |
| 311 | - public function onhold_invoice( $invoice ) { |
|
| 311 | + public function onhold_invoice($invoice) { |
|
| 312 | 312 | |
| 313 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 313 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 314 | 314 | $recipient = $invoice->get_email(); |
| 315 | 315 | |
| 316 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 316 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 317 | 317 | |
| 318 | 318 | } |
| 319 | 319 | |
@@ -322,12 +322,12 @@ discard block |
||
| 322 | 322 | * |
| 323 | 323 | * @param WPInv_Invoice $invoice |
| 324 | 324 | */ |
| 325 | - public function processing_invoice( $invoice ) { |
|
| 325 | + public function processing_invoice($invoice) { |
|
| 326 | 326 | |
| 327 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 327 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 328 | 328 | $recipient = $invoice->get_email(); |
| 329 | 329 | |
| 330 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 330 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 331 | 331 | |
| 332 | 332 | } |
| 333 | 333 | |
@@ -336,17 +336,17 @@ discard block |
||
| 336 | 336 | * |
| 337 | 337 | * @param WPInv_Invoice $invoice |
| 338 | 338 | */ |
| 339 | - public function completed_invoice( $invoice ) { |
|
| 339 | + public function completed_invoice($invoice) { |
|
| 340 | 340 | |
| 341 | 341 | // (Maybe) abort if it is a renewal invoice. |
| 342 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
| 342 | + if ($invoice->is_renewal() && !wpinv_get_option('email_completed_invoice_renewal_active', false)) { |
|
| 343 | 343 | return; |
| 344 | 344 | } |
| 345 | 345 | |
| 346 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 346 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 347 | 347 | $recipient = $invoice->get_email(); |
| 348 | 348 | |
| 349 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 349 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 350 | 350 | |
| 351 | 351 | } |
| 352 | 352 | |
@@ -355,12 +355,12 @@ discard block |
||
| 355 | 355 | * |
| 356 | 356 | * @param WPInv_Invoice $invoice |
| 357 | 357 | */ |
| 358 | - public function refunded_invoice( $invoice ) { |
|
| 358 | + public function refunded_invoice($invoice) { |
|
| 359 | 359 | |
| 360 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 360 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 361 | 361 | $recipient = $invoice->get_email(); |
| 362 | 362 | |
| 363 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 363 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 364 | 364 | |
| 365 | 365 | } |
| 366 | 366 | |
@@ -370,21 +370,21 @@ discard block |
||
| 370 | 370 | * @param WPInv_Invoice $invoice |
| 371 | 371 | * @param bool $force |
| 372 | 372 | */ |
| 373 | - public function user_invoice( $invoice, $force = false ) { |
|
| 373 | + public function user_invoice($invoice, $force = false) { |
|
| 374 | 374 | |
| 375 | - if ( ! $force && ! empty( $GLOBALS['wpinv_skip_invoice_notification'] ) ) { |
|
| 375 | + if (!$force && !empty($GLOBALS['wpinv_skip_invoice_notification'])) { |
|
| 376 | 376 | return; |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | 379 | // Only send this email for invoices created via the admin page. |
| 380 | - if ( ! $invoice->is_type( 'invoice' ) || ( empty( $force ) && $invoice->is_paid() ) || ( empty( $force ) && $this->is_payment_form_invoice( $invoice->get_id() ) ) ) { |
|
| 380 | + if (!$invoice->is_type('invoice') || (empty($force) && $invoice->is_paid()) || (empty($force) && $this->is_payment_form_invoice($invoice->get_id()))) { |
|
| 381 | 381 | return; |
| 382 | 382 | } |
| 383 | 383 | |
| 384 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 384 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 385 | 385 | $recipient = $invoice->get_email(); |
| 386 | 386 | |
| 387 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 387 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient); |
|
| 388 | 388 | |
| 389 | 389 | } |
| 390 | 390 | |
@@ -394,11 +394,11 @@ discard block |
||
| 394 | 394 | * @param int $invoice |
| 395 | 395 | * @return bool |
| 396 | 396 | */ |
| 397 | - public function is_payment_form_invoice( $invoice ) { |
|
| 398 | - $created_via = get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
| 397 | + public function is_payment_form_invoice($invoice) { |
|
| 398 | + $created_via = get_post_meta($invoice, 'wpinv_created_via', true); |
|
| 399 | 399 | $is_payment_form_invoice = 'payment_form' === $created_via || 'geodirectory' === $created_via; |
| 400 | - $is_payment_form_invoice = apply_filters( 'getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice ); |
|
| 401 | - return empty( $_GET['getpaid-admin-action'] ) && $is_payment_form_invoice; |
|
| 400 | + $is_payment_form_invoice = apply_filters('getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice); |
|
| 401 | + return empty($_GET['getpaid-admin-action']) && $is_payment_form_invoice; |
|
| 402 | 402 | } |
| 403 | 403 | |
| 404 | 404 | /** |
@@ -407,12 +407,12 @@ discard block |
||
| 407 | 407 | * @param WPInv_Invoice $invoice |
| 408 | 408 | * @param string $note |
| 409 | 409 | */ |
| 410 | - public function user_note( $invoice, $note ) { |
|
| 410 | + public function user_note($invoice, $note) { |
|
| 411 | 411 | |
| 412 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 412 | + $email = new GetPaid_Notification_Email(__FUNCTION__, $invoice); |
|
| 413 | 413 | $recipient = $invoice->get_email(); |
| 414 | 414 | |
| 415 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
| 415 | + return $this->send_email($invoice, $email, __FUNCTION__, $recipient, array('customer_note' => $note)); |
|
| 416 | 416 | |
| 417 | 417 | } |
| 418 | 418 | |
@@ -421,9 +421,9 @@ discard block |
||
| 421 | 421 | * |
| 422 | 422 | * @param WPInv_Invoice $invoice |
| 423 | 423 | */ |
| 424 | - public function force_send_overdue_notice( $invoice ) { |
|
| 425 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
| 426 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
| 424 | + public function force_send_overdue_notice($invoice) { |
|
| 425 | + $email = new GetPaid_Notification_Email('overdue', $invoice); |
|
| 426 | + return $this->send_email($invoice, $email, 'overdue', $invoice->get_email()); |
|
| 427 | 427 | } |
| 428 | 428 | |
| 429 | 429 | /** |
@@ -434,38 +434,38 @@ discard block |
||
| 434 | 434 | public function overdue() { |
| 435 | 435 | global $wpdb; |
| 436 | 436 | |
| 437 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
| 437 | + $email = new GetPaid_Notification_Email(__FUNCTION__); |
|
| 438 | 438 | |
| 439 | 439 | // Fetch reminder days. |
| 440 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
| 440 | + $reminder_days = array_unique(wp_parse_id_list($email->get_option('days'))); |
|
| 441 | 441 | |
| 442 | 442 | // Abort if non is set. |
| 443 | - if ( empty( $reminder_days ) ) { |
|
| 443 | + if (empty($reminder_days)) { |
|
| 444 | 444 | return; |
| 445 | 445 | } |
| 446 | 446 | |
| 447 | 447 | // Retrieve date query. |
| 448 | - $date_query = $this->get_date_query( $reminder_days ); |
|
| 448 | + $date_query = $this->get_date_query($reminder_days); |
|
| 449 | 449 | |
| 450 | 450 | // Invoices table. |
| 451 | 451 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 452 | 452 | |
| 453 | 453 | // Fetch invoices. |
| 454 | - $invoices = $wpdb->get_col( |
|
| 454 | + $invoices = $wpdb->get_col( |
|
| 455 | 455 | "SELECT posts.ID FROM $wpdb->posts as posts |
| 456 | 456 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
| 457 | 457 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query" |
| 458 | 458 | ); |
| 459 | 459 | |
| 460 | - foreach ( $invoices as $invoice ) { |
|
| 460 | + foreach ($invoices as $invoice) { |
|
| 461 | 461 | |
| 462 | 462 | // Only send this email for invoices created via the admin page. |
| 463 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
| 464 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 463 | + if (!$this->is_payment_form_invoice($invoice)) { |
|
| 464 | + $invoice = new WPInv_Invoice($invoice); |
|
| 465 | 465 | $email->object = $invoice; |
| 466 | 466 | |
| 467 | - if ( $invoice->needs_payment() && ! $invoice->is_renewal() ) { |
|
| 468 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
| 467 | + if ($invoice->needs_payment() && !$invoice->is_renewal()) { |
|
| 468 | + $this->send_email($invoice, $email, __FUNCTION__, $invoice->get_email()); |
|
| 469 | 469 | } |
| 470 | 470 | } |
| 471 | 471 | } |
@@ -478,14 +478,14 @@ discard block |
||
| 478 | 478 | * @param array $reminder_days |
| 479 | 479 | * @return string |
| 480 | 480 | */ |
| 481 | - public function get_date_query( $reminder_days ) { |
|
| 481 | + public function get_date_query($reminder_days) { |
|
| 482 | 482 | |
| 483 | 483 | $date_query = array( |
| 484 | 484 | 'relation' => 'OR', |
| 485 | 485 | ); |
| 486 | 486 | |
| 487 | - foreach ( $reminder_days as $days ) { |
|
| 488 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
| 487 | + foreach ($reminder_days as $days) { |
|
| 488 | + $date = date_parse(date('Y-m-d', strtotime("-$days days", current_time('timestamp')))); |
|
| 489 | 489 | |
| 490 | 490 | $date_query[] = array( |
| 491 | 491 | 'year' => $date['year'], |
@@ -495,7 +495,7 @@ discard block |
||
| 495 | 495 | |
| 496 | 496 | } |
| 497 | 497 | |
| 498 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
| 498 | + $date_query = new WP_Date_Query($date_query, 'invoices.due_date'); |
|
| 499 | 499 | |
| 500 | 500 | return $date_query->get_sql(); |
| 501 | 501 | |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * GetPaid_Item_Data_Store class file. |
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 6 | +if (!defined('ABSPATH')) { |
|
| 7 | 7 | exit; |
| 8 | 8 | } |
| 9 | 9 | |
@@ -80,39 +80,39 @@ discard block |
||
| 80 | 80 | * |
| 81 | 81 | * @param WPInv_Item $item Item object. |
| 82 | 82 | */ |
| 83 | - public function create( &$item ) { |
|
| 84 | - $item->set_version( WPINV_VERSION ); |
|
| 85 | - $item->set_date_created( current_time( 'mysql' ) ); |
|
| 83 | + public function create(&$item) { |
|
| 84 | + $item->set_version(WPINV_VERSION); |
|
| 85 | + $item->set_date_created(current_time('mysql')); |
|
| 86 | 86 | |
| 87 | 87 | // Create a new post. |
| 88 | 88 | $id = wp_insert_post( |
| 89 | 89 | apply_filters( |
| 90 | 90 | 'getpaid_new_item_data', |
| 91 | 91 | array( |
| 92 | - 'post_date' => $item->get_date_created( 'edit' ), |
|
| 92 | + 'post_date' => $item->get_date_created('edit'), |
|
| 93 | 93 | 'post_type' => 'wpi_item', |
| 94 | - 'post_status' => $this->get_post_status( $item ), |
|
| 94 | + 'post_status' => $this->get_post_status($item), |
|
| 95 | 95 | 'ping_status' => 'closed', |
| 96 | - 'post_author' => $item->get_author( 'edit' ), |
|
| 97 | - 'post_title' => $item->get_name( 'edit' ), |
|
| 96 | + 'post_author' => $item->get_author('edit'), |
|
| 97 | + 'post_title' => $item->get_name('edit'), |
|
| 98 | 98 | 'post_parent' => $item->get_parent_id(), |
| 99 | - 'post_excerpt' => $item->get_description( 'edit' ), |
|
| 99 | + 'post_excerpt' => $item->get_description('edit'), |
|
| 100 | 100 | ) |
| 101 | 101 | ), |
| 102 | 102 | true |
| 103 | 103 | ); |
| 104 | 104 | |
| 105 | - if ( $id && ! is_wp_error( $id ) ) { |
|
| 106 | - $item->set_id( $id ); |
|
| 107 | - $this->update_post_meta( $item ); |
|
| 105 | + if ($id && !is_wp_error($id)) { |
|
| 106 | + $item->set_id($id); |
|
| 107 | + $this->update_post_meta($item); |
|
| 108 | 108 | $item->save_meta_data(); |
| 109 | 109 | $item->apply_changes(); |
| 110 | - $this->clear_caches( $item ); |
|
| 111 | - do_action( 'getpaid_new_item', $item ); |
|
| 110 | + $this->clear_caches($item); |
|
| 111 | + do_action('getpaid_new_item', $item); |
|
| 112 | 112 | return true; |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - if ( is_wp_error( $id ) ) { |
|
| 115 | + if (is_wp_error($id)) { |
|
| 116 | 116 | $item->last_error = $id->get_error_message(); |
| 117 | 117 | } |
| 118 | 118 | |
@@ -125,14 +125,14 @@ discard block |
||
| 125 | 125 | * @param WPInv_Item $item Item object. |
| 126 | 126 | * |
| 127 | 127 | */ |
| 128 | - public function read( &$item ) { |
|
| 128 | + public function read(&$item) { |
|
| 129 | 129 | |
| 130 | 130 | $item->set_defaults(); |
| 131 | - $item_object = get_post( $item->get_id() ); |
|
| 131 | + $item_object = get_post($item->get_id()); |
|
| 132 | 132 | |
| 133 | - if ( ! $item->get_id() || ! $item_object || $item_object->post_type != 'wpi_item' ) { |
|
| 134 | - $item->last_error = __( 'Invalid item.', 'invoicing' ); |
|
| 135 | - $item->set_id( 0 ); |
|
| 133 | + if (!$item->get_id() || !$item_object || $item_object->post_type != 'wpi_item') { |
|
| 134 | + $item->last_error = __('Invalid item.', 'invoicing'); |
|
| 135 | + $item->set_id(0); |
|
| 136 | 136 | return false; |
| 137 | 137 | } |
| 138 | 138 | |
@@ -148,10 +148,10 @@ discard block |
||
| 148 | 148 | ) |
| 149 | 149 | ); |
| 150 | 150 | |
| 151 | - $this->read_object_data( $item, $item_object ); |
|
| 151 | + $this->read_object_data($item, $item_object); |
|
| 152 | 152 | $item->read_meta_data(); |
| 153 | - $item->set_object_read( true ); |
|
| 154 | - do_action( 'getpaid_read_item', $item ); |
|
| 153 | + $item->set_object_read(true); |
|
| 154 | + do_action('getpaid_read_item', $item); |
|
| 155 | 155 | |
| 156 | 156 | } |
| 157 | 157 | |
@@ -160,29 +160,29 @@ discard block |
||
| 160 | 160 | * |
| 161 | 161 | * @param WPInv_Item $item Item object. |
| 162 | 162 | */ |
| 163 | - public function update( &$item ) { |
|
| 163 | + public function update(&$item) { |
|
| 164 | 164 | $item->save_meta_data(); |
| 165 | - $item->set_version( WPINV_VERSION ); |
|
| 165 | + $item->set_version(WPINV_VERSION); |
|
| 166 | 166 | |
| 167 | - if ( null === $item->get_date_created( 'edit' ) ) { |
|
| 168 | - $item->set_date_created( current_time( 'mysql' ) ); |
|
| 167 | + if (null === $item->get_date_created('edit')) { |
|
| 168 | + $item->set_date_created(current_time('mysql')); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | // Grab the current status so we can compare. |
| 172 | - $previous_status = get_post_status( $item->get_id() ); |
|
| 172 | + $previous_status = get_post_status($item->get_id()); |
|
| 173 | 173 | |
| 174 | 174 | $changes = $item->get_changes(); |
| 175 | 175 | |
| 176 | 176 | // Only update the post when the post data changes. |
| 177 | - if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'parent_id', 'description', 'name', 'author' ), array_keys( $changes ) ) ) { |
|
| 177 | + if (array_intersect(array('date_created', 'date_modified', 'status', 'parent_id', 'description', 'name', 'author'), array_keys($changes))) { |
|
| 178 | 178 | $post_data = array( |
| 179 | - 'post_date' => $item->get_date_created( 'edit' ), |
|
| 180 | - 'post_status' => $item->get_status( 'edit' ), |
|
| 181 | - 'post_parent' => $item->get_parent_id( 'edit' ), |
|
| 182 | - 'post_excerpt' => $item->get_description( 'edit' ), |
|
| 183 | - 'post_modified' => $item->get_date_modified( 'edit' ), |
|
| 184 | - 'post_title' => $item->get_name( 'edit' ), |
|
| 185 | - 'post_author' => $item->get_author( 'edit' ), |
|
| 179 | + 'post_date' => $item->get_date_created('edit'), |
|
| 180 | + 'post_status' => $item->get_status('edit'), |
|
| 181 | + 'post_parent' => $item->get_parent_id('edit'), |
|
| 182 | + 'post_excerpt' => $item->get_description('edit'), |
|
| 183 | + 'post_modified' => $item->get_date_modified('edit'), |
|
| 184 | + 'post_title' => $item->get_name('edit'), |
|
| 185 | + 'post_author' => $item->get_author('edit'), |
|
| 186 | 186 | ); |
| 187 | 187 | |
| 188 | 188 | /** |
@@ -193,25 +193,25 @@ discard block |
||
| 193 | 193 | * This ensures hooks are fired by either WP itself (admin screen save), |
| 194 | 194 | * or an update purely from CRUD. |
| 195 | 195 | */ |
| 196 | - if ( doing_action( 'save_post' ) ) { |
|
| 197 | - $GLOBALS['wpdb']->update( $GLOBALS['wpdb']->posts, $post_data, array( 'ID' => $item->get_id() ) ); |
|
| 198 | - clean_post_cache( $item->get_id() ); |
|
| 196 | + if (doing_action('save_post')) { |
|
| 197 | + $GLOBALS['wpdb']->update($GLOBALS['wpdb']->posts, $post_data, array('ID' => $item->get_id())); |
|
| 198 | + clean_post_cache($item->get_id()); |
|
| 199 | 199 | } else { |
| 200 | - wp_update_post( array_merge( array( 'ID' => $item->get_id() ), $post_data ) ); |
|
| 200 | + wp_update_post(array_merge(array('ID' => $item->get_id()), $post_data)); |
|
| 201 | 201 | } |
| 202 | - $item->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook. |
|
| 202 | + $item->read_meta_data(true); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook. |
|
| 203 | 203 | } |
| 204 | - $this->update_post_meta( $item ); |
|
| 204 | + $this->update_post_meta($item); |
|
| 205 | 205 | $item->apply_changes(); |
| 206 | - $this->clear_caches( $item ); |
|
| 206 | + $this->clear_caches($item); |
|
| 207 | 207 | |
| 208 | 208 | // Fire a hook depending on the status - this should be considered a creation if it was previously draft status. |
| 209 | - $new_status = $item->get_status( 'edit' ); |
|
| 209 | + $new_status = $item->get_status('edit'); |
|
| 210 | 210 | |
| 211 | - if ( $new_status !== $previous_status && in_array( $previous_status, array( 'new', 'auto-draft', 'draft' ), true ) ) { |
|
| 212 | - do_action( 'getpaid_new_item', $item ); |
|
| 211 | + if ($new_status !== $previous_status && in_array($previous_status, array('new', 'auto-draft', 'draft'), true)) { |
|
| 212 | + do_action('getpaid_new_item', $item); |
|
| 213 | 213 | } else { |
| 214 | - do_action( 'getpaid_update_item', $item ); |
|
| 214 | + do_action('getpaid_update_item', $item); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | } |
@@ -228,14 +228,14 @@ discard block |
||
| 228 | 228 | * @param WPInv_Item $item WPInv_Item object. |
| 229 | 229 | * @since 1.0.19 |
| 230 | 230 | */ |
| 231 | - protected function update_post_meta( &$item ) { |
|
| 231 | + protected function update_post_meta(&$item) { |
|
| 232 | 232 | |
| 233 | 233 | // Ensure that we have a custom id. |
| 234 | - if ( ! $item->get_custom_id() ) { |
|
| 235 | - $item->set_custom_id( $item->get_id() ); |
|
| 234 | + if (!$item->get_custom_id()) { |
|
| 235 | + $item->set_custom_id($item->get_id()); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - parent::update_post_meta( $item ); |
|
| 238 | + parent::update_post_meta($item); |
|
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | $this->state = wpinv_get_default_state(); |
| 147 | 147 | |
| 148 | 148 | // Do we have an actual submission? |
| 149 | - if ( isset( $_POST['getpaid_payment_form_submission'] ) ) { |
|
| 150 | - $this->load_data( wp_kses_post_deep( wp_unslash( $_POST ) ) ); |
|
| 149 | + if (isset($_POST['getpaid_payment_form_submission'])) { |
|
| 150 | + $this->load_data(wp_kses_post_deep(wp_unslash($_POST))); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | } |
@@ -157,16 +157,16 @@ discard block |
||
| 157 | 157 | * |
| 158 | 158 | * @param array $data |
| 159 | 159 | */ |
| 160 | - public function load_data( $data ) { |
|
| 160 | + public function load_data($data) { |
|
| 161 | 161 | |
| 162 | 162 | // Allow plugins to filter the data. |
| 163 | - $data = apply_filters( 'getpaid_submission_data', $data, $this ); |
|
| 163 | + $data = apply_filters('getpaid_submission_data', $data, $this); |
|
| 164 | 164 | |
| 165 | 165 | // Cache it... |
| 166 | 166 | $this->data = $data; |
| 167 | 167 | |
| 168 | 168 | // Then generate a unique id from the data. |
| 169 | - $this->id = md5( wp_json_encode( $data ) ); |
|
| 169 | + $this->id = md5(wp_json_encode($data)); |
|
| 170 | 170 | |
| 171 | 171 | // Finally, process the submission. |
| 172 | 172 | try { |
@@ -176,29 +176,29 @@ discard block |
||
| 176 | 176 | $processors = apply_filters( |
| 177 | 177 | 'getpaid_payment_form_submission_processors', |
| 178 | 178 | array( |
| 179 | - array( $this, 'process_payment_form' ), |
|
| 180 | - array( $this, 'process_invoice' ), |
|
| 181 | - array( $this, 'process_fees' ), |
|
| 182 | - array( $this, 'process_items' ), |
|
| 183 | - array( $this, 'process_discount' ), |
|
| 184 | - array( $this, 'process_taxes' ), |
|
| 179 | + array($this, 'process_payment_form'), |
|
| 180 | + array($this, 'process_invoice'), |
|
| 181 | + array($this, 'process_fees'), |
|
| 182 | + array($this, 'process_items'), |
|
| 183 | + array($this, 'process_discount'), |
|
| 184 | + array($this, 'process_taxes'), |
|
| 185 | 185 | ), |
| 186 | 186 | $this |
| 187 | 187 | ); |
| 188 | 188 | |
| 189 | - foreach ( $processors as $processor ) { |
|
| 190 | - call_user_func_array( $processor, array( &$this ) ); |
|
| 189 | + foreach ($processors as $processor) { |
|
| 190 | + call_user_func_array($processor, array(&$this)); |
|
| 191 | 191 | } |
| 192 | - } catch ( GetPaid_Payment_Exception $e ) { |
|
| 192 | + } catch (GetPaid_Payment_Exception $e) { |
|
| 193 | 193 | $this->last_error = $e->getMessage(); |
| 194 | 194 | $this->last_error_code = $e->getErrorCode(); |
| 195 | - } catch ( Exception $e ) { |
|
| 195 | + } catch (Exception $e) { |
|
| 196 | 196 | $this->last_error = $e->getMessage(); |
| 197 | 197 | $this->last_error_code = $e->getCode(); |
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | // Fired when we are done processing a submission. |
| 201 | - do_action_ref_array( 'getpaid_process_submission', array( &$this ) ); |
|
| 201 | + do_action_ref_array('getpaid_process_submission', array(&$this)); |
|
| 202 | 202 | |
| 203 | 203 | } |
| 204 | 204 | |
@@ -219,18 +219,18 @@ discard block |
||
| 219 | 219 | public function process_payment_form() { |
| 220 | 220 | |
| 221 | 221 | // Every submission needs an active payment form. |
| 222 | - if ( empty( $this->data['form_id'] ) ) { |
|
| 223 | - throw new Exception( __( 'Missing payment form', 'invoicing' ) ); |
|
| 222 | + if (empty($this->data['form_id'])) { |
|
| 223 | + throw new Exception(__('Missing payment form', 'invoicing')); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | // Fetch the payment form. |
| 227 | - $this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] ); |
|
| 227 | + $this->payment_form = new GetPaid_Payment_Form($this->data['form_id']); |
|
| 228 | 228 | |
| 229 | - if ( ! $this->payment_form->is_active() ) { |
|
| 230 | - throw new Exception( __( 'Payment form not active', 'invoicing' ) ); |
|
| 229 | + if (!$this->payment_form->is_active()) { |
|
| 230 | + throw new Exception(__('Payment form not active', 'invoicing')); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | - do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) ); |
|
| 233 | + do_action_ref_array('getpaid_submissions_process_payment_form', array(&$this)); |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | /** |
@@ -260,64 +260,64 @@ discard block |
||
| 260 | 260 | public function process_invoice() { |
| 261 | 261 | |
| 262 | 262 | // Abort if there is no invoice. |
| 263 | - if ( empty( $this->data['invoice_id'] ) ) { |
|
| 263 | + if (empty($this->data['invoice_id'])) { |
|
| 264 | 264 | |
| 265 | 265 | // Check if we are resuming a payment. |
| 266 | - if ( empty( $this->data['maybe_use_invoice'] ) ) { |
|
| 266 | + if (empty($this->data['maybe_use_invoice'])) { |
|
| 267 | 267 | return; |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - $invoice = wpinv_get_invoice( $this->data['maybe_use_invoice'] ); |
|
| 271 | - if ( empty( $invoice ) || ! $invoice->has_status( 'draft, auto-draft, wpi-pending' ) ) { |
|
| 270 | + $invoice = wpinv_get_invoice($this->data['maybe_use_invoice']); |
|
| 271 | + if (empty($invoice) || !$invoice->has_status('draft, auto-draft, wpi-pending')) { |
|
| 272 | 272 | return; |
| 273 | 273 | } |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | // If the submission is for an existing invoice, ensure that it exists |
| 277 | 277 | // and that it is not paid for. |
| 278 | - if ( empty( $invoice ) ) { |
|
| 279 | - $invoice = wpinv_get_invoice( $this->data['invoice_id'] ); |
|
| 278 | + if (empty($invoice)) { |
|
| 279 | + $invoice = wpinv_get_invoice($this->data['invoice_id']); |
|
| 280 | 280 | } |
| 281 | 281 | |
| 282 | - if ( empty( $invoice ) ) { |
|
| 283 | - throw new Exception( __( 'Invalid invoice', 'invoicing' ) ); |
|
| 282 | + if (empty($invoice)) { |
|
| 283 | + throw new Exception(__('Invalid invoice', 'invoicing')); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | - if ( $invoice->is_paid() ) { |
|
| 287 | - throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) ); |
|
| 286 | + if ($invoice->is_paid()) { |
|
| 287 | + throw new Exception(__('This invoice is already paid for.', 'invoicing')); |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | $this->payment_form->invoice = $invoice; |
| 291 | - if ( ! $this->payment_form->is_default() ) { |
|
| 291 | + if (!$this->payment_form->is_default()) { |
|
| 292 | 292 | |
| 293 | 293 | $items = array(); |
| 294 | 294 | $item_ids = array(); |
| 295 | 295 | |
| 296 | - foreach ( $invoice->get_items() as $item ) { |
|
| 297 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 296 | + foreach ($invoice->get_items() as $item) { |
|
| 297 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 298 | 298 | $item_ids[] = $item->get_id(); |
| 299 | 299 | $items[] = $item; |
| 300 | 300 | } |
| 301 | 301 | } |
| 302 | 302 | |
| 303 | - foreach ( $this->payment_form->get_items() as $item ) { |
|
| 304 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 303 | + foreach ($this->payment_form->get_items() as $item) { |
|
| 304 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 305 | 305 | $item_ids[] = $item->get_id(); |
| 306 | 306 | $items[] = $item; |
| 307 | 307 | } |
| 308 | 308 | } |
| 309 | 309 | |
| 310 | - $this->payment_form->set_items( $items ); |
|
| 310 | + $this->payment_form->set_items($items); |
|
| 311 | 311 | |
| 312 | 312 | } else { |
| 313 | - $this->payment_form->set_items( $invoice->get_items() ); |
|
| 313 | + $this->payment_form->set_items($invoice->get_items()); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | $this->country = $invoice->get_country(); |
| 317 | 317 | $this->state = $invoice->get_state(); |
| 318 | 318 | $this->invoice = $invoice; |
| 319 | 319 | |
| 320 | - do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) ); |
|
| 320 | + do_action_ref_array('getpaid_submissions_process_invoice', array(&$this)); |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | /** |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | * @return bool |
| 338 | 338 | */ |
| 339 | 339 | public function has_invoice() { |
| 340 | - return ! empty( $this->invoice ); |
|
| 340 | + return !empty($this->invoice); |
|
| 341 | 341 | } |
| 342 | 342 | |
| 343 | 343 | /* |
@@ -356,13 +356,13 @@ discard block |
||
| 356 | 356 | */ |
| 357 | 357 | public function process_items() { |
| 358 | 358 | |
| 359 | - $processor = new GetPaid_Payment_Form_Submission_Items( $this ); |
|
| 359 | + $processor = new GetPaid_Payment_Form_Submission_Items($this); |
|
| 360 | 360 | |
| 361 | - foreach ( $processor->items as $item ) { |
|
| 362 | - $this->add_item( $item ); |
|
| 361 | + foreach ($processor->items as $item) { |
|
| 362 | + $this->add_item($item); |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | - do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) ); |
|
| 365 | + do_action_ref_array('getpaid_submissions_process_items', array(&$this)); |
|
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | /** |
@@ -371,20 +371,20 @@ discard block |
||
| 371 | 371 | * @since 1.0.19 |
| 372 | 372 | * @param GetPaid_Form_Item $item |
| 373 | 373 | */ |
| 374 | - public function add_item( $item ) { |
|
| 374 | + public function add_item($item) { |
|
| 375 | 375 | |
| 376 | 376 | // Make sure that it is available for purchase. |
| 377 | - if ( ! $item->can_purchase() || isset( $this->items[ $item->get_id() ] ) ) { |
|
| 377 | + if (!$item->can_purchase() || isset($this->items[$item->get_id()])) { |
|
| 378 | 378 | return; |
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | // Each submission can only contain one recurring item. |
| 382 | - if ( $item->is_recurring() ) { |
|
| 382 | + if ($item->is_recurring()) { |
|
| 383 | 383 | $this->has_recurring = $item->get_id(); |
| 384 | 384 | } |
| 385 | 385 | |
| 386 | 386 | // Update the items and totals. |
| 387 | - $this->items[ $item->get_id() ] = $item; |
|
| 387 | + $this->items[$item->get_id()] = $item; |
|
| 388 | 388 | $this->totals['subtotal']['initial'] += $item->get_sub_total(); |
| 389 | 389 | $this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total(); |
| 390 | 390 | |
@@ -398,17 +398,17 @@ discard block |
||
| 398 | 398 | * |
| 399 | 399 | * @since 1.0.19 |
| 400 | 400 | */ |
| 401 | - public function remove_item( $item_id ) { |
|
| 401 | + public function remove_item($item_id) { |
|
| 402 | 402 | |
| 403 | - if ( isset( $this->items[ $item_id ] ) ) { |
|
| 404 | - $this->totals['subtotal']['initial'] -= $this->items[ $item_id ]->get_sub_total(); |
|
| 405 | - $this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total(); |
|
| 403 | + if (isset($this->items[$item_id])) { |
|
| 404 | + $this->totals['subtotal']['initial'] -= $this->items[$item_id]->get_sub_total(); |
|
| 405 | + $this->totals['subtotal']['recurring'] -= $this->items[$item_id]->get_recurring_sub_total(); |
|
| 406 | 406 | |
| 407 | - if ( $this->items[ $item_id ]->is_recurring() ) { |
|
| 407 | + if ($this->items[$item_id]->is_recurring()) { |
|
| 408 | 408 | $this->has_recurring = 0; |
| 409 | 409 | } |
| 410 | 410 | |
| 411 | - unset( $this->items[ $item_id ] ); |
|
| 411 | + unset($this->items[$item_id]); |
|
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | } |
@@ -420,7 +420,7 @@ discard block |
||
| 420 | 420 | */ |
| 421 | 421 | public function get_subtotal() { |
| 422 | 422 | |
| 423 | - if ( wpinv_prices_include_tax() ) { |
|
| 423 | + if (wpinv_prices_include_tax()) { |
|
| 424 | 424 | return $this->totals['subtotal']['initial'] - $this->totals['taxes']['initial']; |
| 425 | 425 | } |
| 426 | 426 | |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | */ |
| 435 | 435 | public function get_recurring_subtotal() { |
| 436 | 436 | |
| 437 | - if ( wpinv_prices_include_tax() ) { |
|
| 437 | + if (wpinv_prices_include_tax()) { |
|
| 438 | 438 | return $this->totals['subtotal']['recurring'] - $this->totals['taxes']['recurring']; |
| 439 | 439 | } |
| 440 | 440 | |
@@ -458,7 +458,7 @@ discard block |
||
| 458 | 458 | * @return bool |
| 459 | 459 | */ |
| 460 | 460 | public function has_subscription_group() { |
| 461 | - return $this->has_recurring && getpaid_should_group_subscriptions( $this ) && 1 == count( getpaid_get_subscription_groups( $this ) ); |
|
| 461 | + return $this->has_recurring && getpaid_should_group_subscriptions($this) && 1 == count(getpaid_get_subscription_groups($this)); |
|
| 462 | 462 | } |
| 463 | 463 | |
| 464 | 464 | /** |
@@ -468,7 +468,7 @@ discard block |
||
| 468 | 468 | * @return bool |
| 469 | 469 | */ |
| 470 | 470 | public function has_multiple_subscription_groups() { |
| 471 | - return $this->has_recurring && 1 < count( getpaid_get_subscription_groups( $this ) ); |
|
| 471 | + return $this->has_recurring && 1 < count(getpaid_get_subscription_groups($this)); |
|
| 472 | 472 | } |
| 473 | 473 | |
| 474 | 474 | /* |
@@ -488,39 +488,39 @@ discard block |
||
| 488 | 488 | public function process_taxes() { |
| 489 | 489 | |
| 490 | 490 | // Abort if we're not using taxes. |
| 491 | - if ( ! $this->use_taxes() ) { |
|
| 491 | + if (!$this->use_taxes()) { |
|
| 492 | 492 | return; |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | 495 | // If a custom country && state has been passed in, use it to calculate taxes. |
| 496 | - $country = $this->get_field( 'wpinv_country', 'billing' ); |
|
| 497 | - if ( ! empty( $country ) ) { |
|
| 496 | + $country = $this->get_field('wpinv_country', 'billing'); |
|
| 497 | + if (!empty($country)) { |
|
| 498 | 498 | $this->country = $country; |
| 499 | 499 | } |
| 500 | 500 | |
| 501 | - $state = $this->get_field( 'wpinv_state', 'billing' ); |
|
| 502 | - if ( ! empty( $state ) ) { |
|
| 501 | + $state = $this->get_field('wpinv_state', 'billing'); |
|
| 502 | + if (!empty($state)) { |
|
| 503 | 503 | $this->state = $state; |
| 504 | 504 | } |
| 505 | 505 | |
| 506 | 506 | // Confirm if the provided country and the ip country are similar. |
| 507 | - $address_confirmed = $this->get_field( 'confirm-address' ); |
|
| 508 | - if ( isset( $_POST['billing']['country'] ) && wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty( $address_confirmed ) ) { |
|
| 509 | - throw new Exception( __( 'The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing' ) ); |
|
| 507 | + $address_confirmed = $this->get_field('confirm-address'); |
|
| 508 | + if (isset($_POST['billing']['country']) && wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty($address_confirmed)) { |
|
| 509 | + throw new Exception(__('The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing')); |
|
| 510 | 510 | } |
| 511 | 511 | |
| 512 | 512 | // Abort if the country is not taxable. |
| 513 | - if ( ! wpinv_is_country_taxable( $this->country ) ) { |
|
| 513 | + if (!wpinv_is_country_taxable($this->country)) { |
|
| 514 | 514 | return; |
| 515 | 515 | } |
| 516 | 516 | |
| 517 | - $processor = new GetPaid_Payment_Form_Submission_Taxes( $this ); |
|
| 517 | + $processor = new GetPaid_Payment_Form_Submission_Taxes($this); |
|
| 518 | 518 | |
| 519 | - foreach ( $processor->taxes as $tax ) { |
|
| 520 | - $this->add_tax( $tax ); |
|
| 519 | + foreach ($processor->taxes as $tax) { |
|
| 520 | + $this->add_tax($tax); |
|
| 521 | 521 | } |
| 522 | 522 | |
| 523 | - do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) ); |
|
| 523 | + do_action_ref_array('getpaid_submissions_process_taxes', array(&$this)); |
|
| 524 | 524 | } |
| 525 | 525 | |
| 526 | 526 | /** |
@@ -529,16 +529,16 @@ discard block |
||
| 529 | 529 | * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required. |
| 530 | 530 | * @since 1.0.19 |
| 531 | 531 | */ |
| 532 | - public function add_tax( $tax ) { |
|
| 532 | + public function add_tax($tax) { |
|
| 533 | 533 | |
| 534 | - if ( wpinv_round_tax_per_tax_rate() ) { |
|
| 535 | - $tax['initial_tax'] = wpinv_round_amount( $tax['initial_tax'] ); |
|
| 536 | - $tax['recurring_tax'] = wpinv_round_amount( $tax['recurring_tax'] ); |
|
| 534 | + if (wpinv_round_tax_per_tax_rate()) { |
|
| 535 | + $tax['initial_tax'] = wpinv_round_amount($tax['initial_tax']); |
|
| 536 | + $tax['recurring_tax'] = wpinv_round_amount($tax['recurring_tax']); |
|
| 537 | 537 | } |
| 538 | 538 | |
| 539 | - $this->taxes[ $tax['name'] ] = $tax; |
|
| 540 | - $this->totals['taxes']['initial'] += wpinv_sanitize_amount( $tax['initial_tax'] ); |
|
| 541 | - $this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] ); |
|
| 539 | + $this->taxes[$tax['name']] = $tax; |
|
| 540 | + $this->totals['taxes']['initial'] += wpinv_sanitize_amount($tax['initial_tax']); |
|
| 541 | + $this->totals['taxes']['recurring'] += wpinv_sanitize_amount($tax['recurring_tax']); |
|
| 542 | 542 | |
| 543 | 543 | } |
| 544 | 544 | |
@@ -547,12 +547,12 @@ discard block |
||
| 547 | 547 | * |
| 548 | 548 | * @since 1.0.19 |
| 549 | 549 | */ |
| 550 | - public function remove_tax( $tax_name ) { |
|
| 550 | + public function remove_tax($tax_name) { |
|
| 551 | 551 | |
| 552 | - if ( isset( $this->taxes[ $tax_name ] ) ) { |
|
| 553 | - $this->totals['taxes']['initial'] -= $this->taxes[ $tax_name ]['initial_tax']; |
|
| 554 | - $this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax']; |
|
| 555 | - unset( $this->taxes[ $tax_name ] ); |
|
| 552 | + if (isset($this->taxes[$tax_name])) { |
|
| 553 | + $this->totals['taxes']['initial'] -= $this->taxes[$tax_name]['initial_tax']; |
|
| 554 | + $this->totals['taxes']['recurring'] -= $this->taxes[$tax_name]['recurring_tax']; |
|
| 555 | + unset($this->taxes[$tax_name]); |
|
| 556 | 556 | } |
| 557 | 557 | |
| 558 | 558 | } |
@@ -566,11 +566,11 @@ discard block |
||
| 566 | 566 | |
| 567 | 567 | $use_taxes = wpinv_use_taxes(); |
| 568 | 568 | |
| 569 | - if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) { |
|
| 569 | + if ($this->has_invoice() && !$this->invoice->is_taxable()) { |
|
| 570 | 570 | $use_taxes = false; |
| 571 | 571 | } |
| 572 | 572 | |
| 573 | - return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this ); |
|
| 573 | + return apply_filters('getpaid_submission_use_taxes', $use_taxes, $this); |
|
| 574 | 574 | |
| 575 | 575 | } |
| 576 | 576 | |
@@ -619,13 +619,13 @@ discard block |
||
| 619 | 619 | |
| 620 | 620 | $initial_total = $this->get_subtotal() + $this->get_fee() + $this->get_tax(); |
| 621 | 621 | $recurring_total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax(); |
| 622 | - $processor = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total ); |
|
| 622 | + $processor = new GetPaid_Payment_Form_Submission_Discount($this, $initial_total, $recurring_total); |
|
| 623 | 623 | |
| 624 | - foreach ( $processor->discounts as $discount ) { |
|
| 625 | - $this->add_discount( $discount ); |
|
| 624 | + foreach ($processor->discounts as $discount) { |
|
| 625 | + $this->add_discount($discount); |
|
| 626 | 626 | } |
| 627 | 627 | |
| 628 | - do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) ); |
|
| 628 | + do_action_ref_array('getpaid_submissions_process_discounts', array(&$this)); |
|
| 629 | 629 | } |
| 630 | 630 | |
| 631 | 631 | /** |
@@ -634,10 +634,10 @@ discard block |
||
| 634 | 634 | * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code. |
| 635 | 635 | * @since 1.0.19 |
| 636 | 636 | */ |
| 637 | - public function add_discount( $discount ) { |
|
| 638 | - $this->discounts[ $discount['name'] ] = $discount; |
|
| 639 | - $this->totals['discount']['initial'] += wpinv_sanitize_amount( $discount['initial_discount'] ); |
|
| 640 | - $this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] ); |
|
| 637 | + public function add_discount($discount) { |
|
| 638 | + $this->discounts[$discount['name']] = $discount; |
|
| 639 | + $this->totals['discount']['initial'] += wpinv_sanitize_amount($discount['initial_discount']); |
|
| 640 | + $this->totals['discount']['recurring'] += wpinv_sanitize_amount($discount['recurring_discount']); |
|
| 641 | 641 | } |
| 642 | 642 | |
| 643 | 643 | /** |
@@ -645,12 +645,12 @@ discard block |
||
| 645 | 645 | * |
| 646 | 646 | * @since 1.0.19 |
| 647 | 647 | */ |
| 648 | - public function remove_discount( $name ) { |
|
| 648 | + public function remove_discount($name) { |
|
| 649 | 649 | |
| 650 | - if ( isset( $this->discounts[ $name ] ) ) { |
|
| 651 | - $this->totals['discount']['initial'] -= $this->discounts[ $name ]['initial_discount']; |
|
| 652 | - $this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount']; |
|
| 653 | - unset( $this->discounts[ $name ] ); |
|
| 650 | + if (isset($this->discounts[$name])) { |
|
| 651 | + $this->totals['discount']['initial'] -= $this->discounts[$name]['initial_discount']; |
|
| 652 | + $this->totals['discount']['recurring'] -= $this->discounts[$name]['recurring_discount']; |
|
| 653 | + unset($this->discounts[$name]); |
|
| 654 | 654 | } |
| 655 | 655 | |
| 656 | 656 | } |
@@ -662,7 +662,7 @@ discard block |
||
| 662 | 662 | * @return bool |
| 663 | 663 | */ |
| 664 | 664 | public function has_discount_code() { |
| 665 | - return ! empty( $this->discounts['discount_code'] ); |
|
| 665 | + return !empty($this->discounts['discount_code']); |
|
| 666 | 666 | } |
| 667 | 667 | |
| 668 | 668 | /** |
@@ -719,13 +719,13 @@ discard block |
||
| 719 | 719 | */ |
| 720 | 720 | public function process_fees() { |
| 721 | 721 | |
| 722 | - $fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this ); |
|
| 722 | + $fees_processor = new GetPaid_Payment_Form_Submission_Fees($this); |
|
| 723 | 723 | |
| 724 | - foreach ( $fees_processor->fees as $fee ) { |
|
| 725 | - $this->add_fee( $fee ); |
|
| 724 | + foreach ($fees_processor->fees as $fee) { |
|
| 725 | + $this->add_fee($fee); |
|
| 726 | 726 | } |
| 727 | 727 | |
| 728 | - do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) ); |
|
| 728 | + do_action_ref_array('getpaid_submissions_process_fees', array(&$this)); |
|
| 729 | 729 | } |
| 730 | 730 | |
| 731 | 731 | /** |
@@ -734,17 +734,17 @@ discard block |
||
| 734 | 734 | * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required. |
| 735 | 735 | * @since 1.0.19 |
| 736 | 736 | */ |
| 737 | - public function add_fee( $fee ) { |
|
| 737 | + public function add_fee($fee) { |
|
| 738 | 738 | |
| 739 | - if ( $fee['name'] == 'shipping' ) { |
|
| 740 | - $this->totals['shipping']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
| 741 | - $this->totals['shipping']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
| 739 | + if ($fee['name'] == 'shipping') { |
|
| 740 | + $this->totals['shipping']['initial'] += wpinv_sanitize_amount($fee['initial_fee']); |
|
| 741 | + $this->totals['shipping']['recurring'] += wpinv_sanitize_amount($fee['recurring_fee']); |
|
| 742 | 742 | return; |
| 743 | 743 | } |
| 744 | 744 | |
| 745 | - $this->fees[ $fee['name'] ] = $fee; |
|
| 746 | - $this->totals['fees']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
| 747 | - $this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
| 745 | + $this->fees[$fee['name']] = $fee; |
|
| 746 | + $this->totals['fees']['initial'] += wpinv_sanitize_amount($fee['initial_fee']); |
|
| 747 | + $this->totals['fees']['recurring'] += wpinv_sanitize_amount($fee['recurring_fee']); |
|
| 748 | 748 | |
| 749 | 749 | } |
| 750 | 750 | |
@@ -753,15 +753,15 @@ discard block |
||
| 753 | 753 | * |
| 754 | 754 | * @since 1.0.19 |
| 755 | 755 | */ |
| 756 | - public function remove_fee( $name ) { |
|
| 756 | + public function remove_fee($name) { |
|
| 757 | 757 | |
| 758 | - if ( isset( $this->fees[ $name ] ) ) { |
|
| 759 | - $this->totals['fees']['initial'] -= $this->fees[ $name ]['initial_fee']; |
|
| 760 | - $this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee']; |
|
| 761 | - unset( $this->fees[ $name ] ); |
|
| 758 | + if (isset($this->fees[$name])) { |
|
| 759 | + $this->totals['fees']['initial'] -= $this->fees[$name]['initial_fee']; |
|
| 760 | + $this->totals['fees']['recurring'] -= $this->fees[$name]['recurring_fee']; |
|
| 761 | + unset($this->fees[$name]); |
|
| 762 | 762 | } |
| 763 | 763 | |
| 764 | - if ( 'shipping' == $name ) { |
|
| 764 | + if ('shipping' == $name) { |
|
| 765 | 765 | $this->totals['shipping']['initial'] = 0; |
| 766 | 766 | $this->totals['shipping']['recurring'] = 0; |
| 767 | 767 | } |
@@ -802,7 +802,7 @@ discard block |
||
| 802 | 802 | * @since 1.0.19 |
| 803 | 803 | */ |
| 804 | 804 | public function has_fees() { |
| 805 | - return count( $this->fees ) !== 0; |
|
| 805 | + return count($this->fees) !== 0; |
|
| 806 | 806 | } |
| 807 | 807 | |
| 808 | 808 | /* |
@@ -838,7 +838,7 @@ discard block |
||
| 838 | 838 | * @since 1.0.19 |
| 839 | 839 | */ |
| 840 | 840 | public function has_shipping() { |
| 841 | - return apply_filters( 'getpaid_payment_form_has_shipping', false, $this ); |
|
| 841 | + return apply_filters('getpaid_payment_form_has_shipping', false, $this); |
|
| 842 | 842 | } |
| 843 | 843 | |
| 844 | 844 | /** |
@@ -848,7 +848,7 @@ discard block |
||
| 848 | 848 | * @since 1.0.19 |
| 849 | 849 | */ |
| 850 | 850 | public function is_initial_fetch() { |
| 851 | - return isset( $this->data['initial_state'] ) && empty( $this->data['initial_state'] ); |
|
| 851 | + return isset($this->data['initial_state']) && empty($this->data['initial_state']); |
|
| 852 | 852 | } |
| 853 | 853 | |
| 854 | 854 | /** |
@@ -858,7 +858,7 @@ discard block |
||
| 858 | 858 | */ |
| 859 | 859 | public function get_total() { |
| 860 | 860 | $total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() + $this->get_shipping() - $this->get_discount(); |
| 861 | - return max( $total, 0 ); |
|
| 861 | + return max($total, 0); |
|
| 862 | 862 | } |
| 863 | 863 | |
| 864 | 864 | /** |
@@ -868,7 +868,7 @@ discard block |
||
| 868 | 868 | */ |
| 869 | 869 | public function get_recurring_total() { |
| 870 | 870 | $total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() + $this->get_recurring_shipping() - $this->get_recurring_discount(); |
| 871 | - return max( $total, 0 ); |
|
| 871 | + return max($total, 0); |
|
| 872 | 872 | } |
| 873 | 873 | |
| 874 | 874 | /** |
@@ -880,12 +880,12 @@ discard block |
||
| 880 | 880 | $initial = $this->get_total(); |
| 881 | 881 | $recurring = $this->get_recurring_total(); |
| 882 | 882 | |
| 883 | - if ( $this->has_recurring == 0 ) { |
|
| 883 | + if ($this->has_recurring == 0) { |
|
| 884 | 884 | $recurring = 0; |
| 885 | 885 | } |
| 886 | 886 | |
| 887 | 887 | $collect = $initial > 0 || $recurring > 0; |
| 888 | - return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this ); |
|
| 888 | + return apply_filters('getpaid_submission_should_collect_payment_details', $collect, $this); |
|
| 889 | 889 | } |
| 890 | 890 | |
| 891 | 891 | /** |
@@ -894,7 +894,7 @@ discard block |
||
| 894 | 894 | * @since 1.0.19 |
| 895 | 895 | */ |
| 896 | 896 | public function get_billing_email() { |
| 897 | - return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this ); |
|
| 897 | + return apply_filters('getpaid_get_submission_billing_email', $this->get_field('billing_email'), $this); |
|
| 898 | 898 | } |
| 899 | 899 | |
| 900 | 900 | /** |
@@ -904,7 +904,7 @@ discard block |
||
| 904 | 904 | */ |
| 905 | 905 | public function has_billing_email() { |
| 906 | 906 | $billing_email = $this->get_billing_email(); |
| 907 | - return ! empty( $billing_email ) && is_email( $billing_email ); |
|
| 907 | + return !empty($billing_email) && is_email($billing_email); |
|
| 908 | 908 | } |
| 909 | 909 | |
| 910 | 910 | /** |
@@ -934,8 +934,8 @@ discard block |
||
| 934 | 934 | * @since 1.0.19 |
| 935 | 935 | * @return mixed|null |
| 936 | 936 | */ |
| 937 | - public function get_field( $field, $sub_array_key = null ) { |
|
| 938 | - return getpaid_get_array_field( $this->data, $field, $sub_array_key ); |
|
| 937 | + public function get_field($field, $sub_array_key = null) { |
|
| 938 | + return getpaid_get_array_field($this->data, $field, $sub_array_key); |
|
| 939 | 939 | } |
| 940 | 940 | |
| 941 | 941 | /** |
@@ -943,8 +943,8 @@ discard block |
||
| 943 | 943 | * |
| 944 | 944 | * @since 1.0.19 |
| 945 | 945 | */ |
| 946 | - public function is_required_field_set( $field ) { |
|
| 947 | - return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] ); |
|
| 946 | + public function is_required_field_set($field) { |
|
| 947 | + return empty($field['required']) || !empty($this->data[$field['id']]); |
|
| 948 | 948 | } |
| 949 | 949 | |
| 950 | 950 | /** |
@@ -952,8 +952,8 @@ discard block |
||
| 952 | 952 | * |
| 953 | 953 | * @since 1.0.19 |
| 954 | 954 | */ |
| 955 | - public function format_amount( $amount ) { |
|
| 956 | - return wpinv_price( $amount, $this->get_currency() ); |
|
| 955 | + public function format_amount($amount) { |
|
| 956 | + return wpinv_price($amount, $this->get_currency()); |
|
| 957 | 957 | } |
| 958 | 958 | |
| 959 | 959 | } |