@@ -13,18 +13,18 @@ discard block |
||
| 13 | 13 | * @return WPInv_Subscription[]|WPInv_Subscription|false |
| 14 | 14 | * @since 2.3.0 |
| 15 | 15 | */ |
| 16 | -function getpaid_get_invoice_subscriptions( $invoice ) { |
|
| 16 | +function getpaid_get_invoice_subscriptions($invoice) { |
|
| 17 | 17 | |
| 18 | 18 | // Retrieve subscription groups. |
| 19 | - $subscription_ids = wp_list_pluck( getpaid_get_invoice_subscription_groups( $invoice->get_id() ), 'subscription_id' ); |
|
| 19 | + $subscription_ids = wp_list_pluck(getpaid_get_invoice_subscription_groups($invoice->get_id()), 'subscription_id'); |
|
| 20 | 20 | |
| 21 | 21 | // No subscription groups, normal subscription. |
| 22 | - if ( empty( $subscription_ids ) ) { |
|
| 23 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 22 | + if (empty($subscription_ids)) { |
|
| 23 | + return getpaid_subscriptions()->get_invoice_subscription($invoice); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | // Subscription groups. |
| 27 | - return array_filter( array_map( 'getpaid_get_subscription', $subscription_ids ) ); |
|
| 27 | + return array_filter(array_map('getpaid_get_subscription', $subscription_ids)); |
|
| 28 | 28 | |
| 29 | 29 | } |
| 30 | 30 | |
@@ -35,9 +35,9 @@ discard block |
||
| 35 | 35 | * @return array |
| 36 | 36 | * @since 2.3.0 |
| 37 | 37 | */ |
| 38 | -function getpaid_get_invoice_subscription_groups( $invoice_id ) { |
|
| 39 | - $subscription_groups = get_post_meta( $invoice_id, 'getpaid_subscription_groups', true ); |
|
| 40 | - return empty( $subscription_groups ) ? array() : $subscription_groups; |
|
| 38 | +function getpaid_get_invoice_subscription_groups($invoice_id) { |
|
| 39 | + $subscription_groups = get_post_meta($invoice_id, 'getpaid_subscription_groups', true); |
|
| 40 | + return empty($subscription_groups) ? array() : $subscription_groups; |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
@@ -48,10 +48,10 @@ discard block |
||
| 48 | 48 | * @return array|false |
| 49 | 49 | * @since 2.3.0 |
| 50 | 50 | */ |
| 51 | -function getpaid_get_invoice_subscription_group( $invoice_id, $subscription_id ) { |
|
| 52 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $invoice_id ); |
|
| 53 | - $matching_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 54 | - return reset( $matching_group ); |
|
| 51 | +function getpaid_get_invoice_subscription_group($invoice_id, $subscription_id) { |
|
| 52 | + $subscription_groups = getpaid_get_invoice_subscription_groups($invoice_id); |
|
| 53 | + $matching_group = wp_list_filter($subscription_groups, compact('subscription_id')); |
|
| 54 | + return reset($matching_group); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | /** |
@@ -61,10 +61,10 @@ discard block |
||
| 61 | 61 | * @since 2.3.0 |
| 62 | 62 | * @return WPInv_Subscription|false |
| 63 | 63 | */ |
| 64 | -function getpaid_get_subscription( $subscription ) { |
|
| 64 | +function getpaid_get_subscription($subscription) { |
|
| 65 | 65 | |
| 66 | - if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 67 | - $subscription = new WPInv_Subscription( $subscription ); |
|
| 66 | + if (!is_a($subscription, 'WPInv_Subscription')) { |
|
| 67 | + $subscription = new WPInv_Subscription($subscription); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | return $subscription->exists() ? $subscription : false; |
@@ -79,26 +79,26 @@ discard block |
||
| 79 | 79 | * |
| 80 | 80 | * @return int|array|WPInv_Subscription[]|GetPaid_Subscriptions_Query |
| 81 | 81 | */ |
| 82 | -function getpaid_get_subscriptions( $args = array(), $return = 'results' ) { |
|
| 82 | +function getpaid_get_subscriptions($args = array(), $return = 'results') { |
|
| 83 | 83 | |
| 84 | 84 | // Do not retrieve all fields if we just want the count. |
| 85 | - if ( 'count' == $return ) { |
|
| 85 | + if ('count' == $return) { |
|
| 86 | 86 | $args['fields'] = 'id'; |
| 87 | 87 | $args['number'] = 1; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | // Do not count all matches if we just want the results. |
| 91 | - if ( 'results' == $return ) { |
|
| 91 | + if ('results' == $return) { |
|
| 92 | 92 | $args['count_total'] = false; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - $query = new GetPaid_Subscriptions_Query( $args ); |
|
| 95 | + $query = new GetPaid_Subscriptions_Query($args); |
|
| 96 | 96 | |
| 97 | - if ( 'results' == $return ) { |
|
| 97 | + if ('results' == $return) { |
|
| 98 | 98 | return $query->get_results(); |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - if ( 'count' == $return ) { |
|
| 101 | + if ('count' == $return) { |
|
| 102 | 102 | return $query->get_total(); |
| 103 | 103 | } |
| 104 | 104 | |
@@ -115,13 +115,13 @@ discard block |
||
| 115 | 115 | return apply_filters( |
| 116 | 116 | 'getpaid_get_subscription_statuses', |
| 117 | 117 | array( |
| 118 | - 'pending' => __( 'Pending', 'invoicing' ), |
|
| 119 | - 'trialling' => __( 'Trialing', 'invoicing' ), |
|
| 120 | - 'active' => __( 'Active', 'invoicing' ), |
|
| 121 | - 'failing' => __( 'Failing', 'invoicing' ), |
|
| 122 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
| 123 | - 'completed' => __( 'Complete', 'invoicing' ), |
|
| 124 | - 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
| 118 | + 'pending' => __('Pending', 'invoicing'), |
|
| 119 | + 'trialling' => __('Trialing', 'invoicing'), |
|
| 120 | + 'active' => __('Active', 'invoicing'), |
|
| 121 | + 'failing' => __('Failing', 'invoicing'), |
|
| 122 | + 'expired' => __('Expired', 'invoicing'), |
|
| 123 | + 'completed' => __('Complete', 'invoicing'), |
|
| 124 | + 'cancelled' => __('Cancelled', 'invoicing'), |
|
| 125 | 125 | ) |
| 126 | 126 | ); |
| 127 | 127 | |
@@ -132,9 +132,9 @@ discard block |
||
| 132 | 132 | * |
| 133 | 133 | * @return string |
| 134 | 134 | */ |
| 135 | -function getpaid_get_subscription_status_label( $status ) { |
|
| 135 | +function getpaid_get_subscription_status_label($status) { |
|
| 136 | 136 | $statuses = getpaid_get_subscription_statuses(); |
| 137 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
| 137 | + return isset($statuses[$status]) ? $statuses[$status] : ucfirst(sanitize_text_field($status)); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
@@ -164,14 +164,14 @@ discard block |
||
| 164 | 164 | * |
| 165 | 165 | * @return array |
| 166 | 166 | */ |
| 167 | -function getpaid_get_subscription_status_counts( $args = array() ) { |
|
| 167 | +function getpaid_get_subscription_status_counts($args = array()) { |
|
| 168 | 168 | |
| 169 | - $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
| 169 | + $statuses = array_keys(getpaid_get_subscription_statuses()); |
|
| 170 | 170 | $counts = array(); |
| 171 | 171 | |
| 172 | - foreach ( $statuses as $status ) { |
|
| 173 | - $_args = wp_parse_args( "status=$status", $args ); |
|
| 174 | - $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
| 172 | + foreach ($statuses as $status) { |
|
| 173 | + $_args = wp_parse_args("status=$status", $args); |
|
| 174 | + $counts[$status] = getpaid_get_subscriptions($_args, 'count'); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | return $counts; |
@@ -190,23 +190,23 @@ discard block |
||
| 190 | 190 | array( |
| 191 | 191 | |
| 192 | 192 | 'day' => array( |
| 193 | - 'singular' => __( '%s day', 'invoicing' ), |
|
| 194 | - 'plural' => __( '%d days', 'invoicing' ), |
|
| 193 | + 'singular' => __('%s day', 'invoicing'), |
|
| 194 | + 'plural' => __('%d days', 'invoicing'), |
|
| 195 | 195 | ), |
| 196 | 196 | |
| 197 | 197 | 'week' => array( |
| 198 | - 'singular' => __( '%s week', 'invoicing' ), |
|
| 199 | - 'plural' => __( '%d weeks', 'invoicing' ), |
|
| 198 | + 'singular' => __('%s week', 'invoicing'), |
|
| 199 | + 'plural' => __('%d weeks', 'invoicing'), |
|
| 200 | 200 | ), |
| 201 | 201 | |
| 202 | 202 | 'month' => array( |
| 203 | - 'singular' => __( '%s month', 'invoicing' ), |
|
| 204 | - 'plural' => __( '%d months', 'invoicing' ), |
|
| 203 | + 'singular' => __('%s month', 'invoicing'), |
|
| 204 | + 'plural' => __('%d months', 'invoicing'), |
|
| 205 | 205 | ), |
| 206 | 206 | |
| 207 | 207 | 'year' => array( |
| 208 | - 'singular' => __( '%s year', 'invoicing' ), |
|
| 209 | - 'plural' => __( '%d years', 'invoicing' ), |
|
| 208 | + 'singular' => __('%s year', 'invoicing'), |
|
| 209 | + 'plural' => __('%d years', 'invoicing'), |
|
| 210 | 210 | ), |
| 211 | 211 | |
| 212 | 212 | ) |
@@ -220,8 +220,8 @@ discard block |
||
| 220 | 220 | * @param string $trial_period |
| 221 | 221 | * @return int |
| 222 | 222 | */ |
| 223 | -function getpaid_get_subscription_trial_period_interval( $trial_period ) { |
|
| 224 | - return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
| 223 | +function getpaid_get_subscription_trial_period_interval($trial_period) { |
|
| 224 | + return (int) preg_replace('/[^0-9]/', '', $trial_period); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | /** |
@@ -230,8 +230,8 @@ discard block |
||
| 230 | 230 | * @param string $trial_period |
| 231 | 231 | * @return string |
| 232 | 232 | */ |
| 233 | -function getpaid_get_subscription_trial_period_period( $trial_period ) { |
|
| 234 | - return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
| 233 | +function getpaid_get_subscription_trial_period_period($trial_period) { |
|
| 234 | + return preg_replace('/[^a-z]/', '', strtolower($trial_period)); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
@@ -241,9 +241,9 @@ discard block |
||
| 241 | 241 | * @param int $interval |
| 242 | 242 | * @return string |
| 243 | 243 | */ |
| 244 | -function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) { |
|
| 245 | - $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
| 246 | - return strtolower( sanitize_text_field( $label ) ); |
|
| 244 | +function getpaid_get_subscription_period_label($period, $interval = 1, $singular_prefix = '1') { |
|
| 245 | + $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label($period, $interval) : getpaid_get_singular_subscription_period_label($period, $singular_prefix); |
|
| 246 | + return strtolower(sanitize_text_field($label)); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | /** |
@@ -252,19 +252,19 @@ discard block |
||
| 252 | 252 | * @param string $period |
| 253 | 253 | * @return string |
| 254 | 254 | */ |
| 255 | -function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) { |
|
| 255 | +function getpaid_get_singular_subscription_period_label($period, $singular_prefix = '1') { |
|
| 256 | 256 | |
| 257 | 257 | $periods = getpaid_get_subscription_periods(); |
| 258 | - $period = strtolower( $period ); |
|
| 258 | + $period = strtolower($period); |
|
| 259 | 259 | |
| 260 | - if ( isset( $periods[ $period ] ) ) { |
|
| 261 | - return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
| 260 | + if (isset($periods[$period])) { |
|
| 261 | + return sprintf($periods[$period]['singular'], $singular_prefix); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | // Backwards compatibility. |
| 265 | - foreach ( $periods as $key => $data ) { |
|
| 266 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 267 | - return sprintf( $data['singular'], $singular_prefix ); |
|
| 265 | + foreach ($periods as $key => $data) { |
|
| 266 | + if (strpos($key, $period) === 0) { |
|
| 267 | + return sprintf($data['singular'], $singular_prefix); |
|
| 268 | 268 | } |
| 269 | 269 | } |
| 270 | 270 | |
@@ -279,19 +279,19 @@ discard block |
||
| 279 | 279 | * @param int $interval |
| 280 | 280 | * @return string |
| 281 | 281 | */ |
| 282 | -function getpaid_get_plural_subscription_period_label( $period, $interval ) { |
|
| 282 | +function getpaid_get_plural_subscription_period_label($period, $interval) { |
|
| 283 | 283 | |
| 284 | 284 | $periods = getpaid_get_subscription_periods(); |
| 285 | - $period = strtolower( $period ); |
|
| 285 | + $period = strtolower($period); |
|
| 286 | 286 | |
| 287 | - if ( isset( $periods[ $period ] ) ) { |
|
| 288 | - return sprintf( $periods[ $period ]['plural'], $interval ); |
|
| 287 | + if (isset($periods[$period])) { |
|
| 288 | + return sprintf($periods[$period]['plural'], $interval); |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | // Backwards compatibility. |
| 292 | - foreach ( $periods as $key => $data ) { |
|
| 293 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 294 | - return sprintf( $data['plural'], $interval ); |
|
| 292 | + foreach ($periods as $key => $data) { |
|
| 293 | + if (strpos($key, $period) === 0) { |
|
| 294 | + return sprintf($data['plural'], $interval); |
|
| 295 | 295 | } |
| 296 | 296 | } |
| 297 | 297 | |
@@ -305,32 +305,32 @@ discard block |
||
| 305 | 305 | * @param WPInv_Subscription $subscription |
| 306 | 306 | * @return string |
| 307 | 307 | */ |
| 308 | -function getpaid_get_formatted_subscription_amount( $subscription ) { |
|
| 308 | +function getpaid_get_formatted_subscription_amount($subscription) { |
|
| 309 | 309 | |
| 310 | - $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 311 | - $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 312 | - $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 310 | + $initial = wpinv_price($subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency()); |
|
| 311 | + $recurring = wpinv_price($subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency()); |
|
| 312 | + $period = getpaid_get_subscription_period_label($subscription->get_period(), $subscription->get_frequency(), ''); |
|
| 313 | 313 | $bill_times = $subscription->get_bill_times(); |
| 314 | 314 | |
| 315 | - if ( ! empty( $bill_times ) ) { |
|
| 315 | + if (!empty($bill_times)) { |
|
| 316 | 316 | $bill_times = $subscription->get_frequency() * $bill_times; |
| 317 | - $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
| 317 | + $bill_times = getpaid_get_subscription_period_label($subscription->get_period(), $bill_times); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | 320 | // Trial periods. |
| 321 | - if ( $subscription->has_trial_period() ) { |
|
| 321 | + if ($subscription->has_trial_period()) { |
|
| 322 | 322 | |
| 323 | - $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
| 324 | - $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
| 323 | + $trial_period = getpaid_get_subscription_trial_period_period($subscription->get_trial_period()); |
|
| 324 | + $trial_interval = getpaid_get_subscription_trial_period_interval($subscription->get_trial_period()); |
|
| 325 | 325 | |
| 326 | - if ( empty( $bill_times ) ) { |
|
| 326 | + if (empty($bill_times)) { |
|
| 327 | 327 | |
| 328 | 328 | return sprintf( |
| 329 | 329 | |
| 330 | 330 | // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
| 331 | - _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
| 331 | + _x('%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing'), |
|
| 332 | 332 | $initial, |
| 333 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 333 | + getpaid_get_subscription_period_label($trial_period, $trial_interval), |
|
| 334 | 334 | $recurring, |
| 335 | 335 | $period |
| 336 | 336 | |
@@ -341,9 +341,9 @@ discard block |
||
| 341 | 341 | return sprintf( |
| 342 | 342 | |
| 343 | 343 | // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times |
| 344 | - _x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ), |
|
| 344 | + _x('%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing'), |
|
| 345 | 345 | $initial, |
| 346 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 346 | + getpaid_get_subscription_period_label($trial_period, $trial_interval), |
|
| 347 | 347 | $recurring, |
| 348 | 348 | $period, |
| 349 | 349 | $bill_times |
@@ -351,14 +351,14 @@ discard block |
||
| 351 | 351 | |
| 352 | 352 | } |
| 353 | 353 | |
| 354 | - if ( $initial != $recurring ) { |
|
| 354 | + if ($initial != $recurring) { |
|
| 355 | 355 | |
| 356 | - if ( empty( $bill_times ) ) { |
|
| 356 | + if (empty($bill_times)) { |
|
| 357 | 357 | |
| 358 | 358 | return sprintf( |
| 359 | 359 | |
| 360 | 360 | // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
| 361 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
| 361 | + _x('Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing'), |
|
| 362 | 362 | $initial, |
| 363 | 363 | $recurring, |
| 364 | 364 | $period |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | return sprintf( |
| 371 | 371 | |
| 372 | 372 | // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
| 373 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ), |
|
| 373 | + _x('Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing'), |
|
| 374 | 374 | $initial, |
| 375 | 375 | $recurring, |
| 376 | 376 | $period, |
@@ -380,12 +380,12 @@ discard block |
||
| 380 | 380 | |
| 381 | 381 | } |
| 382 | 382 | |
| 383 | - if ( empty( $bill_times ) ) { |
|
| 383 | + if (empty($bill_times)) { |
|
| 384 | 384 | |
| 385 | 385 | return sprintf( |
| 386 | 386 | |
| 387 | 387 | // translators: $1: is the recurring amount, $2: is the recurring period |
| 388 | - _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
| 388 | + _x('%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing'), |
|
| 389 | 389 | $initial, |
| 390 | 390 | $period |
| 391 | 391 | |
@@ -396,7 +396,7 @@ discard block |
||
| 396 | 396 | return sprintf( |
| 397 | 397 | |
| 398 | 398 | // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
| 399 | - _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
| 399 | + _x('%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing'), |
|
| 400 | 400 | $bill_times, |
| 401 | 401 | $initial, |
| 402 | 402 | $period |
@@ -411,8 +411,8 @@ discard block |
||
| 411 | 411 | * @param WPInv_Invoice $invoice |
| 412 | 412 | * @return WPInv_Subscription|false |
| 413 | 413 | */ |
| 414 | -function getpaid_get_invoice_subscription( $invoice ) { |
|
| 415 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 414 | +function getpaid_get_invoice_subscription($invoice) { |
|
| 415 | + return getpaid_subscriptions()->get_invoice_subscription($invoice); |
|
| 416 | 416 | } |
| 417 | 417 | |
| 418 | 418 | /** |
@@ -420,9 +420,9 @@ discard block |
||
| 420 | 420 | * |
| 421 | 421 | * @param WPInv_Invoice $invoice |
| 422 | 422 | */ |
| 423 | -function getpaid_activate_invoice_subscription( $invoice ) { |
|
| 424 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 425 | - if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 423 | +function getpaid_activate_invoice_subscription($invoice) { |
|
| 424 | + $subscription = getpaid_get_invoice_subscription($invoice); |
|
| 425 | + if (is_a($subscription, 'WPInv_Subscription')) { |
|
| 426 | 426 | $subscription->activate(); |
| 427 | 427 | } |
| 428 | 428 | } |
@@ -433,7 +433,7 @@ discard block |
||
| 433 | 433 | * @return WPInv_Subscriptions |
| 434 | 434 | */ |
| 435 | 435 | function getpaid_subscriptions() { |
| 436 | - return getpaid()->get( 'subscriptions' ); |
|
| 436 | + return getpaid()->get('subscriptions'); |
|
| 437 | 437 | } |
| 438 | 438 | |
| 439 | 439 | /** |
@@ -442,13 +442,13 @@ discard block |
||
| 442 | 442 | * @since 2.3.0 |
| 443 | 443 | * @return WPInv_Subscription|bool |
| 444 | 444 | */ |
| 445 | -function wpinv_get_invoice_subscription( $invoice ) { |
|
| 445 | +function wpinv_get_invoice_subscription($invoice) { |
|
| 446 | 446 | |
| 447 | 447 | // Retrieve the invoice. |
| 448 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 448 | + $invoice = new WPInv_Invoice($invoice); |
|
| 449 | 449 | |
| 450 | 450 | // Ensure it is a recurring invoice. |
| 451 | - if ( ! $invoice->is_recurring() ) { |
|
| 451 | + if (!$invoice->is_recurring()) { |
|
| 452 | 452 | return false; |
| 453 | 453 | } |
| 454 | 454 | |
@@ -460,7 +460,7 @@ discard block |
||
| 460 | 460 | ) |
| 461 | 461 | ); |
| 462 | 462 | |
| 463 | - return empty( $subscription ) ? false : $subscription[0]; |
|
| 463 | + return empty($subscription) ? false : $subscription[0]; |
|
| 464 | 464 | |
| 465 | 465 | } |
| 466 | 466 | |
@@ -475,50 +475,50 @@ discard block |
||
| 475 | 475 | * @param GetPaid_Form_Item|WPInv_Item $cart_item |
| 476 | 476 | * @return string |
| 477 | 477 | */ |
| 478 | -function getpaid_get_recurring_item_key( $cart_item ) { |
|
| 478 | +function getpaid_get_recurring_item_key($cart_item) { |
|
| 479 | 479 | |
| 480 | 480 | $cart_key = 'renews_'; |
| 481 | 481 | $interval = $cart_item->get_recurring_interval(); |
| 482 | - $period = $cart_item->get_recurring_period( true ); |
|
| 482 | + $period = $cart_item->get_recurring_period(true); |
|
| 483 | 483 | $length = $cart_item->get_recurring_limit() * $interval; |
| 484 | - $trial_period = $cart_item->get_trial_period( true ); |
|
| 484 | + $trial_period = $cart_item->get_trial_period(true); |
|
| 485 | 485 | $trial_length = $cart_item->get_trial_interval(); |
| 486 | 486 | |
| 487 | 487 | // First start with the billing interval and period |
| 488 | - switch ( $interval ) { |
|
| 488 | + switch ($interval) { |
|
| 489 | 489 | case 1 : |
| 490 | - if ( 'day' == $period ) { |
|
| 490 | + if ('day' == $period) { |
|
| 491 | 491 | $cart_key .= 'daily'; |
| 492 | 492 | } else { |
| 493 | - $cart_key .= sprintf( '%sly', $period ); |
|
| 493 | + $cart_key .= sprintf('%sly', $period); |
|
| 494 | 494 | } |
| 495 | 495 | break; |
| 496 | 496 | case 2 : |
| 497 | - $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
| 497 | + $cart_key .= sprintf('every_2nd_%s', $period); |
|
| 498 | 498 | break; |
| 499 | 499 | case 3 : |
| 500 | - $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
| 500 | + $cart_key .= sprintf('every_3rd_%s', $period); |
|
| 501 | 501 | break; |
| 502 | 502 | default: |
| 503 | - $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
| 503 | + $cart_key .= sprintf('every_%dth_%s', $interval, $period); |
|
| 504 | 504 | break; |
| 505 | 505 | } |
| 506 | 506 | |
| 507 | 507 | // Maybe add the optional maximum billing periods... |
| 508 | - if ( $length > 0 ) { |
|
| 508 | + if ($length > 0) { |
|
| 509 | 509 | $cart_key .= '_for_'; |
| 510 | - $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
| 511 | - if ( $length > 1 ) { |
|
| 510 | + $cart_key .= sprintf('%d_%s', $length, $period); |
|
| 511 | + if ($length > 1) { |
|
| 512 | 512 | $cart_key .= 's'; |
| 513 | 513 | } |
| 514 | 514 | } |
| 515 | 515 | |
| 516 | 516 | // And an optional free trial. |
| 517 | - if ( $cart_item->has_free_trial() ) { |
|
| 518 | - $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
| 517 | + if ($cart_item->has_free_trial()) { |
|
| 518 | + $cart_key .= sprintf('_after_a_%d_%s_trial', $trial_length, $trial_period); |
|
| 519 | 519 | } |
| 520 | 520 | |
| 521 | - return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
| 521 | + return apply_filters('getpaid_get_recurring_item_key', $cart_key, $cart_item); |
|
| 522 | 522 | } |
| 523 | 523 | |
| 524 | 524 | /** |
@@ -527,14 +527,14 @@ discard block |
||
| 527 | 527 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
| 528 | 528 | * @return array |
| 529 | 529 | */ |
| 530 | -function getpaid_get_subscription_groups( $invoice ) { |
|
| 530 | +function getpaid_get_subscription_groups($invoice) { |
|
| 531 | 531 | |
| 532 | 532 | // Generate subscription groups. |
| 533 | 533 | $subscription_groups = array(); |
| 534 | - foreach ( $invoice->get_items() as $item ) { |
|
| 534 | + foreach ($invoice->get_items() as $item) { |
|
| 535 | 535 | |
| 536 | - if ( $item->is_recurring() ) { |
|
| 537 | - $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
| 536 | + if ($item->is_recurring()) { |
|
| 537 | + $subscription_groups[getpaid_get_recurring_item_key($item)][] = $item; |
|
| 538 | 538 | } |
| 539 | 539 | |
| 540 | 540 | } |
@@ -551,19 +551,19 @@ discard block |
||
| 551 | 551 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
| 552 | 552 | * @return array |
| 553 | 553 | */ |
| 554 | -function getpaid_calculate_subscription_totals( $invoice ) { |
|
| 554 | +function getpaid_calculate_subscription_totals($invoice) { |
|
| 555 | 555 | |
| 556 | 556 | // Generate subscription groups. |
| 557 | - $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
| 557 | + $subscription_groups = getpaid_get_subscription_groups($invoice); |
|
| 558 | 558 | |
| 559 | 559 | // Now let's calculate the totals for each group of subscriptions |
| 560 | 560 | $subscription_totals = array(); |
| 561 | 561 | |
| 562 | - foreach ( $subscription_groups as $subscription_key => $items ) { |
|
| 562 | + foreach ($subscription_groups as $subscription_key => $items) { |
|
| 563 | 563 | |
| 564 | - if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
| 564 | + if (empty($subscription_totals[$subscription_key])) { |
|
| 565 | 565 | |
| 566 | - $subscription_totals[ $subscription_key ] = array( |
|
| 566 | + $subscription_totals[$subscription_key] = array( |
|
| 567 | 567 | 'initial_total' => 0, |
| 568 | 568 | 'recurring_total' => 0, |
| 569 | 569 | 'items' => array(), |
@@ -576,34 +576,34 @@ discard block |
||
| 576 | 576 | * Get the totals of the group. |
| 577 | 577 | * @var GetPaid_Form_Item $item |
| 578 | 578 | */ |
| 579 | - foreach ( $items as $item ) { |
|
| 579 | + foreach ($items as $item) { |
|
| 580 | 580 | |
| 581 | - $subscription_totals[ $subscription_key ]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
| 582 | - $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
| 583 | - $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
| 584 | - $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
| 585 | - $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total(); |
|
| 586 | - $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total(); |
|
| 587 | - $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
| 581 | + $subscription_totals[$subscription_key]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
| 582 | + $subscription_totals[$subscription_key]['item_id'] = $item->get_id(); |
|
| 583 | + $subscription_totals[$subscription_key]['period'] = $item->get_recurring_period(true); |
|
| 584 | + $subscription_totals[$subscription_key]['interval'] = $item->get_recurring_interval(); |
|
| 585 | + $subscription_totals[$subscription_key]['initial_total'] += $item->get_sub_total(); |
|
| 586 | + $subscription_totals[$subscription_key]['recurring_total'] += $item->get_recurring_sub_total(); |
|
| 587 | + $subscription_totals[$subscription_key]['recurring_limit'] = $item->get_recurring_limit(); |
|
| 588 | 588 | |
| 589 | 589 | // Calculate the next renewal date. |
| 590 | - $period = $item->get_recurring_period( true ); |
|
| 590 | + $period = $item->get_recurring_period(true); |
|
| 591 | 591 | $interval = $item->get_recurring_interval(); |
| 592 | 592 | |
| 593 | 593 | // If the subscription item has a trial period... |
| 594 | - if ( $item->has_free_trial() ) { |
|
| 595 | - $period = $item->get_trial_period( true ); |
|
| 594 | + if ($item->has_free_trial()) { |
|
| 595 | + $period = $item->get_trial_period(true); |
|
| 596 | 596 | $interval = $item->get_trial_interval(); |
| 597 | - $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
| 597 | + $subscription_totals[$subscription_key]['trialling'] = $interval . ' ' . $period; |
|
| 598 | 598 | } |
| 599 | 599 | |
| 600 | - $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
| 600 | + $subscription_totals[$subscription_key]['renews_on'] = date('Y-m-d H:i:s', strtotime("+$interval $period", current_time('timestamp'))); |
|
| 601 | 601 | |
| 602 | 602 | } |
| 603 | 603 | |
| 604 | 604 | } |
| 605 | 605 | |
| 606 | - return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
| 606 | + return apply_filters('getpaid_calculate_subscription_totals', $subscription_totals, $invoice); |
|
| 607 | 607 | } |
| 608 | 608 | |
| 609 | 609 | /** |
@@ -612,19 +612,19 @@ discard block |
||
| 612 | 612 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
| 613 | 613 | * @return array |
| 614 | 614 | */ |
| 615 | -function getpaid_should_group_subscriptions( $invoice ) { |
|
| 615 | +function getpaid_should_group_subscriptions($invoice) { |
|
| 616 | 616 | |
| 617 | 617 | $recurring_items = 0; |
| 618 | 618 | |
| 619 | - foreach ( $invoice->get_items() as $item ) { |
|
| 619 | + foreach ($invoice->get_items() as $item) { |
|
| 620 | 620 | |
| 621 | - if ( $item->is_recurring() ) { |
|
| 622 | - $recurring_items ++; |
|
| 621 | + if ($item->is_recurring()) { |
|
| 622 | + $recurring_items++; |
|
| 623 | 623 | } |
| 624 | 624 | |
| 625 | 625 | } |
| 626 | 626 | |
| 627 | - return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
| 627 | + return apply_filters('getpaid_should_group_subscriptions', $recurring_items > 1, $invoice); |
|
| 628 | 628 | } |
| 629 | 629 | |
| 630 | 630 | /** |
@@ -634,12 +634,12 @@ discard block |
||
| 634 | 634 | * @param int|false $subscription_id |
| 635 | 635 | * @return int |
| 636 | 636 | */ |
| 637 | -function getpaid_count_subscription_invoices( $parent_invoice_id, $subscription_id = false ) { |
|
| 637 | +function getpaid_count_subscription_invoices($parent_invoice_id, $subscription_id = false) { |
|
| 638 | 638 | global $wpdb; |
| 639 | 639 | |
| 640 | 640 | $parent_invoice_id = (int) $parent_invoice_id; |
| 641 | 641 | |
| 642 | - if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) { |
|
| 642 | + if (false === $subscription_id || !(bool) get_post_meta($parent_invoice_id, '_wpinv_subscription_id', true)) { |
|
| 643 | 643 | |
| 644 | 644 | return (int) $wpdb->get_var( |
| 645 | 645 | $wpdb->prepare( |
@@ -661,10 +661,10 @@ discard block |
||
| 661 | 661 | |
| 662 | 662 | $count = 0; |
| 663 | 663 | |
| 664 | - foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) { |
|
| 664 | + foreach (wp_parse_id_list($invoice_ids) as $invoice_id) { |
|
| 665 | 665 | |
| 666 | - if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) { |
|
| 667 | - $count ++; |
|
| 666 | + if ($invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta($invoice_id, '_wpinv_subscription_id', true)) { |
|
| 667 | + $count++; |
|
| 668 | 668 | continue; |
| 669 | 669 | } |
| 670 | 670 | |
@@ -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 | * The Subscription Class |
@@ -68,27 +68,27 @@ discard block |
||
| 68 | 68 | * @param int|string|object|WPInv_Subscription $subscription Subscription id, profile_id, or object to read. |
| 69 | 69 | * @param bool $deprecated |
| 70 | 70 | */ |
| 71 | - function __construct( $subscription = 0, $deprecated = false ) { |
|
| 71 | + function __construct($subscription = 0, $deprecated = false) { |
|
| 72 | 72 | |
| 73 | - parent::__construct( $subscription ); |
|
| 73 | + parent::__construct($subscription); |
|
| 74 | 74 | |
| 75 | - if ( ! $deprecated && ! empty( $subscription ) && is_numeric( $subscription ) ) { |
|
| 76 | - $this->set_id( $subscription ); |
|
| 77 | - } elseif ( $subscription instanceof self ) { |
|
| 78 | - $this->set_id( $subscription->get_id() ); |
|
| 79 | - } elseif ( $deprecated && $subscription_id = self::get_subscription_id_by_field( $subscription, 'profile_id' ) ) { |
|
| 80 | - $this->set_id( $subscription_id ); |
|
| 81 | - } elseif ( ! empty( $subscription->id ) ) { |
|
| 82 | - $this->set_id( $subscription->id ); |
|
| 75 | + if (!$deprecated && !empty($subscription) && is_numeric($subscription)) { |
|
| 76 | + $this->set_id($subscription); |
|
| 77 | + } elseif ($subscription instanceof self) { |
|
| 78 | + $this->set_id($subscription->get_id()); |
|
| 79 | + } elseif ($deprecated && $subscription_id = self::get_subscription_id_by_field($subscription, 'profile_id')) { |
|
| 80 | + $this->set_id($subscription_id); |
|
| 81 | + } elseif (!empty($subscription->id)) { |
|
| 82 | + $this->set_id($subscription->id); |
|
| 83 | 83 | } else { |
| 84 | - $this->set_object_read( true ); |
|
| 84 | + $this->set_object_read(true); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | // Load the datastore. |
| 88 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 88 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
| 89 | 89 | |
| 90 | - if ( $this->get_id() > 0 ) { |
|
| 91 | - $this->data_store->read( $this ); |
|
| 90 | + if ($this->get_id() > 0) { |
|
| 91 | + $this->data_store->read($this); |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | } |
@@ -103,17 +103,17 @@ discard block |
||
| 103 | 103 | * @since 1.0.19 |
| 104 | 104 | * @return int |
| 105 | 105 | */ |
| 106 | - public static function get_subscription_id_by_field( $value, $field = 'profile_id' ) { |
|
| 106 | + public static function get_subscription_id_by_field($value, $field = 'profile_id') { |
|
| 107 | 107 | global $wpdb; |
| 108 | 108 | |
| 109 | 109 | // Trim the value. |
| 110 | - $value = trim( $value ); |
|
| 110 | + $value = trim($value); |
|
| 111 | 111 | |
| 112 | - if ( empty( $value ) ) { |
|
| 112 | + if (empty($value)) { |
|
| 113 | 113 | return 0; |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - if ( 'invoice_id' == $field ) { |
|
| 116 | + if ('invoice_id' == $field) { |
|
| 117 | 117 | $field = 'parent_payment_id'; |
| 118 | 118 | } |
| 119 | 119 | |
@@ -125,28 +125,28 @@ discard block |
||
| 125 | 125 | ); |
| 126 | 126 | |
| 127 | 127 | // Ensure a field has been passed. |
| 128 | - if ( empty( $field ) || ! in_array( $field, $fields ) ) { |
|
| 128 | + if (empty($field) || !in_array($field, $fields)) { |
|
| 129 | 129 | return 0; |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | // Maybe retrieve from the cache. |
| 133 | - $subscription_id = wp_cache_get( $value, "getpaid_subscription_{$field}s_to_subscription_ids" ); |
|
| 134 | - if ( ! empty( $subscription_id ) ) { |
|
| 133 | + $subscription_id = wp_cache_get($value, "getpaid_subscription_{$field}s_to_subscription_ids"); |
|
| 134 | + if (!empty($subscription_id)) { |
|
| 135 | 135 | return $subscription_id; |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | // Fetch from the db. |
| 139 | 139 | $table = $wpdb->prefix . 'wpinv_subscriptions'; |
| 140 | 140 | $subscription_id = (int) $wpdb->get_var( |
| 141 | - $wpdb->prepare( "SELECT `id` FROM $table WHERE `$field`=%s LIMIT 1", $value ) |
|
| 141 | + $wpdb->prepare("SELECT `id` FROM $table WHERE `$field`=%s LIMIT 1", $value) |
|
| 142 | 142 | ); |
| 143 | 143 | |
| 144 | - if ( empty( $subscription_id ) ) { |
|
| 144 | + if (empty($subscription_id)) { |
|
| 145 | 145 | return 0; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | // Update the cache with our data. |
| 149 | - wp_cache_set( $value, $subscription_id, "getpaid_subscription_{$field}s_to_subscription_ids" ); |
|
| 149 | + wp_cache_set($value, $subscription_id, "getpaid_subscription_{$field}s_to_subscription_ids"); |
|
| 150 | 150 | |
| 151 | 151 | return $subscription_id; |
| 152 | 152 | } |
@@ -155,17 +155,17 @@ discard block |
||
| 155 | 155 | * Clears the subscription's cache. |
| 156 | 156 | */ |
| 157 | 157 | public function clear_cache() { |
| 158 | - wp_cache_delete( $this->get_parent_payment_id(), 'getpaid_subscription_parent_payment_ids_to_subscription_ids' ); |
|
| 159 | - wp_cache_delete( $this->get_transaction_id(), 'getpaid_subscription_transaction_ids_to_subscription_ids' ); |
|
| 160 | - wp_cache_delete( $this->get_profile_id(), 'getpaid_subscription_profile_ids_to_subscription_ids' ); |
|
| 161 | - wp_cache_delete( $this->get_id(), 'getpaid_subscriptions' ); |
|
| 158 | + wp_cache_delete($this->get_parent_payment_id(), 'getpaid_subscription_parent_payment_ids_to_subscription_ids'); |
|
| 159 | + wp_cache_delete($this->get_transaction_id(), 'getpaid_subscription_transaction_ids_to_subscription_ids'); |
|
| 160 | + wp_cache_delete($this->get_profile_id(), 'getpaid_subscription_profile_ids_to_subscription_ids'); |
|
| 161 | + wp_cache_delete($this->get_id(), 'getpaid_subscriptions'); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
| 165 | 165 | * Checks if a subscription key is set. |
| 166 | 166 | */ |
| 167 | - public function _isset( $key ) { |
|
| 168 | - return isset( $this->data[$key] ) || method_exists( $this, "get_$key" ); |
|
| 167 | + public function _isset($key) { |
|
| 168 | + return isset($this->data[$key]) || method_exists($this, "get_$key"); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | /* |
@@ -190,8 +190,8 @@ discard block |
||
| 190 | 190 | * @param string $context View or edit context. |
| 191 | 191 | * @return int |
| 192 | 192 | */ |
| 193 | - public function get_customer_id( $context = 'view' ) { |
|
| 194 | - return (int) $this->get_prop( 'customer_id', $context ); |
|
| 193 | + public function get_customer_id($context = 'view') { |
|
| 194 | + return (int) $this->get_prop('customer_id', $context); |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
@@ -201,8 +201,8 @@ discard block |
||
| 201 | 201 | * @param string $context View or edit context. |
| 202 | 202 | * @return WP_User|false WP_User object on success, false on failure. |
| 203 | 203 | */ |
| 204 | - public function get_customer( $context = 'view' ) { |
|
| 205 | - return get_userdata( $this->get_customer_id( $context ) ); |
|
| 204 | + public function get_customer($context = 'view') { |
|
| 205 | + return get_userdata($this->get_customer_id($context)); |
|
| 206 | 206 | } |
| 207 | 207 | |
| 208 | 208 | /** |
@@ -212,8 +212,8 @@ discard block |
||
| 212 | 212 | * @param string $context View or edit context. |
| 213 | 213 | * @return int |
| 214 | 214 | */ |
| 215 | - public function get_parent_invoice_id( $context = 'view' ) { |
|
| 216 | - return (int) $this->get_prop( 'parent_payment_id', $context ); |
|
| 215 | + public function get_parent_invoice_id($context = 'view') { |
|
| 216 | + return (int) $this->get_prop('parent_payment_id', $context); |
|
| 217 | 217 | } |
| 218 | 218 | |
| 219 | 219 | /** |
@@ -223,8 +223,8 @@ discard block |
||
| 223 | 223 | * @param string $context View or edit context. |
| 224 | 224 | * @return int |
| 225 | 225 | */ |
| 226 | - public function get_parent_payment_id( $context = 'view' ) { |
|
| 227 | - return $this->get_parent_invoice_id( $context ); |
|
| 226 | + public function get_parent_payment_id($context = 'view') { |
|
| 227 | + return $this->get_parent_invoice_id($context); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | /** |
@@ -233,8 +233,8 @@ discard block |
||
| 233 | 233 | * @since 1.0.0 |
| 234 | 234 | * @return int |
| 235 | 235 | */ |
| 236 | - public function get_original_payment_id( $context = 'view' ) { |
|
| 237 | - return $this->get_parent_invoice_id( $context ); |
|
| 236 | + public function get_original_payment_id($context = 'view') { |
|
| 237 | + return $this->get_parent_invoice_id($context); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | /** |
@@ -244,8 +244,8 @@ discard block |
||
| 244 | 244 | * @param string $context View or edit context. |
| 245 | 245 | * @return WPInv_Invoice |
| 246 | 246 | */ |
| 247 | - public function get_parent_invoice( $context = 'view' ) { |
|
| 248 | - return new WPInv_Invoice( $this->get_parent_invoice_id( $context ) ); |
|
| 247 | + public function get_parent_invoice($context = 'view') { |
|
| 248 | + return new WPInv_Invoice($this->get_parent_invoice_id($context)); |
|
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | /** |
@@ -255,8 +255,8 @@ discard block |
||
| 255 | 255 | * @param string $context View or edit context. |
| 256 | 256 | * @return WPInv_Invoice |
| 257 | 257 | */ |
| 258 | - public function get_parent_payment( $context = 'view' ) { |
|
| 259 | - return $this->get_parent_invoice( $context ); |
|
| 258 | + public function get_parent_payment($context = 'view') { |
|
| 259 | + return $this->get_parent_invoice($context); |
|
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | /** |
@@ -266,8 +266,8 @@ discard block |
||
| 266 | 266 | * @param string $context View or edit context. |
| 267 | 267 | * @return int |
| 268 | 268 | */ |
| 269 | - public function get_product_id( $context = 'view' ) { |
|
| 270 | - return (int) $this->get_prop( 'product_id', $context ); |
|
| 269 | + public function get_product_id($context = 'view') { |
|
| 270 | + return (int) $this->get_prop('product_id', $context); |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | /** |
@@ -277,8 +277,8 @@ discard block |
||
| 277 | 277 | * @param string $context View or edit context. |
| 278 | 278 | * @return WPInv_Item |
| 279 | 279 | */ |
| 280 | - public function get_product( $context = 'view' ) { |
|
| 281 | - return new WPInv_Item( $this->get_product_id( $context ) ); |
|
| 280 | + public function get_product($context = 'view') { |
|
| 281 | + return new WPInv_Item($this->get_product_id($context)); |
|
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | /** |
@@ -290,8 +290,8 @@ discard block |
||
| 290 | 290 | * @param string $context View or edit context. |
| 291 | 291 | * @return string |
| 292 | 292 | */ |
| 293 | - public function get_gateway( $context = 'view' ) { |
|
| 294 | - return $this->get_parent_invoice( $context )->get_gateway(); |
|
| 293 | + public function get_gateway($context = 'view') { |
|
| 294 | + return $this->get_parent_invoice($context)->get_gateway(); |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | /** |
@@ -301,8 +301,8 @@ discard block |
||
| 301 | 301 | * @param string $context View or edit context. |
| 302 | 302 | * @return string |
| 303 | 303 | */ |
| 304 | - public function get_period( $context = 'view' ) { |
|
| 305 | - return $this->get_prop( 'period', $context ); |
|
| 304 | + public function get_period($context = 'view') { |
|
| 305 | + return $this->get_prop('period', $context); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | /** |
@@ -312,8 +312,8 @@ discard block |
||
| 312 | 312 | * @param string $context View or edit context. |
| 313 | 313 | * @return int |
| 314 | 314 | */ |
| 315 | - public function get_frequency( $context = 'view' ) { |
|
| 316 | - return (int) $this->get_prop( 'frequency', $context ); |
|
| 315 | + public function get_frequency($context = 'view') { |
|
| 316 | + return (int) $this->get_prop('frequency', $context); |
|
| 317 | 317 | } |
| 318 | 318 | |
| 319 | 319 | /** |
@@ -323,8 +323,8 @@ discard block |
||
| 323 | 323 | * @param string $context View or edit context. |
| 324 | 324 | * @return float |
| 325 | 325 | */ |
| 326 | - public function get_initial_amount( $context = 'view' ) { |
|
| 327 | - return (float) wpinv_sanitize_amount( $this->get_prop( 'initial_amount', $context ) ); |
|
| 326 | + public function get_initial_amount($context = 'view') { |
|
| 327 | + return (float) wpinv_sanitize_amount($this->get_prop('initial_amount', $context)); |
|
| 328 | 328 | } |
| 329 | 329 | |
| 330 | 330 | /** |
@@ -334,8 +334,8 @@ discard block |
||
| 334 | 334 | * @param string $context View or edit context. |
| 335 | 335 | * @return float |
| 336 | 336 | */ |
| 337 | - public function get_recurring_amount( $context = 'view' ) { |
|
| 338 | - return (float) wpinv_sanitize_amount( $this->get_prop( 'recurring_amount', $context ) ); |
|
| 337 | + public function get_recurring_amount($context = 'view') { |
|
| 338 | + return (float) wpinv_sanitize_amount($this->get_prop('recurring_amount', $context)); |
|
| 339 | 339 | } |
| 340 | 340 | |
| 341 | 341 | /** |
@@ -345,8 +345,8 @@ discard block |
||
| 345 | 345 | * @param string $context View or edit context. |
| 346 | 346 | * @return int |
| 347 | 347 | */ |
| 348 | - public function get_bill_times( $context = 'view' ) { |
|
| 349 | - return (int) $this->get_prop( 'bill_times', $context ); |
|
| 348 | + public function get_bill_times($context = 'view') { |
|
| 349 | + return (int) $this->get_prop('bill_times', $context); |
|
| 350 | 350 | } |
| 351 | 351 | |
| 352 | 352 | /** |
@@ -356,8 +356,8 @@ discard block |
||
| 356 | 356 | * @param string $context View or edit context. |
| 357 | 357 | * @return string |
| 358 | 358 | */ |
| 359 | - public function get_transaction_id( $context = 'view' ) { |
|
| 360 | - return $this->get_prop( 'transaction_id', $context ); |
|
| 359 | + public function get_transaction_id($context = 'view') { |
|
| 360 | + return $this->get_prop('transaction_id', $context); |
|
| 361 | 361 | } |
| 362 | 362 | |
| 363 | 363 | /** |
@@ -367,8 +367,8 @@ discard block |
||
| 367 | 367 | * @param string $context View or edit context. |
| 368 | 368 | * @return string |
| 369 | 369 | */ |
| 370 | - public function get_created( $context = 'view' ) { |
|
| 371 | - return $this->get_prop( 'created', $context ); |
|
| 370 | + public function get_created($context = 'view') { |
|
| 371 | + return $this->get_prop('created', $context); |
|
| 372 | 372 | } |
| 373 | 373 | |
| 374 | 374 | /** |
@@ -378,8 +378,8 @@ discard block |
||
| 378 | 378 | * @param string $context View or edit context. |
| 379 | 379 | * @return string |
| 380 | 380 | */ |
| 381 | - public function get_date_created( $context = 'view' ) { |
|
| 382 | - return $this->get_created( $context ); |
|
| 381 | + public function get_date_created($context = 'view') { |
|
| 382 | + return $this->get_created($context); |
|
| 383 | 383 | } |
| 384 | 384 | |
| 385 | 385 | /** |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | */ |
| 391 | 391 | public function get_time_created() { |
| 392 | 392 | $created = $this->get_date_created(); |
| 393 | - return empty( $created ) ? current_time( 'timestamp' ) : strtotime( $created, current_time( 'timestamp' ) ); |
|
| 393 | + return empty($created) ? current_time('timestamp') : strtotime($created, current_time('timestamp')); |
|
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | /** |
@@ -400,11 +400,11 @@ discard block |
||
| 400 | 400 | * @param string $context View or edit context. |
| 401 | 401 | * @return string |
| 402 | 402 | */ |
| 403 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 404 | - $date = $this->get_date_created( $context ); |
|
| 403 | + public function get_date_created_gmt($context = 'view') { |
|
| 404 | + $date = $this->get_date_created($context); |
|
| 405 | 405 | |
| 406 | - if ( $date ) { |
|
| 407 | - $date = get_gmt_from_date( $date ); |
|
| 406 | + if ($date) { |
|
| 407 | + $date = get_gmt_from_date($date); |
|
| 408 | 408 | } |
| 409 | 409 | return $date; |
| 410 | 410 | } |
@@ -416,8 +416,8 @@ discard block |
||
| 416 | 416 | * @param string $context View or edit context. |
| 417 | 417 | * @return string |
| 418 | 418 | */ |
| 419 | - public function get_next_renewal_date( $context = 'view' ) { |
|
| 420 | - return $this->get_prop( 'expiration', $context ); |
|
| 419 | + public function get_next_renewal_date($context = 'view') { |
|
| 420 | + return $this->get_prop('expiration', $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 string |
| 429 | 429 | */ |
| 430 | - public function get_expiration( $context = 'view' ) { |
|
| 431 | - return $this->get_next_renewal_date( $context ); |
|
| 430 | + public function get_expiration($context = 'view') { |
|
| 431 | + return $this->get_next_renewal_date($context); |
|
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | /** |
@@ -440,12 +440,12 @@ discard block |
||
| 440 | 440 | public function get_expiration_time() { |
| 441 | 441 | $expiration = $this->get_expiration(); |
| 442 | 442 | |
| 443 | - if ( empty( $expiration ) || '0000-00-00 00:00:00' == $expiration ) { |
|
| 444 | - return current_time( 'timestamp' ); |
|
| 443 | + if (empty($expiration) || '0000-00-00 00:00:00' == $expiration) { |
|
| 444 | + return current_time('timestamp'); |
|
| 445 | 445 | } |
| 446 | 446 | |
| 447 | - $expiration = strtotime( $expiration, current_time( 'timestamp' ) ); |
|
| 448 | - return $expiration < current_time( 'timestamp' ) ? current_time( 'timestamp' ) : $expiration; |
|
| 447 | + $expiration = strtotime($expiration, current_time('timestamp')); |
|
| 448 | + return $expiration < current_time('timestamp') ? current_time('timestamp') : $expiration; |
|
| 449 | 449 | } |
| 450 | 450 | |
| 451 | 451 | /** |
@@ -455,11 +455,11 @@ discard block |
||
| 455 | 455 | * @param string $context View or edit context. |
| 456 | 456 | * @return string |
| 457 | 457 | */ |
| 458 | - public function get_next_renewal_date_gmt( $context = 'view' ) { |
|
| 459 | - $date = $this->get_next_renewal_date( $context ); |
|
| 458 | + public function get_next_renewal_date_gmt($context = 'view') { |
|
| 459 | + $date = $this->get_next_renewal_date($context); |
|
| 460 | 460 | |
| 461 | - if ( $date ) { |
|
| 462 | - $date = get_gmt_from_date( $date ); |
|
| 461 | + if ($date) { |
|
| 462 | + $date = get_gmt_from_date($date); |
|
| 463 | 463 | } |
| 464 | 464 | return $date; |
| 465 | 465 | } |
@@ -471,8 +471,8 @@ discard block |
||
| 471 | 471 | * @param string $context View or edit context. |
| 472 | 472 | * @return string |
| 473 | 473 | */ |
| 474 | - public function get_trial_period( $context = 'view' ) { |
|
| 475 | - return $this->get_prop( 'trial_period', $context ); |
|
| 474 | + public function get_trial_period($context = 'view') { |
|
| 475 | + return $this->get_prop('trial_period', $context); |
|
| 476 | 476 | } |
| 477 | 477 | |
| 478 | 478 | /** |
@@ -482,8 +482,8 @@ discard block |
||
| 482 | 482 | * @param string $context View or edit context. |
| 483 | 483 | * @return string |
| 484 | 484 | */ |
| 485 | - public function get_status( $context = 'view' ) { |
|
| 486 | - return $this->get_prop( 'status', $context ); |
|
| 485 | + public function get_status($context = 'view') { |
|
| 486 | + return $this->get_prop('status', $context); |
|
| 487 | 487 | } |
| 488 | 488 | |
| 489 | 489 | /** |
@@ -493,8 +493,8 @@ discard block |
||
| 493 | 493 | * @param string $context View or edit context. |
| 494 | 494 | * @return string |
| 495 | 495 | */ |
| 496 | - public function get_profile_id( $context = 'view' ) { |
|
| 497 | - return $this->get_prop( 'profile_id', $context ); |
|
| 496 | + public function get_profile_id($context = 'view') { |
|
| 497 | + return $this->get_prop('profile_id', $context); |
|
| 498 | 498 | } |
| 499 | 499 | |
| 500 | 500 | /* |
@@ -509,8 +509,8 @@ discard block |
||
| 509 | 509 | * @since 1.0.19 |
| 510 | 510 | * @param int $value The customer's id. |
| 511 | 511 | */ |
| 512 | - public function set_customer_id( $value ) { |
|
| 513 | - $this->set_prop( 'customer_id', (int) $value ); |
|
| 512 | + public function set_customer_id($value) { |
|
| 513 | + $this->set_prop('customer_id', (int) $value); |
|
| 514 | 514 | } |
| 515 | 515 | |
| 516 | 516 | /** |
@@ -519,8 +519,8 @@ discard block |
||
| 519 | 519 | * @since 1.0.19 |
| 520 | 520 | * @param int $value The parent invoice id. |
| 521 | 521 | */ |
| 522 | - public function set_parent_invoice_id( $value ) { |
|
| 523 | - $this->set_prop( 'parent_payment_id', (int) $value ); |
|
| 522 | + public function set_parent_invoice_id($value) { |
|
| 523 | + $this->set_prop('parent_payment_id', (int) $value); |
|
| 524 | 524 | } |
| 525 | 525 | |
| 526 | 526 | /** |
@@ -529,8 +529,8 @@ discard block |
||
| 529 | 529 | * @since 1.0.19 |
| 530 | 530 | * @param int $value The parent invoice id. |
| 531 | 531 | */ |
| 532 | - public function set_parent_payment_id( $value ) { |
|
| 533 | - $this->set_parent_invoice_id( $value ); |
|
| 532 | + public function set_parent_payment_id($value) { |
|
| 533 | + $this->set_parent_invoice_id($value); |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | 536 | /** |
@@ -539,8 +539,8 @@ discard block |
||
| 539 | 539 | * @since 1.0.19 |
| 540 | 540 | * @param int $value The parent invoice id. |
| 541 | 541 | */ |
| 542 | - public function set_original_payment_id( $value ) { |
|
| 543 | - $this->set_parent_invoice_id( $value ); |
|
| 542 | + public function set_original_payment_id($value) { |
|
| 543 | + $this->set_parent_invoice_id($value); |
|
| 544 | 544 | } |
| 545 | 545 | |
| 546 | 546 | /** |
@@ -549,8 +549,8 @@ discard block |
||
| 549 | 549 | * @since 1.0.19 |
| 550 | 550 | * @param int $value The subscription product id. |
| 551 | 551 | */ |
| 552 | - public function set_product_id( $value ) { |
|
| 553 | - $this->set_prop( 'product_id', (int) $value ); |
|
| 552 | + public function set_product_id($value) { |
|
| 553 | + $this->set_prop('product_id', (int) $value); |
|
| 554 | 554 | } |
| 555 | 555 | |
| 556 | 556 | /** |
@@ -559,8 +559,8 @@ discard block |
||
| 559 | 559 | * @since 1.0.19 |
| 560 | 560 | * @param string $value The renewal period. |
| 561 | 561 | */ |
| 562 | - public function set_period( $value ) { |
|
| 563 | - $this->set_prop( 'period', $value ); |
|
| 562 | + public function set_period($value) { |
|
| 563 | + $this->set_prop('period', $value); |
|
| 564 | 564 | } |
| 565 | 565 | |
| 566 | 566 | /** |
@@ -569,9 +569,9 @@ discard block |
||
| 569 | 569 | * @since 1.0.19 |
| 570 | 570 | * @param int $value The subscription frequency. |
| 571 | 571 | */ |
| 572 | - public function set_frequency( $value ) { |
|
| 573 | - $value = empty( $value ) ? 1 : (int) $value; |
|
| 574 | - $this->set_prop( 'frequency', absint( $value ) ); |
|
| 572 | + public function set_frequency($value) { |
|
| 573 | + $value = empty($value) ? 1 : (int) $value; |
|
| 574 | + $this->set_prop('frequency', absint($value)); |
|
| 575 | 575 | } |
| 576 | 576 | |
| 577 | 577 | /** |
@@ -580,8 +580,8 @@ discard block |
||
| 580 | 580 | * @since 1.0.19 |
| 581 | 581 | * @param float $value The initial subcription amount. |
| 582 | 582 | */ |
| 583 | - public function set_initial_amount( $value ) { |
|
| 584 | - $this->set_prop( 'initial_amount', wpinv_sanitize_amount( $value ) ); |
|
| 583 | + public function set_initial_amount($value) { |
|
| 584 | + $this->set_prop('initial_amount', wpinv_sanitize_amount($value)); |
|
| 585 | 585 | } |
| 586 | 586 | |
| 587 | 587 | /** |
@@ -590,8 +590,8 @@ discard block |
||
| 590 | 590 | * @since 1.0.19 |
| 591 | 591 | * @param float $value The recurring subcription amount. |
| 592 | 592 | */ |
| 593 | - public function set_recurring_amount( $value ) { |
|
| 594 | - $this->set_prop( 'recurring_amount', wpinv_sanitize_amount( $value ) ); |
|
| 593 | + public function set_recurring_amount($value) { |
|
| 594 | + $this->set_prop('recurring_amount', wpinv_sanitize_amount($value)); |
|
| 595 | 595 | } |
| 596 | 596 | |
| 597 | 597 | /** |
@@ -600,8 +600,8 @@ discard block |
||
| 600 | 600 | * @since 1.0.19 |
| 601 | 601 | * @param int $value Bill times. |
| 602 | 602 | */ |
| 603 | - public function set_bill_times( $value ) { |
|
| 604 | - $this->set_prop( 'bill_times', (int) $value ); |
|
| 603 | + public function set_bill_times($value) { |
|
| 604 | + $this->set_prop('bill_times', (int) $value); |
|
| 605 | 605 | } |
| 606 | 606 | |
| 607 | 607 | /** |
@@ -610,8 +610,8 @@ discard block |
||
| 610 | 610 | * @since 1.0.19 |
| 611 | 611 | * @param string $value Bill times. |
| 612 | 612 | */ |
| 613 | - public function set_transaction_id( $value ) { |
|
| 614 | - $this->set_prop( 'transaction_id', sanitize_text_field( $value ) ); |
|
| 613 | + public function set_transaction_id($value) { |
|
| 614 | + $this->set_prop('transaction_id', sanitize_text_field($value)); |
|
| 615 | 615 | } |
| 616 | 616 | |
| 617 | 617 | /** |
@@ -620,15 +620,15 @@ discard block |
||
| 620 | 620 | * @since 1.0.19 |
| 621 | 621 | * @param string $value strtotime compliant date. |
| 622 | 622 | */ |
| 623 | - public function set_created( $value ) { |
|
| 624 | - $date = strtotime( $value ); |
|
| 623 | + public function set_created($value) { |
|
| 624 | + $date = strtotime($value); |
|
| 625 | 625 | |
| 626 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
| 627 | - $this->set_prop( 'created', date( 'Y-m-d H:i:s', $date ) ); |
|
| 626 | + if ($date && $value !== '0000-00-00 00:00:00') { |
|
| 627 | + $this->set_prop('created', date('Y-m-d H:i:s', $date)); |
|
| 628 | 628 | return; |
| 629 | 629 | } |
| 630 | 630 | |
| 631 | - $this->set_prop( 'created', '' ); |
|
| 631 | + $this->set_prop('created', ''); |
|
| 632 | 632 | |
| 633 | 633 | } |
| 634 | 634 | |
@@ -638,8 +638,8 @@ discard block |
||
| 638 | 638 | * @since 1.0.19 |
| 639 | 639 | * @param string $value strtotime compliant date. |
| 640 | 640 | */ |
| 641 | - public function set_date_created( $value ) { |
|
| 642 | - $this->set_created( $value ); |
|
| 641 | + public function set_date_created($value) { |
|
| 642 | + $this->set_created($value); |
|
| 643 | 643 | } |
| 644 | 644 | |
| 645 | 645 | /** |
@@ -648,15 +648,15 @@ discard block |
||
| 648 | 648 | * @since 1.0.19 |
| 649 | 649 | * @param string $value strtotime compliant date. |
| 650 | 650 | */ |
| 651 | - public function set_next_renewal_date( $value ) { |
|
| 652 | - $date = strtotime( $value ); |
|
| 651 | + public function set_next_renewal_date($value) { |
|
| 652 | + $date = strtotime($value); |
|
| 653 | 653 | |
| 654 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
| 655 | - $this->set_prop( 'expiration', date( 'Y-m-d H:i:s', $date ) ); |
|
| 654 | + if ($date && $value !== '0000-00-00 00:00:00') { |
|
| 655 | + $this->set_prop('expiration', date('Y-m-d H:i:s', $date)); |
|
| 656 | 656 | return; |
| 657 | 657 | } |
| 658 | 658 | |
| 659 | - $this->set_prop( 'expiration', '' ); |
|
| 659 | + $this->set_prop('expiration', ''); |
|
| 660 | 660 | |
| 661 | 661 | } |
| 662 | 662 | |
@@ -666,8 +666,8 @@ discard block |
||
| 666 | 666 | * @since 1.0.19 |
| 667 | 667 | * @param string $value strtotime compliant date. |
| 668 | 668 | */ |
| 669 | - public function set_expiration( $value ) { |
|
| 670 | - $this->set_next_renewal_date( $value ); |
|
| 669 | + public function set_expiration($value) { |
|
| 670 | + $this->set_next_renewal_date($value); |
|
| 671 | 671 | } |
| 672 | 672 | |
| 673 | 673 | /** |
@@ -676,8 +676,8 @@ discard block |
||
| 676 | 676 | * @since 1.0.19 |
| 677 | 677 | * @param string $value trial period e.g 1 year. |
| 678 | 678 | */ |
| 679 | - public function set_trial_period( $value ) { |
|
| 680 | - $this->set_prop( 'trial_period', $value ); |
|
| 679 | + public function set_trial_period($value) { |
|
| 680 | + $this->set_prop('trial_period', $value); |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | /** |
@@ -686,19 +686,19 @@ discard block |
||
| 686 | 686 | * @since 1.0.19 |
| 687 | 687 | * @param string $new_status New subscription status. |
| 688 | 688 | */ |
| 689 | - public function set_status( $new_status ) { |
|
| 689 | + public function set_status($new_status) { |
|
| 690 | 690 | |
| 691 | 691 | // Abort if this is not a valid status; |
| 692 | - if ( ! array_key_exists( $new_status, getpaid_get_subscription_statuses() ) ) { |
|
| 692 | + if (!array_key_exists($new_status, getpaid_get_subscription_statuses())) { |
|
| 693 | 693 | return; |
| 694 | 694 | } |
| 695 | 695 | |
| 696 | 696 | $old_status = $this->get_status(); |
| 697 | - $this->set_prop( 'status', $new_status ); |
|
| 697 | + $this->set_prop('status', $new_status); |
|
| 698 | 698 | |
| 699 | - if ( true === $this->object_read && $old_status !== $new_status ) { |
|
| 699 | + if (true === $this->object_read && $old_status !== $new_status) { |
|
| 700 | 700 | $this->status_transition = array( |
| 701 | - 'from' => ! empty( $this->status_transition['from'] ) ? $this->status_transition['from'] : $old_status, |
|
| 701 | + 'from' => !empty($this->status_transition['from']) ? $this->status_transition['from'] : $old_status, |
|
| 702 | 702 | 'to' => $new_status, |
| 703 | 703 | ); |
| 704 | 704 | } |
@@ -711,8 +711,8 @@ discard block |
||
| 711 | 711 | * @since 1.0.19 |
| 712 | 712 | * @param string $value the remote profile id. |
| 713 | 713 | */ |
| 714 | - public function set_profile_id( $value ) { |
|
| 715 | - $this->set_prop( 'profile_id', sanitize_text_field( $value ) ); |
|
| 714 | + public function set_profile_id($value) { |
|
| 715 | + $this->set_prop('profile_id', sanitize_text_field($value)); |
|
| 716 | 716 | } |
| 717 | 717 | |
| 718 | 718 | /* |
@@ -730,8 +730,8 @@ discard block |
||
| 730 | 730 | * @param string|array String or array of strings to check for. |
| 731 | 731 | * @return bool |
| 732 | 732 | */ |
| 733 | - public function has_status( $status ) { |
|
| 734 | - return in_array( $this->get_status(), wpinv_clean( wpinv_parse_list( $status ) ) ); |
|
| 733 | + public function has_status($status) { |
|
| 734 | + return in_array($this->get_status(), wpinv_clean(wpinv_parse_list($status))); |
|
| 735 | 735 | } |
| 736 | 736 | |
| 737 | 737 | /** |
@@ -741,7 +741,7 @@ discard block |
||
| 741 | 741 | */ |
| 742 | 742 | public function has_trial_period() { |
| 743 | 743 | $period = $this->get_trial_period(); |
| 744 | - return ! empty( $period ); |
|
| 744 | + return !empty($period); |
|
| 745 | 745 | } |
| 746 | 746 | |
| 747 | 747 | /** |
@@ -750,7 +750,7 @@ discard block |
||
| 750 | 750 | * @return bool |
| 751 | 751 | */ |
| 752 | 752 | public function is_active() { |
| 753 | - return $this->has_status( 'active trialling' ) && ! $this->is_expired(); |
|
| 753 | + return $this->has_status('active trialling') && !$this->is_expired(); |
|
| 754 | 754 | } |
| 755 | 755 | |
| 756 | 756 | /** |
@@ -759,7 +759,7 @@ discard block |
||
| 759 | 759 | * @return bool |
| 760 | 760 | */ |
| 761 | 761 | public function is_expired() { |
| 762 | - return $this->has_status( 'expired' ) || ( $this->has_status( 'active cancelled trialling' ) && $this->get_expiration_time() < current_time( 'mysql' ) ); |
|
| 762 | + return $this->has_status('expired') || ($this->has_status('active cancelled trialling') && $this->get_expiration_time() < current_time('mysql')); |
|
| 763 | 763 | } |
| 764 | 764 | |
| 765 | 765 | /** |
@@ -769,7 +769,7 @@ discard block |
||
| 769 | 769 | */ |
| 770 | 770 | public function is_last_renewal() { |
| 771 | 771 | $max_bills = $this->get_bill_times(); |
| 772 | - return ! empty( $max_bills ) && $max_bills <= $this->get_times_billed(); |
|
| 772 | + return !empty($max_bills) && $max_bills <= $this->get_times_billed(); |
|
| 773 | 773 | } |
| 774 | 774 | |
| 775 | 775 | /* |
@@ -784,11 +784,11 @@ discard block |
||
| 784 | 784 | /** |
| 785 | 785 | * Backwards compatibilty. |
| 786 | 786 | */ |
| 787 | - public function create( $data = array() ) { |
|
| 787 | + public function create($data = array()) { |
|
| 788 | 788 | |
| 789 | 789 | // Set the properties. |
| 790 | - if ( is_array( $data ) ) { |
|
| 791 | - $this->set_props( $data ); |
|
| 790 | + if (is_array($data)) { |
|
| 791 | + $this->set_props($data); |
|
| 792 | 792 | } |
| 793 | 793 | |
| 794 | 794 | // Save the item. |
@@ -799,8 +799,8 @@ discard block |
||
| 799 | 799 | /** |
| 800 | 800 | * Backwards compatibilty. |
| 801 | 801 | */ |
| 802 | - public function update( $args = array() ) { |
|
| 803 | - return $this->create( $args ); |
|
| 802 | + public function update($args = array()) { |
|
| 803 | + return $this->create($args); |
|
| 804 | 804 | } |
| 805 | 805 | |
| 806 | 806 | /** |
@@ -809,12 +809,12 @@ discard block |
||
| 809 | 809 | * @since 1.0.0 |
| 810 | 810 | * @return WP_Post[] |
| 811 | 811 | */ |
| 812 | - public function get_child_payments( $hide_pending = true ) { |
|
| 812 | + public function get_child_payments($hide_pending = true) { |
|
| 813 | 813 | |
| 814 | - $statuses = array( 'publish', 'wpi-processing', 'wpi-renewal' ); |
|
| 814 | + $statuses = array('publish', 'wpi-processing', 'wpi-renewal'); |
|
| 815 | 815 | |
| 816 | - if ( ! $hide_pending ) { |
|
| 817 | - $statuses = array_keys( wpinv_get_invoice_statuses() ); |
|
| 816 | + if (!$hide_pending) { |
|
| 817 | + $statuses = array_keys(wpinv_get_invoice_statuses()); |
|
| 818 | 818 | } |
| 819 | 819 | |
| 820 | 820 | return get_posts( |
@@ -836,7 +836,7 @@ discard block |
||
| 836 | 836 | * @return int |
| 837 | 837 | */ |
| 838 | 838 | public function get_total_payments() { |
| 839 | - return getpaid_count_subscription_invoices( $this->get_parent_invoice_id(), $this->get_id() ); |
|
| 839 | + return getpaid_count_subscription_invoices($this->get_parent_invoice_id(), $this->get_id()); |
|
| 840 | 840 | } |
| 841 | 841 | |
| 842 | 842 | /** |
@@ -848,7 +848,7 @@ discard block |
||
| 848 | 848 | public function get_times_billed() { |
| 849 | 849 | $times_billed = $this->get_total_payments(); |
| 850 | 850 | |
| 851 | - if ( (float) $this->get_initial_amount() == 0 && $times_billed > 0 ) { |
|
| 851 | + if ((float) $this->get_initial_amount() == 0 && $times_billed > 0) { |
|
| 852 | 852 | $times_billed--; |
| 853 | 853 | } |
| 854 | 854 | |
@@ -863,49 +863,49 @@ discard block |
||
| 863 | 863 | * @param WPInv_Invoice $invoice If adding an existing invoice. |
| 864 | 864 | * @return bool |
| 865 | 865 | */ |
| 866 | - public function add_payment( $args = array(), $invoice = false ) { |
|
| 866 | + public function add_payment($args = array(), $invoice = false) { |
|
| 867 | 867 | |
| 868 | 868 | // Process each payment once. |
| 869 | - if ( ! empty( $args['transaction_id'] ) && $this->payment_exists( $args['transaction_id'] ) ) { |
|
| 869 | + if (!empty($args['transaction_id']) && $this->payment_exists($args['transaction_id'])) { |
|
| 870 | 870 | return false; |
| 871 | 871 | } |
| 872 | 872 | |
| 873 | 873 | // Are we creating a new invoice? |
| 874 | - if ( empty( $invoice ) ) { |
|
| 874 | + if (empty($invoice)) { |
|
| 875 | 875 | $invoice = $this->create_payment(); |
| 876 | 876 | |
| 877 | - if ( empty( $invoice ) ) { |
|
| 877 | + if (empty($invoice)) { |
|
| 878 | 878 | return false; |
| 879 | 879 | } |
| 880 | 880 | |
| 881 | 881 | } |
| 882 | 882 | |
| 883 | - $invoice->set_status( 'wpi-renewal' ); |
|
| 883 | + $invoice->set_status('wpi-renewal'); |
|
| 884 | 884 | |
| 885 | 885 | // Maybe set a transaction id. |
| 886 | - if ( ! empty( $args['transaction_id'] ) ) { |
|
| 887 | - $invoice->set_transaction_id( $args['transaction_id'] ); |
|
| 886 | + if (!empty($args['transaction_id'])) { |
|
| 887 | + $invoice->set_transaction_id($args['transaction_id']); |
|
| 888 | 888 | } |
| 889 | 889 | |
| 890 | 890 | // Set the completed date. |
| 891 | - $invoice->set_completed_date( current_time( 'mysql' ) ); |
|
| 891 | + $invoice->set_completed_date(current_time('mysql')); |
|
| 892 | 892 | |
| 893 | 893 | // And the gateway. |
| 894 | - if ( ! empty( $args['gateway'] ) ) { |
|
| 895 | - $invoice->set_gateway( $args['gateway'] ); |
|
| 894 | + if (!empty($args['gateway'])) { |
|
| 895 | + $invoice->set_gateway($args['gateway']); |
|
| 896 | 896 | } |
| 897 | 897 | |
| 898 | 898 | $invoice->save(); |
| 899 | 899 | |
| 900 | - if ( ! $invoice->exists() ) { |
|
| 900 | + if (!$invoice->exists()) { |
|
| 901 | 901 | return false; |
| 902 | 902 | } |
| 903 | 903 | |
| 904 | - do_action( 'getpaid_after_create_subscription_renewal_invoice', $invoice, $this ); |
|
| 905 | - do_action( 'wpinv_recurring_add_subscription_payment', $invoice, $this ); |
|
| 906 | - do_action( 'wpinv_recurring_record_payment', $invoice->get_id(), $this->get_parent_invoice_id(), $invoice->get_recurring_total(), $invoice->get_transaction_id() ); |
|
| 904 | + do_action('getpaid_after_create_subscription_renewal_invoice', $invoice, $this); |
|
| 905 | + do_action('wpinv_recurring_add_subscription_payment', $invoice, $this); |
|
| 906 | + do_action('wpinv_recurring_record_payment', $invoice->get_id(), $this->get_parent_invoice_id(), $invoice->get_recurring_total(), $invoice->get_transaction_id()); |
|
| 907 | 907 | |
| 908 | - update_post_meta( $invoice->get_id(), '_wpinv_subscription_id', $this->id ); |
|
| 908 | + update_post_meta($invoice->get_id(), '_wpinv_subscription_id', $this->id); |
|
| 909 | 909 | |
| 910 | 910 | return $invoice->get_id(); |
| 911 | 911 | } |
@@ -920,41 +920,41 @@ discard block |
||
| 920 | 920 | |
| 921 | 921 | $parent_invoice = $this->get_parent_payment(); |
| 922 | 922 | |
| 923 | - if ( ! $parent_invoice->exists() ) { |
|
| 923 | + if (!$parent_invoice->exists()) { |
|
| 924 | 924 | return false; |
| 925 | 925 | } |
| 926 | 926 | |
| 927 | 927 | // Duplicate the parent invoice. |
| 928 | - $invoice = getpaid_duplicate_invoice( $parent_invoice ); |
|
| 929 | - $invoice->set_parent_id( $parent_invoice->get_id() ); |
|
| 930 | - $invoice->set_subscription_id( $this->get_id() ); |
|
| 931 | - $invoice->set_remote_subscription_id( $this->get_profile_id() ); |
|
| 928 | + $invoice = getpaid_duplicate_invoice($parent_invoice); |
|
| 929 | + $invoice->set_parent_id($parent_invoice->get_id()); |
|
| 930 | + $invoice->set_subscription_id($this->get_id()); |
|
| 931 | + $invoice->set_remote_subscription_id($this->get_profile_id()); |
|
| 932 | 932 | |
| 933 | 933 | // Set invoice items. |
| 934 | - $subscription_group = getpaid_get_invoice_subscription_group( $parent_invoice->get_id(), $this->get_id() ); |
|
| 935 | - $allowed_items = empty( $subscription_group ) ? array( $this->get_product_id() ) : array_keys( $subscription_group['items'] ); |
|
| 934 | + $subscription_group = getpaid_get_invoice_subscription_group($parent_invoice->get_id(), $this->get_id()); |
|
| 935 | + $allowed_items = empty($subscription_group) ? array($this->get_product_id()) : array_keys($subscription_group['items']); |
|
| 936 | 936 | $invoice_items = array(); |
| 937 | 937 | |
| 938 | - foreach ( $invoice->get_items() as $item ) { |
|
| 939 | - if ( in_array( $item->get_id(), $allowed_items ) ) { |
|
| 938 | + foreach ($invoice->get_items() as $item) { |
|
| 939 | + if (in_array($item->get_id(), $allowed_items)) { |
|
| 940 | 940 | $invoice_items[] = $item; |
| 941 | 941 | } |
| 942 | 942 | } |
| 943 | 943 | |
| 944 | - $invoice->set_items( $invoice_items ); |
|
| 944 | + $invoice->set_items($invoice_items); |
|
| 945 | 945 | |
| 946 | - if ( ! empty( $subscription_group['fees'] ) ) { |
|
| 947 | - $invoice->set_fees( $subscription_group['fees'] ); |
|
| 946 | + if (!empty($subscription_group['fees'])) { |
|
| 947 | + $invoice->set_fees($subscription_group['fees']); |
|
| 948 | 948 | } |
| 949 | 949 | |
| 950 | 950 | // Maybe recalculate discount (Pre-GetPaid Fix). |
| 951 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 952 | - if ( $discount->exists() && $discount->is_recurring() && 0 == $invoice->get_total_discount() ) { |
|
| 953 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 951 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
| 952 | + if ($discount->exists() && $discount->is_recurring() && 0 == $invoice->get_total_discount()) { |
|
| 953 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
| 954 | 954 | } |
| 955 | 955 | |
| 956 | 956 | $invoice->recalculate_total(); |
| 957 | - $invoice->set_status( 'wpi-pending' ); |
|
| 957 | + $invoice->set_status('wpi-pending'); |
|
| 958 | 958 | $invoice->save(); |
| 959 | 959 | |
| 960 | 960 | return $invoice->exists() ? $invoice : false; |
@@ -969,20 +969,20 @@ discard block |
||
| 969 | 969 | public function renew() { |
| 970 | 970 | |
| 971 | 971 | // Complete subscription if applicable |
| 972 | - if ( $this->is_last_renewal() ) { |
|
| 972 | + if ($this->is_last_renewal()) { |
|
| 973 | 973 | return $this->complete(); |
| 974 | 974 | } |
| 975 | 975 | |
| 976 | 976 | // Calculate new expiration |
| 977 | 977 | $frequency = $this->get_frequency(); |
| 978 | 978 | $period = $this->get_period(); |
| 979 | - $new_expiration = strtotime( "+ $frequency $period", $this->get_expiration_time() ); |
|
| 979 | + $new_expiration = strtotime("+ $frequency $period", $this->get_expiration_time()); |
|
| 980 | 980 | |
| 981 | - $this->set_expiration( date( 'Y-m-d H:i:s',$new_expiration ) ); |
|
| 982 | - $this->set_status( 'active' ); |
|
| 981 | + $this->set_expiration(date('Y-m-d H:i:s', $new_expiration)); |
|
| 982 | + $this->set_status('active'); |
|
| 983 | 983 | $this->save(); |
| 984 | 984 | |
| 985 | - do_action( 'getpaid_subscription_renewed', $this ); |
|
| 985 | + do_action('getpaid_subscription_renewed', $this); |
|
| 986 | 986 | |
| 987 | 987 | return $this->get_id(); |
| 988 | 988 | } |
@@ -998,11 +998,11 @@ discard block |
||
| 998 | 998 | public function complete() { |
| 999 | 999 | |
| 1000 | 1000 | // Only mark a subscription as complete if it's not already cancelled. |
| 1001 | - if ( $this->has_status( 'cancelled' ) ) { |
|
| 1001 | + if ($this->has_status('cancelled')) { |
|
| 1002 | 1002 | return false; |
| 1003 | 1003 | } |
| 1004 | 1004 | |
| 1005 | - $this->set_status( 'completed' ); |
|
| 1005 | + $this->set_status('completed'); |
|
| 1006 | 1006 | return $this->save(); |
| 1007 | 1007 | |
| 1008 | 1008 | } |
@@ -1014,14 +1014,14 @@ discard block |
||
| 1014 | 1014 | * @param bool $check_expiration |
| 1015 | 1015 | * @return int|bool Subscription id or false if $check_expiration is true and expiration date is in the future. |
| 1016 | 1016 | */ |
| 1017 | - public function expire( $check_expiration = false ) { |
|
| 1017 | + public function expire($check_expiration = false) { |
|
| 1018 | 1018 | |
| 1019 | - if ( $check_expiration && $this->get_expiration_time() > current_time( 'timestamp' ) ) { |
|
| 1019 | + if ($check_expiration && $this->get_expiration_time() > current_time('timestamp')) { |
|
| 1020 | 1020 | // Do not mark as expired since real expiration date is in the future |
| 1021 | 1021 | return false; |
| 1022 | 1022 | } |
| 1023 | 1023 | |
| 1024 | - $this->set_status( 'expired' ); |
|
| 1024 | + $this->set_status('expired'); |
|
| 1025 | 1025 | return $this->save(); |
| 1026 | 1026 | |
| 1027 | 1027 | } |
@@ -1033,7 +1033,7 @@ discard block |
||
| 1033 | 1033 | * @return int Subscription id. |
| 1034 | 1034 | */ |
| 1035 | 1035 | public function failing() { |
| 1036 | - $this->set_status( 'failing' ); |
|
| 1036 | + $this->set_status('failing'); |
|
| 1037 | 1037 | return $this->save(); |
| 1038 | 1038 | } |
| 1039 | 1039 | |
@@ -1044,7 +1044,7 @@ discard block |
||
| 1044 | 1044 | * @return int Subscription id. |
| 1045 | 1045 | */ |
| 1046 | 1046 | public function cancel() { |
| 1047 | - $this->set_status( 'cancelled' ); |
|
| 1047 | + $this->set_status('cancelled'); |
|
| 1048 | 1048 | return $this->save(); |
| 1049 | 1049 | } |
| 1050 | 1050 | |
@@ -1055,7 +1055,7 @@ discard block |
||
| 1055 | 1055 | * @return bool |
| 1056 | 1056 | */ |
| 1057 | 1057 | public function can_cancel() { |
| 1058 | - return apply_filters( 'wpinv_subscription_can_cancel', $this->has_status( $this->get_cancellable_statuses() ), $this ); |
|
| 1058 | + return apply_filters('wpinv_subscription_can_cancel', $this->has_status($this->get_cancellable_statuses()), $this); |
|
| 1059 | 1059 | } |
| 1060 | 1060 | |
| 1061 | 1061 | /** |
@@ -1066,7 +1066,7 @@ discard block |
||
| 1066 | 1066 | * @return array |
| 1067 | 1067 | */ |
| 1068 | 1068 | public function get_cancellable_statuses() { |
| 1069 | - return apply_filters( 'wpinv_recurring_cancellable_statuses', array( 'active', 'trialling', 'failing' ) ); |
|
| 1069 | + return apply_filters('wpinv_recurring_cancellable_statuses', array('active', 'trialling', 'failing')); |
|
| 1070 | 1070 | } |
| 1071 | 1071 | |
| 1072 | 1072 | /** |
@@ -1076,8 +1076,8 @@ discard block |
||
| 1076 | 1076 | * @return string |
| 1077 | 1077 | */ |
| 1078 | 1078 | public function get_cancel_url() { |
| 1079 | - $url = getpaid_get_authenticated_action_url( 'subscription_cancel', $this->get_view_url() ); |
|
| 1080 | - return apply_filters( 'wpinv_subscription_cancel_url', $url, $this ); |
|
| 1079 | + $url = getpaid_get_authenticated_action_url('subscription_cancel', $this->get_view_url()); |
|
| 1080 | + return apply_filters('wpinv_subscription_cancel_url', $url, $this); |
|
| 1081 | 1081 | } |
| 1082 | 1082 | |
| 1083 | 1083 | /** |
@@ -1088,10 +1088,10 @@ discard block |
||
| 1088 | 1088 | */ |
| 1089 | 1089 | public function get_view_url() { |
| 1090 | 1090 | |
| 1091 | - $url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
| 1092 | - $url = add_query_arg( 'subscription', $this->get_id(), $url ); |
|
| 1091 | + $url = getpaid_get_tab_url('gp-subscriptions', get_permalink((int) wpinv_get_option('invoice_subscription_page'))); |
|
| 1092 | + $url = add_query_arg('subscription', $this->get_id(), $url); |
|
| 1093 | 1093 | |
| 1094 | - return apply_filters( 'getpaid_get_subscription_view_url', $url, $this ); |
|
| 1094 | + return apply_filters('getpaid_get_subscription_view_url', $url, $this); |
|
| 1095 | 1095 | } |
| 1096 | 1096 | |
| 1097 | 1097 | /** |
@@ -1104,7 +1104,7 @@ discard block |
||
| 1104 | 1104 | * @return bool |
| 1105 | 1105 | */ |
| 1106 | 1106 | public function can_renew() { |
| 1107 | - return apply_filters( 'wpinv_subscription_can_renew', true, $this ); |
|
| 1107 | + return apply_filters('wpinv_subscription_can_renew', true, $this); |
|
| 1108 | 1108 | } |
| 1109 | 1109 | |
| 1110 | 1110 | /** |
@@ -1114,8 +1114,8 @@ discard block |
||
| 1114 | 1114 | * @return string |
| 1115 | 1115 | */ |
| 1116 | 1116 | public function get_renew_url() { |
| 1117 | - $url = wp_nonce_url( add_query_arg( array( 'getpaid-action' => 'renew_subscription', 'sub_id' => $this->get_id ) ), 'getpaid-nonce' ); |
|
| 1118 | - return apply_filters( 'wpinv_subscription_renew_url', $url, $this ); |
|
| 1117 | + $url = wp_nonce_url(add_query_arg(array('getpaid-action' => 'renew_subscription', 'sub_id' => $this->get_id)), 'getpaid-nonce'); |
|
| 1118 | + return apply_filters('wpinv_subscription_renew_url', $url, $this); |
|
| 1119 | 1119 | } |
| 1120 | 1120 | |
| 1121 | 1121 | /** |
@@ -1125,7 +1125,7 @@ discard block |
||
| 1125 | 1125 | * @return bool |
| 1126 | 1126 | */ |
| 1127 | 1127 | public function can_update() { |
| 1128 | - return apply_filters( 'wpinv_subscription_can_update', false, $this ); |
|
| 1128 | + return apply_filters('wpinv_subscription_can_update', false, $this); |
|
| 1129 | 1129 | } |
| 1130 | 1130 | |
| 1131 | 1131 | /** |
@@ -1135,8 +1135,8 @@ discard block |
||
| 1135 | 1135 | * @return string |
| 1136 | 1136 | */ |
| 1137 | 1137 | public function get_update_url() { |
| 1138 | - $url = add_query_arg( array( 'action' => 'update', 'subscription_id' => $this->get_id() ) ); |
|
| 1139 | - return apply_filters( 'wpinv_subscription_update_url', $url, $this ); |
|
| 1138 | + $url = add_query_arg(array('action' => 'update', 'subscription_id' => $this->get_id())); |
|
| 1139 | + return apply_filters('wpinv_subscription_update_url', $url, $this); |
|
| 1140 | 1140 | } |
| 1141 | 1141 | |
| 1142 | 1142 | /** |
@@ -1146,7 +1146,7 @@ discard block |
||
| 1146 | 1146 | * @return string |
| 1147 | 1147 | */ |
| 1148 | 1148 | public function get_status_label() { |
| 1149 | - return getpaid_get_subscription_status_label( $this->get_status() ); |
|
| 1149 | + return getpaid_get_subscription_status_label($this->get_status()); |
|
| 1150 | 1150 | } |
| 1151 | 1151 | |
| 1152 | 1152 | /** |
@@ -1157,7 +1157,7 @@ discard block |
||
| 1157 | 1157 | */ |
| 1158 | 1158 | public function get_status_class() { |
| 1159 | 1159 | $statuses = getpaid_get_subscription_status_classes(); |
| 1160 | - return isset( $statuses[ $this->get_status() ] ) ? $statuses[ $this->get_status() ] : 'badge-dark'; |
|
| 1160 | + return isset($statuses[$this->get_status()]) ? $statuses[$this->get_status()] : 'badge-dark'; |
|
| 1161 | 1161 | } |
| 1162 | 1162 | |
| 1163 | 1163 | /** |
@@ -1168,9 +1168,9 @@ discard block |
||
| 1168 | 1168 | */ |
| 1169 | 1169 | public function get_status_label_html() { |
| 1170 | 1170 | |
| 1171 | - $status_label = sanitize_text_field( $this->get_status_label() ); |
|
| 1172 | - $class = esc_attr( $this->get_status_class() ); |
|
| 1173 | - $status = sanitize_html_class( $this->get_status() ); |
|
| 1171 | + $status_label = sanitize_text_field($this->get_status_label()); |
|
| 1172 | + $class = esc_attr($this->get_status_class()); |
|
| 1173 | + $status = sanitize_html_class($this->get_status()); |
|
| 1174 | 1174 | |
| 1175 | 1175 | return "<span class='bsui'><span class='badge $class $status'>$status_label</span></span>"; |
| 1176 | 1176 | } |
@@ -1182,9 +1182,9 @@ discard block |
||
| 1182 | 1182 | * @param string $txn_id The transaction ID from the merchant processor |
| 1183 | 1183 | * @return bool |
| 1184 | 1184 | */ |
| 1185 | - public function payment_exists( $txn_id = '' ) { |
|
| 1186 | - $invoice_id = WPInv_Invoice::get_invoice_id_by_field( $txn_id, 'transaction_id' ); |
|
| 1187 | - return ! empty( $invoice_id ); |
|
| 1185 | + public function payment_exists($txn_id = '') { |
|
| 1186 | + $invoice_id = WPInv_Invoice::get_invoice_id_by_field($txn_id, 'transaction_id'); |
|
| 1187 | + return !empty($invoice_id); |
|
| 1188 | 1188 | } |
| 1189 | 1189 | |
| 1190 | 1190 | /** |
@@ -1196,35 +1196,35 @@ discard block |
||
| 1196 | 1196 | // Reset status transition variable. |
| 1197 | 1197 | $this->status_transition = false; |
| 1198 | 1198 | |
| 1199 | - if ( $status_transition ) { |
|
| 1199 | + if ($status_transition) { |
|
| 1200 | 1200 | try { |
| 1201 | 1201 | |
| 1202 | 1202 | // Fire a hook for the status change. |
| 1203 | - do_action( 'wpinv_subscription_' . $status_transition['to'], $this->get_id(), $this, $status_transition ); |
|
| 1204 | - do_action( 'getpaid_subscription_' . $status_transition['to'], $this, $status_transition ); |
|
| 1203 | + do_action('wpinv_subscription_' . $status_transition['to'], $this->get_id(), $this, $status_transition); |
|
| 1204 | + do_action('getpaid_subscription_' . $status_transition['to'], $this, $status_transition); |
|
| 1205 | 1205 | |
| 1206 | - if ( ! empty( $status_transition['from'] ) ) { |
|
| 1206 | + if (!empty($status_transition['from'])) { |
|
| 1207 | 1207 | |
| 1208 | 1208 | /* translators: 1: old subscription status 2: new subscription status */ |
| 1209 | - $transition_note = sprintf( __( 'Subscription status changed from %1$s to %2$s.', 'invoicing' ), getpaid_get_subscription_status_label( $status_transition['from'] ), getpaid_get_subscription_status_label( $status_transition['to'] ) ); |
|
| 1209 | + $transition_note = sprintf(__('Subscription status changed from %1$s to %2$s.', 'invoicing'), getpaid_get_subscription_status_label($status_transition['from']), getpaid_get_subscription_status_label($status_transition['to'])); |
|
| 1210 | 1210 | |
| 1211 | 1211 | // Note the transition occurred. |
| 1212 | - $this->get_parent_payment()->add_note( $transition_note, false, false, true ); |
|
| 1212 | + $this->get_parent_payment()->add_note($transition_note, false, false, true); |
|
| 1213 | 1213 | |
| 1214 | 1214 | // Fire another hook. |
| 1215 | - do_action( 'getpaid_subscription_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this->get_id(), $this ); |
|
| 1216 | - do_action( 'getpaid_subscription_status_changed', $this, $status_transition['from'], $status_transition['to'] ); |
|
| 1215 | + do_action('getpaid_subscription_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this->get_id(), $this); |
|
| 1216 | + do_action('getpaid_subscription_status_changed', $this, $status_transition['from'], $status_transition['to']); |
|
| 1217 | 1217 | |
| 1218 | 1218 | } else { |
| 1219 | 1219 | /* translators: %s: new invoice status */ |
| 1220 | - $transition_note = sprintf( __( 'Subscription status set to %s.', 'invoicing' ), getpaid_get_subscription_status_label( $status_transition['to'] ) ); |
|
| 1220 | + $transition_note = sprintf(__('Subscription status set to %s.', 'invoicing'), getpaid_get_subscription_status_label($status_transition['to'])); |
|
| 1221 | 1221 | |
| 1222 | 1222 | // Note the transition occurred. |
| 1223 | - $this->get_parent_payment()->add_note( $transition_note, false, false, true ); |
|
| 1223 | + $this->get_parent_payment()->add_note($transition_note, false, false, true); |
|
| 1224 | 1224 | |
| 1225 | 1225 | } |
| 1226 | - } catch ( Exception $e ) { |
|
| 1227 | - $this->get_parent_payment()->add_note( __( 'Error during subscription status transition.', 'invoicing' ) . ' ' . $e->getMessage() ); |
|
| 1226 | + } catch (Exception $e) { |
|
| 1227 | + $this->get_parent_payment()->add_note(__('Error during subscription status transition.', 'invoicing') . ' ' . $e->getMessage()); |
|
| 1228 | 1228 | } |
| 1229 | 1229 | } |
| 1230 | 1230 | |
@@ -1250,7 +1250,7 @@ discard block |
||
| 1250 | 1250 | */ |
| 1251 | 1251 | public function activate() { |
| 1252 | 1252 | $status = 'trialling' == $this->get_status() ? 'trialling' : 'active'; |
| 1253 | - $this->set_status( $status ); |
|
| 1253 | + $this->set_status($status); |
|
| 1254 | 1254 | return $this->save(); |
| 1255 | 1255 | } |
| 1256 | 1256 | |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | * |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 10 | +if (!defined('ABSPATH')) { |
|
| 11 | 11 | exit; // Exit if accessed directly |
| 12 | 12 | } |
| 13 | 13 | |
@@ -21,10 +21,10 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @param WP_Post $post |
| 23 | 23 | */ |
| 24 | - public static function output( $post ) { |
|
| 24 | + public static function output($post) { |
|
| 25 | 25 | |
| 26 | 26 | // Prepare the invoice. |
| 27 | - $invoice = new WPInv_Invoice( $post ); |
|
| 27 | + $invoice = new WPInv_Invoice($post); |
|
| 28 | 28 | |
| 29 | 29 | ?> |
| 30 | 30 | |
@@ -47,12 +47,12 @@ discard block |
||
| 47 | 47 | 'id' => 'wpinv_key', |
| 48 | 48 | 'name' => 'wpinv_key', |
| 49 | 49 | 'label' => sprintf( |
| 50 | - __( '%s Key:', 'invoicing' ), |
|
| 51 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 50 | + __('%s Key:', 'invoicing'), |
|
| 51 | + ucfirst($invoice->get_invoice_quote_type()) |
|
| 52 | 52 | ), |
| 53 | 53 | 'label_type' => 'vertical', |
| 54 | 54 | 'class' => 'form-control-sm', |
| 55 | - 'value' => $invoice->get_key( 'edit' ), |
|
| 55 | + 'value' => $invoice->get_key('edit'), |
|
| 56 | 56 | 'extra_attributes' => array( |
| 57 | 57 | 'onclick' => 'this.select();', |
| 58 | 58 | 'readonly' => 'true', |
@@ -67,9 +67,9 @@ discard block |
||
| 67 | 67 | 'id' => 'wpinv_view_url', |
| 68 | 68 | 'name' => 'wpinv_view_url', |
| 69 | 69 | 'label' => sprintf( |
| 70 | - __( '%s URL:', 'invoicing' ), |
|
| 71 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 72 | - ) . ' <a href="' . esc_url_raw( $invoice->get_view_url() ) . '" title="' . __( 'View invoice', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-fw"></i></a>', |
|
| 70 | + __('%s URL:', 'invoicing'), |
|
| 71 | + ucfirst($invoice->get_invoice_quote_type()) |
|
| 72 | + ) . ' <a href="' . esc_url_raw($invoice->get_view_url()) . '" title="' . __('View invoice', 'invoicing') . '" target="_blank"><i class="fas fa-external-link-alt fa-fw"></i></a>', |
|
| 73 | 73 | 'label_type' => 'vertical', |
| 74 | 74 | 'class' => 'form-control-sm', |
| 75 | 75 | 'value' => $invoice->get_view_url(), |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | ); |
| 82 | 82 | |
| 83 | 83 | // If the invoice is paid... |
| 84 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
| 84 | + if ($invoice->is_paid() || $invoice->is_refunded()) { |
|
| 85 | 85 | |
| 86 | 86 | // Gateway. |
| 87 | 87 | echo aui()->input( |
@@ -89,10 +89,10 @@ discard block |
||
| 89 | 89 | 'type' => 'text', |
| 90 | 90 | 'id' => 'wpinv_gateway', |
| 91 | 91 | 'name' => '', |
| 92 | - 'label' => __( 'Gateway:', 'invoicing' ), |
|
| 92 | + 'label' => __('Gateway:', 'invoicing'), |
|
| 93 | 93 | 'label_type' => 'vertical', |
| 94 | 94 | 'class' => 'form-control-sm', |
| 95 | - 'value' => wpinv_get_gateway_admin_label( $invoice->get_gateway( 'edit' ) ), |
|
| 95 | + 'value' => wpinv_get_gateway_admin_label($invoice->get_gateway('edit')), |
|
| 96 | 96 | 'extra_attributes' => array( |
| 97 | 97 | 'onclick' => 'this.select();', |
| 98 | 98 | 'readonly' => 'true', |
@@ -106,11 +106,11 @@ discard block |
||
| 106 | 106 | 'type' => 'text', |
| 107 | 107 | 'id' => 'wpinv_transaction_id', |
| 108 | 108 | 'name' => 'wpinv_transaction_id', |
| 109 | - 'label' => __( 'Transaction ID:', 'invoicing' ), |
|
| 109 | + 'label' => __('Transaction ID:', 'invoicing'), |
|
| 110 | 110 | 'label_type' => 'vertical', |
| 111 | 111 | 'class' => 'form-control-sm', |
| 112 | - 'value' => $invoice->get_transaction_id( 'edit' ), |
|
| 113 | - 'help_text' => apply_filters( 'wpinv_invoice_transaction_link_' . $invoice->get_gateway( 'edit' ), '', $invoice->get_transaction_id(), $invoice ), |
|
| 112 | + 'value' => $invoice->get_transaction_id('edit'), |
|
| 113 | + 'help_text' => apply_filters('wpinv_invoice_transaction_link_' . $invoice->get_gateway('edit'), '', $invoice->get_transaction_id(), $invoice), |
|
| 114 | 114 | 'extra_attributes' => array( |
| 115 | 115 | 'onclick' => 'this.select();', |
| 116 | 116 | 'readonly' => 'true', |
@@ -124,10 +124,10 @@ discard block |
||
| 124 | 124 | 'type' => 'text', |
| 125 | 125 | 'id' => 'wpinv_currency', |
| 126 | 126 | 'name' => 'wpinv_currency', |
| 127 | - 'label' => __( 'Currency:', 'invoicing' ), |
|
| 127 | + 'label' => __('Currency:', 'invoicing'), |
|
| 128 | 128 | 'label_type' => 'vertical', |
| 129 | 129 | 'class' => 'form-control-sm', |
| 130 | - 'value' => $invoice->get_currency( 'edit' ), |
|
| 130 | + 'value' => $invoice->get_currency('edit'), |
|
| 131 | 131 | 'extra_attributes' => array( |
| 132 | 132 | 'onclick' => 'this.select();', |
| 133 | 133 | 'readonly' => 'true', |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | |
| 138 | 138 | } else { |
| 139 | 139 | |
| 140 | - if ( 'wpi_invoice' == $invoice->get_post_type() ) { |
|
| 140 | + if ('wpi_invoice' == $invoice->get_post_type()) { |
|
| 141 | 141 | |
| 142 | 142 | // Payment URL. |
| 143 | 143 | echo aui()->input( |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | 'type' => 'text', |
| 146 | 146 | 'id' => 'wpinv_payment_url', |
| 147 | 147 | 'name' => 'wpinv_payment_url', |
| 148 | - 'label' => __( 'Payment URL:', 'invoicing' ), |
|
| 148 | + 'label' => __('Payment URL:', 'invoicing'), |
|
| 149 | 149 | 'label_type' => 'vertical', |
| 150 | 150 | 'class' => 'form-control-sm', |
| 151 | 151 | 'value' => $invoice->get_checkout_payment_url(), |
@@ -161,13 +161,13 @@ discard block |
||
| 161 | 161 | array( |
| 162 | 162 | 'id' => 'wpinv_gateway', |
| 163 | 163 | 'name' => 'wpinv_gateway', |
| 164 | - 'label' => __( 'Gateway:', 'invoicing' ), |
|
| 164 | + 'label' => __('Gateway:', 'invoicing'), |
|
| 165 | 165 | 'label_type' => 'vertical', |
| 166 | - 'placeholder' => __( 'Select Gateway', 'invoicing' ), |
|
| 167 | - 'value' => $invoice->get_gateway( 'edit' ), |
|
| 166 | + 'placeholder' => __('Select Gateway', 'invoicing'), |
|
| 167 | + 'value' => $invoice->get_gateway('edit'), |
|
| 168 | 168 | 'select2' => true, |
| 169 | 169 | 'data-allow-clear' => 'false', |
| 170 | - 'options' => wp_list_pluck( wpinv_get_enabled_payment_gateways( true ), 'admin_label' ), |
|
| 170 | + 'options' => wp_list_pluck(wpinv_get_enabled_payment_gateways(true), 'admin_label'), |
|
| 171 | 171 | ) |
| 172 | 172 | ); |
| 173 | 173 | |