@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | function wpinv_subscriptions_page() { |
| 16 | 16 | |
| 17 | - ?> |
|
| 17 | + ?> |
|
| 18 | 18 | |
| 19 | 19 | <div class="wrap"> |
| 20 | 20 | <h1><?php echo esc_html( get_admin_page_title() ); ?></h1> |
@@ -22,27 +22,27 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | <?php |
| 24 | 24 | |
| 25 | - // Verify user permissions. |
|
| 26 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 25 | + // Verify user permissions. |
|
| 26 | + if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 27 | 27 | |
| 28 | - echo aui()->alert( |
|
| 29 | - array( |
|
| 30 | - 'type' => 'danger', |
|
| 31 | - 'content' => __( 'You are not permitted to view this page.', 'invoicing' ), |
|
| 32 | - ) |
|
| 33 | - ); |
|
| 28 | + echo aui()->alert( |
|
| 29 | + array( |
|
| 30 | + 'type' => 'danger', |
|
| 31 | + 'content' => __( 'You are not permitted to view this page.', 'invoicing' ), |
|
| 32 | + ) |
|
| 33 | + ); |
|
| 34 | 34 | |
| 35 | - } else if ( ! empty( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) { |
|
| 35 | + } else if ( ! empty( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) { |
|
| 36 | 36 | |
| 37 | - // Display a single subscription. |
|
| 38 | - wpinv_recurring_subscription_details(); |
|
| 39 | - } else { |
|
| 37 | + // Display a single subscription. |
|
| 38 | + wpinv_recurring_subscription_details(); |
|
| 39 | + } else { |
|
| 40 | 40 | |
| 41 | - // Display a list of available subscriptions. |
|
| 42 | - getpaid_print_subscriptions_list(); |
|
| 43 | - } |
|
| 41 | + // Display a list of available subscriptions. |
|
| 42 | + getpaid_print_subscriptions_list(); |
|
| 43 | + } |
|
| 44 | 44 | |
| 45 | - ?> |
|
| 45 | + ?> |
|
| 46 | 46 | |
| 47 | 47 | </div> |
| 48 | 48 | </div> |
@@ -59,10 +59,10 @@ discard block |
||
| 59 | 59 | */ |
| 60 | 60 | function getpaid_print_subscriptions_list() { |
| 61 | 61 | |
| 62 | - $subscribers_table = new WPInv_Subscriptions_List_Table(); |
|
| 63 | - $subscribers_table->prepare_items(); |
|
| 62 | + $subscribers_table = new WPInv_Subscriptions_List_Table(); |
|
| 63 | + $subscribers_table->prepare_items(); |
|
| 64 | 64 | |
| 65 | - ?> |
|
| 65 | + ?> |
|
| 66 | 66 | <form id="subscribers-filter" class="bsui" method="get"> |
| 67 | 67 | <input type="hidden" name="page" value="wpinv-subscriptions" /> |
| 68 | 68 | <?php $subscribers_table->views(); ?> |
@@ -80,41 +80,41 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | function wpinv_recurring_subscription_details() { |
| 82 | 82 | |
| 83 | - // Fetch the subscription. |
|
| 84 | - $sub = new WPInv_Subscription( (int) $_GET['id'] ); |
|
| 85 | - if ( ! $sub->exists() ) { |
|
| 83 | + // Fetch the subscription. |
|
| 84 | + $sub = new WPInv_Subscription( (int) $_GET['id'] ); |
|
| 85 | + if ( ! $sub->exists() ) { |
|
| 86 | 86 | |
| 87 | - echo aui()->alert( |
|
| 88 | - array( |
|
| 89 | - 'type' => 'danger', |
|
| 90 | - 'content' => __( 'Subscription not found.', 'invoicing' ), |
|
| 91 | - ) |
|
| 92 | - ); |
|
| 87 | + echo aui()->alert( |
|
| 88 | + array( |
|
| 89 | + 'type' => 'danger', |
|
| 90 | + 'content' => __( 'Subscription not found.', 'invoicing' ), |
|
| 91 | + ) |
|
| 92 | + ); |
|
| 93 | 93 | |
| 94 | - return; |
|
| 95 | - } |
|
| 94 | + return; |
|
| 95 | + } |
|
| 96 | 96 | |
| 97 | - // Use metaboxes to display the subscription details. |
|
| 98 | - add_meta_box( 'getpaid_admin_subscription_details_metabox', __( 'Subscription Details', 'invoicing' ), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high' ); |
|
| 99 | - add_meta_box( 'getpaid_admin_subscription_update_metabox', __( 'Change Status', 'invoicing' ), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side' ); |
|
| 97 | + // Use metaboxes to display the subscription details. |
|
| 98 | + add_meta_box( 'getpaid_admin_subscription_details_metabox', __( 'Subscription Details', 'invoicing' ), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high' ); |
|
| 99 | + add_meta_box( 'getpaid_admin_subscription_update_metabox', __( 'Change Status', 'invoicing' ), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side' ); |
|
| 100 | 100 | |
| 101 | - $subscription_id = $sub->get_id(); |
|
| 102 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $sub->get_parent_invoice_id() ); |
|
| 103 | - $subscription_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 101 | + $subscription_id = $sub->get_id(); |
|
| 102 | + $subscription_groups = getpaid_get_invoice_subscription_groups( $sub->get_parent_invoice_id() ); |
|
| 103 | + $subscription_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 104 | 104 | |
| 105 | - if ( 1 < count( $subscription_groups ) ) { |
|
| 106 | - add_meta_box( 'getpaid_admin_subscription_related_subscriptions_metabox', __( 'Related Subscriptions', 'invoicing' ), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced' ); |
|
| 107 | - } |
|
| 105 | + if ( 1 < count( $subscription_groups ) ) { |
|
| 106 | + add_meta_box( 'getpaid_admin_subscription_related_subscriptions_metabox', __( 'Related Subscriptions', 'invoicing' ), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced' ); |
|
| 107 | + } |
|
| 108 | 108 | |
| 109 | - if ( ! empty( $subscription_group ) ) { |
|
| 110 | - add_meta_box( 'getpaid_admin_subscription_item_details_metabox', __( 'Subscription Items', 'invoicing' ), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low' ); |
|
| 111 | - } |
|
| 109 | + if ( ! empty( $subscription_group ) ) { |
|
| 110 | + add_meta_box( 'getpaid_admin_subscription_item_details_metabox', __( 'Subscription Items', 'invoicing' ), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low' ); |
|
| 111 | + } |
|
| 112 | 112 | |
| 113 | - add_meta_box( 'getpaid_admin_subscription_invoice_details_metabox', __( 'Related Invoices', 'invoicing' ), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced' ); |
|
| 113 | + add_meta_box( 'getpaid_admin_subscription_invoice_details_metabox', __( 'Related Invoices', 'invoicing' ), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced' ); |
|
| 114 | 114 | |
| 115 | - do_action( 'getpaid_admin_single_subscription_register_metabox', $sub ); |
|
| 115 | + do_action( 'getpaid_admin_single_subscription_register_metabox', $sub ); |
|
| 116 | 116 | |
| 117 | - ?> |
|
| 117 | + ?> |
|
| 118 | 118 | |
| 119 | 119 | <form method="post" action="<?php echo admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $sub->get_id() ) ); ?>"> |
| 120 | 120 | |
@@ -154,45 +154,45 @@ discard block |
||
| 154 | 154 | */ |
| 155 | 155 | function getpaid_admin_subscription_details_metabox( $sub ) { |
| 156 | 156 | |
| 157 | - // Subscription items. |
|
| 158 | - $subscription_group = getpaid_get_invoice_subscription_group( $sub->get_parent_invoice_id(), $sub->get_id() ); |
|
| 159 | - $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 160 | - |
|
| 161 | - // Prepare subscription detail columns. |
|
| 162 | - $fields = apply_filters( |
|
| 163 | - 'getpaid_subscription_admin_page_fields', |
|
| 164 | - array( |
|
| 165 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 166 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
| 167 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 168 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 169 | - 'renews_on' => __( 'Next Payment', 'invoicing' ), |
|
| 170 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 171 | - 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 172 | - 'gateway' => __( 'Payment Method', 'invoicing' ), |
|
| 173 | - 'profile_id' => __( 'Profile ID', 'invoicing' ), |
|
| 174 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 175 | - ) |
|
| 176 | - ); |
|
| 177 | - |
|
| 178 | - if ( ! $sub->is_active() ) { |
|
| 179 | - |
|
| 180 | - if ( isset( $fields['renews_on'] ) ) { |
|
| 181 | - unset( $fields['renews_on'] ); |
|
| 182 | - } |
|
| 183 | - |
|
| 184 | - if ( isset( $fields['gateway'] ) ) { |
|
| 185 | - unset( $fields['gateway'] ); |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - } |
|
| 189 | - |
|
| 190 | - $profile_id = $sub->get_profile_id(); |
|
| 191 | - if ( empty( $profile_id ) && isset( $fields['profile_id'] ) ) { |
|
| 192 | - unset( $fields['profile_id'] ); |
|
| 193 | - } |
|
| 194 | - |
|
| 195 | - ?> |
|
| 157 | + // Subscription items. |
|
| 158 | + $subscription_group = getpaid_get_invoice_subscription_group( $sub->get_parent_invoice_id(), $sub->get_id() ); |
|
| 159 | + $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 160 | + |
|
| 161 | + // Prepare subscription detail columns. |
|
| 162 | + $fields = apply_filters( |
|
| 163 | + 'getpaid_subscription_admin_page_fields', |
|
| 164 | + array( |
|
| 165 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 166 | + 'customer' => __( 'Customer', 'invoicing' ), |
|
| 167 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 168 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 169 | + 'renews_on' => __( 'Next Payment', 'invoicing' ), |
|
| 170 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 171 | + 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 172 | + 'gateway' => __( 'Payment Method', 'invoicing' ), |
|
| 173 | + 'profile_id' => __( 'Profile ID', 'invoicing' ), |
|
| 174 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 175 | + ) |
|
| 176 | + ); |
|
| 177 | + |
|
| 178 | + if ( ! $sub->is_active() ) { |
|
| 179 | + |
|
| 180 | + if ( isset( $fields['renews_on'] ) ) { |
|
| 181 | + unset( $fields['renews_on'] ); |
|
| 182 | + } |
|
| 183 | + |
|
| 184 | + if ( isset( $fields['gateway'] ) ) { |
|
| 185 | + unset( $fields['gateway'] ); |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + } |
|
| 189 | + |
|
| 190 | + $profile_id = $sub->get_profile_id(); |
|
| 191 | + if ( empty( $profile_id ) && isset( $fields['profile_id'] ) ) { |
|
| 192 | + unset( $fields['profile_id'] ); |
|
| 193 | + } |
|
| 194 | + |
|
| 195 | + ?> |
|
| 196 | 196 | |
| 197 | 197 | <table class="table table-borderless" style="font-size: 14px;"> |
| 198 | 198 | <tbody> |
@@ -226,20 +226,20 @@ discard block |
||
| 226 | 226 | */ |
| 227 | 227 | function getpaid_admin_subscription_metabox_display_customer( $subscription ) { |
| 228 | 228 | |
| 229 | - $username = __( '(Missing User)', 'invoicing' ); |
|
| 229 | + $username = __( '(Missing User)', 'invoicing' ); |
|
| 230 | 230 | |
| 231 | - $user = get_userdata( $subscription->get_customer_id() ); |
|
| 232 | - if ( $user ) { |
|
| 231 | + $user = get_userdata( $subscription->get_customer_id() ); |
|
| 232 | + if ( $user ) { |
|
| 233 | 233 | |
| 234 | - $username = sprintf( |
|
| 235 | - '<a href="user-edit.php?user_id=%s">%s</a>', |
|
| 236 | - absint( $user->ID ), |
|
| 237 | - ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 238 | - ); |
|
| 234 | + $username = sprintf( |
|
| 235 | + '<a href="user-edit.php?user_id=%s">%s</a>', |
|
| 236 | + absint( $user->ID ), |
|
| 237 | + ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 238 | + ); |
|
| 239 | 239 | |
| 240 | - } |
|
| 240 | + } |
|
| 241 | 241 | |
| 242 | - echo $username; |
|
| 242 | + echo $username; |
|
| 243 | 243 | } |
| 244 | 244 | add_action( 'getpaid_subscription_admin_display_customer', 'getpaid_admin_subscription_metabox_display_customer' ); |
| 245 | 245 | |
@@ -249,8 +249,8 @@ discard block |
||
| 249 | 249 | * @param WPInv_Subscription $subscription |
| 250 | 250 | */ |
| 251 | 251 | function getpaid_admin_subscription_metabox_display_amount( $subscription ) { |
| 252 | - $amount = sanitize_text_field( getpaid_get_formatted_subscription_amount( $subscription ) ); |
|
| 253 | - echo "<span>$amount</span>"; |
|
| 252 | + $amount = sanitize_text_field( getpaid_get_formatted_subscription_amount( $subscription ) ); |
|
| 253 | + echo "<span>$amount</span>"; |
|
| 254 | 254 | } |
| 255 | 255 | add_action( 'getpaid_subscription_admin_display_amount', 'getpaid_admin_subscription_metabox_display_amount' ); |
| 256 | 256 | |
@@ -260,7 +260,7 @@ discard block |
||
| 260 | 260 | * @param WPInv_Subscription $subscription |
| 261 | 261 | */ |
| 262 | 262 | function getpaid_admin_subscription_metabox_display_id( $subscription ) { |
| 263 | - echo '#' . absint( $subscription->get_id() ); |
|
| 263 | + echo '#' . absint( $subscription->get_id() ); |
|
| 264 | 264 | } |
| 265 | 265 | add_action( 'getpaid_subscription_admin_display_subscription', 'getpaid_admin_subscription_metabox_display_id' ); |
| 266 | 266 | |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | * @param WPInv_Subscription $subscription |
| 271 | 271 | */ |
| 272 | 272 | function getpaid_admin_subscription_metabox_display_start_date( $subscription ) { |
| 273 | - echo getpaid_format_date_value( $subscription->get_date_created() ); |
|
| 273 | + echo getpaid_format_date_value( $subscription->get_date_created() ); |
|
| 274 | 274 | } |
| 275 | 275 | add_action( 'getpaid_subscription_admin_display_start_date', 'getpaid_admin_subscription_metabox_display_start_date' ); |
| 276 | 276 | |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | * @param WPInv_Subscription $subscription |
| 281 | 281 | */ |
| 282 | 282 | function getpaid_admin_subscription_metabox_display_renews_on( $subscription ) { |
| 283 | - echo getpaid_format_date_value( $subscription->get_expiration() ); |
|
| 283 | + echo getpaid_format_date_value( $subscription->get_expiration() ); |
|
| 284 | 284 | } |
| 285 | 285 | add_action( 'getpaid_subscription_admin_display_renews_on', 'getpaid_admin_subscription_metabox_display_renews_on' ); |
| 286 | 286 | |
@@ -290,8 +290,8 @@ discard block |
||
| 290 | 290 | * @param WPInv_Subscription $subscription |
| 291 | 291 | */ |
| 292 | 292 | function getpaid_admin_subscription_metabox_display_renewals( $subscription ) { |
| 293 | - $max_bills = $subscription->get_bill_times(); |
|
| 294 | - echo $subscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 293 | + $max_bills = $subscription->get_bill_times(); |
|
| 294 | + echo $subscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 295 | 295 | } |
| 296 | 296 | add_action( 'getpaid_subscription_admin_display_renewals', 'getpaid_admin_subscription_metabox_display_renewals' ); |
| 297 | 297 | /** |
@@ -302,13 +302,13 @@ discard block |
||
| 302 | 302 | */ |
| 303 | 303 | function getpaid_admin_subscription_metabox_display_item( $subscription, $subscription_group = false ) { |
| 304 | 304 | |
| 305 | - if ( empty( $subscription_group ) ) { |
|
| 306 | - echo WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ); |
|
| 307 | - return; |
|
| 308 | - } |
|
| 305 | + if ( empty( $subscription_group ) ) { |
|
| 306 | + echo WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ); |
|
| 307 | + return; |
|
| 308 | + } |
|
| 309 | 309 | |
| 310 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 311 | - echo implode( ' | ', $markup ); |
|
| 310 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 311 | + echo implode( ' | ', $markup ); |
|
| 312 | 312 | |
| 313 | 313 | } |
| 314 | 314 | add_action( 'getpaid_subscription_admin_display_item', 'getpaid_admin_subscription_metabox_display_item', 10, 2 ); |
@@ -320,13 +320,13 @@ discard block |
||
| 320 | 320 | */ |
| 321 | 321 | function getpaid_admin_subscription_metabox_display_gateway( $subscription ) { |
| 322 | 322 | |
| 323 | - $gateway = $subscription->get_gateway(); |
|
| 323 | + $gateway = $subscription->get_gateway(); |
|
| 324 | 324 | |
| 325 | - if ( ! empty( $gateway ) ) { |
|
| 326 | - echo sanitize_text_field( wpinv_get_gateway_admin_label( $gateway ) ); |
|
| 327 | - } else { |
|
| 328 | - echo "—"; |
|
| 329 | - } |
|
| 325 | + if ( ! empty( $gateway ) ) { |
|
| 326 | + echo sanitize_text_field( wpinv_get_gateway_admin_label( $gateway ) ); |
|
| 327 | + } else { |
|
| 328 | + echo "—"; |
|
| 329 | + } |
|
| 330 | 330 | |
| 331 | 331 | } |
| 332 | 332 | add_action( 'getpaid_subscription_admin_display_gateway', 'getpaid_admin_subscription_metabox_display_gateway' ); |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | * @param WPInv_Subscription $subscription |
| 338 | 338 | */ |
| 339 | 339 | function getpaid_admin_subscription_metabox_display_status( $subscription ) { |
| 340 | - echo $subscription->get_status_label_html(); |
|
| 340 | + echo $subscription->get_status_label_html(); |
|
| 341 | 341 | } |
| 342 | 342 | add_action( 'getpaid_subscription_admin_display_status', 'getpaid_admin_subscription_metabox_display_status' ); |
| 343 | 343 | |
@@ -348,29 +348,29 @@ discard block |
||
| 348 | 348 | */ |
| 349 | 349 | function getpaid_admin_subscription_metabox_display_profile_id( $subscription ) { |
| 350 | 350 | |
| 351 | - $profile_id = $subscription->get_profile_id(); |
|
| 352 | - |
|
| 353 | - $input = aui()->input( |
|
| 354 | - array( |
|
| 355 | - 'type' => 'text', |
|
| 356 | - 'id' => 'wpinv_subscription_profile_id', |
|
| 357 | - 'name' => 'wpinv_subscription_profile_id', |
|
| 358 | - 'label' => __( 'Profile Id', 'invoicing' ), |
|
| 359 | - 'label_type' => 'hidden', |
|
| 360 | - 'placeholder' => __( 'Profile Id', 'invoicing' ), |
|
| 361 | - 'value' => sanitize_text_field( $profile_id ), |
|
| 362 | - 'input_group_right' => '', |
|
| 363 | - 'no_wrap' => true, |
|
| 364 | - ) |
|
| 365 | - ); |
|
| 366 | - |
|
| 367 | - echo str_ireplace( 'form-control', 'regular-text', $input ); |
|
| 368 | - |
|
| 369 | - $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $subscription ); |
|
| 370 | - if ( ! empty( $url ) ) { |
|
| 371 | - $url = esc_url_raw( $url ); |
|
| 372 | - echo ' <a href="' . $url . '" title="' . __( 'View in Gateway', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
| 373 | - } |
|
| 351 | + $profile_id = $subscription->get_profile_id(); |
|
| 352 | + |
|
| 353 | + $input = aui()->input( |
|
| 354 | + array( |
|
| 355 | + 'type' => 'text', |
|
| 356 | + 'id' => 'wpinv_subscription_profile_id', |
|
| 357 | + 'name' => 'wpinv_subscription_profile_id', |
|
| 358 | + 'label' => __( 'Profile Id', 'invoicing' ), |
|
| 359 | + 'label_type' => 'hidden', |
|
| 360 | + 'placeholder' => __( 'Profile Id', 'invoicing' ), |
|
| 361 | + 'value' => sanitize_text_field( $profile_id ), |
|
| 362 | + 'input_group_right' => '', |
|
| 363 | + 'no_wrap' => true, |
|
| 364 | + ) |
|
| 365 | + ); |
|
| 366 | + |
|
| 367 | + echo str_ireplace( 'form-control', 'regular-text', $input ); |
|
| 368 | + |
|
| 369 | + $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $subscription ); |
|
| 370 | + if ( ! empty( $url ) ) { |
|
| 371 | + $url = esc_url_raw( $url ); |
|
| 372 | + echo ' <a href="' . $url . '" title="' . __( 'View in Gateway', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
| 373 | + } |
|
| 374 | 374 | |
| 375 | 375 | } |
| 376 | 376 | add_action( 'getpaid_subscription_admin_display_profile_id', 'getpaid_admin_subscription_metabox_display_profile_id' ); |
@@ -382,39 +382,39 @@ discard block |
||
| 382 | 382 | */ |
| 383 | 383 | function getpaid_admin_subscription_update_metabox( $subscription ) { |
| 384 | 384 | |
| 385 | - ?> |
|
| 385 | + ?> |
|
| 386 | 386 | <div class="mt-3"> |
| 387 | 387 | |
| 388 | 388 | <?php |
| 389 | - echo aui()->select( |
|
| 390 | - array( |
|
| 391 | - 'options' => getpaid_get_subscription_statuses(), |
|
| 392 | - 'name' => 'subscription_status', |
|
| 393 | - 'id' => 'subscription_status_update_select', |
|
| 394 | - 'required' => true, |
|
| 395 | - 'no_wrap' => false, |
|
| 396 | - 'label' => __( 'Subscription Status', 'invoicing' ), |
|
| 397 | - 'help_text' => __( 'Updating the status will trigger related actions and hooks', 'invoicing' ), |
|
| 398 | - 'select2' => true, |
|
| 399 | - 'value' => $subscription->get_status( 'edit' ), |
|
| 400 | - ) |
|
| 401 | - ); |
|
| 402 | - ?> |
|
| 389 | + echo aui()->select( |
|
| 390 | + array( |
|
| 391 | + 'options' => getpaid_get_subscription_statuses(), |
|
| 392 | + 'name' => 'subscription_status', |
|
| 393 | + 'id' => 'subscription_status_update_select', |
|
| 394 | + 'required' => true, |
|
| 395 | + 'no_wrap' => false, |
|
| 396 | + 'label' => __( 'Subscription Status', 'invoicing' ), |
|
| 397 | + 'help_text' => __( 'Updating the status will trigger related actions and hooks', 'invoicing' ), |
|
| 398 | + 'select2' => true, |
|
| 399 | + 'value' => $subscription->get_status( 'edit' ), |
|
| 400 | + ) |
|
| 401 | + ); |
|
| 402 | + ?> |
|
| 403 | 403 | |
| 404 | 404 | <div class="mt-2 px-3 py-2 bg-light border-top" style="margin: -12px;"> |
| 405 | 405 | |
| 406 | 406 | <?php |
| 407 | - submit_button( __( 'Update', 'invoicing' ), 'primary', 'submit', false ); |
|
| 407 | + submit_button( __( 'Update', 'invoicing' ), 'primary', 'submit', false ); |
|
| 408 | 408 | |
| 409 | - $url = esc_url( wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'subscription_manual_renew' ), 'getpaid-nonce', 'getpaid-nonce' ) ); |
|
| 410 | - $anchor = __( 'Renew Subscription', 'invoicing' ); |
|
| 411 | - $title = esc_attr__( 'Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing' ); |
|
| 409 | + $url = esc_url( wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'subscription_manual_renew' ), 'getpaid-nonce', 'getpaid-nonce' ) ); |
|
| 410 | + $anchor = __( 'Renew Subscription', 'invoicing' ); |
|
| 411 | + $title = esc_attr__( 'Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing' ); |
|
| 412 | 412 | |
| 413 | - if ( $subscription->is_active() ) { |
|
| 414 | - echo "<a href='$url' class='float-right text-muted' onclick='return confirm(\"$title\")'>$anchor</a>"; |
|
| 415 | - } |
|
| 413 | + if ( $subscription->is_active() ) { |
|
| 414 | + echo "<a href='$url' class='float-right text-muted' onclick='return confirm(\"$title\")'>$anchor</a>"; |
|
| 415 | + } |
|
| 416 | 416 | |
| 417 | - echo '</div></div>'; |
|
| 417 | + echo '</div></div>'; |
|
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | /** |
@@ -425,33 +425,33 @@ discard block |
||
| 425 | 425 | */ |
| 426 | 426 | function getpaid_admin_subscription_invoice_details_metabox( $subscription, $strict = true ) { |
| 427 | 427 | |
| 428 | - $columns = apply_filters( |
|
| 429 | - 'getpaid_subscription_related_invoices_columns', |
|
| 430 | - array( |
|
| 431 | - 'invoice' => __( 'Invoice', 'invoicing' ), |
|
| 432 | - 'relationship' => __( 'Relationship', 'invoicing' ), |
|
| 433 | - 'date' => __( 'Date', 'invoicing' ), |
|
| 434 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 435 | - 'total' => __( 'Total', 'invoicing' ), |
|
| 436 | - ), |
|
| 437 | - $subscription |
|
| 438 | - ); |
|
| 439 | - |
|
| 440 | - // Prepare the invoices. |
|
| 441 | - $payments = $subscription->get_child_payments( ! is_admin() ); |
|
| 442 | - $parent = $subscription->get_parent_invoice(); |
|
| 443 | - |
|
| 444 | - if ( $parent->exists() ) { |
|
| 445 | - $payments = array_merge( array( $parent ), $payments ); |
|
| 446 | - } |
|
| 447 | - |
|
| 448 | - $table_class = 'w-100 bg-white'; |
|
| 449 | - |
|
| 450 | - if ( ! is_admin() ) { |
|
| 451 | - $table_class = 'table table-bordered'; |
|
| 452 | - } |
|
| 453 | - |
|
| 454 | - ?> |
|
| 428 | + $columns = apply_filters( |
|
| 429 | + 'getpaid_subscription_related_invoices_columns', |
|
| 430 | + array( |
|
| 431 | + 'invoice' => __( 'Invoice', 'invoicing' ), |
|
| 432 | + 'relationship' => __( 'Relationship', 'invoicing' ), |
|
| 433 | + 'date' => __( 'Date', 'invoicing' ), |
|
| 434 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 435 | + 'total' => __( 'Total', 'invoicing' ), |
|
| 436 | + ), |
|
| 437 | + $subscription |
|
| 438 | + ); |
|
| 439 | + |
|
| 440 | + // Prepare the invoices. |
|
| 441 | + $payments = $subscription->get_child_payments( ! is_admin() ); |
|
| 442 | + $parent = $subscription->get_parent_invoice(); |
|
| 443 | + |
|
| 444 | + if ( $parent->exists() ) { |
|
| 445 | + $payments = array_merge( array( $parent ), $payments ); |
|
| 446 | + } |
|
| 447 | + |
|
| 448 | + $table_class = 'w-100 bg-white'; |
|
| 449 | + |
|
| 450 | + if ( ! is_admin() ) { |
|
| 451 | + $table_class = 'table table-bordered'; |
|
| 452 | + } |
|
| 453 | + |
|
| 454 | + ?> |
|
| 455 | 455 | <div class="m-0" style="overflow: auto;"> |
| 456 | 456 | |
| 457 | 457 | <table class="<?php echo $table_class; ?>"> |
@@ -459,14 +459,14 @@ discard block |
||
| 459 | 459 | <thead> |
| 460 | 460 | <tr> |
| 461 | 461 | <?php |
| 462 | - foreach ( $columns as $key => $label ) { |
|
| 463 | - $key = esc_attr( $key ); |
|
| 464 | - $label = sanitize_text_field( $label ); |
|
| 465 | - $class = 'text-left'; |
|
| 466 | - |
|
| 467 | - echo "<th class='subscription-invoice-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
| 468 | - } |
|
| 469 | - ?> |
|
| 462 | + foreach ( $columns as $key => $label ) { |
|
| 463 | + $key = esc_attr( $key ); |
|
| 464 | + $label = sanitize_text_field( $label ); |
|
| 465 | + $class = 'text-left'; |
|
| 466 | + |
|
| 467 | + echo "<th class='subscription-invoice-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
| 468 | + } |
|
| 469 | + ?> |
|
| 470 | 470 | </tr> |
| 471 | 471 | </thead> |
| 472 | 472 | |
@@ -482,73 +482,73 @@ discard block |
||
| 482 | 482 | |
| 483 | 483 | <?php |
| 484 | 484 | |
| 485 | - foreach( $payments as $payment ) : |
|
| 485 | + foreach( $payments as $payment ) : |
|
| 486 | 486 | |
| 487 | - // Ensure that we have an invoice. |
|
| 488 | - $payment = new WPInv_Invoice( $payment ); |
|
| 487 | + // Ensure that we have an invoice. |
|
| 488 | + $payment = new WPInv_Invoice( $payment ); |
|
| 489 | 489 | |
| 490 | - // Abort if the invoice is invalid... |
|
| 491 | - if ( ! $payment->exists() ) { |
|
| 492 | - continue; |
|
| 493 | - } |
|
| 490 | + // Abort if the invoice is invalid... |
|
| 491 | + if ( ! $payment->exists() ) { |
|
| 492 | + continue; |
|
| 493 | + } |
|
| 494 | 494 | |
| 495 | - // ... or belongs to a different subscription. |
|
| 496 | - if ( $strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id() ) { |
|
| 497 | - continue; |
|
| 498 | - } |
|
| 495 | + // ... or belongs to a different subscription. |
|
| 496 | + if ( $strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id() ) { |
|
| 497 | + continue; |
|
| 498 | + } |
|
| 499 | 499 | |
| 500 | - echo '<tr>'; |
|
| 500 | + echo '<tr>'; |
|
| 501 | 501 | |
| 502 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 502 | + foreach ( array_keys( $columns ) as $key ) { |
|
| 503 | 503 | |
| 504 | - $class = 'text-left'; |
|
| 504 | + $class = 'text-left'; |
|
| 505 | 505 | |
| 506 | - echo "<td class='p-2 $class'>"; |
|
| 506 | + echo "<td class='p-2 $class'>"; |
|
| 507 | 507 | |
| 508 | - switch( $key ) { |
|
| 508 | + switch( $key ) { |
|
| 509 | 509 | |
| 510 | - case 'total': |
|
| 511 | - echo '<strong>' . wpinv_price( $payment->get_total(), $payment->get_currency() ) . '</strong>'; |
|
| 512 | - break; |
|
| 510 | + case 'total': |
|
| 511 | + echo '<strong>' . wpinv_price( $payment->get_total(), $payment->get_currency() ) . '</strong>'; |
|
| 512 | + break; |
|
| 513 | 513 | |
| 514 | - case 'relationship': |
|
| 515 | - echo $payment->is_renewal() ? __( 'Renewal Invoice', 'invoicing' ) : __( 'Initial Invoice', 'invoicing' ); |
|
| 516 | - break; |
|
| 514 | + case 'relationship': |
|
| 515 | + echo $payment->is_renewal() ? __( 'Renewal Invoice', 'invoicing' ) : __( 'Initial Invoice', 'invoicing' ); |
|
| 516 | + break; |
|
| 517 | 517 | |
| 518 | - case 'date': |
|
| 519 | - echo getpaid_format_date_value( $payment->get_date_created() ); |
|
| 520 | - break; |
|
| 518 | + case 'date': |
|
| 519 | + echo getpaid_format_date_value( $payment->get_date_created() ); |
|
| 520 | + break; |
|
| 521 | 521 | |
| 522 | - case 'status': |
|
| 522 | + case 'status': |
|
| 523 | 523 | |
| 524 | - $status = $payment->get_status_nicename(); |
|
| 525 | - if ( is_admin() ) { |
|
| 526 | - $status = $payment->get_status_label_html(); |
|
| 527 | - } |
|
| 524 | + $status = $payment->get_status_nicename(); |
|
| 525 | + if ( is_admin() ) { |
|
| 526 | + $status = $payment->get_status_label_html(); |
|
| 527 | + } |
|
| 528 | 528 | |
| 529 | - echo $status; |
|
| 530 | - break; |
|
| 529 | + echo $status; |
|
| 530 | + break; |
|
| 531 | 531 | |
| 532 | - case 'invoice': |
|
| 533 | - $link = esc_url( get_edit_post_link( $payment->get_id() ) ); |
|
| 532 | + case 'invoice': |
|
| 533 | + $link = esc_url( get_edit_post_link( $payment->get_id() ) ); |
|
| 534 | 534 | |
| 535 | - if ( ! is_admin() ) { |
|
| 536 | - $link = esc_url( $payment->get_view_url() ); |
|
| 537 | - } |
|
| 535 | + if ( ! is_admin() ) { |
|
| 536 | + $link = esc_url( $payment->get_view_url() ); |
|
| 537 | + } |
|
| 538 | 538 | |
| 539 | - $invoice = sanitize_text_field( $payment->get_number() ); |
|
| 540 | - echo "<a href='$link'>$invoice</a>"; |
|
| 541 | - break; |
|
| 542 | - } |
|
| 539 | + $invoice = sanitize_text_field( $payment->get_number() ); |
|
| 540 | + echo "<a href='$link'>$invoice</a>"; |
|
| 541 | + break; |
|
| 542 | + } |
|
| 543 | 543 | |
| 544 | - echo '</td>'; |
|
| 544 | + echo '</td>'; |
|
| 545 | 545 | |
| 546 | - } |
|
| 546 | + } |
|
| 547 | 547 | |
| 548 | - echo '</tr>'; |
|
| 548 | + echo '</tr>'; |
|
| 549 | 549 | |
| 550 | - endforeach; |
|
| 551 | - ?> |
|
| 550 | + endforeach; |
|
| 551 | + ?> |
|
| 552 | 552 | |
| 553 | 553 | </tbody> |
| 554 | 554 | |
@@ -566,42 +566,42 @@ discard block |
||
| 566 | 566 | */ |
| 567 | 567 | function getpaid_admin_subscription_item_details_metabox( $subscription ) { |
| 568 | 568 | |
| 569 | - // Fetch the subscription group. |
|
| 570 | - $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_payment_id(), $subscription->get_id() ); |
|
| 569 | + // Fetch the subscription group. |
|
| 570 | + $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_payment_id(), $subscription->get_id() ); |
|
| 571 | 571 | |
| 572 | - if ( empty( $subscription_group ) || empty( $subscription_group['items'] ) ) { |
|
| 573 | - return; |
|
| 574 | - } |
|
| 572 | + if ( empty( $subscription_group ) || empty( $subscription_group['items'] ) ) { |
|
| 573 | + return; |
|
| 574 | + } |
|
| 575 | 575 | |
| 576 | - // Prepare table columns. |
|
| 577 | - $columns = apply_filters( |
|
| 578 | - 'getpaid_subscription_item_details_columns', |
|
| 579 | - array( |
|
| 580 | - 'item_name' => __( 'Item', 'invoicing' ), |
|
| 581 | - 'price' => __( 'Price', 'invoicing' ), |
|
| 582 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
| 583 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
| 584 | - 'initial' => __( 'Initial Amount', 'invoicing' ), |
|
| 585 | - 'recurring' => __( 'Recurring Amount', 'invoicing' ), |
|
| 586 | - ), |
|
| 587 | - $subscription |
|
| 588 | - ); |
|
| 576 | + // Prepare table columns. |
|
| 577 | + $columns = apply_filters( |
|
| 578 | + 'getpaid_subscription_item_details_columns', |
|
| 579 | + array( |
|
| 580 | + 'item_name' => __( 'Item', 'invoicing' ), |
|
| 581 | + 'price' => __( 'Price', 'invoicing' ), |
|
| 582 | + 'tax' => __( 'Tax', 'invoicing' ), |
|
| 583 | + 'discount' => __( 'Discount', 'invoicing' ), |
|
| 584 | + 'initial' => __( 'Initial Amount', 'invoicing' ), |
|
| 585 | + 'recurring' => __( 'Recurring Amount', 'invoicing' ), |
|
| 586 | + ), |
|
| 587 | + $subscription |
|
| 588 | + ); |
|
| 589 | 589 | |
| 590 | - // Prepare the invoices. |
|
| 590 | + // Prepare the invoices. |
|
| 591 | 591 | |
| 592 | - $invoice = $subscription->get_parent_invoice(); |
|
| 592 | + $invoice = $subscription->get_parent_invoice(); |
|
| 593 | 593 | |
| 594 | - if ( ( ! wpinv_use_taxes() || ! $invoice->is_taxable() ) && isset( $columns['tax'] ) ) { |
|
| 595 | - unset( $columns['tax'] ); |
|
| 596 | - } |
|
| 594 | + if ( ( ! wpinv_use_taxes() || ! $invoice->is_taxable() ) && isset( $columns['tax'] ) ) { |
|
| 595 | + unset( $columns['tax'] ); |
|
| 596 | + } |
|
| 597 | 597 | |
| 598 | - $table_class = 'w-100 bg-white'; |
|
| 598 | + $table_class = 'w-100 bg-white'; |
|
| 599 | 599 | |
| 600 | - if ( ! is_admin() ) { |
|
| 601 | - $table_class = 'table table-bordered'; |
|
| 602 | - } |
|
| 600 | + if ( ! is_admin() ) { |
|
| 601 | + $table_class = 'table table-bordered'; |
|
| 602 | + } |
|
| 603 | 603 | |
| 604 | - ?> |
|
| 604 | + ?> |
|
| 605 | 605 | <div class="m-0" style="overflow: auto;"> |
| 606 | 606 | |
| 607 | 607 | <table class="<?php echo $table_class; ?>"> |
@@ -610,14 +610,14 @@ discard block |
||
| 610 | 610 | <tr> |
| 611 | 611 | <?php |
| 612 | 612 | |
| 613 | - foreach ( $columns as $key => $label ) { |
|
| 614 | - $key = esc_attr( $key ); |
|
| 615 | - $label = sanitize_text_field( $label ); |
|
| 616 | - $class = 'text-left'; |
|
| 613 | + foreach ( $columns as $key => $label ) { |
|
| 614 | + $key = esc_attr( $key ); |
|
| 615 | + $label = sanitize_text_field( $label ); |
|
| 616 | + $class = 'text-left'; |
|
| 617 | 617 | |
| 618 | - echo "<th class='subscription-item-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
| 619 | - } |
|
| 620 | - ?> |
|
| 618 | + echo "<th class='subscription-item-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
| 619 | + } |
|
| 620 | + ?> |
|
| 621 | 621 | </tr> |
| 622 | 622 | </thead> |
| 623 | 623 | |
@@ -625,106 +625,106 @@ discard block |
||
| 625 | 625 | |
| 626 | 626 | <?php |
| 627 | 627 | |
| 628 | - foreach( $subscription_group['items'] as $subscription_group_item ) : |
|
| 628 | + foreach( $subscription_group['items'] as $subscription_group_item ) : |
|
| 629 | 629 | |
| 630 | - echo '<tr>'; |
|
| 630 | + echo '<tr>'; |
|
| 631 | 631 | |
| 632 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 632 | + foreach ( array_keys( $columns ) as $key ) { |
|
| 633 | 633 | |
| 634 | - $class = 'text-left'; |
|
| 634 | + $class = 'text-left'; |
|
| 635 | 635 | |
| 636 | - echo "<td class='p-2 $class'>"; |
|
| 636 | + echo "<td class='p-2 $class'>"; |
|
| 637 | 637 | |
| 638 | - switch( $key ) { |
|
| 638 | + switch( $key ) { |
|
| 639 | 639 | |
| 640 | - case 'item_name': |
|
| 641 | - $item_name = get_the_title( $subscription_group_item['item_id'] ); |
|
| 642 | - $item_name = empty( $item_name ) ? $subscription_group_item['item_name'] : $item_name; |
|
| 640 | + case 'item_name': |
|
| 641 | + $item_name = get_the_title( $subscription_group_item['item_id'] ); |
|
| 642 | + $item_name = empty( $item_name ) ? $subscription_group_item['item_name'] : $item_name; |
|
| 643 | 643 | |
| 644 | - if ( $invoice->get_template() == 'amount' || 1 == (float) $subscription_group_item['quantity'] ) { |
|
| 645 | - echo sanitize_text_field( $item_name ); |
|
| 646 | - } else { |
|
| 647 | - printf( '%1$s x %2$d', sanitize_text_field( $item_name ), (float) $subscription_group_item['quantity'] ); |
|
| 648 | - } |
|
| 644 | + if ( $invoice->get_template() == 'amount' || 1 == (float) $subscription_group_item['quantity'] ) { |
|
| 645 | + echo sanitize_text_field( $item_name ); |
|
| 646 | + } else { |
|
| 647 | + printf( '%1$s x %2$d', sanitize_text_field( $item_name ), (float) $subscription_group_item['quantity'] ); |
|
| 648 | + } |
|
| 649 | 649 | |
| 650 | - break; |
|
| 650 | + break; |
|
| 651 | 651 | |
| 652 | - case 'price': |
|
| 653 | - echo wpinv_price( $subscription_group_item['price'], $invoice->get_currency() ); |
|
| 654 | - break; |
|
| 652 | + case 'price': |
|
| 653 | + echo wpinv_price( $subscription_group_item['price'], $invoice->get_currency() ); |
|
| 654 | + break; |
|
| 655 | 655 | |
| 656 | - case 'tax': |
|
| 657 | - echo wpinv_price( $subscription_group_item['tax'], $invoice->get_currency() ); |
|
| 658 | - break; |
|
| 656 | + case 'tax': |
|
| 657 | + echo wpinv_price( $subscription_group_item['tax'], $invoice->get_currency() ); |
|
| 658 | + break; |
|
| 659 | 659 | |
| 660 | - case 'discount': |
|
| 661 | - echo wpinv_price( $subscription_group_item['discount'], $invoice->get_currency() ); |
|
| 662 | - break; |
|
| 660 | + case 'discount': |
|
| 661 | + echo wpinv_price( $subscription_group_item['discount'], $invoice->get_currency() ); |
|
| 662 | + break; |
|
| 663 | 663 | |
| 664 | - case 'initial': |
|
| 665 | - echo wpinv_price( $subscription_group_item['subtotal'], $invoice->get_currency() ); |
|
| 666 | - break; |
|
| 664 | + case 'initial': |
|
| 665 | + echo wpinv_price( $subscription_group_item['subtotal'], $invoice->get_currency() ); |
|
| 666 | + break; |
|
| 667 | 667 | |
| 668 | - case 'recurring': |
|
| 669 | - echo '<strong>' . wpinv_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ) . '</strong>'; |
|
| 670 | - break; |
|
| 668 | + case 'recurring': |
|
| 669 | + echo '<strong>' . wpinv_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ) . '</strong>'; |
|
| 670 | + break; |
|
| 671 | 671 | |
| 672 | - } |
|
| 672 | + } |
|
| 673 | 673 | |
| 674 | - echo '</td>'; |
|
| 674 | + echo '</td>'; |
|
| 675 | 675 | |
| 676 | - } |
|
| 676 | + } |
|
| 677 | 677 | |
| 678 | - echo '</tr>'; |
|
| 678 | + echo '</tr>'; |
|
| 679 | 679 | |
| 680 | - endforeach; |
|
| 680 | + endforeach; |
|
| 681 | 681 | |
| 682 | - foreach( $subscription_group['fees'] as $subscription_group_fee ) : |
|
| 682 | + foreach( $subscription_group['fees'] as $subscription_group_fee ) : |
|
| 683 | 683 | |
| 684 | - echo '<tr>'; |
|
| 684 | + echo '<tr>'; |
|
| 685 | 685 | |
| 686 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 686 | + foreach ( array_keys( $columns ) as $key ) { |
|
| 687 | 687 | |
| 688 | - $class = 'text-left'; |
|
| 688 | + $class = 'text-left'; |
|
| 689 | 689 | |
| 690 | - echo "<td class='p-2 $class'>"; |
|
| 690 | + echo "<td class='p-2 $class'>"; |
|
| 691 | 691 | |
| 692 | - switch( $key ) { |
|
| 692 | + switch( $key ) { |
|
| 693 | 693 | |
| 694 | - case 'item_name': |
|
| 695 | - echo sanitize_text_field( $subscription_group_fee['name'] ); |
|
| 696 | - break; |
|
| 694 | + case 'item_name': |
|
| 695 | + echo sanitize_text_field( $subscription_group_fee['name'] ); |
|
| 696 | + break; |
|
| 697 | 697 | |
| 698 | - case 'price': |
|
| 699 | - echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 700 | - break; |
|
| 698 | + case 'price': |
|
| 699 | + echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 700 | + break; |
|
| 701 | 701 | |
| 702 | - case 'tax': |
|
| 703 | - echo "—"; |
|
| 704 | - break; |
|
| 702 | + case 'tax': |
|
| 703 | + echo "—"; |
|
| 704 | + break; |
|
| 705 | 705 | |
| 706 | - case 'discount': |
|
| 707 | - echo "—"; |
|
| 708 | - break; |
|
| 706 | + case 'discount': |
|
| 707 | + echo "—"; |
|
| 708 | + break; |
|
| 709 | 709 | |
| 710 | - case 'initial': |
|
| 711 | - echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 712 | - break; |
|
| 710 | + case 'initial': |
|
| 711 | + echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 712 | + break; |
|
| 713 | 713 | |
| 714 | - case 'recurring': |
|
| 715 | - echo '<strong>' . wpinv_price( $subscription_group_fee['recurring_fee'], $invoice->get_currency() ) . '</strong>'; |
|
| 716 | - break; |
|
| 714 | + case 'recurring': |
|
| 715 | + echo '<strong>' . wpinv_price( $subscription_group_fee['recurring_fee'], $invoice->get_currency() ) . '</strong>'; |
|
| 716 | + break; |
|
| 717 | 717 | |
| 718 | - } |
|
| 718 | + } |
|
| 719 | 719 | |
| 720 | - echo '</td>'; |
|
| 720 | + echo '</td>'; |
|
| 721 | 721 | |
| 722 | - } |
|
| 722 | + } |
|
| 723 | 723 | |
| 724 | - echo '</tr>'; |
|
| 724 | + echo '</tr>'; |
|
| 725 | 725 | |
| 726 | - endforeach; |
|
| 727 | - ?> |
|
| 726 | + endforeach; |
|
| 727 | + ?> |
|
| 728 | 728 | |
| 729 | 729 | </tbody> |
| 730 | 730 | |
@@ -743,38 +743,38 @@ discard block |
||
| 743 | 743 | */ |
| 744 | 744 | function getpaid_admin_subscription_related_subscriptions_metabox( $subscription, $skip_current = true ) { |
| 745 | 745 | |
| 746 | - // Fetch the subscription groups. |
|
| 747 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $subscription->get_parent_payment_id() ); |
|
| 748 | - |
|
| 749 | - if ( empty( $subscription_groups ) ) { |
|
| 750 | - return; |
|
| 751 | - } |
|
| 752 | - |
|
| 753 | - // Prepare table columns. |
|
| 754 | - $columns = apply_filters( |
|
| 755 | - 'getpaid_subscription_related_subscriptions_columns', |
|
| 756 | - array( |
|
| 757 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 758 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 759 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 760 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 761 | - 'item' => __( 'Items', 'invoicing' ), |
|
| 762 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 763 | - ), |
|
| 764 | - $subscription |
|
| 765 | - ); |
|
| 766 | - |
|
| 767 | - if ( $subscription->get_status() == 'pending' ) { |
|
| 768 | - unset( $columns['start_date'], $columns['renewal_date'] ); |
|
| 769 | - } |
|
| 770 | - |
|
| 771 | - $table_class = 'w-100 bg-white'; |
|
| 772 | - |
|
| 773 | - if ( ! is_admin() ) { |
|
| 774 | - $table_class = 'table table-bordered'; |
|
| 775 | - } |
|
| 776 | - |
|
| 777 | - ?> |
|
| 746 | + // Fetch the subscription groups. |
|
| 747 | + $subscription_groups = getpaid_get_invoice_subscription_groups( $subscription->get_parent_payment_id() ); |
|
| 748 | + |
|
| 749 | + if ( empty( $subscription_groups ) ) { |
|
| 750 | + return; |
|
| 751 | + } |
|
| 752 | + |
|
| 753 | + // Prepare table columns. |
|
| 754 | + $columns = apply_filters( |
|
| 755 | + 'getpaid_subscription_related_subscriptions_columns', |
|
| 756 | + array( |
|
| 757 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 758 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 759 | + 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 760 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 761 | + 'item' => __( 'Items', 'invoicing' ), |
|
| 762 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 763 | + ), |
|
| 764 | + $subscription |
|
| 765 | + ); |
|
| 766 | + |
|
| 767 | + if ( $subscription->get_status() == 'pending' ) { |
|
| 768 | + unset( $columns['start_date'], $columns['renewal_date'] ); |
|
| 769 | + } |
|
| 770 | + |
|
| 771 | + $table_class = 'w-100 bg-white'; |
|
| 772 | + |
|
| 773 | + if ( ! is_admin() ) { |
|
| 774 | + $table_class = 'table table-bordered'; |
|
| 775 | + } |
|
| 776 | + |
|
| 777 | + ?> |
|
| 778 | 778 | <div class="m-0" style="overflow: auto;"> |
| 779 | 779 | |
| 780 | 780 | <table class="<?php echo $table_class; ?>"> |
@@ -783,14 +783,14 @@ discard block |
||
| 783 | 783 | <tr> |
| 784 | 784 | <?php |
| 785 | 785 | |
| 786 | - foreach ( $columns as $key => $label ) { |
|
| 787 | - $key = esc_attr( $key ); |
|
| 788 | - $label = sanitize_text_field( $label ); |
|
| 789 | - $class = 'text-left'; |
|
| 786 | + foreach ( $columns as $key => $label ) { |
|
| 787 | + $key = esc_attr( $key ); |
|
| 788 | + $label = sanitize_text_field( $label ); |
|
| 789 | + $class = 'text-left'; |
|
| 790 | 790 | |
| 791 | - echo "<th class='related-subscription-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
| 792 | - } |
|
| 793 | - ?> |
|
| 791 | + echo "<th class='related-subscription-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
| 792 | + } |
|
| 793 | + ?> |
|
| 794 | 794 | </tr> |
| 795 | 795 | </thead> |
| 796 | 796 | |
@@ -798,74 +798,74 @@ discard block |
||
| 798 | 798 | |
| 799 | 799 | <?php |
| 800 | 800 | |
| 801 | - foreach( $subscription_groups as $subscription_group ) : |
|
| 801 | + foreach( $subscription_groups as $subscription_group ) : |
|
| 802 | 802 | |
| 803 | - // Do not list current subscription. |
|
| 804 | - if ( $skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id() ) { |
|
| 805 | - continue; |
|
| 806 | - } |
|
| 803 | + // Do not list current subscription. |
|
| 804 | + if ( $skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id() ) { |
|
| 805 | + continue; |
|
| 806 | + } |
|
| 807 | 807 | |
| 808 | - // Ensure the subscription exists. |
|
| 809 | - $_suscription = new WPInv_Subscription( $subscription_group['subscription_id'] ); |
|
| 808 | + // Ensure the subscription exists. |
|
| 809 | + $_suscription = new WPInv_Subscription( $subscription_group['subscription_id'] ); |
|
| 810 | 810 | |
| 811 | - if ( ! $_suscription->exists() ) { |
|
| 812 | - continue; |
|
| 813 | - } |
|
| 811 | + if ( ! $_suscription->exists() ) { |
|
| 812 | + continue; |
|
| 813 | + } |
|
| 814 | 814 | |
| 815 | - echo '<tr>'; |
|
| 815 | + echo '<tr>'; |
|
| 816 | 816 | |
| 817 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 817 | + foreach ( array_keys( $columns ) as $key ) { |
|
| 818 | 818 | |
| 819 | - $class = 'text-left'; |
|
| 819 | + $class = 'text-left'; |
|
| 820 | 820 | |
| 821 | - echo "<td class='p-2 $class'>"; |
|
| 821 | + echo "<td class='p-2 $class'>"; |
|
| 822 | 822 | |
| 823 | - switch( $key ) { |
|
| 823 | + switch( $key ) { |
|
| 824 | 824 | |
| 825 | - case 'status': |
|
| 826 | - echo $_suscription->get_status_label_html(); |
|
| 827 | - break; |
|
| 825 | + case 'status': |
|
| 826 | + echo $_suscription->get_status_label_html(); |
|
| 827 | + break; |
|
| 828 | 828 | |
| 829 | - case 'item': |
|
| 830 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 831 | - echo implode( ' | ', $markup ); |
|
| 832 | - break; |
|
| 829 | + case 'item': |
|
| 830 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 831 | + echo implode( ' | ', $markup ); |
|
| 832 | + break; |
|
| 833 | 833 | |
| 834 | - case 'renewals': |
|
| 835 | - $max_bills = $_suscription->get_bill_times(); |
|
| 836 | - echo $_suscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 837 | - break; |
|
| 834 | + case 'renewals': |
|
| 835 | + $max_bills = $_suscription->get_bill_times(); |
|
| 836 | + echo $_suscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 837 | + break; |
|
| 838 | 838 | |
| 839 | - case 'renewal_date': |
|
| 840 | - echo $_suscription->is_active() ? getpaid_format_date_value( $_suscription->get_expiration() ) : "—"; |
|
| 841 | - break; |
|
| 839 | + case 'renewal_date': |
|
| 840 | + echo $_suscription->is_active() ? getpaid_format_date_value( $_suscription->get_expiration() ) : "—"; |
|
| 841 | + break; |
|
| 842 | 842 | |
| 843 | - case 'start_date': |
|
| 844 | - echo 'pending' == $_suscription->get_status() ? "—" : getpaid_format_date_value( $_suscription->get_date_created() ); |
|
| 845 | - break; |
|
| 843 | + case 'start_date': |
|
| 844 | + echo 'pending' == $_suscription->get_status() ? "—" : getpaid_format_date_value( $_suscription->get_date_created() ); |
|
| 845 | + break; |
|
| 846 | 846 | |
| 847 | - case 'subscription': |
|
| 848 | - $url = is_admin() ? admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $_suscription->get_id() ) ) : $_suscription->get_view_url(); |
|
| 849 | - printf( |
|
| 850 | - '%1$s#%2$s%3$s', |
|
| 851 | - '<a href="' . esc_url( $url ) . '">', |
|
| 852 | - '<strong>' . intval( $_suscription->get_id() ) . '</strong>', |
|
| 853 | - '</a>' |
|
| 854 | - ); |
|
| 847 | + case 'subscription': |
|
| 848 | + $url = is_admin() ? admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $_suscription->get_id() ) ) : $_suscription->get_view_url(); |
|
| 849 | + printf( |
|
| 850 | + '%1$s#%2$s%3$s', |
|
| 851 | + '<a href="' . esc_url( $url ) . '">', |
|
| 852 | + '<strong>' . intval( $_suscription->get_id() ) . '</strong>', |
|
| 853 | + '</a>' |
|
| 854 | + ); |
|
| 855 | 855 | |
| 856 | - echo WPInv_Subscriptions_List_Table::column_amount( $_suscription ); |
|
| 857 | - break; |
|
| 856 | + echo WPInv_Subscriptions_List_Table::column_amount( $_suscription ); |
|
| 857 | + break; |
|
| 858 | 858 | |
| 859 | - } |
|
| 859 | + } |
|
| 860 | 860 | |
| 861 | - echo '</td>'; |
|
| 861 | + echo '</td>'; |
|
| 862 | 862 | |
| 863 | - } |
|
| 863 | + } |
|
| 864 | 864 | |
| 865 | - echo '</tr>'; |
|
| 865 | + echo '</tr>'; |
|
| 866 | 866 | |
| 867 | - endforeach; |
|
| 868 | - ?> |
|
| 867 | + endforeach; |
|
| 868 | + ?> |
|
| 869 | 869 | |
| 870 | 870 | </tbody> |
| 871 | 871 | |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * Contains functions that display the subscriptions admin page. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -defined( 'ABSPATH' ) || exit; |
|
| 6 | +defined('ABSPATH') || exit; |
|
| 7 | 7 | |
| 8 | 8 | /** |
| 9 | 9 | * Render the Subscriptions page |
@@ -17,22 +17,22 @@ discard block |
||
| 17 | 17 | ?> |
| 18 | 18 | |
| 19 | 19 | <div class="wrap"> |
| 20 | - <h1><?php echo esc_html( get_admin_page_title() ); ?></h1> |
|
| 20 | + <h1><?php echo esc_html(get_admin_page_title()); ?></h1> |
|
| 21 | 21 | <div class="bsui"> |
| 22 | 22 | |
| 23 | 23 | <?php |
| 24 | 24 | |
| 25 | 25 | // Verify user permissions. |
| 26 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 26 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 27 | 27 | |
| 28 | 28 | echo aui()->alert( |
| 29 | 29 | array( |
| 30 | 30 | 'type' => 'danger', |
| 31 | - 'content' => __( 'You are not permitted to view this page.', 'invoicing' ), |
|
| 31 | + 'content' => __('You are not permitted to view this page.', 'invoicing'), |
|
| 32 | 32 | ) |
| 33 | 33 | ); |
| 34 | 34 | |
| 35 | - } else if ( ! empty( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) { |
|
| 35 | + } else if (!empty($_GET['id']) && is_numeric($_GET['id'])) { |
|
| 36 | 36 | |
| 37 | 37 | // Display a single subscription. |
| 38 | 38 | wpinv_recurring_subscription_details(); |
@@ -81,13 +81,13 @@ discard block |
||
| 81 | 81 | function wpinv_recurring_subscription_details() { |
| 82 | 82 | |
| 83 | 83 | // Fetch the subscription. |
| 84 | - $sub = new WPInv_Subscription( (int) $_GET['id'] ); |
|
| 85 | - if ( ! $sub->exists() ) { |
|
| 84 | + $sub = new WPInv_Subscription((int) $_GET['id']); |
|
| 85 | + if (!$sub->exists()) { |
|
| 86 | 86 | |
| 87 | 87 | echo aui()->alert( |
| 88 | 88 | array( |
| 89 | 89 | 'type' => 'danger', |
| 90 | - 'content' => __( 'Subscription not found.', 'invoicing' ), |
|
| 90 | + 'content' => __('Subscription not found.', 'invoicing'), |
|
| 91 | 91 | ) |
| 92 | 92 | ); |
| 93 | 93 | |
@@ -95,45 +95,45 @@ discard block |
||
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | // Use metaboxes to display the subscription details. |
| 98 | - add_meta_box( 'getpaid_admin_subscription_details_metabox', __( 'Subscription Details', 'invoicing' ), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high' ); |
|
| 99 | - add_meta_box( 'getpaid_admin_subscription_update_metabox', __( 'Change Status', 'invoicing' ), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side' ); |
|
| 98 | + add_meta_box('getpaid_admin_subscription_details_metabox', __('Subscription Details', 'invoicing'), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high'); |
|
| 99 | + add_meta_box('getpaid_admin_subscription_update_metabox', __('Change Status', 'invoicing'), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side'); |
|
| 100 | 100 | |
| 101 | 101 | $subscription_id = $sub->get_id(); |
| 102 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $sub->get_parent_invoice_id() ); |
|
| 103 | - $subscription_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 102 | + $subscription_groups = getpaid_get_invoice_subscription_groups($sub->get_parent_invoice_id()); |
|
| 103 | + $subscription_group = wp_list_filter($subscription_groups, compact('subscription_id')); |
|
| 104 | 104 | |
| 105 | - if ( 1 < count( $subscription_groups ) ) { |
|
| 106 | - add_meta_box( 'getpaid_admin_subscription_related_subscriptions_metabox', __( 'Related Subscriptions', 'invoicing' ), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced' ); |
|
| 105 | + if (1 < count($subscription_groups)) { |
|
| 106 | + add_meta_box('getpaid_admin_subscription_related_subscriptions_metabox', __('Related Subscriptions', 'invoicing'), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced'); |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - if ( ! empty( $subscription_group ) ) { |
|
| 110 | - add_meta_box( 'getpaid_admin_subscription_item_details_metabox', __( 'Subscription Items', 'invoicing' ), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low' ); |
|
| 109 | + if (!empty($subscription_group)) { |
|
| 110 | + add_meta_box('getpaid_admin_subscription_item_details_metabox', __('Subscription Items', 'invoicing'), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low'); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - add_meta_box( 'getpaid_admin_subscription_invoice_details_metabox', __( 'Related Invoices', 'invoicing' ), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced' ); |
|
| 113 | + add_meta_box('getpaid_admin_subscription_invoice_details_metabox', __('Related Invoices', 'invoicing'), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced'); |
|
| 114 | 114 | |
| 115 | - do_action( 'getpaid_admin_single_subscription_register_metabox', $sub ); |
|
| 115 | + do_action('getpaid_admin_single_subscription_register_metabox', $sub); |
|
| 116 | 116 | |
| 117 | 117 | ?> |
| 118 | 118 | |
| 119 | - <form method="post" action="<?php echo admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $sub->get_id() ) ); ?>"> |
|
| 119 | + <form method="post" action="<?php echo admin_url('admin.php?page=wpinv-subscriptions&id=' . absint($sub->get_id())); ?>"> |
|
| 120 | 120 | |
| 121 | - <?php wp_nonce_field( 'getpaid-nonce', 'getpaid-nonce' ); ?> |
|
| 122 | - <?php wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?> |
|
| 123 | - <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?> |
|
| 121 | + <?php wp_nonce_field('getpaid-nonce', 'getpaid-nonce'); ?> |
|
| 122 | + <?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false); ?> |
|
| 123 | + <?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false); ?> |
|
| 124 | 124 | <input type="hidden" name="getpaid-admin-action" value="update_single_subscription" /> |
| 125 | - <input type="hidden" name="subscription_id" value="<?php echo (int) $sub->get_id() ;?>" /> |
|
| 125 | + <input type="hidden" name="subscription_id" value="<?php echo (int) $sub->get_id(); ?>" /> |
|
| 126 | 126 | |
| 127 | 127 | <div id="poststuff"> |
| 128 | 128 | <div id="post-body" class="metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?>"> |
| 129 | 129 | |
| 130 | 130 | <div id="postbox-container-1" class="postbox-container"> |
| 131 | - <?php do_meta_boxes( get_current_screen(), 'side', $sub ); ?> |
|
| 131 | + <?php do_meta_boxes(get_current_screen(), 'side', $sub); ?> |
|
| 132 | 132 | </div> |
| 133 | 133 | |
| 134 | 134 | <div id="postbox-container-2" class="postbox-container"> |
| 135 | - <?php do_meta_boxes( get_current_screen(), 'normal', $sub ); ?> |
|
| 136 | - <?php do_meta_boxes( get_current_screen(), 'advanced', $sub ); ?> |
|
| 135 | + <?php do_meta_boxes(get_current_screen(), 'normal', $sub); ?> |
|
| 136 | + <?php do_meta_boxes(get_current_screen(), 'advanced', $sub); ?> |
|
| 137 | 137 | </div> |
| 138 | 138 | |
| 139 | 139 | </div> |
@@ -152,44 +152,44 @@ discard block |
||
| 152 | 152 | * |
| 153 | 153 | * @param WPInv_Subscription $sub |
| 154 | 154 | */ |
| 155 | -function getpaid_admin_subscription_details_metabox( $sub ) { |
|
| 155 | +function getpaid_admin_subscription_details_metabox($sub) { |
|
| 156 | 156 | |
| 157 | 157 | // Subscription items. |
| 158 | - $subscription_group = getpaid_get_invoice_subscription_group( $sub->get_parent_invoice_id(), $sub->get_id() ); |
|
| 159 | - $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 158 | + $subscription_group = getpaid_get_invoice_subscription_group($sub->get_parent_invoice_id(), $sub->get_id()); |
|
| 159 | + $items_count = empty($subscription_group) ? 1 : count($subscription_group['items']); |
|
| 160 | 160 | |
| 161 | 161 | // Prepare subscription detail columns. |
| 162 | 162 | $fields = apply_filters( |
| 163 | 163 | 'getpaid_subscription_admin_page_fields', |
| 164 | 164 | array( |
| 165 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 166 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
| 167 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 168 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 169 | - 'renews_on' => __( 'Next Payment', 'invoicing' ), |
|
| 170 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 171 | - 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 172 | - 'gateway' => __( 'Payment Method', 'invoicing' ), |
|
| 173 | - 'profile_id' => __( 'Profile ID', 'invoicing' ), |
|
| 174 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 165 | + 'subscription' => __('Subscription', 'invoicing'), |
|
| 166 | + 'customer' => __('Customer', 'invoicing'), |
|
| 167 | + 'amount' => __('Amount', 'invoicing'), |
|
| 168 | + 'start_date' => __('Start Date', 'invoicing'), |
|
| 169 | + 'renews_on' => __('Next Payment', 'invoicing'), |
|
| 170 | + 'renewals' => __('Payments', 'invoicing'), |
|
| 171 | + 'item' => _n('Item', 'Items', $items_count, 'invoicing'), |
|
| 172 | + 'gateway' => __('Payment Method', 'invoicing'), |
|
| 173 | + 'profile_id' => __('Profile ID', 'invoicing'), |
|
| 174 | + 'status' => __('Status', 'invoicing'), |
|
| 175 | 175 | ) |
| 176 | 176 | ); |
| 177 | 177 | |
| 178 | - if ( ! $sub->is_active() ) { |
|
| 178 | + if (!$sub->is_active()) { |
|
| 179 | 179 | |
| 180 | - if ( isset( $fields['renews_on'] ) ) { |
|
| 181 | - unset( $fields['renews_on'] ); |
|
| 180 | + if (isset($fields['renews_on'])) { |
|
| 181 | + unset($fields['renews_on']); |
|
| 182 | 182 | } |
| 183 | 183 | |
| 184 | - if ( isset( $fields['gateway'] ) ) { |
|
| 185 | - unset( $fields['gateway'] ); |
|
| 184 | + if (isset($fields['gateway'])) { |
|
| 185 | + unset($fields['gateway']); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | 190 | $profile_id = $sub->get_profile_id(); |
| 191 | - if ( empty( $profile_id ) && isset( $fields['profile_id'] ) ) { |
|
| 192 | - unset( $fields['profile_id'] ); |
|
| 191 | + if (empty($profile_id) && isset($fields['profile_id'])) { |
|
| 192 | + unset($fields['profile_id']); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | ?> |
@@ -197,16 +197,16 @@ discard block |
||
| 197 | 197 | <table class="table table-borderless" style="font-size: 14px;"> |
| 198 | 198 | <tbody> |
| 199 | 199 | |
| 200 | - <?php foreach ( $fields as $key => $label ) : ?> |
|
| 200 | + <?php foreach ($fields as $key => $label) : ?> |
|
| 201 | 201 | |
| 202 | - <tr class="getpaid-subscription-meta-<?php echo sanitize_html_class( $key ); ?>"> |
|
| 202 | + <tr class="getpaid-subscription-meta-<?php echo sanitize_html_class($key); ?>"> |
|
| 203 | 203 | |
| 204 | 204 | <th class="w-25" style="font-weight: 500;"> |
| 205 | - <?php echo sanitize_text_field( $label ); ?> |
|
| 205 | + <?php echo sanitize_text_field($label); ?> |
|
| 206 | 206 | </th> |
| 207 | 207 | |
| 208 | 208 | <td class="w-75 text-muted"> |
| 209 | - <?php do_action( 'getpaid_subscription_admin_display_' . sanitize_text_field( $key ), $sub, $subscription_group ); ?> |
|
| 209 | + <?php do_action('getpaid_subscription_admin_display_' . sanitize_text_field($key), $sub, $subscription_group); ?> |
|
| 210 | 210 | </td> |
| 211 | 211 | |
| 212 | 212 | </tr> |
@@ -224,129 +224,129 @@ discard block |
||
| 224 | 224 | * |
| 225 | 225 | * @param WPInv_Subscription $subscription |
| 226 | 226 | */ |
| 227 | -function getpaid_admin_subscription_metabox_display_customer( $subscription ) { |
|
| 227 | +function getpaid_admin_subscription_metabox_display_customer($subscription) { |
|
| 228 | 228 | |
| 229 | - $username = __( '(Missing User)', 'invoicing' ); |
|
| 229 | + $username = __('(Missing User)', 'invoicing'); |
|
| 230 | 230 | |
| 231 | - $user = get_userdata( $subscription->get_customer_id() ); |
|
| 232 | - if ( $user ) { |
|
| 231 | + $user = get_userdata($subscription->get_customer_id()); |
|
| 232 | + if ($user) { |
|
| 233 | 233 | |
| 234 | 234 | $username = sprintf( |
| 235 | 235 | '<a href="user-edit.php?user_id=%s">%s</a>', |
| 236 | - absint( $user->ID ), |
|
| 237 | - ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 236 | + absint($user->ID), |
|
| 237 | + !empty($user->display_name) ? sanitize_text_field($user->display_name) : sanitize_email($user->user_email) |
|
| 238 | 238 | ); |
| 239 | 239 | |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | echo $username; |
| 243 | 243 | } |
| 244 | -add_action( 'getpaid_subscription_admin_display_customer', 'getpaid_admin_subscription_metabox_display_customer' ); |
|
| 244 | +add_action('getpaid_subscription_admin_display_customer', 'getpaid_admin_subscription_metabox_display_customer'); |
|
| 245 | 245 | |
| 246 | 246 | /** |
| 247 | 247 | * Displays the subscription amount. |
| 248 | 248 | * |
| 249 | 249 | * @param WPInv_Subscription $subscription |
| 250 | 250 | */ |
| 251 | -function getpaid_admin_subscription_metabox_display_amount( $subscription ) { |
|
| 252 | - $amount = sanitize_text_field( getpaid_get_formatted_subscription_amount( $subscription ) ); |
|
| 251 | +function getpaid_admin_subscription_metabox_display_amount($subscription) { |
|
| 252 | + $amount = sanitize_text_field(getpaid_get_formatted_subscription_amount($subscription)); |
|
| 253 | 253 | echo "<span>$amount</span>"; |
| 254 | 254 | } |
| 255 | -add_action( 'getpaid_subscription_admin_display_amount', 'getpaid_admin_subscription_metabox_display_amount' ); |
|
| 255 | +add_action('getpaid_subscription_admin_display_amount', 'getpaid_admin_subscription_metabox_display_amount'); |
|
| 256 | 256 | |
| 257 | 257 | /** |
| 258 | 258 | * Displays the subscription id. |
| 259 | 259 | * |
| 260 | 260 | * @param WPInv_Subscription $subscription |
| 261 | 261 | */ |
| 262 | -function getpaid_admin_subscription_metabox_display_id( $subscription ) { |
|
| 263 | - echo '#' . absint( $subscription->get_id() ); |
|
| 262 | +function getpaid_admin_subscription_metabox_display_id($subscription) { |
|
| 263 | + echo '#' . absint($subscription->get_id()); |
|
| 264 | 264 | } |
| 265 | -add_action( 'getpaid_subscription_admin_display_subscription', 'getpaid_admin_subscription_metabox_display_id' ); |
|
| 265 | +add_action('getpaid_subscription_admin_display_subscription', 'getpaid_admin_subscription_metabox_display_id'); |
|
| 266 | 266 | |
| 267 | 267 | /** |
| 268 | 268 | * Displays the subscription renewal date. |
| 269 | 269 | * |
| 270 | 270 | * @param WPInv_Subscription $subscription |
| 271 | 271 | */ |
| 272 | -function getpaid_admin_subscription_metabox_display_start_date( $subscription ) { |
|
| 273 | - echo getpaid_format_date_value( $subscription->get_date_created() ); |
|
| 272 | +function getpaid_admin_subscription_metabox_display_start_date($subscription) { |
|
| 273 | + echo getpaid_format_date_value($subscription->get_date_created()); |
|
| 274 | 274 | } |
| 275 | -add_action( 'getpaid_subscription_admin_display_start_date', 'getpaid_admin_subscription_metabox_display_start_date' ); |
|
| 275 | +add_action('getpaid_subscription_admin_display_start_date', 'getpaid_admin_subscription_metabox_display_start_date'); |
|
| 276 | 276 | |
| 277 | 277 | /** |
| 278 | 278 | * Displays the subscription renewal date. |
| 279 | 279 | * |
| 280 | 280 | * @param WPInv_Subscription $subscription |
| 281 | 281 | */ |
| 282 | -function getpaid_admin_subscription_metabox_display_renews_on( $subscription ) { |
|
| 283 | - echo getpaid_format_date_value( $subscription->get_expiration() ); |
|
| 282 | +function getpaid_admin_subscription_metabox_display_renews_on($subscription) { |
|
| 283 | + echo getpaid_format_date_value($subscription->get_expiration()); |
|
| 284 | 284 | } |
| 285 | -add_action( 'getpaid_subscription_admin_display_renews_on', 'getpaid_admin_subscription_metabox_display_renews_on' ); |
|
| 285 | +add_action('getpaid_subscription_admin_display_renews_on', 'getpaid_admin_subscription_metabox_display_renews_on'); |
|
| 286 | 286 | |
| 287 | 287 | /** |
| 288 | 288 | * Displays the subscription renewal count. |
| 289 | 289 | * |
| 290 | 290 | * @param WPInv_Subscription $subscription |
| 291 | 291 | */ |
| 292 | -function getpaid_admin_subscription_metabox_display_renewals( $subscription ) { |
|
| 292 | +function getpaid_admin_subscription_metabox_display_renewals($subscription) { |
|
| 293 | 293 | $max_bills = $subscription->get_bill_times(); |
| 294 | - echo $subscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 294 | + echo $subscription->get_times_billed() . ' / ' . (empty($max_bills) ? "∞" : $max_bills); |
|
| 295 | 295 | } |
| 296 | -add_action( 'getpaid_subscription_admin_display_renewals', 'getpaid_admin_subscription_metabox_display_renewals' ); |
|
| 296 | +add_action('getpaid_subscription_admin_display_renewals', 'getpaid_admin_subscription_metabox_display_renewals'); |
|
| 297 | 297 | /** |
| 298 | 298 | * Displays the subscription item. |
| 299 | 299 | * |
| 300 | 300 | * @param WPInv_Subscription $subscription |
| 301 | 301 | * @param false|array $subscription_group |
| 302 | 302 | */ |
| 303 | -function getpaid_admin_subscription_metabox_display_item( $subscription, $subscription_group = false ) { |
|
| 303 | +function getpaid_admin_subscription_metabox_display_item($subscription, $subscription_group = false) { |
|
| 304 | 304 | |
| 305 | - if ( empty( $subscription_group ) ) { |
|
| 306 | - echo WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ); |
|
| 305 | + if (empty($subscription_group)) { |
|
| 306 | + echo WPInv_Subscriptions_List_Table::generate_item_markup($subscription->get_product_id()); |
|
| 307 | 307 | return; |
| 308 | 308 | } |
| 309 | 309 | |
| 310 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 311 | - echo implode( ' | ', $markup ); |
|
| 310 | + $markup = array_map(array('WPInv_Subscriptions_List_Table', 'generate_item_markup'), array_keys($subscription_group['items'])); |
|
| 311 | + echo implode(' | ', $markup); |
|
| 312 | 312 | |
| 313 | 313 | } |
| 314 | -add_action( 'getpaid_subscription_admin_display_item', 'getpaid_admin_subscription_metabox_display_item', 10, 2 ); |
|
| 314 | +add_action('getpaid_subscription_admin_display_item', 'getpaid_admin_subscription_metabox_display_item', 10, 2); |
|
| 315 | 315 | |
| 316 | 316 | /** |
| 317 | 317 | * Displays the subscription gateway. |
| 318 | 318 | * |
| 319 | 319 | * @param WPInv_Subscription $subscription |
| 320 | 320 | */ |
| 321 | -function getpaid_admin_subscription_metabox_display_gateway( $subscription ) { |
|
| 321 | +function getpaid_admin_subscription_metabox_display_gateway($subscription) { |
|
| 322 | 322 | |
| 323 | 323 | $gateway = $subscription->get_gateway(); |
| 324 | 324 | |
| 325 | - if ( ! empty( $gateway ) ) { |
|
| 326 | - echo sanitize_text_field( wpinv_get_gateway_admin_label( $gateway ) ); |
|
| 325 | + if (!empty($gateway)) { |
|
| 326 | + echo sanitize_text_field(wpinv_get_gateway_admin_label($gateway)); |
|
| 327 | 327 | } else { |
| 328 | 328 | echo "—"; |
| 329 | 329 | } |
| 330 | 330 | |
| 331 | 331 | } |
| 332 | -add_action( 'getpaid_subscription_admin_display_gateway', 'getpaid_admin_subscription_metabox_display_gateway' ); |
|
| 332 | +add_action('getpaid_subscription_admin_display_gateway', 'getpaid_admin_subscription_metabox_display_gateway'); |
|
| 333 | 333 | |
| 334 | 334 | /** |
| 335 | 335 | * Displays the subscription status. |
| 336 | 336 | * |
| 337 | 337 | * @param WPInv_Subscription $subscription |
| 338 | 338 | */ |
| 339 | -function getpaid_admin_subscription_metabox_display_status( $subscription ) { |
|
| 339 | +function getpaid_admin_subscription_metabox_display_status($subscription) { |
|
| 340 | 340 | echo $subscription->get_status_label_html(); |
| 341 | 341 | } |
| 342 | -add_action( 'getpaid_subscription_admin_display_status', 'getpaid_admin_subscription_metabox_display_status' ); |
|
| 342 | +add_action('getpaid_subscription_admin_display_status', 'getpaid_admin_subscription_metabox_display_status'); |
|
| 343 | 343 | |
| 344 | 344 | /** |
| 345 | 345 | * Displays the subscription profile id. |
| 346 | 346 | * |
| 347 | 347 | * @param WPInv_Subscription $subscription |
| 348 | 348 | */ |
| 349 | -function getpaid_admin_subscription_metabox_display_profile_id( $subscription ) { |
|
| 349 | +function getpaid_admin_subscription_metabox_display_profile_id($subscription) { |
|
| 350 | 350 | |
| 351 | 351 | $profile_id = $subscription->get_profile_id(); |
| 352 | 352 | |
@@ -355,32 +355,32 @@ discard block |
||
| 355 | 355 | 'type' => 'text', |
| 356 | 356 | 'id' => 'wpinv_subscription_profile_id', |
| 357 | 357 | 'name' => 'wpinv_subscription_profile_id', |
| 358 | - 'label' => __( 'Profile Id', 'invoicing' ), |
|
| 358 | + 'label' => __('Profile Id', 'invoicing'), |
|
| 359 | 359 | 'label_type' => 'hidden', |
| 360 | - 'placeholder' => __( 'Profile Id', 'invoicing' ), |
|
| 361 | - 'value' => sanitize_text_field( $profile_id ), |
|
| 360 | + 'placeholder' => __('Profile Id', 'invoicing'), |
|
| 361 | + 'value' => sanitize_text_field($profile_id), |
|
| 362 | 362 | 'input_group_right' => '', |
| 363 | 363 | 'no_wrap' => true, |
| 364 | 364 | ) |
| 365 | 365 | ); |
| 366 | 366 | |
| 367 | - echo str_ireplace( 'form-control', 'regular-text', $input ); |
|
| 367 | + echo str_ireplace('form-control', 'regular-text', $input); |
|
| 368 | 368 | |
| 369 | - $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $subscription ); |
|
| 370 | - if ( ! empty( $url ) ) { |
|
| 371 | - $url = esc_url_raw( $url ); |
|
| 372 | - echo ' <a href="' . $url . '" title="' . __( 'View in Gateway', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
| 369 | + $url = apply_filters('getpaid_remote_subscription_profile_url', '', $subscription); |
|
| 370 | + if (!empty($url)) { |
|
| 371 | + $url = esc_url_raw($url); |
|
| 372 | + echo ' <a href="' . $url . '" title="' . __('View in Gateway', 'invoicing') . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
| 373 | 373 | } |
| 374 | 374 | |
| 375 | 375 | } |
| 376 | -add_action( 'getpaid_subscription_admin_display_profile_id', 'getpaid_admin_subscription_metabox_display_profile_id' ); |
|
| 376 | +add_action('getpaid_subscription_admin_display_profile_id', 'getpaid_admin_subscription_metabox_display_profile_id'); |
|
| 377 | 377 | |
| 378 | 378 | /** |
| 379 | 379 | * Displays the subscriptions update metabox. |
| 380 | 380 | * |
| 381 | 381 | * @param WPInv_Subscription $subscription |
| 382 | 382 | */ |
| 383 | -function getpaid_admin_subscription_update_metabox( $subscription ) { |
|
| 383 | +function getpaid_admin_subscription_update_metabox($subscription) { |
|
| 384 | 384 | |
| 385 | 385 | ?> |
| 386 | 386 | <div class="mt-3"> |
@@ -393,10 +393,10 @@ discard block |
||
| 393 | 393 | 'id' => 'subscription_status_update_select', |
| 394 | 394 | 'required' => true, |
| 395 | 395 | 'no_wrap' => false, |
| 396 | - 'label' => __( 'Subscription Status', 'invoicing' ), |
|
| 397 | - 'help_text' => __( 'Updating the status will trigger related actions and hooks', 'invoicing' ), |
|
| 396 | + 'label' => __('Subscription Status', 'invoicing'), |
|
| 397 | + 'help_text' => __('Updating the status will trigger related actions and hooks', 'invoicing'), |
|
| 398 | 398 | 'select2' => true, |
| 399 | - 'value' => $subscription->get_status( 'edit' ), |
|
| 399 | + 'value' => $subscription->get_status('edit'), |
|
| 400 | 400 | ) |
| 401 | 401 | ); |
| 402 | 402 | ?> |
@@ -404,13 +404,13 @@ discard block |
||
| 404 | 404 | <div class="mt-2 px-3 py-2 bg-light border-top" style="margin: -12px;"> |
| 405 | 405 | |
| 406 | 406 | <?php |
| 407 | - submit_button( __( 'Update', 'invoicing' ), 'primary', 'submit', false ); |
|
| 407 | + submit_button(__('Update', 'invoicing'), 'primary', 'submit', false); |
|
| 408 | 408 | |
| 409 | - $url = esc_url( wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'subscription_manual_renew' ), 'getpaid-nonce', 'getpaid-nonce' ) ); |
|
| 410 | - $anchor = __( 'Renew Subscription', 'invoicing' ); |
|
| 411 | - $title = esc_attr__( 'Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing' ); |
|
| 409 | + $url = esc_url(wp_nonce_url(add_query_arg('getpaid-admin-action', 'subscription_manual_renew'), 'getpaid-nonce', 'getpaid-nonce')); |
|
| 410 | + $anchor = __('Renew Subscription', 'invoicing'); |
|
| 411 | + $title = esc_attr__('Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing'); |
|
| 412 | 412 | |
| 413 | - if ( $subscription->is_active() ) { |
|
| 413 | + if ($subscription->is_active()) { |
|
| 414 | 414 | echo "<a href='$url' class='float-right text-muted' onclick='return confirm(\"$title\")'>$anchor</a>"; |
| 415 | 415 | } |
| 416 | 416 | |
@@ -423,31 +423,31 @@ discard block |
||
| 423 | 423 | * @param WPInv_Subscription $subscription |
| 424 | 424 | * @param bool $strict Whether or not to skip invoices of sibling subscriptions |
| 425 | 425 | */ |
| 426 | -function getpaid_admin_subscription_invoice_details_metabox( $subscription, $strict = true ) { |
|
| 426 | +function getpaid_admin_subscription_invoice_details_metabox($subscription, $strict = true) { |
|
| 427 | 427 | |
| 428 | 428 | $columns = apply_filters( |
| 429 | 429 | 'getpaid_subscription_related_invoices_columns', |
| 430 | 430 | array( |
| 431 | - 'invoice' => __( 'Invoice', 'invoicing' ), |
|
| 432 | - 'relationship' => __( 'Relationship', 'invoicing' ), |
|
| 433 | - 'date' => __( 'Date', 'invoicing' ), |
|
| 434 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 435 | - 'total' => __( 'Total', 'invoicing' ), |
|
| 431 | + 'invoice' => __('Invoice', 'invoicing'), |
|
| 432 | + 'relationship' => __('Relationship', 'invoicing'), |
|
| 433 | + 'date' => __('Date', 'invoicing'), |
|
| 434 | + 'status' => __('Status', 'invoicing'), |
|
| 435 | + 'total' => __('Total', 'invoicing'), |
|
| 436 | 436 | ), |
| 437 | 437 | $subscription |
| 438 | 438 | ); |
| 439 | 439 | |
| 440 | 440 | // Prepare the invoices. |
| 441 | - $payments = $subscription->get_child_payments( ! is_admin() ); |
|
| 441 | + $payments = $subscription->get_child_payments(!is_admin()); |
|
| 442 | 442 | $parent = $subscription->get_parent_invoice(); |
| 443 | 443 | |
| 444 | - if ( $parent->exists() ) { |
|
| 445 | - $payments = array_merge( array( $parent ), $payments ); |
|
| 444 | + if ($parent->exists()) { |
|
| 445 | + $payments = array_merge(array($parent), $payments); |
|
| 446 | 446 | } |
| 447 | 447 | |
| 448 | 448 | $table_class = 'w-100 bg-white'; |
| 449 | 449 | |
| 450 | - if ( ! is_admin() ) { |
|
| 450 | + if (!is_admin()) { |
|
| 451 | 451 | $table_class = 'table table-bordered'; |
| 452 | 452 | } |
| 453 | 453 | |
@@ -459,9 +459,9 @@ discard block |
||
| 459 | 459 | <thead> |
| 460 | 460 | <tr> |
| 461 | 461 | <?php |
| 462 | - foreach ( $columns as $key => $label ) { |
|
| 463 | - $key = esc_attr( $key ); |
|
| 464 | - $label = sanitize_text_field( $label ); |
|
| 462 | + foreach ($columns as $key => $label) { |
|
| 463 | + $key = esc_attr($key); |
|
| 464 | + $label = sanitize_text_field($label); |
|
| 465 | 465 | $class = 'text-left'; |
| 466 | 466 | |
| 467 | 467 | echo "<th class='subscription-invoice-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
@@ -472,57 +472,57 @@ discard block |
||
| 472 | 472 | |
| 473 | 473 | <tbody> |
| 474 | 474 | |
| 475 | - <?php if ( empty( $payments ) ) : ?> |
|
| 475 | + <?php if (empty($payments)) : ?> |
|
| 476 | 476 | <tr> |
| 477 | 477 | <td colspan="<?php echo count($columns); ?>" class="p-2 text-left text-muted"> |
| 478 | - <?php _e( 'This subscription has no invoices.', 'invoicing' ); ?> |
|
| 478 | + <?php _e('This subscription has no invoices.', 'invoicing'); ?> |
|
| 479 | 479 | </td> |
| 480 | 480 | </tr> |
| 481 | 481 | <?php endif; ?> |
| 482 | 482 | |
| 483 | 483 | <?php |
| 484 | 484 | |
| 485 | - foreach( $payments as $payment ) : |
|
| 485 | + foreach ($payments as $payment) : |
|
| 486 | 486 | |
| 487 | 487 | // Ensure that we have an invoice. |
| 488 | - $payment = new WPInv_Invoice( $payment ); |
|
| 488 | + $payment = new WPInv_Invoice($payment); |
|
| 489 | 489 | |
| 490 | 490 | // Abort if the invoice is invalid... |
| 491 | - if ( ! $payment->exists() ) { |
|
| 491 | + if (!$payment->exists()) { |
|
| 492 | 492 | continue; |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | 495 | // ... or belongs to a different subscription. |
| 496 | - if ( $strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id() ) { |
|
| 496 | + if ($strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id()) { |
|
| 497 | 497 | continue; |
| 498 | 498 | } |
| 499 | 499 | |
| 500 | 500 | echo '<tr>'; |
| 501 | 501 | |
| 502 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 502 | + foreach (array_keys($columns) as $key) { |
|
| 503 | 503 | |
| 504 | 504 | $class = 'text-left'; |
| 505 | 505 | |
| 506 | 506 | echo "<td class='p-2 $class'>"; |
| 507 | 507 | |
| 508 | - switch( $key ) { |
|
| 508 | + switch ($key) { |
|
| 509 | 509 | |
| 510 | 510 | case 'total': |
| 511 | - echo '<strong>' . wpinv_price( $payment->get_total(), $payment->get_currency() ) . '</strong>'; |
|
| 511 | + echo '<strong>' . wpinv_price($payment->get_total(), $payment->get_currency()) . '</strong>'; |
|
| 512 | 512 | break; |
| 513 | 513 | |
| 514 | 514 | case 'relationship': |
| 515 | - echo $payment->is_renewal() ? __( 'Renewal Invoice', 'invoicing' ) : __( 'Initial Invoice', 'invoicing' ); |
|
| 515 | + echo $payment->is_renewal() ? __('Renewal Invoice', 'invoicing') : __('Initial Invoice', 'invoicing'); |
|
| 516 | 516 | break; |
| 517 | 517 | |
| 518 | 518 | case 'date': |
| 519 | - echo getpaid_format_date_value( $payment->get_date_created() ); |
|
| 519 | + echo getpaid_format_date_value($payment->get_date_created()); |
|
| 520 | 520 | break; |
| 521 | 521 | |
| 522 | 522 | case 'status': |
| 523 | 523 | |
| 524 | 524 | $status = $payment->get_status_nicename(); |
| 525 | - if ( is_admin() ) { |
|
| 525 | + if (is_admin()) { |
|
| 526 | 526 | $status = $payment->get_status_label_html(); |
| 527 | 527 | } |
| 528 | 528 | |
@@ -530,13 +530,13 @@ discard block |
||
| 530 | 530 | break; |
| 531 | 531 | |
| 532 | 532 | case 'invoice': |
| 533 | - $link = esc_url( get_edit_post_link( $payment->get_id() ) ); |
|
| 533 | + $link = esc_url(get_edit_post_link($payment->get_id())); |
|
| 534 | 534 | |
| 535 | - if ( ! is_admin() ) { |
|
| 536 | - $link = esc_url( $payment->get_view_url() ); |
|
| 535 | + if (!is_admin()) { |
|
| 536 | + $link = esc_url($payment->get_view_url()); |
|
| 537 | 537 | } |
| 538 | 538 | |
| 539 | - $invoice = sanitize_text_field( $payment->get_number() ); |
|
| 539 | + $invoice = sanitize_text_field($payment->get_number()); |
|
| 540 | 540 | echo "<a href='$link'>$invoice</a>"; |
| 541 | 541 | break; |
| 542 | 542 | } |
@@ -564,12 +564,12 @@ discard block |
||
| 564 | 564 | * |
| 565 | 565 | * @param WPInv_Subscription $subscription |
| 566 | 566 | */ |
| 567 | -function getpaid_admin_subscription_item_details_metabox( $subscription ) { |
|
| 567 | +function getpaid_admin_subscription_item_details_metabox($subscription) { |
|
| 568 | 568 | |
| 569 | 569 | // Fetch the subscription group. |
| 570 | - $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_payment_id(), $subscription->get_id() ); |
|
| 570 | + $subscription_group = getpaid_get_invoice_subscription_group($subscription->get_parent_payment_id(), $subscription->get_id()); |
|
| 571 | 571 | |
| 572 | - if ( empty( $subscription_group ) || empty( $subscription_group['items'] ) ) { |
|
| 572 | + if (empty($subscription_group) || empty($subscription_group['items'])) { |
|
| 573 | 573 | return; |
| 574 | 574 | } |
| 575 | 575 | |
@@ -577,12 +577,12 @@ discard block |
||
| 577 | 577 | $columns = apply_filters( |
| 578 | 578 | 'getpaid_subscription_item_details_columns', |
| 579 | 579 | array( |
| 580 | - 'item_name' => __( 'Item', 'invoicing' ), |
|
| 581 | - 'price' => __( 'Price', 'invoicing' ), |
|
| 582 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
| 583 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
| 584 | - 'initial' => __( 'Initial Amount', 'invoicing' ), |
|
| 585 | - 'recurring' => __( 'Recurring Amount', 'invoicing' ), |
|
| 580 | + 'item_name' => __('Item', 'invoicing'), |
|
| 581 | + 'price' => __('Price', 'invoicing'), |
|
| 582 | + 'tax' => __('Tax', 'invoicing'), |
|
| 583 | + 'discount' => __('Discount', 'invoicing'), |
|
| 584 | + 'initial' => __('Initial Amount', 'invoicing'), |
|
| 585 | + 'recurring' => __('Recurring Amount', 'invoicing'), |
|
| 586 | 586 | ), |
| 587 | 587 | $subscription |
| 588 | 588 | ); |
@@ -591,13 +591,13 @@ discard block |
||
| 591 | 591 | |
| 592 | 592 | $invoice = $subscription->get_parent_invoice(); |
| 593 | 593 | |
| 594 | - if ( ( ! wpinv_use_taxes() || ! $invoice->is_taxable() ) && isset( $columns['tax'] ) ) { |
|
| 595 | - unset( $columns['tax'] ); |
|
| 594 | + if ((!wpinv_use_taxes() || !$invoice->is_taxable()) && isset($columns['tax'])) { |
|
| 595 | + unset($columns['tax']); |
|
| 596 | 596 | } |
| 597 | 597 | |
| 598 | 598 | $table_class = 'w-100 bg-white'; |
| 599 | 599 | |
| 600 | - if ( ! is_admin() ) { |
|
| 600 | + if (!is_admin()) { |
|
| 601 | 601 | $table_class = 'table table-bordered'; |
| 602 | 602 | } |
| 603 | 603 | |
@@ -610,9 +610,9 @@ discard block |
||
| 610 | 610 | <tr> |
| 611 | 611 | <?php |
| 612 | 612 | |
| 613 | - foreach ( $columns as $key => $label ) { |
|
| 614 | - $key = esc_attr( $key ); |
|
| 615 | - $label = sanitize_text_field( $label ); |
|
| 613 | + foreach ($columns as $key => $label) { |
|
| 614 | + $key = esc_attr($key); |
|
| 615 | + $label = sanitize_text_field($label); |
|
| 616 | 616 | $class = 'text-left'; |
| 617 | 617 | |
| 618 | 618 | echo "<th class='subscription-item-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
@@ -625,48 +625,48 @@ discard block |
||
| 625 | 625 | |
| 626 | 626 | <?php |
| 627 | 627 | |
| 628 | - foreach( $subscription_group['items'] as $subscription_group_item ) : |
|
| 628 | + foreach ($subscription_group['items'] as $subscription_group_item) : |
|
| 629 | 629 | |
| 630 | 630 | echo '<tr>'; |
| 631 | 631 | |
| 632 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 632 | + foreach (array_keys($columns) as $key) { |
|
| 633 | 633 | |
| 634 | 634 | $class = 'text-left'; |
| 635 | 635 | |
| 636 | 636 | echo "<td class='p-2 $class'>"; |
| 637 | 637 | |
| 638 | - switch( $key ) { |
|
| 638 | + switch ($key) { |
|
| 639 | 639 | |
| 640 | 640 | case 'item_name': |
| 641 | - $item_name = get_the_title( $subscription_group_item['item_id'] ); |
|
| 642 | - $item_name = empty( $item_name ) ? $subscription_group_item['item_name'] : $item_name; |
|
| 641 | + $item_name = get_the_title($subscription_group_item['item_id']); |
|
| 642 | + $item_name = empty($item_name) ? $subscription_group_item['item_name'] : $item_name; |
|
| 643 | 643 | |
| 644 | - if ( $invoice->get_template() == 'amount' || 1 == (float) $subscription_group_item['quantity'] ) { |
|
| 645 | - echo sanitize_text_field( $item_name ); |
|
| 644 | + if ($invoice->get_template() == 'amount' || 1 == (float) $subscription_group_item['quantity']) { |
|
| 645 | + echo sanitize_text_field($item_name); |
|
| 646 | 646 | } else { |
| 647 | - printf( '%1$s x %2$d', sanitize_text_field( $item_name ), (float) $subscription_group_item['quantity'] ); |
|
| 647 | + printf('%1$s x %2$d', sanitize_text_field($item_name), (float) $subscription_group_item['quantity']); |
|
| 648 | 648 | } |
| 649 | 649 | |
| 650 | 650 | break; |
| 651 | 651 | |
| 652 | 652 | case 'price': |
| 653 | - echo wpinv_price( $subscription_group_item['price'], $invoice->get_currency() ); |
|
| 653 | + echo wpinv_price($subscription_group_item['price'], $invoice->get_currency()); |
|
| 654 | 654 | break; |
| 655 | 655 | |
| 656 | 656 | case 'tax': |
| 657 | - echo wpinv_price( $subscription_group_item['tax'], $invoice->get_currency() ); |
|
| 657 | + echo wpinv_price($subscription_group_item['tax'], $invoice->get_currency()); |
|
| 658 | 658 | break; |
| 659 | 659 | |
| 660 | 660 | case 'discount': |
| 661 | - echo wpinv_price( $subscription_group_item['discount'], $invoice->get_currency() ); |
|
| 661 | + echo wpinv_price($subscription_group_item['discount'], $invoice->get_currency()); |
|
| 662 | 662 | break; |
| 663 | 663 | |
| 664 | 664 | case 'initial': |
| 665 | - echo wpinv_price( $subscription_group_item['subtotal'], $invoice->get_currency() ); |
|
| 665 | + echo wpinv_price($subscription_group_item['subtotal'], $invoice->get_currency()); |
|
| 666 | 666 | break; |
| 667 | 667 | |
| 668 | 668 | case 'recurring': |
| 669 | - echo '<strong>' . wpinv_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ) . '</strong>'; |
|
| 669 | + echo '<strong>' . wpinv_price($subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency()) . '</strong>'; |
|
| 670 | 670 | break; |
| 671 | 671 | |
| 672 | 672 | } |
@@ -679,24 +679,24 @@ discard block |
||
| 679 | 679 | |
| 680 | 680 | endforeach; |
| 681 | 681 | |
| 682 | - foreach( $subscription_group['fees'] as $subscription_group_fee ) : |
|
| 682 | + foreach ($subscription_group['fees'] as $subscription_group_fee) : |
|
| 683 | 683 | |
| 684 | 684 | echo '<tr>'; |
| 685 | 685 | |
| 686 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 686 | + foreach (array_keys($columns) as $key) { |
|
| 687 | 687 | |
| 688 | 688 | $class = 'text-left'; |
| 689 | 689 | |
| 690 | 690 | echo "<td class='p-2 $class'>"; |
| 691 | 691 | |
| 692 | - switch( $key ) { |
|
| 692 | + switch ($key) { |
|
| 693 | 693 | |
| 694 | 694 | case 'item_name': |
| 695 | - echo sanitize_text_field( $subscription_group_fee['name'] ); |
|
| 695 | + echo sanitize_text_field($subscription_group_fee['name']); |
|
| 696 | 696 | break; |
| 697 | 697 | |
| 698 | 698 | case 'price': |
| 699 | - echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 699 | + echo wpinv_price($subscription_group_fee['initial_fee'], $invoice->get_currency()); |
|
| 700 | 700 | break; |
| 701 | 701 | |
| 702 | 702 | case 'tax': |
@@ -708,11 +708,11 @@ discard block |
||
| 708 | 708 | break; |
| 709 | 709 | |
| 710 | 710 | case 'initial': |
| 711 | - echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 711 | + echo wpinv_price($subscription_group_fee['initial_fee'], $invoice->get_currency()); |
|
| 712 | 712 | break; |
| 713 | 713 | |
| 714 | 714 | case 'recurring': |
| 715 | - echo '<strong>' . wpinv_price( $subscription_group_fee['recurring_fee'], $invoice->get_currency() ) . '</strong>'; |
|
| 715 | + echo '<strong>' . wpinv_price($subscription_group_fee['recurring_fee'], $invoice->get_currency()) . '</strong>'; |
|
| 716 | 716 | break; |
| 717 | 717 | |
| 718 | 718 | } |
@@ -741,12 +741,12 @@ discard block |
||
| 741 | 741 | * @param WPInv_Subscription $subscription |
| 742 | 742 | * @param bool $skip_current |
| 743 | 743 | */ |
| 744 | -function getpaid_admin_subscription_related_subscriptions_metabox( $subscription, $skip_current = true ) { |
|
| 744 | +function getpaid_admin_subscription_related_subscriptions_metabox($subscription, $skip_current = true) { |
|
| 745 | 745 | |
| 746 | 746 | // Fetch the subscription groups. |
| 747 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $subscription->get_parent_payment_id() ); |
|
| 747 | + $subscription_groups = getpaid_get_invoice_subscription_groups($subscription->get_parent_payment_id()); |
|
| 748 | 748 | |
| 749 | - if ( empty( $subscription_groups ) ) { |
|
| 749 | + if (empty($subscription_groups)) { |
|
| 750 | 750 | return; |
| 751 | 751 | } |
| 752 | 752 | |
@@ -754,23 +754,23 @@ discard block |
||
| 754 | 754 | $columns = apply_filters( |
| 755 | 755 | 'getpaid_subscription_related_subscriptions_columns', |
| 756 | 756 | array( |
| 757 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 758 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 759 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 760 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 761 | - 'item' => __( 'Items', 'invoicing' ), |
|
| 762 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 757 | + 'subscription' => __('Subscription', 'invoicing'), |
|
| 758 | + 'start_date' => __('Start Date', 'invoicing'), |
|
| 759 | + 'renewal_date' => __('Next Payment', 'invoicing'), |
|
| 760 | + 'renewals' => __('Payments', 'invoicing'), |
|
| 761 | + 'item' => __('Items', 'invoicing'), |
|
| 762 | + 'status' => __('Status', 'invoicing'), |
|
| 763 | 763 | ), |
| 764 | 764 | $subscription |
| 765 | 765 | ); |
| 766 | 766 | |
| 767 | - if ( $subscription->get_status() == 'pending' ) { |
|
| 768 | - unset( $columns['start_date'], $columns['renewal_date'] ); |
|
| 767 | + if ($subscription->get_status() == 'pending') { |
|
| 768 | + unset($columns['start_date'], $columns['renewal_date']); |
|
| 769 | 769 | } |
| 770 | 770 | |
| 771 | 771 | $table_class = 'w-100 bg-white'; |
| 772 | 772 | |
| 773 | - if ( ! is_admin() ) { |
|
| 773 | + if (!is_admin()) { |
|
| 774 | 774 | $table_class = 'table table-bordered'; |
| 775 | 775 | } |
| 776 | 776 | |
@@ -783,9 +783,9 @@ discard block |
||
| 783 | 783 | <tr> |
| 784 | 784 | <?php |
| 785 | 785 | |
| 786 | - foreach ( $columns as $key => $label ) { |
|
| 787 | - $key = esc_attr( $key ); |
|
| 788 | - $label = sanitize_text_field( $label ); |
|
| 786 | + foreach ($columns as $key => $label) { |
|
| 787 | + $key = esc_attr($key); |
|
| 788 | + $label = sanitize_text_field($label); |
|
| 789 | 789 | $class = 'text-left'; |
| 790 | 790 | |
| 791 | 791 | echo "<th class='related-subscription-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
@@ -798,62 +798,62 @@ discard block |
||
| 798 | 798 | |
| 799 | 799 | <?php |
| 800 | 800 | |
| 801 | - foreach( $subscription_groups as $subscription_group ) : |
|
| 801 | + foreach ($subscription_groups as $subscription_group) : |
|
| 802 | 802 | |
| 803 | 803 | // Do not list current subscription. |
| 804 | - if ( $skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id() ) { |
|
| 804 | + if ($skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id()) { |
|
| 805 | 805 | continue; |
| 806 | 806 | } |
| 807 | 807 | |
| 808 | 808 | // Ensure the subscription exists. |
| 809 | - $_suscription = new WPInv_Subscription( $subscription_group['subscription_id'] ); |
|
| 809 | + $_suscription = new WPInv_Subscription($subscription_group['subscription_id']); |
|
| 810 | 810 | |
| 811 | - if ( ! $_suscription->exists() ) { |
|
| 811 | + if (!$_suscription->exists()) { |
|
| 812 | 812 | continue; |
| 813 | 813 | } |
| 814 | 814 | |
| 815 | 815 | echo '<tr>'; |
| 816 | 816 | |
| 817 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 817 | + foreach (array_keys($columns) as $key) { |
|
| 818 | 818 | |
| 819 | 819 | $class = 'text-left'; |
| 820 | 820 | |
| 821 | 821 | echo "<td class='p-2 $class'>"; |
| 822 | 822 | |
| 823 | - switch( $key ) { |
|
| 823 | + switch ($key) { |
|
| 824 | 824 | |
| 825 | 825 | case 'status': |
| 826 | 826 | echo $_suscription->get_status_label_html(); |
| 827 | 827 | break; |
| 828 | 828 | |
| 829 | 829 | case 'item': |
| 830 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 831 | - echo implode( ' | ', $markup ); |
|
| 830 | + $markup = array_map(array('WPInv_Subscriptions_List_Table', 'generate_item_markup'), array_keys($subscription_group['items'])); |
|
| 831 | + echo implode(' | ', $markup); |
|
| 832 | 832 | break; |
| 833 | 833 | |
| 834 | 834 | case 'renewals': |
| 835 | 835 | $max_bills = $_suscription->get_bill_times(); |
| 836 | - echo $_suscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 836 | + echo $_suscription->get_times_billed() . ' / ' . (empty($max_bills) ? "∞" : $max_bills); |
|
| 837 | 837 | break; |
| 838 | 838 | |
| 839 | 839 | case 'renewal_date': |
| 840 | - echo $_suscription->is_active() ? getpaid_format_date_value( $_suscription->get_expiration() ) : "—"; |
|
| 840 | + echo $_suscription->is_active() ? getpaid_format_date_value($_suscription->get_expiration()) : "—"; |
|
| 841 | 841 | break; |
| 842 | 842 | |
| 843 | 843 | case 'start_date': |
| 844 | - echo 'pending' == $_suscription->get_status() ? "—" : getpaid_format_date_value( $_suscription->get_date_created() ); |
|
| 844 | + echo 'pending' == $_suscription->get_status() ? "—" : getpaid_format_date_value($_suscription->get_date_created()); |
|
| 845 | 845 | break; |
| 846 | 846 | |
| 847 | 847 | case 'subscription': |
| 848 | - $url = is_admin() ? admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $_suscription->get_id() ) ) : $_suscription->get_view_url(); |
|
| 848 | + $url = is_admin() ? admin_url('admin.php?page=wpinv-subscriptions&id=' . absint($_suscription->get_id())) : $_suscription->get_view_url(); |
|
| 849 | 849 | printf( |
| 850 | 850 | '%1$s#%2$s%3$s', |
| 851 | - '<a href="' . esc_url( $url ) . '">', |
|
| 852 | - '<strong>' . intval( $_suscription->get_id() ) . '</strong>', |
|
| 851 | + '<a href="' . esc_url($url) . '">', |
|
| 852 | + '<strong>' . intval($_suscription->get_id()) . '</strong>', |
|
| 853 | 853 | '</a>' |
| 854 | 854 | ); |
| 855 | 855 | |
| 856 | - echo WPInv_Subscriptions_List_Table::column_amount( $_suscription ); |
|
| 856 | + echo WPInv_Subscriptions_List_Table::column_amount($_suscription); |
|
| 857 | 857 | break; |
| 858 | 858 | |
| 859 | 859 | } |
@@ -4,99 +4,99 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Displays an invoice. |
| 11 | 11 | * |
| 12 | 12 | * @param WPInv_Invoice $invoice. |
| 13 | 13 | */ |
| 14 | -function getpaid_invoice( $invoice ) { |
|
| 15 | - if ( ! empty( $invoice ) ) { |
|
| 16 | - wpinv_get_template( 'invoice/invoice.php', compact( 'invoice' ) ); |
|
| 14 | +function getpaid_invoice($invoice) { |
|
| 15 | + if (!empty($invoice)) { |
|
| 16 | + wpinv_get_template('invoice/invoice.php', compact('invoice')); |
|
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | -add_action( 'getpaid_invoice', 'getpaid_invoice', 10 ); |
|
| 19 | +add_action('getpaid_invoice', 'getpaid_invoice', 10); |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | 22 | * Displays the invoice footer. |
| 23 | 23 | */ |
| 24 | -function getpaid_invoice_footer( $invoice ) { |
|
| 25 | - if ( ! empty( $invoice ) ) { |
|
| 26 | - wpinv_get_template( 'invoice/footer.php', compact( 'invoice' ) ); |
|
| 24 | +function getpaid_invoice_footer($invoice) { |
|
| 25 | + if (!empty($invoice)) { |
|
| 26 | + wpinv_get_template('invoice/footer.php', compact('invoice')); |
|
| 27 | 27 | } |
| 28 | 28 | } |
| 29 | -add_action( 'getpaid_invoice_footer', 'getpaid_invoice_footer', 10 ); |
|
| 29 | +add_action('getpaid_invoice_footer', 'getpaid_invoice_footer', 10); |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * Displays the invoice top bar. |
| 33 | 33 | */ |
| 34 | -function getpaid_invoice_header( $invoice ) { |
|
| 35 | - if ( ! empty( $invoice ) ) { |
|
| 36 | - wpinv_get_template( 'invoice/header.php', compact( 'invoice' ) ); |
|
| 34 | +function getpaid_invoice_header($invoice) { |
|
| 35 | + if (!empty($invoice)) { |
|
| 36 | + wpinv_get_template('invoice/header.php', compact('invoice')); |
|
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | -add_action( 'getpaid_invoice_header', 'getpaid_invoice_header', 10 ); |
|
| 39 | +add_action('getpaid_invoice_header', 'getpaid_invoice_header', 10); |
|
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | * Displays actions on the left side of the header. |
| 43 | 43 | */ |
| 44 | -function getpaid_invoice_header_left_actions( $invoice ) { |
|
| 45 | - if ( ! empty( $invoice ) ) { |
|
| 46 | - wpinv_get_template( 'invoice/header-left-actions.php', compact( 'invoice' ) ); |
|
| 44 | +function getpaid_invoice_header_left_actions($invoice) { |
|
| 45 | + if (!empty($invoice)) { |
|
| 46 | + wpinv_get_template('invoice/header-left-actions.php', compact('invoice')); |
|
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | -add_action( 'getpaid_invoice_header_left', 'getpaid_invoice_header_left_actions', 10 ); |
|
| 49 | +add_action('getpaid_invoice_header_left', 'getpaid_invoice_header_left_actions', 10); |
|
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * Displays actions on the right side of the invoice top bar. |
| 53 | 53 | */ |
| 54 | -function getpaid_invoice_header_right_actions( $invoice ) { |
|
| 55 | - if ( ! empty( $invoice ) ) { |
|
| 56 | - wpinv_get_template( 'invoice/header-right-actions.php', compact( 'invoice' ) ); |
|
| 54 | +function getpaid_invoice_header_right_actions($invoice) { |
|
| 55 | + if (!empty($invoice)) { |
|
| 56 | + wpinv_get_template('invoice/header-right-actions.php', compact('invoice')); |
|
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | -add_action( 'getpaid_invoice_header_right', 'getpaid_invoice_header_right_actions', 10 ); |
|
| 59 | +add_action('getpaid_invoice_header_right', 'getpaid_invoice_header_right_actions', 10); |
|
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | 62 | * Displays the invoice title, logo etc. |
| 63 | 63 | */ |
| 64 | -function getpaid_invoice_details_top( $invoice ) { |
|
| 65 | - if ( ! empty( $invoice ) ) { |
|
| 66 | - wpinv_get_template( 'invoice/details-top.php', compact( 'invoice' ) ); |
|
| 64 | +function getpaid_invoice_details_top($invoice) { |
|
| 65 | + if (!empty($invoice)) { |
|
| 66 | + wpinv_get_template('invoice/details-top.php', compact('invoice')); |
|
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | -add_action( 'getpaid_invoice_details', 'getpaid_invoice_details_top', 10 ); |
|
| 69 | +add_action('getpaid_invoice_details', 'getpaid_invoice_details_top', 10); |
|
| 70 | 70 | |
| 71 | 71 | /** |
| 72 | 72 | * Displays the company logo. |
| 73 | 73 | */ |
| 74 | -function getpaid_invoice_logo( $invoice ) { |
|
| 75 | - if ( ! empty( $invoice ) ) { |
|
| 76 | - wpinv_get_template( 'invoice/invoice-logo.php', compact( 'invoice' ) ); |
|
| 74 | +function getpaid_invoice_logo($invoice) { |
|
| 75 | + if (!empty($invoice)) { |
|
| 76 | + wpinv_get_template('invoice/invoice-logo.php', compact('invoice')); |
|
| 77 | 77 | } |
| 78 | 78 | } |
| 79 | -add_action( 'getpaid_invoice_details_top_left', 'getpaid_invoice_logo' ); |
|
| 79 | +add_action('getpaid_invoice_details_top_left', 'getpaid_invoice_logo'); |
|
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | 82 | * Displays the type of invoice. |
| 83 | 83 | */ |
| 84 | -function getpaid_invoice_type( $invoice ) { |
|
| 85 | - if ( ! empty( $invoice ) ) { |
|
| 86 | - wpinv_get_template( 'invoice/invoice-type.php', compact( 'invoice' ) ); |
|
| 84 | +function getpaid_invoice_type($invoice) { |
|
| 85 | + if (!empty($invoice)) { |
|
| 86 | + wpinv_get_template('invoice/invoice-type.php', compact('invoice')); |
|
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | -add_action( 'getpaid_invoice_details_top_right', 'getpaid_invoice_type' ); |
|
| 89 | +add_action('getpaid_invoice_details_top_right', 'getpaid_invoice_type'); |
|
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | 92 | * Displays the invoice details. |
| 93 | 93 | */ |
| 94 | -function getpaid_invoice_details_main( $invoice ) { |
|
| 95 | - if ( ! empty( $invoice ) ) { |
|
| 96 | - wpinv_get_template( 'invoice/details.php', compact( 'invoice' ) ); |
|
| 94 | +function getpaid_invoice_details_main($invoice) { |
|
| 95 | + if (!empty($invoice)) { |
|
| 96 | + wpinv_get_template('invoice/details.php', compact('invoice')); |
|
| 97 | 97 | } |
| 98 | 98 | } |
| 99 | -add_action( 'getpaid_invoice_details', 'getpaid_invoice_details_main', 50 ); |
|
| 99 | +add_action('getpaid_invoice_details', 'getpaid_invoice_details_main', 50); |
|
| 100 | 100 | |
| 101 | 101 | /** |
| 102 | 102 | * Returns a path to the templates directory. |
@@ -125,8 +125,8 @@ discard block |
||
| 125 | 125 | * @param string $template_path The templates directory relative to the theme's root dir. Defaults to 'invoicing'. |
| 126 | 126 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
| 127 | 127 | */ |
| 128 | -function wpinv_get_template( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
|
| 129 | - getpaid_template()->display_template( $template_name, $args, $template_path, $default_path ); |
|
| 128 | +function wpinv_get_template($template_name, $args = array(), $template_path = '', $default_path = '') { |
|
| 129 | + getpaid_template()->display_template($template_name, $args, $template_path, $default_path); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -139,8 +139,8 @@ discard block |
||
| 139 | 139 | * @param string $template_path The templates directory relative to the theme's root dir. Defaults to 'invoicing'. |
| 140 | 140 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
| 141 | 141 | */ |
| 142 | -function wpinv_get_template_html( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
|
| 143 | - return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
| 142 | +function wpinv_get_template_html($template_name, $args = array(), $template_path = '', $default_path = '') { |
|
| 143 | + return getpaid_template()->get_template($template_name, $args, $template_path, $default_path); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | * @return string |
| 150 | 150 | */ |
| 151 | 151 | function wpinv_template_path() { |
| 152 | - return apply_filters( 'wpinv_template_path', wpinv_get_theme_template_dir_name() ); |
|
| 152 | + return apply_filters('wpinv_template_path', wpinv_get_theme_template_dir_name()); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | /** |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | * @return string |
| 159 | 159 | */ |
| 160 | 160 | function wpinv_get_theme_template_dir_name() { |
| 161 | - return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
| 161 | + return trailingslashit(apply_filters('wpinv_templates_dir', 'invoicing')); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -170,56 +170,56 @@ discard block |
||
| 170 | 170 | * @param string $template_path The template path relative to the theme's root dir. Defaults to 'invoicing'. |
| 171 | 171 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
| 172 | 172 | */ |
| 173 | -function wpinv_locate_template( $template_name, $template_path = '', $default_path = '' ) { |
|
| 174 | - return getpaid_template()->locate_template( $template_name, $template_path, $default_path ); |
|
| 173 | +function wpinv_locate_template($template_name, $template_path = '', $default_path = '') { |
|
| 174 | + return getpaid_template()->locate_template($template_name, $template_path, $default_path); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | -function wpinv_get_template_part( $slug, $name = null, $load = true ) { |
|
| 178 | - do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
| 177 | +function wpinv_get_template_part($slug, $name = null, $load = true) { |
|
| 178 | + do_action('get_template_part_' . $slug, $slug, $name); |
|
| 179 | 179 | |
| 180 | 180 | // Setup possible parts |
| 181 | 181 | $templates = array(); |
| 182 | - if ( isset( $name ) ) |
|
| 182 | + if (isset($name)) |
|
| 183 | 183 | $templates[] = $slug . '-' . $name . '.php'; |
| 184 | 184 | $templates[] = $slug . '.php'; |
| 185 | 185 | |
| 186 | 186 | // Allow template parts to be filtered |
| 187 | - $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
| 187 | + $templates = apply_filters('wpinv_get_template_part', $templates, $slug, $name); |
|
| 188 | 188 | |
| 189 | 189 | // Return the part that is found |
| 190 | - return wpinv_locate_tmpl( $templates, $load, false ); |
|
| 190 | + return wpinv_locate_tmpl($templates, $load, false); |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | -function wpinv_locate_tmpl( $template_names, $load = false, $require_once = true ) { |
|
| 193 | +function wpinv_locate_tmpl($template_names, $load = false, $require_once = true) { |
|
| 194 | 194 | // No file found yet |
| 195 | 195 | $located = false; |
| 196 | 196 | |
| 197 | 197 | // Try to find a template file |
| 198 | - foreach ( (array)$template_names as $template_name ) { |
|
| 198 | + foreach ((array) $template_names as $template_name) { |
|
| 199 | 199 | |
| 200 | 200 | // Continue if template is empty |
| 201 | - if ( empty( $template_name ) ) |
|
| 201 | + if (empty($template_name)) |
|
| 202 | 202 | continue; |
| 203 | 203 | |
| 204 | 204 | // Trim off any slashes from the template name |
| 205 | - $template_name = ltrim( $template_name, '/' ); |
|
| 205 | + $template_name = ltrim($template_name, '/'); |
|
| 206 | 206 | |
| 207 | 207 | // try locating this template file by looping through the template paths |
| 208 | - foreach( wpinv_get_theme_template_paths() as $template_path ) { |
|
| 208 | + foreach (wpinv_get_theme_template_paths() as $template_path) { |
|
| 209 | 209 | |
| 210 | - if( file_exists( $template_path . $template_name ) ) { |
|
| 210 | + if (file_exists($template_path . $template_name)) { |
|
| 211 | 211 | $located = $template_path . $template_name; |
| 212 | 212 | break; |
| 213 | 213 | } |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - if( !empty( $located ) ) { |
|
| 216 | + if (!empty($located)) { |
|
| 217 | 217 | break; |
| 218 | 218 | } |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - if ( ( true == $load ) && ! empty( $located ) ) |
|
| 222 | - load_template( $located, $require_once ); |
|
| 221 | + if ((true == $load) && !empty($located)) |
|
| 222 | + load_template($located, $require_once); |
|
| 223 | 223 | |
| 224 | 224 | return $located; |
| 225 | 225 | } |
@@ -228,127 +228,127 @@ discard block |
||
| 228 | 228 | $template_dir = wpinv_get_theme_template_dir_name(); |
| 229 | 229 | |
| 230 | 230 | $file_paths = array( |
| 231 | - 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
| 232 | - 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
| 231 | + 1 => trailingslashit(get_stylesheet_directory()) . $template_dir, |
|
| 232 | + 10 => trailingslashit(get_template_directory()) . $template_dir, |
|
| 233 | 233 | 100 => wpinv_get_templates_dir() |
| 234 | 234 | ); |
| 235 | 235 | |
| 236 | - $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
| 236 | + $file_paths = apply_filters('wpinv_template_paths', $file_paths); |
|
| 237 | 237 | |
| 238 | 238 | // sort the file paths based on priority |
| 239 | - ksort( $file_paths, SORT_NUMERIC ); |
|
| 239 | + ksort($file_paths, SORT_NUMERIC); |
|
| 240 | 240 | |
| 241 | - return array_map( 'trailingslashit', $file_paths ); |
|
| 241 | + return array_map('trailingslashit', $file_paths); |
|
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | function wpinv_checkout_meta_tags() { |
| 245 | 245 | |
| 246 | 246 | $pages = array(); |
| 247 | - $pages[] = wpinv_get_option( 'success_page' ); |
|
| 248 | - $pages[] = wpinv_get_option( 'failure_page' ); |
|
| 249 | - $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
| 250 | - $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
| 247 | + $pages[] = wpinv_get_option('success_page'); |
|
| 248 | + $pages[] = wpinv_get_option('failure_page'); |
|
| 249 | + $pages[] = wpinv_get_option('invoice_history_page'); |
|
| 250 | + $pages[] = wpinv_get_option('invoice_subscription_page'); |
|
| 251 | 251 | |
| 252 | - if( !wpinv_is_checkout() && !is_page( $pages ) ) { |
|
| 252 | + if (!wpinv_is_checkout() && !is_page($pages)) { |
|
| 253 | 253 | return; |
| 254 | 254 | } |
| 255 | 255 | |
| 256 | 256 | echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
| 257 | 257 | } |
| 258 | -add_action( 'wp_head', 'wpinv_checkout_meta_tags' ); |
|
| 258 | +add_action('wp_head', 'wpinv_checkout_meta_tags'); |
|
| 259 | 259 | |
| 260 | -function wpinv_add_body_classes( $class ) { |
|
| 261 | - $classes = (array)$class; |
|
| 260 | +function wpinv_add_body_classes($class) { |
|
| 261 | + $classes = (array) $class; |
|
| 262 | 262 | |
| 263 | - if( wpinv_is_checkout() ) { |
|
| 263 | + if (wpinv_is_checkout()) { |
|
| 264 | 264 | $classes[] = 'wpinv-checkout'; |
| 265 | 265 | $classes[] = 'wpinv-page'; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - if( wpinv_is_success_page() ) { |
|
| 268 | + if (wpinv_is_success_page()) { |
|
| 269 | 269 | $classes[] = 'wpinv-success'; |
| 270 | 270 | $classes[] = 'wpinv-page'; |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - if( wpinv_is_failed_transaction_page() ) { |
|
| 273 | + if (wpinv_is_failed_transaction_page()) { |
|
| 274 | 274 | $classes[] = 'wpinv-failed-transaction'; |
| 275 | 275 | $classes[] = 'wpinv-page'; |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - if( wpinv_is_invoice_history_page() ) { |
|
| 278 | + if (wpinv_is_invoice_history_page()) { |
|
| 279 | 279 | $classes[] = 'wpinv-history'; |
| 280 | 280 | $classes[] = 'wpinv-page'; |
| 281 | 281 | } |
| 282 | 282 | |
| 283 | - if( wpinv_is_subscriptions_history_page() ) { |
|
| 283 | + if (wpinv_is_subscriptions_history_page()) { |
|
| 284 | 284 | $classes[] = 'wpinv-subscription'; |
| 285 | 285 | $classes[] = 'wpinv-page'; |
| 286 | 286 | } |
| 287 | 287 | |
| 288 | - if( wpinv_is_test_mode() ) { |
|
| 288 | + if (wpinv_is_test_mode()) { |
|
| 289 | 289 | $classes[] = 'wpinv-test-mode'; |
| 290 | 290 | $classes[] = 'wpinv-page'; |
| 291 | 291 | } |
| 292 | 292 | |
| 293 | - return array_unique( $classes ); |
|
| 293 | + return array_unique($classes); |
|
| 294 | 294 | } |
| 295 | -add_filter( 'body_class', 'wpinv_add_body_classes' ); |
|
| 295 | +add_filter('body_class', 'wpinv_add_body_classes'); |
|
| 296 | 296 | |
| 297 | -function wpinv_html_year_dropdown( $name = 'year', $selected = 0, $years_before = 5, $years_after = 0 ) { |
|
| 298 | - $current = date( 'Y' ); |
|
| 299 | - $start_year = $current - absint( $years_before ); |
|
| 300 | - $end_year = $current + absint( $years_after ); |
|
| 301 | - $selected = empty( $selected ) ? date( 'Y' ) : $selected; |
|
| 297 | +function wpinv_html_year_dropdown($name = 'year', $selected = 0, $years_before = 5, $years_after = 0) { |
|
| 298 | + $current = date('Y'); |
|
| 299 | + $start_year = $current - absint($years_before); |
|
| 300 | + $end_year = $current + absint($years_after); |
|
| 301 | + $selected = empty($selected) ? date('Y') : $selected; |
|
| 302 | 302 | $options = array(); |
| 303 | 303 | |
| 304 | - while ( $start_year <= $end_year ) { |
|
| 305 | - $options[ absint( $start_year ) ] = $start_year; |
|
| 304 | + while ($start_year <= $end_year) { |
|
| 305 | + $options[absint($start_year)] = $start_year; |
|
| 306 | 306 | $start_year++; |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | - $output = wpinv_html_select( array( |
|
| 309 | + $output = wpinv_html_select(array( |
|
| 310 | 310 | 'name' => $name, |
| 311 | 311 | 'selected' => $selected, |
| 312 | 312 | 'options' => $options, |
| 313 | 313 | 'show_option_all' => false, |
| 314 | 314 | 'show_option_none' => false |
| 315 | - ) ); |
|
| 315 | + )); |
|
| 316 | 316 | |
| 317 | 317 | return $output; |
| 318 | 318 | } |
| 319 | 319 | |
| 320 | -function wpinv_html_month_dropdown( $name = 'month', $selected = 0 ) { |
|
| 320 | +function wpinv_html_month_dropdown($name = 'month', $selected = 0) { |
|
| 321 | 321 | |
| 322 | 322 | $options = array( |
| 323 | - '1' => __( 'January', 'invoicing' ), |
|
| 324 | - '2' => __( 'February', 'invoicing' ), |
|
| 325 | - '3' => __( 'March', 'invoicing' ), |
|
| 326 | - '4' => __( 'April', 'invoicing' ), |
|
| 327 | - '5' => __( 'May', 'invoicing' ), |
|
| 328 | - '6' => __( 'June', 'invoicing' ), |
|
| 329 | - '7' => __( 'July', 'invoicing' ), |
|
| 330 | - '8' => __( 'August', 'invoicing' ), |
|
| 331 | - '9' => __( 'September', 'invoicing' ), |
|
| 332 | - '10' => __( 'October', 'invoicing' ), |
|
| 333 | - '11' => __( 'November', 'invoicing' ), |
|
| 334 | - '12' => __( 'December', 'invoicing' ), |
|
| 323 | + '1' => __('January', 'invoicing'), |
|
| 324 | + '2' => __('February', 'invoicing'), |
|
| 325 | + '3' => __('March', 'invoicing'), |
|
| 326 | + '4' => __('April', 'invoicing'), |
|
| 327 | + '5' => __('May', 'invoicing'), |
|
| 328 | + '6' => __('June', 'invoicing'), |
|
| 329 | + '7' => __('July', 'invoicing'), |
|
| 330 | + '8' => __('August', 'invoicing'), |
|
| 331 | + '9' => __('September', 'invoicing'), |
|
| 332 | + '10' => __('October', 'invoicing'), |
|
| 333 | + '11' => __('November', 'invoicing'), |
|
| 334 | + '12' => __('December', 'invoicing'), |
|
| 335 | 335 | ); |
| 336 | 336 | |
| 337 | 337 | // If no month is selected, default to the current month |
| 338 | - $selected = empty( $selected ) ? date( 'n' ) : $selected; |
|
| 338 | + $selected = empty($selected) ? date('n') : $selected; |
|
| 339 | 339 | |
| 340 | - $output = wpinv_html_select( array( |
|
| 340 | + $output = wpinv_html_select(array( |
|
| 341 | 341 | 'name' => $name, |
| 342 | 342 | 'selected' => $selected, |
| 343 | 343 | 'options' => $options, |
| 344 | 344 | 'show_option_all' => false, |
| 345 | 345 | 'show_option_none' => false |
| 346 | - ) ); |
|
| 346 | + )); |
|
| 347 | 347 | |
| 348 | 348 | return $output; |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | -function wpinv_html_select( $args = array() ) { |
|
| 351 | +function wpinv_html_select($args = array()) { |
|
| 352 | 352 | $defaults = array( |
| 353 | 353 | 'options' => array(), |
| 354 | 354 | 'name' => null, |
@@ -357,8 +357,8 @@ discard block |
||
| 357 | 357 | 'selected' => 0, |
| 358 | 358 | 'placeholder' => null, |
| 359 | 359 | 'multiple' => false, |
| 360 | - 'show_option_all' => _x( 'All', 'all dropdown items', 'invoicing' ), |
|
| 361 | - 'show_option_none' => _x( 'None', 'no dropdown items', 'invoicing' ), |
|
| 360 | + 'show_option_all' => _x('All', 'all dropdown items', 'invoicing'), |
|
| 361 | + 'show_option_none' => _x('None', 'no dropdown items', 'invoicing'), |
|
| 362 | 362 | 'data' => array(), |
| 363 | 363 | 'onchange' => null, |
| 364 | 364 | 'required' => false, |
@@ -366,74 +366,74 @@ discard block |
||
| 366 | 366 | 'readonly' => false, |
| 367 | 367 | ); |
| 368 | 368 | |
| 369 | - $args = wp_parse_args( $args, $defaults ); |
|
| 369 | + $args = wp_parse_args($args, $defaults); |
|
| 370 | 370 | |
| 371 | 371 | $data_elements = ''; |
| 372 | - foreach ( $args['data'] as $key => $value ) { |
|
| 373 | - $data_elements .= ' data-' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
| 372 | + foreach ($args['data'] as $key => $value) { |
|
| 373 | + $data_elements .= ' data-' . esc_attr($key) . '="' . esc_attr($value) . '"'; |
|
| 374 | 374 | } |
| 375 | 375 | |
| 376 | - if( $args['multiple'] ) { |
|
| 376 | + if ($args['multiple']) { |
|
| 377 | 377 | $multiple = ' MULTIPLE'; |
| 378 | 378 | } else { |
| 379 | 379 | $multiple = ''; |
| 380 | 380 | } |
| 381 | 381 | |
| 382 | - if( $args['placeholder'] ) { |
|
| 382 | + if ($args['placeholder']) { |
|
| 383 | 383 | $placeholder = $args['placeholder']; |
| 384 | 384 | } else { |
| 385 | 385 | $placeholder = ''; |
| 386 | 386 | } |
| 387 | 387 | |
| 388 | 388 | $options = ''; |
| 389 | - if( !empty( $args['onchange'] ) ) { |
|
| 390 | - $options .= ' onchange="' . esc_attr( $args['onchange'] ) . '"'; |
|
| 389 | + if (!empty($args['onchange'])) { |
|
| 390 | + $options .= ' onchange="' . esc_attr($args['onchange']) . '"'; |
|
| 391 | 391 | } |
| 392 | 392 | |
| 393 | - if( !empty( $args['required'] ) ) { |
|
| 393 | + if (!empty($args['required'])) { |
|
| 394 | 394 | $options .= ' required="required"'; |
| 395 | 395 | } |
| 396 | 396 | |
| 397 | - if( !empty( $args['disabled'] ) ) { |
|
| 397 | + if (!empty($args['disabled'])) { |
|
| 398 | 398 | $options .= ' disabled'; |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | - if( !empty( $args['readonly'] ) ) { |
|
| 401 | + if (!empty($args['readonly'])) { |
|
| 402 | 402 | $options .= ' readonly'; |
| 403 | 403 | } |
| 404 | 404 | |
| 405 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
| 406 | - $output = '<select name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['id'] ) . '" class="wpinv-select ' . $class . '"' . $multiple . ' data-placeholder="' . $placeholder . '" ' . trim( $options ) . $data_elements . '>'; |
|
| 405 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
| 406 | + $output = '<select name="' . esc_attr($args['name']) . '" id="' . esc_attr($args['id']) . '" class="wpinv-select ' . $class . '"' . $multiple . ' data-placeholder="' . $placeholder . '" ' . trim($options) . $data_elements . '>'; |
|
| 407 | 407 | |
| 408 | - if ( $args['show_option_all'] ) { |
|
| 409 | - if( $args['multiple'] ) { |
|
| 410 | - $selected = selected( true, in_array( 0, $args['selected'] ), false ); |
|
| 408 | + if ($args['show_option_all']) { |
|
| 409 | + if ($args['multiple']) { |
|
| 410 | + $selected = selected(true, in_array(0, $args['selected']), false); |
|
| 411 | 411 | } else { |
| 412 | - $selected = selected( $args['selected'], 0, false ); |
|
| 412 | + $selected = selected($args['selected'], 0, false); |
|
| 413 | 413 | } |
| 414 | - $output .= '<option value="all"' . $selected . '>' . esc_html( $args['show_option_all'] ) . '</option>'; |
|
| 414 | + $output .= '<option value="all"' . $selected . '>' . esc_html($args['show_option_all']) . '</option>'; |
|
| 415 | 415 | } |
| 416 | 416 | |
| 417 | - if ( !empty( $args['options'] ) ) { |
|
| 417 | + if (!empty($args['options'])) { |
|
| 418 | 418 | |
| 419 | - if ( $args['show_option_none'] ) { |
|
| 420 | - if( $args['multiple'] ) { |
|
| 421 | - $selected = selected( true, in_array( "", $args['selected'] ), false ); |
|
| 419 | + if ($args['show_option_none']) { |
|
| 420 | + if ($args['multiple']) { |
|
| 421 | + $selected = selected(true, in_array("", $args['selected']), false); |
|
| 422 | 422 | } else { |
| 423 | - $selected = selected( $args['selected'] === "", true, false ); |
|
| 423 | + $selected = selected($args['selected'] === "", true, false); |
|
| 424 | 424 | } |
| 425 | - $output .= '<option value=""' . $selected . '>' . esc_html( $args['show_option_none'] ) . '</option>'; |
|
| 425 | + $output .= '<option value=""' . $selected . '>' . esc_html($args['show_option_none']) . '</option>'; |
|
| 426 | 426 | } |
| 427 | 427 | |
| 428 | - foreach( $args['options'] as $key => $option ) { |
|
| 428 | + foreach ($args['options'] as $key => $option) { |
|
| 429 | 429 | |
| 430 | - if( $args['multiple'] && is_array( $args['selected'] ) ) { |
|
| 431 | - $selected = selected( true, (bool)in_array( $key, $args['selected'] ), false ); |
|
| 430 | + if ($args['multiple'] && is_array($args['selected'])) { |
|
| 431 | + $selected = selected(true, (bool) in_array($key, $args['selected']), false); |
|
| 432 | 432 | } else { |
| 433 | - $selected = selected( $args['selected'], $key, false ); |
|
| 433 | + $selected = selected($args['selected'], $key, false); |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | - $output .= '<option value="' . esc_attr( $key ) . '"' . $selected . '>' . esc_html( $option ) . '</option>'; |
|
| 436 | + $output .= '<option value="' . esc_attr($key) . '"' . $selected . '>' . esc_html($option) . '</option>'; |
|
| 437 | 437 | } |
| 438 | 438 | } |
| 439 | 439 | |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | return $output; |
| 443 | 443 | } |
| 444 | 444 | |
| 445 | -function wpinv_item_dropdown( $args = array() ) { |
|
| 445 | +function wpinv_item_dropdown($args = array()) { |
|
| 446 | 446 | $defaults = array( |
| 447 | 447 | 'name' => 'wpi_item', |
| 448 | 448 | 'id' => 'wpi_item', |
@@ -450,14 +450,14 @@ discard block |
||
| 450 | 450 | 'multiple' => false, |
| 451 | 451 | 'selected' => 0, |
| 452 | 452 | 'number' => 100, |
| 453 | - 'placeholder' => __( 'Choose a item', 'invoicing' ), |
|
| 454 | - 'data' => array( 'search-type' => 'item' ), |
|
| 453 | + 'placeholder' => __('Choose a item', 'invoicing'), |
|
| 454 | + 'data' => array('search-type' => 'item'), |
|
| 455 | 455 | 'show_option_all' => false, |
| 456 | 456 | 'show_option_none' => false, |
| 457 | 457 | 'show_recurring' => false, |
| 458 | 458 | ); |
| 459 | 459 | |
| 460 | - $args = wp_parse_args( $args, $defaults ); |
|
| 460 | + $args = wp_parse_args($args, $defaults); |
|
| 461 | 461 | |
| 462 | 462 | $item_args = array( |
| 463 | 463 | 'post_type' => 'wpi_item', |
@@ -466,44 +466,44 @@ discard block |
||
| 466 | 466 | 'posts_per_page' => $args['number'] |
| 467 | 467 | ); |
| 468 | 468 | |
| 469 | - $item_args = apply_filters( 'wpinv_item_dropdown_query_args', $item_args, $args, $defaults ); |
|
| 469 | + $item_args = apply_filters('wpinv_item_dropdown_query_args', $item_args, $args, $defaults); |
|
| 470 | 470 | |
| 471 | - $items = get_posts( $item_args ); |
|
| 471 | + $items = get_posts($item_args); |
|
| 472 | 472 | $options = array(); |
| 473 | - if ( $items ) { |
|
| 474 | - foreach ( $items as $item ) { |
|
| 475 | - $title = esc_html( $item->post_title ); |
|
| 473 | + if ($items) { |
|
| 474 | + foreach ($items as $item) { |
|
| 475 | + $title = esc_html($item->post_title); |
|
| 476 | 476 | |
| 477 | - if ( !empty( $args['show_recurring'] ) ) { |
|
| 478 | - $title .= wpinv_get_item_suffix( $item->ID, false ); |
|
| 477 | + if (!empty($args['show_recurring'])) { |
|
| 478 | + $title .= wpinv_get_item_suffix($item->ID, false); |
|
| 479 | 479 | } |
| 480 | 480 | |
| 481 | - $options[ absint( $item->ID ) ] = $title; |
|
| 481 | + $options[absint($item->ID)] = $title; |
|
| 482 | 482 | } |
| 483 | 483 | } |
| 484 | 484 | |
| 485 | 485 | // This ensures that any selected items are included in the drop down |
| 486 | - if( is_array( $args['selected'] ) ) { |
|
| 487 | - foreach( $args['selected'] as $item ) { |
|
| 488 | - if( ! in_array( $item, $options ) ) { |
|
| 489 | - $title = get_the_title( $item ); |
|
| 490 | - if ( !empty( $args['show_recurring'] ) ) { |
|
| 491 | - $title .= wpinv_get_item_suffix( $item, false ); |
|
| 486 | + if (is_array($args['selected'])) { |
|
| 487 | + foreach ($args['selected'] as $item) { |
|
| 488 | + if (!in_array($item, $options)) { |
|
| 489 | + $title = get_the_title($item); |
|
| 490 | + if (!empty($args['show_recurring'])) { |
|
| 491 | + $title .= wpinv_get_item_suffix($item, false); |
|
| 492 | 492 | } |
| 493 | 493 | $options[$item] = $title; |
| 494 | 494 | } |
| 495 | 495 | } |
| 496 | - } elseif ( is_numeric( $args['selected'] ) && $args['selected'] !== 0 ) { |
|
| 497 | - if ( ! in_array( $args['selected'], $options ) ) { |
|
| 498 | - $title = get_the_title( $args['selected'] ); |
|
| 499 | - if ( !empty( $args['show_recurring'] ) ) { |
|
| 500 | - $title .= wpinv_get_item_suffix( $args['selected'], false ); |
|
| 496 | + } elseif (is_numeric($args['selected']) && $args['selected'] !== 0) { |
|
| 497 | + if (!in_array($args['selected'], $options)) { |
|
| 498 | + $title = get_the_title($args['selected']); |
|
| 499 | + if (!empty($args['show_recurring'])) { |
|
| 500 | + $title .= wpinv_get_item_suffix($args['selected'], false); |
|
| 501 | 501 | } |
| 502 | - $options[$args['selected']] = get_the_title( $args['selected'] ); |
|
| 502 | + $options[$args['selected']] = get_the_title($args['selected']); |
|
| 503 | 503 | } |
| 504 | 504 | } |
| 505 | 505 | |
| 506 | - $output = wpinv_html_select( array( |
|
| 506 | + $output = wpinv_html_select(array( |
|
| 507 | 507 | 'name' => $args['name'], |
| 508 | 508 | 'selected' => $args['selected'], |
| 509 | 509 | 'id' => $args['id'], |
@@ -514,7 +514,7 @@ discard block |
||
| 514 | 514 | 'show_option_all' => $args['show_option_all'], |
| 515 | 515 | 'show_option_none' => $args['show_option_none'], |
| 516 | 516 | 'data' => $args['data'], |
| 517 | - ) ); |
|
| 517 | + )); |
|
| 518 | 518 | |
| 519 | 519 | return $output; |
| 520 | 520 | } |
@@ -534,16 +534,16 @@ discard block |
||
| 534 | 534 | ); |
| 535 | 535 | |
| 536 | 536 | $options = array(); |
| 537 | - if ( $items ) { |
|
| 538 | - foreach ( $items as $item ) { |
|
| 539 | - $options[ $item->ID ] = esc_html( $item->post_title ) . wpinv_get_item_suffix( $item->ID, false ); |
|
| 537 | + if ($items) { |
|
| 538 | + foreach ($items as $item) { |
|
| 539 | + $options[$item->ID] = esc_html($item->post_title) . wpinv_get_item_suffix($item->ID, false); |
|
| 540 | 540 | } |
| 541 | 541 | } |
| 542 | 542 | |
| 543 | 543 | return $options; |
| 544 | 544 | } |
| 545 | 545 | |
| 546 | -function wpinv_html_checkbox( $args = array() ) { |
|
| 546 | +function wpinv_html_checkbox($args = array()) { |
|
| 547 | 547 | $defaults = array( |
| 548 | 548 | 'name' => null, |
| 549 | 549 | 'current' => null, |
@@ -554,17 +554,17 @@ discard block |
||
| 554 | 554 | ) |
| 555 | 555 | ); |
| 556 | 556 | |
| 557 | - $args = wp_parse_args( $args, $defaults ); |
|
| 557 | + $args = wp_parse_args($args, $defaults); |
|
| 558 | 558 | |
| 559 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
| 559 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
| 560 | 560 | $options = ''; |
| 561 | - if ( ! empty( $args['options']['disabled'] ) ) { |
|
| 561 | + if (!empty($args['options']['disabled'])) { |
|
| 562 | 562 | $options .= ' disabled="disabled"'; |
| 563 | - } elseif ( ! empty( $args['options']['readonly'] ) ) { |
|
| 563 | + } elseif (!empty($args['options']['readonly'])) { |
|
| 564 | 564 | $options .= ' readonly'; |
| 565 | 565 | } |
| 566 | 566 | |
| 567 | - $output = '<input type="checkbox"' . $options . ' name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . $class . ' ' . esc_attr( $args['name'] ) . '" ' . checked( 1, $args['current'], false ) . ' />'; |
|
| 567 | + $output = '<input type="checkbox"' . $options . ' name="' . esc_attr($args['name']) . '" id="' . esc_attr($args['name']) . '" class="' . $class . ' ' . esc_attr($args['name']) . '" ' . checked(1, $args['current'], false) . ' />'; |
|
| 568 | 568 | |
| 569 | 569 | return $output; |
| 570 | 570 | } |
@@ -572,9 +572,9 @@ discard block |
||
| 572 | 572 | /** |
| 573 | 573 | * Displays a hidden field. |
| 574 | 574 | */ |
| 575 | -function getpaid_hidden_field( $name, $value ) { |
|
| 576 | - $name = sanitize_text_field( $name ); |
|
| 577 | - $value = esc_attr( $value ); |
|
| 575 | +function getpaid_hidden_field($name, $value) { |
|
| 576 | + $name = sanitize_text_field($name); |
|
| 577 | + $value = esc_attr($value); |
|
| 578 | 578 | |
| 579 | 579 | echo "<input type='hidden' name='$name' value='$value' />"; |
| 580 | 580 | } |
@@ -582,31 +582,31 @@ discard block |
||
| 582 | 582 | /** |
| 583 | 583 | * Displays a submit field. |
| 584 | 584 | */ |
| 585 | -function getpaid_submit_field( $value, $name = 'submit', $class = 'btn-primary' ) { |
|
| 586 | - $name = sanitize_text_field( $name ); |
|
| 587 | - $value = esc_attr( $value ); |
|
| 588 | - $class = esc_attr( $class ); |
|
| 585 | +function getpaid_submit_field($value, $name = 'submit', $class = 'btn-primary') { |
|
| 586 | + $name = sanitize_text_field($name); |
|
| 587 | + $value = esc_attr($value); |
|
| 588 | + $class = esc_attr($class); |
|
| 589 | 589 | |
| 590 | 590 | echo "<input type='submit' name='$name' value='$value' class='btn $class' />"; |
| 591 | 591 | } |
| 592 | 592 | |
| 593 | -function wpinv_html_text( $args = array() ) { |
|
| 593 | +function wpinv_html_text($args = array()) { |
|
| 594 | 594 | // Backwards compatibility |
| 595 | - if ( func_num_args() > 1 ) { |
|
| 595 | + if (func_num_args() > 1) { |
|
| 596 | 596 | $args = func_get_args(); |
| 597 | 597 | |
| 598 | 598 | $name = $args[0]; |
| 599 | - $value = isset( $args[1] ) ? $args[1] : ''; |
|
| 600 | - $label = isset( $args[2] ) ? $args[2] : ''; |
|
| 601 | - $desc = isset( $args[3] ) ? $args[3] : ''; |
|
| 599 | + $value = isset($args[1]) ? $args[1] : ''; |
|
| 600 | + $label = isset($args[2]) ? $args[2] : ''; |
|
| 601 | + $desc = isset($args[3]) ? $args[3] : ''; |
|
| 602 | 602 | } |
| 603 | 603 | |
| 604 | 604 | $defaults = array( |
| 605 | 605 | 'id' => '', |
| 606 | - 'name' => isset( $name ) ? $name : 'text', |
|
| 607 | - 'value' => isset( $value ) ? $value : null, |
|
| 608 | - 'label' => isset( $label ) ? $label : null, |
|
| 609 | - 'desc' => isset( $desc ) ? $desc : null, |
|
| 606 | + 'name' => isset($name) ? $name : 'text', |
|
| 607 | + 'value' => isset($value) ? $value : null, |
|
| 608 | + 'label' => isset($label) ? $label : null, |
|
| 609 | + 'desc' => isset($desc) ? $desc : null, |
|
| 610 | 610 | 'placeholder' => '', |
| 611 | 611 | 'class' => 'regular-text', |
| 612 | 612 | 'disabled' => false, |
@@ -616,41 +616,41 @@ discard block |
||
| 616 | 616 | 'data' => false |
| 617 | 617 | ); |
| 618 | 618 | |
| 619 | - $args = wp_parse_args( $args, $defaults ); |
|
| 619 | + $args = wp_parse_args($args, $defaults); |
|
| 620 | 620 | |
| 621 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
| 621 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
| 622 | 622 | $options = ''; |
| 623 | - if( $args['required'] ) { |
|
| 623 | + if ($args['required']) { |
|
| 624 | 624 | $options .= ' required="required"'; |
| 625 | 625 | } |
| 626 | - if( $args['readonly'] ) { |
|
| 626 | + if ($args['readonly']) { |
|
| 627 | 627 | $options .= ' readonly'; |
| 628 | 628 | } |
| 629 | - if( $args['readonly'] ) { |
|
| 629 | + if ($args['readonly']) { |
|
| 630 | 630 | $options .= ' readonly'; |
| 631 | 631 | } |
| 632 | 632 | |
| 633 | 633 | $data = ''; |
| 634 | - if ( !empty( $args['data'] ) ) { |
|
| 635 | - foreach ( $args['data'] as $key => $value ) { |
|
| 636 | - $data .= 'data-' . wpinv_sanitize_key( $key ) . '="' . esc_attr( $value ) . '" '; |
|
| 634 | + if (!empty($args['data'])) { |
|
| 635 | + foreach ($args['data'] as $key => $value) { |
|
| 636 | + $data .= 'data-' . wpinv_sanitize_key($key) . '="' . esc_attr($value) . '" '; |
|
| 637 | 637 | } |
| 638 | 638 | } |
| 639 | 639 | |
| 640 | - $output = '<span id="wpinv-' . wpinv_sanitize_key( $args['name'] ) . '-wrap">'; |
|
| 641 | - $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key( $args['id'] ) . '">' . esc_html( $args['label'] ) . '</label>'; |
|
| 642 | - if ( ! empty( $args['desc'] ) ) { |
|
| 643 | - $output .= '<span class="wpinv-description">' . esc_html( $args['desc'] ) . '</span>'; |
|
| 640 | + $output = '<span id="wpinv-' . wpinv_sanitize_key($args['name']) . '-wrap">'; |
|
| 641 | + $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key($args['id']) . '">' . esc_html($args['label']) . '</label>'; |
|
| 642 | + if (!empty($args['desc'])) { |
|
| 643 | + $output .= '<span class="wpinv-description">' . esc_html($args['desc']) . '</span>'; |
|
| 644 | 644 | } |
| 645 | 645 | |
| 646 | - $output .= '<input type="text" name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['id'] ) . '" autocomplete="' . esc_attr( $args['autocomplete'] ) . '" value="' . esc_attr( $args['value'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" class="' . $class . '" ' . $data . ' ' . trim( $options ) . '/>'; |
|
| 646 | + $output .= '<input type="text" name="' . esc_attr($args['name']) . '" id="' . esc_attr($args['id']) . '" autocomplete="' . esc_attr($args['autocomplete']) . '" value="' . esc_attr($args['value']) . '" placeholder="' . esc_attr($args['placeholder']) . '" class="' . $class . '" ' . $data . ' ' . trim($options) . '/>'; |
|
| 647 | 647 | |
| 648 | 648 | $output .= '</span>'; |
| 649 | 649 | |
| 650 | 650 | return $output; |
| 651 | 651 | } |
| 652 | 652 | |
| 653 | -function wpinv_html_textarea( $args = array() ) { |
|
| 653 | +function wpinv_html_textarea($args = array()) { |
|
| 654 | 654 | $defaults = array( |
| 655 | 655 | 'name' => 'textarea', |
| 656 | 656 | 'value' => null, |
@@ -661,31 +661,31 @@ discard block |
||
| 661 | 661 | 'placeholder' => '', |
| 662 | 662 | ); |
| 663 | 663 | |
| 664 | - $args = wp_parse_args( $args, $defaults ); |
|
| 664 | + $args = wp_parse_args($args, $defaults); |
|
| 665 | 665 | |
| 666 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
| 666 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
| 667 | 667 | $disabled = ''; |
| 668 | - if( $args['disabled'] ) { |
|
| 668 | + if ($args['disabled']) { |
|
| 669 | 669 | $disabled = ' disabled="disabled"'; |
| 670 | 670 | } |
| 671 | 671 | |
| 672 | - $output = '<span id="wpinv-' . wpinv_sanitize_key( $args['name'] ) . '-wrap">'; |
|
| 673 | - $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>'; |
|
| 674 | - $output .= '<textarea name="' . esc_attr( $args['name'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" id="' . wpinv_sanitize_key( $args['name'] ) . '" class="' . $class . '"' . $disabled . '>' . esc_attr( $args['value'] ) . '</textarea>'; |
|
| 672 | + $output = '<span id="wpinv-' . wpinv_sanitize_key($args['name']) . '-wrap">'; |
|
| 673 | + $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key($args['name']) . '">' . esc_html($args['label']) . '</label>'; |
|
| 674 | + $output .= '<textarea name="' . esc_attr($args['name']) . '" placeholder="' . esc_attr($args['placeholder']) . '" id="' . wpinv_sanitize_key($args['name']) . '" class="' . $class . '"' . $disabled . '>' . esc_attr($args['value']) . '</textarea>'; |
|
| 675 | 675 | |
| 676 | - if ( ! empty( $args['desc'] ) ) { |
|
| 677 | - $output .= '<span class="wpinv-description">' . esc_html( $args['desc'] ) . '</span>'; |
|
| 676 | + if (!empty($args['desc'])) { |
|
| 677 | + $output .= '<span class="wpinv-description">' . esc_html($args['desc']) . '</span>'; |
|
| 678 | 678 | } |
| 679 | 679 | $output .= '</span>'; |
| 680 | 680 | |
| 681 | 681 | return $output; |
| 682 | 682 | } |
| 683 | 683 | |
| 684 | -function wpinv_html_ajax_user_search( $args = array() ) { |
|
| 684 | +function wpinv_html_ajax_user_search($args = array()) { |
|
| 685 | 685 | $defaults = array( |
| 686 | 686 | 'name' => 'user_id', |
| 687 | 687 | 'value' => null, |
| 688 | - 'placeholder' => __( 'Enter username', 'invoicing' ), |
|
| 688 | + 'placeholder' => __('Enter username', 'invoicing'), |
|
| 689 | 689 | 'label' => null, |
| 690 | 690 | 'desc' => null, |
| 691 | 691 | 'class' => '', |
@@ -694,13 +694,13 @@ discard block |
||
| 694 | 694 | 'data' => false |
| 695 | 695 | ); |
| 696 | 696 | |
| 697 | - $args = wp_parse_args( $args, $defaults ); |
|
| 697 | + $args = wp_parse_args($args, $defaults); |
|
| 698 | 698 | |
| 699 | 699 | $args['class'] = 'wpinv-ajax-user-search ' . $args['class']; |
| 700 | 700 | |
| 701 | 701 | $output = '<span class="wpinv_user_search_wrap">'; |
| 702 | - $output .= wpinv_html_text( $args ); |
|
| 703 | - $output .= '<span class="wpinv_user_search_results hidden"><a class="wpinv-ajax-user-cancel" title="' . __( 'Cancel', 'invoicing' ) . '" aria-label="' . __( 'Cancel', 'invoicing' ) . '" href="#">x</a><span></span></span>'; |
|
| 702 | + $output .= wpinv_html_text($args); |
|
| 703 | + $output .= '<span class="wpinv_user_search_results hidden"><a class="wpinv-ajax-user-cancel" title="' . __('Cancel', 'invoicing') . '" aria-label="' . __('Cancel', 'invoicing') . '" href="#">x</a><span></span></span>'; |
|
| 704 | 704 | $output .= '</span>'; |
| 705 | 705 | |
| 706 | 706 | return $output; |
@@ -711,20 +711,20 @@ discard block |
||
| 711 | 711 | * |
| 712 | 712 | * @param string $template the template that is currently being used. |
| 713 | 713 | */ |
| 714 | -function wpinv_template( $template ) { |
|
| 714 | +function wpinv_template($template) { |
|
| 715 | 715 | global $post; |
| 716 | 716 | |
| 717 | - if ( ! is_admin() && ( is_single() || is_404() ) && ! empty( $post->ID ) && getpaid_is_invoice_post_type( get_post_type( $post->ID ) ) ) { |
|
| 717 | + if (!is_admin() && (is_single() || is_404()) && !empty($post->ID) && getpaid_is_invoice_post_type(get_post_type($post->ID))) { |
|
| 718 | 718 | |
| 719 | 719 | // If the user can view this invoice, display it. |
| 720 | - if ( wpinv_user_can_view_invoice( $post->ID ) ) { |
|
| 720 | + if (wpinv_user_can_view_invoice($post->ID)) { |
|
| 721 | 721 | |
| 722 | - return wpinv_get_template_part( 'wpinv-invoice-print', false, false ); |
|
| 722 | + return wpinv_get_template_part('wpinv-invoice-print', false, false); |
|
| 723 | 723 | |
| 724 | 724 | // Else display an error message. |
| 725 | 725 | } else { |
| 726 | 726 | |
| 727 | - return wpinv_get_template_part( 'wpinv-invalid-access', false, false ); |
|
| 727 | + return wpinv_get_template_part('wpinv-invalid-access', false, false); |
|
| 728 | 728 | |
| 729 | 729 | } |
| 730 | 730 | |
@@ -732,24 +732,24 @@ discard block |
||
| 732 | 732 | |
| 733 | 733 | return $template; |
| 734 | 734 | } |
| 735 | -add_filter( 'template_include', 'wpinv_template', 10, 1 ); |
|
| 735 | +add_filter('template_include', 'wpinv_template', 10, 1); |
|
| 736 | 736 | |
| 737 | 737 | function wpinv_get_business_address() { |
| 738 | 738 | $business_address = wpinv_store_address(); |
| 739 | - $business_address = !empty( $business_address ) ? wpautop( wp_kses_post( $business_address ) ) : ''; |
|
| 739 | + $business_address = !empty($business_address) ? wpautop(wp_kses_post($business_address)) : ''; |
|
| 740 | 740 | |
| 741 | 741 | $business_address = $business_address ? '<div class="address">' . $business_address . '</div>' : ''; |
| 742 | 742 | |
| 743 | - return apply_filters( 'wpinv_get_business_address', $business_address ); |
|
| 743 | + return apply_filters('wpinv_get_business_address', $business_address); |
|
| 744 | 744 | } |
| 745 | 745 | |
| 746 | 746 | /** |
| 747 | 747 | * Displays the company address. |
| 748 | 748 | */ |
| 749 | 749 | function wpinv_display_from_address() { |
| 750 | - wpinv_get_template( 'invoice/company-address.php' ); |
|
| 750 | + wpinv_get_template('invoice/company-address.php'); |
|
| 751 | 751 | } |
| 752 | -add_action( 'getpaid_invoice_details_left', 'wpinv_display_from_address', 10 ); |
|
| 752 | +add_action('getpaid_invoice_details_left', 'wpinv_display_from_address', 10); |
|
| 753 | 753 | |
| 754 | 754 | /** |
| 755 | 755 | * Generates a watermark text for an invoice. |
@@ -757,9 +757,9 @@ discard block |
||
| 757 | 757 | * @param WPInv_Invoice $invoice |
| 758 | 758 | * @return string |
| 759 | 759 | */ |
| 760 | -function wpinv_watermark( $invoice ) { |
|
| 761 | - $watermark = wpinv_get_watermark( $invoice ); |
|
| 762 | - return apply_filters( 'wpinv_get_watermark', $watermark, $invoice ); |
|
| 760 | +function wpinv_watermark($invoice) { |
|
| 761 | + $watermark = wpinv_get_watermark($invoice); |
|
| 762 | + return apply_filters('wpinv_get_watermark', $watermark, $invoice); |
|
| 763 | 763 | } |
| 764 | 764 | |
| 765 | 765 | /** |
@@ -768,37 +768,37 @@ discard block |
||
| 768 | 768 | * @param WPInv_Invoice $invoice |
| 769 | 769 | * @return string |
| 770 | 770 | */ |
| 771 | -function wpinv_get_watermark( $invoice ) { |
|
| 771 | +function wpinv_get_watermark($invoice) { |
|
| 772 | 772 | return $invoice->get_status_nicename(); |
| 773 | 773 | } |
| 774 | 774 | |
| 775 | 775 | /** |
| 776 | 776 | * @deprecated |
| 777 | 777 | */ |
| 778 | -function wpinv_display_invoice_details( $invoice ) { |
|
| 779 | - return getpaid_invoice_meta( $invoice ); |
|
| 778 | +function wpinv_display_invoice_details($invoice) { |
|
| 779 | + return getpaid_invoice_meta($invoice); |
|
| 780 | 780 | } |
| 781 | 781 | |
| 782 | 782 | /** |
| 783 | 783 | * Displays invoice meta. |
| 784 | 784 | */ |
| 785 | -function getpaid_invoice_meta( $invoice ) { |
|
| 785 | +function getpaid_invoice_meta($invoice) { |
|
| 786 | 786 | |
| 787 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 787 | + $invoice = new WPInv_Invoice($invoice); |
|
| 788 | 788 | |
| 789 | 789 | // Ensure that we have an invoice. |
| 790 | - if ( 0 == $invoice->get_id() ) { |
|
| 790 | + if (0 == $invoice->get_id()) { |
|
| 791 | 791 | return; |
| 792 | 792 | } |
| 793 | 793 | |
| 794 | 794 | // Get the invoice meta. |
| 795 | - $meta = getpaid_get_invoice_meta( $invoice ); |
|
| 795 | + $meta = getpaid_get_invoice_meta($invoice); |
|
| 796 | 796 | |
| 797 | 797 | // Display the meta. |
| 798 | - wpinv_get_template( 'invoice/invoice-meta.php', compact( 'invoice', 'meta' ) ); |
|
| 798 | + wpinv_get_template('invoice/invoice-meta.php', compact('invoice', 'meta')); |
|
| 799 | 799 | |
| 800 | 800 | } |
| 801 | -add_action( 'getpaid_invoice_details_right', 'getpaid_invoice_meta', 10 ); |
|
| 801 | +add_action('getpaid_invoice_details_right', 'getpaid_invoice_meta', 10); |
|
| 802 | 802 | |
| 803 | 803 | /** |
| 804 | 804 | * Retrieves the address markup to use on Invoices. |
@@ -810,29 +810,29 @@ discard block |
||
| 810 | 810 | * @param string $separator How to separate address lines. |
| 811 | 811 | * @return string |
| 812 | 812 | */ |
| 813 | -function wpinv_get_invoice_address_markup( $billing_details, $separator = '<br/>' ) { |
|
| 813 | +function wpinv_get_invoice_address_markup($billing_details, $separator = '<br/>') { |
|
| 814 | 814 | |
| 815 | 815 | // Retrieve the address markup... |
| 816 | - $country= empty( $billing_details['country'] ) ? '' : $billing_details['country']; |
|
| 817 | - $format = wpinv_get_full_address_format( $country ); |
|
| 816 | + $country = empty($billing_details['country']) ? '' : $billing_details['country']; |
|
| 817 | + $format = wpinv_get_full_address_format($country); |
|
| 818 | 818 | |
| 819 | 819 | // ... and the replacements. |
| 820 | - $replacements = wpinv_get_invoice_address_replacements( $billing_details ); |
|
| 820 | + $replacements = wpinv_get_invoice_address_replacements($billing_details); |
|
| 821 | 821 | |
| 822 | - $formatted_address = str_ireplace( array_keys( $replacements ), $replacements, $format ); |
|
| 822 | + $formatted_address = str_ireplace(array_keys($replacements), $replacements, $format); |
|
| 823 | 823 | |
| 824 | 824 | // Remove unavailable tags. |
| 825 | - $formatted_address = preg_replace( "/\{\{\w+\}\}/", '', $formatted_address ); |
|
| 825 | + $formatted_address = preg_replace("/\{\{\w+\}\}/", '', $formatted_address); |
|
| 826 | 826 | |
| 827 | 827 | // Clean up white space. |
| 828 | - $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
| 829 | - $formatted_address = preg_replace( '/\n\n+/', "\n", $formatted_address ); |
|
| 828 | + $formatted_address = preg_replace('/ +/', ' ', trim($formatted_address)); |
|
| 829 | + $formatted_address = preg_replace('/\n\n+/', "\n", $formatted_address); |
|
| 830 | 830 | |
| 831 | 831 | // Break newlines apart and remove empty lines/trim commas and white space. |
| 832 | - $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
| 832 | + $formatted_address = array_filter(array_map('wpinv_trim_formatted_address_line', explode("\n", $formatted_address))); |
|
| 833 | 833 | |
| 834 | 834 | // Add html breaks. |
| 835 | - $formatted_address = implode( $separator, $formatted_address ); |
|
| 835 | + $formatted_address = implode($separator, $formatted_address); |
|
| 836 | 836 | |
| 837 | 837 | // We're done! |
| 838 | 838 | return $formatted_address; |
@@ -844,116 +844,116 @@ discard block |
||
| 844 | 844 | * |
| 845 | 845 | * @param WPInv_Invoice $invoice |
| 846 | 846 | */ |
| 847 | -function wpinv_display_to_address( $invoice = 0 ) { |
|
| 848 | - if ( ! empty( $invoice ) ) { |
|
| 849 | - wpinv_get_template( 'invoice/billing-address.php', compact( 'invoice' ) ); |
|
| 847 | +function wpinv_display_to_address($invoice = 0) { |
|
| 848 | + if (!empty($invoice)) { |
|
| 849 | + wpinv_get_template('invoice/billing-address.php', compact('invoice')); |
|
| 850 | 850 | } |
| 851 | 851 | } |
| 852 | -add_action( 'getpaid_invoice_details_left', 'wpinv_display_to_address', 40 ); |
|
| 852 | +add_action('getpaid_invoice_details_left', 'wpinv_display_to_address', 40); |
|
| 853 | 853 | |
| 854 | 854 | |
| 855 | 855 | /** |
| 856 | 856 | * Displays invoice line items. |
| 857 | 857 | */ |
| 858 | -function wpinv_display_line_items( $invoice_id = 0 ) { |
|
| 858 | +function wpinv_display_line_items($invoice_id = 0) { |
|
| 859 | 859 | |
| 860 | 860 | // Prepare the invoice. |
| 861 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 861 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 862 | 862 | |
| 863 | 863 | // Abort if there is no invoice. |
| 864 | - if ( 0 == $invoice->get_id() ) { |
|
| 864 | + if (0 == $invoice->get_id()) { |
|
| 865 | 865 | return; |
| 866 | 866 | } |
| 867 | 867 | |
| 868 | 868 | // Line item columns. |
| 869 | - $columns = getpaid_invoice_item_columns( $invoice ); |
|
| 870 | - $columns = apply_filters( 'getpaid_invoice_line_items_table_columns', $columns, $invoice ); |
|
| 869 | + $columns = getpaid_invoice_item_columns($invoice); |
|
| 870 | + $columns = apply_filters('getpaid_invoice_line_items_table_columns', $columns, $invoice); |
|
| 871 | 871 | |
| 872 | - wpinv_get_template( 'invoice/line-items.php', compact( 'invoice', 'columns' ) ); |
|
| 872 | + wpinv_get_template('invoice/line-items.php', compact('invoice', 'columns')); |
|
| 873 | 873 | } |
| 874 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_line_items', 10 ); |
|
| 874 | +add_action('getpaid_invoice_line_items', 'wpinv_display_line_items', 10); |
|
| 875 | 875 | |
| 876 | 876 | /** |
| 877 | 877 | * Displays invoice subscriptions. |
| 878 | 878 | * |
| 879 | 879 | * @param WPInv_Invoice $invoice |
| 880 | 880 | */ |
| 881 | -function getpaid_display_invoice_subscriptions( $invoice ) { |
|
| 881 | +function getpaid_display_invoice_subscriptions($invoice) { |
|
| 882 | 882 | |
| 883 | 883 | // Subscriptions. |
| 884 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 884 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
| 885 | 885 | |
| 886 | - if ( empty( $subscriptions ) || ! $invoice->is_recurring() ) { |
|
| 886 | + if (empty($subscriptions) || !$invoice->is_recurring()) { |
|
| 887 | 887 | return; |
| 888 | 888 | } |
| 889 | 889 | |
| 890 | - $main_subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 890 | + $main_subscription = getpaid_get_invoice_subscription($invoice); |
|
| 891 | 891 | |
| 892 | 892 | // Display related subscriptions. |
| 893 | - if ( is_array( $subscriptions ) ) { |
|
| 894 | - printf( '<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__( 'Related Subscriptions', 'invoicing' ) ); |
|
| 895 | - getpaid_admin_subscription_related_subscriptions_metabox( $main_subscription, false ); |
|
| 893 | + if (is_array($subscriptions)) { |
|
| 894 | + printf('<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__('Related Subscriptions', 'invoicing')); |
|
| 895 | + getpaid_admin_subscription_related_subscriptions_metabox($main_subscription, false); |
|
| 896 | 896 | } |
| 897 | 897 | |
| 898 | - printf( '<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__( 'Related Invoices', 'invoicing' ) ); |
|
| 899 | - getpaid_admin_subscription_invoice_details_metabox( $main_subscription, false ); |
|
| 898 | + printf('<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__('Related Invoices', 'invoicing')); |
|
| 899 | + getpaid_admin_subscription_invoice_details_metabox($main_subscription, false); |
|
| 900 | 900 | |
| 901 | 901 | } |
| 902 | -add_action( 'getpaid_invoice_line_items', 'getpaid_display_invoice_subscriptions', 15 ); |
|
| 902 | +add_action('getpaid_invoice_line_items', 'getpaid_display_invoice_subscriptions', 15); |
|
| 903 | 903 | |
| 904 | 904 | /** |
| 905 | 905 | * Displays invoice notices on invoices. |
| 906 | 906 | */ |
| 907 | 907 | function wpinv_display_invoice_notice() { |
| 908 | 908 | |
| 909 | - $label = wpinv_get_option( 'vat_invoice_notice_label' ); |
|
| 910 | - $notice = wpinv_get_option( 'vat_invoice_notice' ); |
|
| 909 | + $label = wpinv_get_option('vat_invoice_notice_label'); |
|
| 910 | + $notice = wpinv_get_option('vat_invoice_notice'); |
|
| 911 | 911 | |
| 912 | - if ( empty( $label ) && empty( $notice ) ) { |
|
| 912 | + if (empty($label) && empty($notice)) { |
|
| 913 | 913 | return; |
| 914 | 914 | } |
| 915 | 915 | |
| 916 | 916 | echo '<div class="mt-4 mb-4 wpinv-vat-notice">'; |
| 917 | 917 | |
| 918 | - if ( ! empty( $label ) ) { |
|
| 919 | - $label = sanitize_text_field( $label ); |
|
| 918 | + if (!empty($label)) { |
|
| 919 | + $label = sanitize_text_field($label); |
|
| 920 | 920 | echo "<h5>$label</h5>"; |
| 921 | 921 | } |
| 922 | 922 | |
| 923 | - if ( ! empty( $notice ) ) { |
|
| 924 | - echo '<small class="form-text text-muted">' . wpautop( wptexturize( $notice ) ) . '</small>'; |
|
| 923 | + if (!empty($notice)) { |
|
| 924 | + echo '<small class="form-text text-muted">' . wpautop(wptexturize($notice)) . '</small>'; |
|
| 925 | 925 | } |
| 926 | 926 | |
| 927 | 927 | echo '</div>'; |
| 928 | 928 | } |
| 929 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_invoice_notice', 100 ); |
|
| 929 | +add_action('getpaid_invoice_line_items', 'wpinv_display_invoice_notice', 100); |
|
| 930 | 930 | |
| 931 | 931 | /** |
| 932 | 932 | * @param WPInv_Invoice $invoice |
| 933 | 933 | */ |
| 934 | -function wpinv_display_invoice_notes( $invoice ) { |
|
| 934 | +function wpinv_display_invoice_notes($invoice) { |
|
| 935 | 935 | |
| 936 | 936 | // Retrieve the notes. |
| 937 | - $notes = wpinv_get_invoice_notes( $invoice->get_id(), 'customer' ); |
|
| 937 | + $notes = wpinv_get_invoice_notes($invoice->get_id(), 'customer'); |
|
| 938 | 938 | |
| 939 | 939 | // Abort if we have non. |
| 940 | - if ( empty( $notes ) ) { |
|
| 940 | + if (empty($notes)) { |
|
| 941 | 941 | return; |
| 942 | 942 | } |
| 943 | 943 | |
| 944 | 944 | // Echo the note. |
| 945 | 945 | echo '<div class="getpaid-invoice-notes-wrapper position-relative my-4">'; |
| 946 | - echo '<h2 class="getpaid-invoice-notes-title mb-1 p-0 h4">' . __( 'Notes', 'invoicing' ) .'</h2>'; |
|
| 946 | + echo '<h2 class="getpaid-invoice-notes-title mb-1 p-0 h4">' . __('Notes', 'invoicing') . '</h2>'; |
|
| 947 | 947 | echo '<ul class="getpaid-invoice-notes text-break overflow-auto list-unstyled p-0 m-0">'; |
| 948 | 948 | |
| 949 | - foreach( $notes as $note ) { |
|
| 950 | - wpinv_get_invoice_note_line_item( $note ); |
|
| 949 | + foreach ($notes as $note) { |
|
| 950 | + wpinv_get_invoice_note_line_item($note); |
|
| 951 | 951 | } |
| 952 | 952 | |
| 953 | 953 | echo '</ul>'; |
| 954 | 954 | echo '</div>'; |
| 955 | 955 | } |
| 956 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_invoice_notes', 60 ); |
|
| 956 | +add_action('getpaid_invoice_line_items', 'wpinv_display_invoice_notes', 60); |
|
| 957 | 957 | |
| 958 | 958 | /** |
| 959 | 959 | * Loads scripts on our invoice templates. |
@@ -961,31 +961,31 @@ discard block |
||
| 961 | 961 | function wpinv_display_style() { |
| 962 | 962 | |
| 963 | 963 | // Make sure that all scripts have been loaded. |
| 964 | - if ( ! did_action( 'wp_enqueue_scripts' ) ) { |
|
| 965 | - do_action( 'wp_enqueue_scripts' ); |
|
| 964 | + if (!did_action('wp_enqueue_scripts')) { |
|
| 965 | + do_action('wp_enqueue_scripts'); |
|
| 966 | 966 | } |
| 967 | 967 | |
| 968 | 968 | // Register the invoices style. |
| 969 | - wp_register_style( 'wpinv-single-style', WPINV_PLUGIN_URL . 'assets/css/invoice.css', array(), filemtime( WPINV_PLUGIN_DIR . 'assets/css/invoice.css' ) ); |
|
| 969 | + wp_register_style('wpinv-single-style', WPINV_PLUGIN_URL . 'assets/css/invoice.css', array(), filemtime(WPINV_PLUGIN_DIR . 'assets/css/invoice.css')); |
|
| 970 | 970 | |
| 971 | 971 | // Load required styles |
| 972 | - wp_print_styles( 'wpinv-single-style' ); |
|
| 973 | - wp_print_styles( 'ayecode-ui' ); |
|
| 972 | + wp_print_styles('wpinv-single-style'); |
|
| 973 | + wp_print_styles('ayecode-ui'); |
|
| 974 | 974 | |
| 975 | 975 | // Maybe load custom css. |
| 976 | - $custom_css = wpinv_get_option( 'template_custom_css' ); |
|
| 976 | + $custom_css = wpinv_get_option('template_custom_css'); |
|
| 977 | 977 | |
| 978 | - if ( isset( $custom_css ) && ! empty( $custom_css ) ) { |
|
| 979 | - $custom_css = wp_kses( $custom_css, array( '\'', '\"' ) ); |
|
| 980 | - $custom_css = str_replace( '>', '>', $custom_css ); |
|
| 978 | + if (isset($custom_css) && !empty($custom_css)) { |
|
| 979 | + $custom_css = wp_kses($custom_css, array('\'', '\"')); |
|
| 980 | + $custom_css = str_replace('>', '>', $custom_css); |
|
| 981 | 981 | echo '<style type="text/css">'; |
| 982 | 982 | echo $custom_css; |
| 983 | 983 | echo '</style>'; |
| 984 | 984 | } |
| 985 | 985 | |
| 986 | 986 | } |
| 987 | -add_action( 'wpinv_invoice_print_head', 'wpinv_display_style' ); |
|
| 988 | -add_action( 'wpinv_invalid_invoice_head', 'wpinv_display_style' ); |
|
| 987 | +add_action('wpinv_invoice_print_head', 'wpinv_display_style'); |
|
| 988 | +add_action('wpinv_invalid_invoice_head', 'wpinv_display_style'); |
|
| 989 | 989 | |
| 990 | 990 | |
| 991 | 991 | /** |
@@ -997,41 +997,41 @@ discard block |
||
| 997 | 997 | // Retrieve the current invoice. |
| 998 | 998 | $invoice_id = getpaid_get_current_invoice_id(); |
| 999 | 999 | |
| 1000 | - if ( empty( $invoice_id ) ) { |
|
| 1000 | + if (empty($invoice_id)) { |
|
| 1001 | 1001 | |
| 1002 | 1002 | return aui()->alert( |
| 1003 | 1003 | array( |
| 1004 | 1004 | 'type' => 'warning', |
| 1005 | - 'content' => __( 'Invalid invoice', 'invoicing' ), |
|
| 1005 | + 'content' => __('Invalid invoice', 'invoicing'), |
|
| 1006 | 1006 | ) |
| 1007 | 1007 | ); |
| 1008 | 1008 | |
| 1009 | 1009 | } |
| 1010 | 1010 | |
| 1011 | 1011 | // Can the user view this invoice? |
| 1012 | - if ( ! wpinv_user_can_view_invoice( $invoice_id ) ) { |
|
| 1012 | + if (!wpinv_user_can_view_invoice($invoice_id)) { |
|
| 1013 | 1013 | |
| 1014 | 1014 | return aui()->alert( |
| 1015 | 1015 | array( |
| 1016 | 1016 | 'type' => 'warning', |
| 1017 | - 'content' => __( 'You are not allowed to view this invoice', 'invoicing' ), |
|
| 1017 | + 'content' => __('You are not allowed to view this invoice', 'invoicing'), |
|
| 1018 | 1018 | ) |
| 1019 | 1019 | ); |
| 1020 | 1020 | |
| 1021 | 1021 | } |
| 1022 | 1022 | |
| 1023 | 1023 | // Ensure that it is not yet paid for. |
| 1024 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 1024 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 1025 | 1025 | |
| 1026 | 1026 | // Maybe mark it as viewed. |
| 1027 | - getpaid_maybe_mark_invoice_as_viewed( $invoice ); |
|
| 1027 | + getpaid_maybe_mark_invoice_as_viewed($invoice); |
|
| 1028 | 1028 | |
| 1029 | - if ( $invoice->is_paid() ) { |
|
| 1029 | + if ($invoice->is_paid()) { |
|
| 1030 | 1030 | |
| 1031 | 1031 | return aui()->alert( |
| 1032 | 1032 | array( |
| 1033 | 1033 | 'type' => 'success', |
| 1034 | - 'content' => __( 'This invoice has already been paid.', 'invoicing' ), |
|
| 1034 | + 'content' => __('This invoice has already been paid.', 'invoicing'), |
|
| 1035 | 1035 | ) |
| 1036 | 1036 | ); |
| 1037 | 1037 | |
@@ -1041,15 +1041,15 @@ discard block |
||
| 1041 | 1041 | $wpi_checkout_id = $invoice_id; |
| 1042 | 1042 | |
| 1043 | 1043 | // Retrieve appropriate payment form. |
| 1044 | - $payment_form = new GetPaid_Payment_Form( $invoice->get_meta( 'force_payment_form' ) ); |
|
| 1045 | - $payment_form = $payment_form->exists() ? $payment_form : new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
| 1044 | + $payment_form = new GetPaid_Payment_Form($invoice->get_meta('force_payment_form')); |
|
| 1045 | + $payment_form = $payment_form->exists() ? $payment_form : new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
| 1046 | 1046 | |
| 1047 | - if ( ! $payment_form->exists() ) { |
|
| 1047 | + if (!$payment_form->exists()) { |
|
| 1048 | 1048 | |
| 1049 | 1049 | return aui()->alert( |
| 1050 | 1050 | array( |
| 1051 | 1051 | 'type' => 'warning', |
| 1052 | - 'content' => __( 'Error loading the payment form', 'invoicing' ), |
|
| 1052 | + 'content' => __('Error loading the payment form', 'invoicing'), |
|
| 1053 | 1053 | ) |
| 1054 | 1054 | ); |
| 1055 | 1055 | |
@@ -1058,29 +1058,29 @@ discard block |
||
| 1058 | 1058 | // Set the invoice. |
| 1059 | 1059 | $payment_form->invoice = $invoice; |
| 1060 | 1060 | |
| 1061 | - if ( ! $payment_form->is_default() ) { |
|
| 1061 | + if (!$payment_form->is_default()) { |
|
| 1062 | 1062 | |
| 1063 | 1063 | $items = array(); |
| 1064 | 1064 | $item_ids = array(); |
| 1065 | 1065 | |
| 1066 | - foreach ( $invoice->get_items() as $item ) { |
|
| 1067 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 1066 | + foreach ($invoice->get_items() as $item) { |
|
| 1067 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 1068 | 1068 | $item_ids[] = $item->get_id(); |
| 1069 | 1069 | $items[] = $item; |
| 1070 | 1070 | } |
| 1071 | 1071 | } |
| 1072 | 1072 | |
| 1073 | - foreach ( $payment_form->get_items() as $item ) { |
|
| 1074 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 1073 | + foreach ($payment_form->get_items() as $item) { |
|
| 1074 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 1075 | 1075 | $item_ids[] = $item->get_id(); |
| 1076 | 1076 | $items[] = $item; |
| 1077 | 1077 | } |
| 1078 | 1078 | } |
| 1079 | 1079 | |
| 1080 | - $payment_form->set_items( $items ); |
|
| 1080 | + $payment_form->set_items($items); |
|
| 1081 | 1081 | |
| 1082 | 1082 | } else { |
| 1083 | - $payment_form->set_items( $invoice->get_items() ); |
|
| 1083 | + $payment_form->set_items($invoice->get_items()); |
|
| 1084 | 1084 | } |
| 1085 | 1085 | |
| 1086 | 1086 | // Generate the html. |
@@ -1089,7 +1089,7 @@ discard block |
||
| 1089 | 1089 | } |
| 1090 | 1090 | |
| 1091 | 1091 | function wpinv_empty_cart_message() { |
| 1092 | - return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
| 1092 | + return apply_filters('wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __('Your cart is empty.', 'invoicing') . '</span>'); |
|
| 1093 | 1093 | } |
| 1094 | 1094 | |
| 1095 | 1095 | /** |
@@ -1106,76 +1106,76 @@ discard block |
||
| 1106 | 1106 | ) |
| 1107 | 1107 | ); |
| 1108 | 1108 | } |
| 1109 | -add_action( 'wpinv_cart_empty', 'wpinv_empty_checkout_cart' ); |
|
| 1109 | +add_action('wpinv_cart_empty', 'wpinv_empty_checkout_cart'); |
|
| 1110 | 1110 | |
| 1111 | 1111 | /** |
| 1112 | 1112 | * Filters the receipt page. |
| 1113 | 1113 | */ |
| 1114 | -function wpinv_filter_success_page_content( $content ) { |
|
| 1114 | +function wpinv_filter_success_page_content($content) { |
|
| 1115 | 1115 | |
| 1116 | 1116 | // Maybe abort early. |
| 1117 | - if ( is_admin() || ! is_singular() || ! in_the_loop() || ! is_main_query() || is_preview() ) { |
|
| 1117 | + if (is_admin() || !is_singular() || !in_the_loop() || !is_main_query() || is_preview()) { |
|
| 1118 | 1118 | return $content; |
| 1119 | 1119 | } |
| 1120 | 1120 | |
| 1121 | 1121 | // Ensure this is our page. |
| 1122 | - if ( isset( $_GET['payment-confirm'] ) && wpinv_is_success_page() ) { |
|
| 1122 | + if (isset($_GET['payment-confirm']) && wpinv_is_success_page()) { |
|
| 1123 | 1123 | |
| 1124 | - $gateway = sanitize_text_field( $_GET['payment-confirm'] ); |
|
| 1125 | - return apply_filters( "wpinv_payment_confirm_$gateway", $content ); |
|
| 1124 | + $gateway = sanitize_text_field($_GET['payment-confirm']); |
|
| 1125 | + return apply_filters("wpinv_payment_confirm_$gateway", $content); |
|
| 1126 | 1126 | |
| 1127 | 1127 | } |
| 1128 | 1128 | |
| 1129 | 1129 | return $content; |
| 1130 | 1130 | } |
| 1131 | -add_filter( 'the_content', 'wpinv_filter_success_page_content', 99999 ); |
|
| 1131 | +add_filter('the_content', 'wpinv_filter_success_page_content', 99999); |
|
| 1132 | 1132 | |
| 1133 | -function wpinv_invoice_link( $invoice_id ) { |
|
| 1134 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 1133 | +function wpinv_invoice_link($invoice_id) { |
|
| 1134 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 1135 | 1135 | |
| 1136 | - if ( empty( $invoice ) ) { |
|
| 1136 | + if (empty($invoice)) { |
|
| 1137 | 1137 | return NULL; |
| 1138 | 1138 | } |
| 1139 | 1139 | |
| 1140 | - $invoice_link = '<a href="' . esc_url( $invoice->get_view_url() ) . '">' . $invoice->get_number() . '</a>'; |
|
| 1140 | + $invoice_link = '<a href="' . esc_url($invoice->get_view_url()) . '">' . $invoice->get_number() . '</a>'; |
|
| 1141 | 1141 | |
| 1142 | - return apply_filters( 'wpinv_get_invoice_link', $invoice_link, $invoice ); |
|
| 1142 | + return apply_filters('wpinv_get_invoice_link', $invoice_link, $invoice); |
|
| 1143 | 1143 | } |
| 1144 | 1144 | |
| 1145 | -function wpinv_get_invoice_note_line_item( $note, $echo = true ) { |
|
| 1146 | - if ( empty( $note ) ) { |
|
| 1145 | +function wpinv_get_invoice_note_line_item($note, $echo = true) { |
|
| 1146 | + if (empty($note)) { |
|
| 1147 | 1147 | return NULL; |
| 1148 | 1148 | } |
| 1149 | 1149 | |
| 1150 | - if ( is_int( $note ) ) { |
|
| 1151 | - $note = get_comment( $note ); |
|
| 1150 | + if (is_int($note)) { |
|
| 1151 | + $note = get_comment($note); |
|
| 1152 | 1152 | } |
| 1153 | 1153 | |
| 1154 | - if ( !( is_object( $note ) && is_a( $note, 'WP_Comment' ) ) ) { |
|
| 1154 | + if (!(is_object($note) && is_a($note, 'WP_Comment'))) { |
|
| 1155 | 1155 | return NULL; |
| 1156 | 1156 | } |
| 1157 | 1157 | |
| 1158 | - $note_classes = array( 'note' ); |
|
| 1159 | - $note_classes[] = get_comment_meta( $note->comment_ID, '_wpi_customer_note', true ) ? 'customer-note' : ''; |
|
| 1158 | + $note_classes = array('note'); |
|
| 1159 | + $note_classes[] = get_comment_meta($note->comment_ID, '_wpi_customer_note', true) ? 'customer-note' : ''; |
|
| 1160 | 1160 | $note_classes[] = $note->comment_author === 'System' ? 'system-note' : ''; |
| 1161 | - $note_classes = apply_filters( 'wpinv_invoice_note_class', array_filter( $note_classes ), $note ); |
|
| 1162 | - $note_classes = !empty( $note_classes ) ? implode( ' ', $note_classes ) : ''; |
|
| 1161 | + $note_classes = apply_filters('wpinv_invoice_note_class', array_filter($note_classes), $note); |
|
| 1162 | + $note_classes = !empty($note_classes) ? implode(' ', $note_classes) : ''; |
|
| 1163 | 1163 | |
| 1164 | 1164 | ob_start(); |
| 1165 | 1165 | ?> |
| 1166 | - <li rel="<?php echo absint( $note->comment_ID ) ; ?>" class="<?php echo esc_attr( $note_classes ); ?> mb-2"> |
|
| 1166 | + <li rel="<?php echo absint($note->comment_ID); ?>" class="<?php echo esc_attr($note_classes); ?> mb-2"> |
|
| 1167 | 1167 | <div class="note_content"> |
| 1168 | 1168 | |
| 1169 | - <?php echo wptexturize( wp_kses_post( $note->comment_content ) ); ?> |
|
| 1169 | + <?php echo wptexturize(wp_kses_post($note->comment_content)); ?> |
|
| 1170 | 1170 | |
| 1171 | - <?php if ( ! is_admin() ) : ?> |
|
| 1171 | + <?php if (!is_admin()) : ?> |
|
| 1172 | 1172 | <em class="small form-text text-muted mt-0"> |
| 1173 | 1173 | <?php |
| 1174 | 1174 | printf( |
| 1175 | - __( '%1$s - %2$s at %3$s', 'invoicing' ), |
|
| 1175 | + __('%1$s - %2$s at %3$s', 'invoicing'), |
|
| 1176 | 1176 | $note->comment_author, |
| 1177 | - getpaid_format_date_value( $note->comment_date ), |
|
| 1178 | - date_i18n( get_option( 'time_format' ), strtotime( $note->comment_date ) ) |
|
| 1177 | + getpaid_format_date_value($note->comment_date), |
|
| 1178 | + date_i18n(get_option('time_format'), strtotime($note->comment_date)) |
|
| 1179 | 1179 | ); |
| 1180 | 1180 | ?> |
| 1181 | 1181 | </em> |
@@ -1183,21 +1183,21 @@ discard block |
||
| 1183 | 1183 | |
| 1184 | 1184 | </div> |
| 1185 | 1185 | |
| 1186 | - <?php if ( is_admin() ) : ?> |
|
| 1186 | + <?php if (is_admin()) : ?> |
|
| 1187 | 1187 | |
| 1188 | 1188 | <p class="meta px-4 py-2"> |
| 1189 | - <abbr class="exact-date" title="<?php echo esc_attr( $note->comment_date ); ?>"> |
|
| 1189 | + <abbr class="exact-date" title="<?php echo esc_attr($note->comment_date); ?>"> |
|
| 1190 | 1190 | <?php |
| 1191 | 1191 | printf( |
| 1192 | - __( '%1$s - %2$s at %3$s', 'invoicing' ), |
|
| 1192 | + __('%1$s - %2$s at %3$s', 'invoicing'), |
|
| 1193 | 1193 | $note->comment_author, |
| 1194 | - getpaid_format_date_value( $note->comment_date ), |
|
| 1195 | - date_i18n( get_option( 'time_format' ), strtotime( $note->comment_date ) ) |
|
| 1194 | + getpaid_format_date_value($note->comment_date), |
|
| 1195 | + date_i18n(get_option('time_format'), strtotime($note->comment_date)) |
|
| 1196 | 1196 | ); |
| 1197 | 1197 | ?> |
| 1198 | 1198 | </abbr> |
| 1199 | - <?php if ( $note->comment_author !== 'System' && wpinv_current_user_can_manage_invoicing() ) { ?> |
|
| 1200 | - <a href="#" class="delete_note"><?php _e( 'Delete note', 'invoicing' ); ?></a> |
|
| 1199 | + <?php if ($note->comment_author !== 'System' && wpinv_current_user_can_manage_invoicing()) { ?> |
|
| 1200 | + <a href="#" class="delete_note"><?php _e('Delete note', 'invoicing'); ?></a> |
|
| 1201 | 1201 | <?php } ?> |
| 1202 | 1202 | </p> |
| 1203 | 1203 | |
@@ -1206,9 +1206,9 @@ discard block |
||
| 1206 | 1206 | </li> |
| 1207 | 1207 | <?php |
| 1208 | 1208 | $note_content = ob_get_clean(); |
| 1209 | - $note_content = apply_filters( 'wpinv_get_invoice_note_line_item', $note_content, $note, $echo ); |
|
| 1209 | + $note_content = apply_filters('wpinv_get_invoice_note_line_item', $note_content, $note, $echo); |
|
| 1210 | 1210 | |
| 1211 | - if ( $echo ) { |
|
| 1211 | + if ($echo) { |
|
| 1212 | 1212 | echo $note_content; |
| 1213 | 1213 | } else { |
| 1214 | 1214 | return $note_content; |
@@ -1222,21 +1222,21 @@ discard block |
||
| 1222 | 1222 | * @return string |
| 1223 | 1223 | */ |
| 1224 | 1224 | function wpinv_get_policy_text() { |
| 1225 | - $privacy_page_id = get_option( 'wp_page_for_privacy_policy', 0 ); |
|
| 1225 | + $privacy_page_id = get_option('wp_page_for_privacy_policy', 0); |
|
| 1226 | 1226 | |
| 1227 | - $text = wpinv_get_option('invoicing_privacy_checkout_message', sprintf( __( 'Your personal data will be used to process your invoice, payment and for other purposes described in our %s.', 'invoicing' ), '[wpinv_privacy_policy]' )); |
|
| 1227 | + $text = wpinv_get_option('invoicing_privacy_checkout_message', sprintf(__('Your personal data will be used to process your invoice, payment and for other purposes described in our %s.', 'invoicing'), '[wpinv_privacy_policy]')); |
|
| 1228 | 1228 | |
| 1229 | - if(!$privacy_page_id){ |
|
| 1230 | - $privacy_page_id = wpinv_get_option( 'privacy_page', 0 ); |
|
| 1229 | + if (!$privacy_page_id) { |
|
| 1230 | + $privacy_page_id = wpinv_get_option('privacy_page', 0); |
|
| 1231 | 1231 | } |
| 1232 | 1232 | |
| 1233 | - $privacy_link = $privacy_page_id ? '<a href="' . esc_url( get_permalink( $privacy_page_id ) ) . '" class="wpinv-privacy-policy-link" target="_blank">' . __( 'privacy policy', 'invoicing' ) . '</a>' : __( 'privacy policy', 'invoicing' ); |
|
| 1233 | + $privacy_link = $privacy_page_id ? '<a href="' . esc_url(get_permalink($privacy_page_id)) . '" class="wpinv-privacy-policy-link" target="_blank">' . __('privacy policy', 'invoicing') . '</a>' : __('privacy policy', 'invoicing'); |
|
| 1234 | 1234 | |
| 1235 | 1235 | $find_replace = array( |
| 1236 | 1236 | '[wpinv_privacy_policy]' => $privacy_link, |
| 1237 | 1237 | ); |
| 1238 | 1238 | |
| 1239 | - $privacy_text = str_replace( array_keys( $find_replace ), array_values( $find_replace ), $text ); |
|
| 1239 | + $privacy_text = str_replace(array_keys($find_replace), array_values($find_replace), $text); |
|
| 1240 | 1240 | |
| 1241 | 1241 | return wp_kses_post(wpautop($privacy_text)); |
| 1242 | 1242 | } |
@@ -1244,21 +1244,21 @@ discard block |
||
| 1244 | 1244 | function wpinv_oxygen_fix_conflict() { |
| 1245 | 1245 | global $ct_ignore_post_types; |
| 1246 | 1246 | |
| 1247 | - if ( ! is_array( $ct_ignore_post_types ) ) { |
|
| 1247 | + if (!is_array($ct_ignore_post_types)) { |
|
| 1248 | 1248 | $ct_ignore_post_types = array(); |
| 1249 | 1249 | } |
| 1250 | 1250 | |
| 1251 | - $post_types = array( 'wpi_discount', 'wpi_invoice', 'wpi_item', 'wpi_payment_form' ); |
|
| 1251 | + $post_types = array('wpi_discount', 'wpi_invoice', 'wpi_item', 'wpi_payment_form'); |
|
| 1252 | 1252 | |
| 1253 | - foreach ( $post_types as $post_type ) { |
|
| 1253 | + foreach ($post_types as $post_type) { |
|
| 1254 | 1254 | $ct_ignore_post_types[] = $post_type; |
| 1255 | 1255 | |
| 1256 | 1256 | // Ignore post type |
| 1257 | - add_filter( 'pre_option_oxygen_vsb_ignore_post_type_' . $post_type, '__return_true', 999 ); |
|
| 1257 | + add_filter('pre_option_oxygen_vsb_ignore_post_type_' . $post_type, '__return_true', 999); |
|
| 1258 | 1258 | } |
| 1259 | 1259 | |
| 1260 | - remove_filter( 'template_include', 'wpinv_template', 10, 1 ); |
|
| 1261 | - add_filter( 'template_include', 'wpinv_template', 999, 1 ); |
|
| 1260 | + remove_filter('template_include', 'wpinv_template', 10, 1); |
|
| 1261 | + add_filter('template_include', 'wpinv_template', 999, 1); |
|
| 1262 | 1262 | } |
| 1263 | 1263 | |
| 1264 | 1264 | /** |
@@ -1266,10 +1266,10 @@ discard block |
||
| 1266 | 1266 | * |
| 1267 | 1267 | * @param GetPaid_Payment_Form $form |
| 1268 | 1268 | */ |
| 1269 | -function getpaid_display_payment_form( $form ) { |
|
| 1269 | +function getpaid_display_payment_form($form) { |
|
| 1270 | 1270 | |
| 1271 | - if ( is_numeric( $form ) ) { |
|
| 1272 | - $form = new GetPaid_Payment_Form( $form ); |
|
| 1271 | + if (is_numeric($form)) { |
|
| 1272 | + $form = new GetPaid_Payment_Form($form); |
|
| 1273 | 1273 | } |
| 1274 | 1274 | |
| 1275 | 1275 | $form->display(); |
@@ -1279,55 +1279,55 @@ discard block |
||
| 1279 | 1279 | /** |
| 1280 | 1280 | * Helper function to display a item payment form on the frontend. |
| 1281 | 1281 | */ |
| 1282 | -function getpaid_display_item_payment_form( $items ) { |
|
| 1282 | +function getpaid_display_item_payment_form($items) { |
|
| 1283 | 1283 | |
| 1284 | - $form = new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
| 1285 | - $form->set_items( $items ); |
|
| 1284 | + $form = new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
| 1285 | + $form->set_items($items); |
|
| 1286 | 1286 | |
| 1287 | - if ( 0 == count( $form->get_items() ) ) { |
|
| 1287 | + if (0 == count($form->get_items())) { |
|
| 1288 | 1288 | echo aui()->alert( |
| 1289 | 1289 | array( |
| 1290 | 1290 | 'type' => 'warning', |
| 1291 | - 'content' => __( 'No published items found', 'invoicing' ), |
|
| 1291 | + 'content' => __('No published items found', 'invoicing'), |
|
| 1292 | 1292 | ) |
| 1293 | 1293 | ); |
| 1294 | 1294 | return; |
| 1295 | 1295 | } |
| 1296 | 1296 | |
| 1297 | - $form_items = esc_attr( getpaid_convert_items_to_string( $items ) ); |
|
| 1297 | + $form_items = esc_attr(getpaid_convert_items_to_string($items)); |
|
| 1298 | 1298 | $form_items = "<input type='hidden' name='getpaid-form-items' value='$form_items' />"; |
| 1299 | - $form->display( $form_items ); |
|
| 1299 | + $form->display($form_items); |
|
| 1300 | 1300 | } |
| 1301 | 1301 | |
| 1302 | 1302 | /** |
| 1303 | 1303 | * Helper function to display an invoice payment form on the frontend. |
| 1304 | 1304 | */ |
| 1305 | -function getpaid_display_invoice_payment_form( $invoice_id ) { |
|
| 1305 | +function getpaid_display_invoice_payment_form($invoice_id) { |
|
| 1306 | 1306 | |
| 1307 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 1307 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 1308 | 1308 | |
| 1309 | - if ( empty( $invoice ) ) { |
|
| 1309 | + if (empty($invoice)) { |
|
| 1310 | 1310 | echo aui()->alert( |
| 1311 | 1311 | array( |
| 1312 | 1312 | 'type' => 'warning', |
| 1313 | - 'content' => __( 'Invoice not found', 'invoicing' ), |
|
| 1313 | + 'content' => __('Invoice not found', 'invoicing'), |
|
| 1314 | 1314 | ) |
| 1315 | 1315 | ); |
| 1316 | 1316 | return; |
| 1317 | 1317 | } |
| 1318 | 1318 | |
| 1319 | - if ( $invoice->is_paid() ) { |
|
| 1319 | + if ($invoice->is_paid()) { |
|
| 1320 | 1320 | echo aui()->alert( |
| 1321 | 1321 | array( |
| 1322 | 1322 | 'type' => 'warning', |
| 1323 | - 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
| 1323 | + 'content' => __('Invoice has already been paid', 'invoicing'), |
|
| 1324 | 1324 | ) |
| 1325 | 1325 | ); |
| 1326 | 1326 | return; |
| 1327 | 1327 | } |
| 1328 | 1328 | |
| 1329 | - $form = new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
| 1330 | - $form->set_items( $invoice->get_items() ); |
|
| 1329 | + $form = new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
| 1330 | + $form->set_items($invoice->get_items()); |
|
| 1331 | 1331 | |
| 1332 | 1332 | $form->display(); |
| 1333 | 1333 | } |
@@ -1335,23 +1335,23 @@ discard block |
||
| 1335 | 1335 | /** |
| 1336 | 1336 | * Helper function to convert item string to array. |
| 1337 | 1337 | */ |
| 1338 | -function getpaid_convert_items_to_array( $items ) { |
|
| 1339 | - $items = array_filter( array_map( 'trim', explode( ',', $items ) ) ); |
|
| 1338 | +function getpaid_convert_items_to_array($items) { |
|
| 1339 | + $items = array_filter(array_map('trim', explode(',', $items))); |
|
| 1340 | 1340 | $prepared = array(); |
| 1341 | 1341 | |
| 1342 | - foreach ( $items as $item ) { |
|
| 1343 | - $data = array_map( 'trim', explode( '|', $item ) ); |
|
| 1342 | + foreach ($items as $item) { |
|
| 1343 | + $data = array_map('trim', explode('|', $item)); |
|
| 1344 | 1344 | |
| 1345 | - if ( empty( $data[0] ) || ! is_numeric( $data[0] ) ) { |
|
| 1345 | + if (empty($data[0]) || !is_numeric($data[0])) { |
|
| 1346 | 1346 | continue; |
| 1347 | 1347 | } |
| 1348 | 1348 | |
| 1349 | 1349 | $quantity = 1; |
| 1350 | - if ( isset( $data[1] ) && is_numeric( $data[1] ) ) { |
|
| 1350 | + if (isset($data[1]) && is_numeric($data[1])) { |
|
| 1351 | 1351 | $quantity = (float) $data[1]; |
| 1352 | 1352 | } |
| 1353 | 1353 | |
| 1354 | - $prepared[ $data[0] ] = $quantity; |
|
| 1354 | + $prepared[$data[0]] = $quantity; |
|
| 1355 | 1355 | |
| 1356 | 1356 | } |
| 1357 | 1357 | |
@@ -1361,13 +1361,13 @@ discard block |
||
| 1361 | 1361 | /** |
| 1362 | 1362 | * Helper function to convert item array to string. |
| 1363 | 1363 | */ |
| 1364 | -function getpaid_convert_items_to_string( $items ) { |
|
| 1364 | +function getpaid_convert_items_to_string($items) { |
|
| 1365 | 1365 | $prepared = array(); |
| 1366 | 1366 | |
| 1367 | - foreach ( $items as $item => $quantity ) { |
|
| 1367 | + foreach ($items as $item => $quantity) { |
|
| 1368 | 1368 | $prepared[] = "$item|$quantity"; |
| 1369 | 1369 | } |
| 1370 | - return implode( ',', $prepared ); |
|
| 1370 | + return implode(',', $prepared); |
|
| 1371 | 1371 | } |
| 1372 | 1372 | |
| 1373 | 1373 | /** |
@@ -1375,21 +1375,21 @@ discard block |
||
| 1375 | 1375 | * |
| 1376 | 1376 | * Provide a label and one of $form, $items or $invoice. |
| 1377 | 1377 | */ |
| 1378 | -function getpaid_get_payment_button( $label, $form = null, $items = null, $invoice = null ) { |
|
| 1379 | - $label = sanitize_text_field( $label ); |
|
| 1378 | +function getpaid_get_payment_button($label, $form = null, $items = null, $invoice = null) { |
|
| 1379 | + $label = sanitize_text_field($label); |
|
| 1380 | 1380 | |
| 1381 | - if ( ! empty( $form ) ) { |
|
| 1382 | - $form = esc_attr( $form ); |
|
| 1381 | + if (!empty($form)) { |
|
| 1382 | + $form = esc_attr($form); |
|
| 1383 | 1383 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-form='$form'>$label</button>"; |
| 1384 | 1384 | } |
| 1385 | 1385 | |
| 1386 | - if ( ! empty( $items ) ) { |
|
| 1387 | - $items = esc_attr( $items ); |
|
| 1386 | + if (!empty($items)) { |
|
| 1387 | + $items = esc_attr($items); |
|
| 1388 | 1388 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-item='$items'>$label</button>"; |
| 1389 | 1389 | } |
| 1390 | 1390 | |
| 1391 | - if ( ! empty( $invoice ) ) { |
|
| 1392 | - $invoice = esc_attr( $invoice ); |
|
| 1391 | + if (!empty($invoice)) { |
|
| 1392 | + $invoice = esc_attr($invoice); |
|
| 1393 | 1393 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-invoice='$invoice'>$label</button>"; |
| 1394 | 1394 | } |
| 1395 | 1395 | |
@@ -1400,17 +1400,17 @@ discard block |
||
| 1400 | 1400 | * |
| 1401 | 1401 | * @param WPInv_Invoice $invoice |
| 1402 | 1402 | */ |
| 1403 | -function getpaid_the_invoice_description( $invoice ) { |
|
| 1403 | +function getpaid_the_invoice_description($invoice) { |
|
| 1404 | 1404 | $description = $invoice->get_description(); |
| 1405 | 1405 | |
| 1406 | - if ( empty( $description ) ) { |
|
| 1406 | + if (empty($description)) { |
|
| 1407 | 1407 | return; |
| 1408 | 1408 | } |
| 1409 | 1409 | |
| 1410 | - $description = wp_kses_post( $description ); |
|
| 1410 | + $description = wp_kses_post($description); |
|
| 1411 | 1411 | echo "<small class='getpaid-invoice-description text-dark p-2 form-text' style='margin-bottom: 20px; border-left: 2px solid #2196F3;'><em>$description</em></small>"; |
| 1412 | 1412 | } |
| 1413 | -add_action( 'getpaid_invoice_line_items', 'getpaid_the_invoice_description', 100 ); |
|
| 1413 | +add_action('getpaid_invoice_line_items', 'getpaid_the_invoice_description', 100); |
|
| 1414 | 1414 | |
| 1415 | 1415 | /** |
| 1416 | 1416 | * Render element on a form. |
@@ -1418,60 +1418,60 @@ discard block |
||
| 1418 | 1418 | * @param array $element |
| 1419 | 1419 | * @param GetPaid_Payment_Form $form |
| 1420 | 1420 | */ |
| 1421 | -function getpaid_payment_form_element( $element, $form ) { |
|
| 1421 | +function getpaid_payment_form_element($element, $form) { |
|
| 1422 | 1422 | |
| 1423 | 1423 | // Set up the args. |
| 1424 | - $element_type = trim( $element['type'] ); |
|
| 1424 | + $element_type = trim($element['type']); |
|
| 1425 | 1425 | $element['form'] = $form; |
| 1426 | - extract( $element ); |
|
| 1426 | + extract($element); |
|
| 1427 | 1427 | |
| 1428 | 1428 | // Try to locate the appropriate template. |
| 1429 | - $located = wpinv_locate_template( "payment-forms/elements/$element_type.php" ); |
|
| 1429 | + $located = wpinv_locate_template("payment-forms/elements/$element_type.php"); |
|
| 1430 | 1430 | |
| 1431 | 1431 | // Abort if this is not our element. |
| 1432 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
| 1432 | + if (empty($located) || !file_exists($located)) { |
|
| 1433 | 1433 | return; |
| 1434 | 1434 | } |
| 1435 | 1435 | |
| 1436 | 1436 | // Generate the class and id of the element. |
| 1437 | - $wrapper_class = 'getpaid-payment-form-element-' . trim( esc_attr( $element_type ) ); |
|
| 1438 | - $id = isset( $id ) ? $id : uniqid( 'gp' ); |
|
| 1437 | + $wrapper_class = 'getpaid-payment-form-element-' . trim(esc_attr($element_type)); |
|
| 1438 | + $id = isset($id) ? $id : uniqid('gp'); |
|
| 1439 | 1439 | |
| 1440 | 1440 | // Echo the opening wrapper. |
| 1441 | 1441 | echo "<div class='getpaid-payment-form-element $wrapper_class'>"; |
| 1442 | 1442 | |
| 1443 | 1443 | // Fires before displaying a given element type's content. |
| 1444 | - do_action( "getpaid_before_payment_form_{$element_type}_element", $element, $form ); |
|
| 1444 | + do_action("getpaid_before_payment_form_{$element_type}_element", $element, $form); |
|
| 1445 | 1445 | |
| 1446 | 1446 | // Include the template for the element. |
| 1447 | 1447 | include $located; |
| 1448 | 1448 | |
| 1449 | 1449 | // Fires after displaying a given element type's content. |
| 1450 | - do_action( "getpaid_payment_form_{$element_type}_element", $element, $form ); |
|
| 1450 | + do_action("getpaid_payment_form_{$element_type}_element", $element, $form); |
|
| 1451 | 1451 | |
| 1452 | 1452 | // Echo the closing wrapper. |
| 1453 | 1453 | echo '</div>'; |
| 1454 | 1454 | } |
| 1455 | -add_action( 'getpaid_payment_form_element', 'getpaid_payment_form_element', 10, 2 ); |
|
| 1455 | +add_action('getpaid_payment_form_element', 'getpaid_payment_form_element', 10, 2); |
|
| 1456 | 1456 | |
| 1457 | 1457 | /** |
| 1458 | 1458 | * Render an element's edit page. |
| 1459 | 1459 | * |
| 1460 | 1460 | * @param WP_Post $post |
| 1461 | 1461 | */ |
| 1462 | -function getpaid_payment_form_edit_element_template( $post ) { |
|
| 1462 | +function getpaid_payment_form_edit_element_template($post) { |
|
| 1463 | 1463 | |
| 1464 | 1464 | // Retrieve all elements. |
| 1465 | - $all_elements = wp_list_pluck( wpinv_get_data( 'payment-form-elements' ), 'type' ); |
|
| 1465 | + $all_elements = wp_list_pluck(wpinv_get_data('payment-form-elements'), 'type'); |
|
| 1466 | 1466 | |
| 1467 | - foreach ( $all_elements as $element ) { |
|
| 1467 | + foreach ($all_elements as $element) { |
|
| 1468 | 1468 | |
| 1469 | 1469 | // Try to locate the appropriate template. |
| 1470 | - $element = sanitize_key( $element ); |
|
| 1471 | - $located = wpinv_locate_template( "payment-forms-admin/edit/$element.php" ); |
|
| 1470 | + $element = sanitize_key($element); |
|
| 1471 | + $located = wpinv_locate_template("payment-forms-admin/edit/$element.php"); |
|
| 1472 | 1472 | |
| 1473 | 1473 | // Continue if this is not our element. |
| 1474 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
| 1474 | + if (empty($located) || !file_exists($located)) { |
|
| 1475 | 1475 | continue; |
| 1476 | 1476 | } |
| 1477 | 1477 | |
@@ -1482,7 +1482,7 @@ discard block |
||
| 1482 | 1482 | } |
| 1483 | 1483 | |
| 1484 | 1484 | } |
| 1485 | -add_action( 'getpaid_payment_form_edit_element_template', 'getpaid_payment_form_edit_element_template' ); |
|
| 1485 | +add_action('getpaid_payment_form_edit_element_template', 'getpaid_payment_form_edit_element_template'); |
|
| 1486 | 1486 | |
| 1487 | 1487 | /** |
| 1488 | 1488 | * Render an element's preview. |
@@ -1491,16 +1491,16 @@ discard block |
||
| 1491 | 1491 | function getpaid_payment_form_render_element_preview_template() { |
| 1492 | 1492 | |
| 1493 | 1493 | // Retrieve all elements. |
| 1494 | - $all_elements = wp_list_pluck( wpinv_get_data( 'payment-form-elements' ), 'type' ); |
|
| 1494 | + $all_elements = wp_list_pluck(wpinv_get_data('payment-form-elements'), 'type'); |
|
| 1495 | 1495 | |
| 1496 | - foreach ( $all_elements as $element ) { |
|
| 1496 | + foreach ($all_elements as $element) { |
|
| 1497 | 1497 | |
| 1498 | 1498 | // Try to locate the appropriate template. |
| 1499 | - $element = sanitize_key( $element ); |
|
| 1500 | - $located = wpinv_locate_template( "payment-forms-admin/previews/$element.php" ); |
|
| 1499 | + $element = sanitize_key($element); |
|
| 1500 | + $located = wpinv_locate_template("payment-forms-admin/previews/$element.php"); |
|
| 1501 | 1501 | |
| 1502 | 1502 | // Continue if this is not our element. |
| 1503 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
| 1503 | + if (empty($located) || !file_exists($located)) { |
|
| 1504 | 1504 | continue; |
| 1505 | 1505 | } |
| 1506 | 1506 | |
@@ -1511,7 +1511,7 @@ discard block |
||
| 1511 | 1511 | } |
| 1512 | 1512 | |
| 1513 | 1513 | } |
| 1514 | -add_action( 'wpinv_payment_form_render_element_template', 'getpaid_payment_form_render_element_preview_template' ); |
|
| 1514 | +add_action('wpinv_payment_form_render_element_template', 'getpaid_payment_form_render_element_preview_template'); |
|
| 1515 | 1515 | |
| 1516 | 1516 | /** |
| 1517 | 1517 | * Shows a list of gateways that support recurring payments. |
@@ -1519,17 +1519,17 @@ discard block |
||
| 1519 | 1519 | function wpinv_get_recurring_gateways_text() { |
| 1520 | 1520 | $gateways = array(); |
| 1521 | 1521 | |
| 1522 | - foreach ( wpinv_get_payment_gateways() as $key => $gateway ) { |
|
| 1523 | - if ( wpinv_gateway_support_subscription( $key ) ) { |
|
| 1524 | - $gateways[] = sanitize_text_field( $gateway['admin_label'] ); |
|
| 1522 | + foreach (wpinv_get_payment_gateways() as $key => $gateway) { |
|
| 1523 | + if (wpinv_gateway_support_subscription($key)) { |
|
| 1524 | + $gateways[] = sanitize_text_field($gateway['admin_label']); |
|
| 1525 | 1525 | } |
| 1526 | 1526 | } |
| 1527 | 1527 | |
| 1528 | - if ( empty( $gateways ) ) { |
|
| 1529 | - return "<span class='form-text text-danger'>" . __( 'No active gateways support subscription payments.', 'invoicing' ) ."</span>"; |
|
| 1528 | + if (empty($gateways)) { |
|
| 1529 | + return "<span class='form-text text-danger'>" . __('No active gateways support subscription payments.', 'invoicing') . "</span>"; |
|
| 1530 | 1530 | } |
| 1531 | 1531 | |
| 1532 | - return "<span class='form-text text-muted'>" . wp_sprintf( __( 'Subscription payments only supported by: %s', 'invoicing' ), implode( ', ', $gateways ) ) ."</span>"; |
|
| 1532 | + return "<span class='form-text text-muted'>" . wp_sprintf(__('Subscription payments only supported by: %s', 'invoicing'), implode(', ', $gateways)) . "</span>"; |
|
| 1533 | 1533 | |
| 1534 | 1534 | } |
| 1535 | 1535 | |
@@ -1539,7 +1539,7 @@ discard block |
||
| 1539 | 1539 | * @return GetPaid_Template |
| 1540 | 1540 | */ |
| 1541 | 1541 | function getpaid_template() { |
| 1542 | - return getpaid()->get( 'template' ); |
|
| 1542 | + return getpaid()->get('template'); |
|
| 1543 | 1543 | } |
| 1544 | 1544 | |
| 1545 | 1545 | /** |
@@ -1548,8 +1548,8 @@ discard block |
||
| 1548 | 1548 | * @param array args |
| 1549 | 1549 | * @return string |
| 1550 | 1550 | */ |
| 1551 | -function getpaid_paginate_links( $args ) { |
|
| 1552 | - return str_replace( 'page-link dots', 'page-link text-dark', aui()->pagination( $args ) ); |
|
| 1551 | +function getpaid_paginate_links($args) { |
|
| 1552 | + return str_replace('page-link dots', 'page-link text-dark', aui()->pagination($args)); |
|
| 1553 | 1553 | } |
| 1554 | 1554 | |
| 1555 | 1555 | /** |
@@ -1559,21 +1559,21 @@ discard block |
||
| 1559 | 1559 | * @param string state |
| 1560 | 1560 | * @return string |
| 1561 | 1561 | */ |
| 1562 | -function getpaid_get_states_select_markup( $country, $state, $placeholder, $label, $help_text, $required = false, $wrapper_class = 'col-12', $field_name = 'wpinv_state' ) { |
|
| 1562 | +function getpaid_get_states_select_markup($country, $state, $placeholder, $label, $help_text, $required = false, $wrapper_class = 'col-12', $field_name = 'wpinv_state') { |
|
| 1563 | 1563 | |
| 1564 | - $states = wpinv_get_country_states( $country ); |
|
| 1565 | - $uniqid = uniqid( '_' ); |
|
| 1564 | + $states = wpinv_get_country_states($country); |
|
| 1565 | + $uniqid = uniqid('_'); |
|
| 1566 | 1566 | |
| 1567 | - if ( ! empty( $states ) ) { |
|
| 1567 | + if (!empty($states)) { |
|
| 1568 | 1568 | |
| 1569 | - return aui()->select( array( |
|
| 1569 | + return aui()->select(array( |
|
| 1570 | 1570 | 'options' => $states, |
| 1571 | - 'name' => esc_attr( $field_name ), |
|
| 1572 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 1573 | - 'value' => sanitize_text_field( $state ), |
|
| 1571 | + 'name' => esc_attr($field_name), |
|
| 1572 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
| 1573 | + 'value' => sanitize_text_field($state), |
|
| 1574 | 1574 | 'placeholder' => $placeholder, |
| 1575 | 1575 | 'required' => $required, |
| 1576 | - 'label' => wp_kses_post( $label ), |
|
| 1576 | + 'label' => wp_kses_post($label), |
|
| 1577 | 1577 | 'label_type' => 'vertical', |
| 1578 | 1578 | 'help_text' => $help_text, |
| 1579 | 1579 | 'class' => 'getpaid-address-field wpinv_state', |
@@ -1588,14 +1588,14 @@ discard block |
||
| 1588 | 1588 | |
| 1589 | 1589 | return aui()->input( |
| 1590 | 1590 | array( |
| 1591 | - 'name' => esc_attr( $field_name ), |
|
| 1592 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 1591 | + 'name' => esc_attr($field_name), |
|
| 1592 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
| 1593 | 1593 | 'placeholder' => $placeholder, |
| 1594 | 1594 | 'required' => $required, |
| 1595 | - 'label' => wp_kses_post( $label ), |
|
| 1595 | + 'label' => wp_kses_post($label), |
|
| 1596 | 1596 | 'label_type' => 'vertical', |
| 1597 | 1597 | 'help_text' => $help_text, |
| 1598 | - 'value' => sanitize_text_field( $state ), |
|
| 1598 | + 'value' => sanitize_text_field($state), |
|
| 1599 | 1599 | 'class' => 'getpaid-address-field wpinv_state', |
| 1600 | 1600 | 'wrap_class' => "$wrapper_class getpaid-address-field-wrapper__state", |
| 1601 | 1601 | 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__state', |
@@ -1613,16 +1613,16 @@ discard block |
||
| 1613 | 1613 | * @param array $element |
| 1614 | 1614 | * @return string |
| 1615 | 1615 | */ |
| 1616 | -function getpaid_get_form_element_grid_class( $element ) { |
|
| 1616 | +function getpaid_get_form_element_grid_class($element) { |
|
| 1617 | 1617 | |
| 1618 | 1618 | $class = "col-12"; |
| 1619 | - $width = empty( $element['grid_width'] ) ? 'full' : $element['grid_width']; |
|
| 1619 | + $width = empty($element['grid_width']) ? 'full' : $element['grid_width']; |
|
| 1620 | 1620 | |
| 1621 | - if ( $width == 'half' ) { |
|
| 1621 | + if ($width == 'half') { |
|
| 1622 | 1622 | $class = "col-12 col-md-6"; |
| 1623 | 1623 | } |
| 1624 | 1624 | |
| 1625 | - if ( $width == 'third' ) { |
|
| 1625 | + if ($width == 'third') { |
|
| 1626 | 1626 | $class = "col-12 col-md-4"; |
| 1627 | 1627 | } |
| 1628 | 1628 | |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * @package Invoicing |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -defined( 'ABSPATH' ) || exit; |
|
| 9 | +defined('ABSPATH') || exit; |
|
| 10 | 10 | |
| 11 | 11 | /** |
| 12 | 12 | * WPInv_Ajax class. |
@@ -17,8 +17,8 @@ discard block |
||
| 17 | 17 | * Hook in ajax handlers. |
| 18 | 18 | */ |
| 19 | 19 | public static function init() { |
| 20 | - add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
| 21 | - add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
| 20 | + add_action('init', array(__CLASS__, 'define_ajax'), 0); |
|
| 21 | + add_action('template_redirect', array(__CLASS__, 'do_wpinv_ajax'), 0); |
|
| 22 | 22 | self::add_ajax_events(); |
| 23 | 23 | } |
| 24 | 24 | |
@@ -27,11 +27,11 @@ discard block |
||
| 27 | 27 | */ |
| 28 | 28 | public static function define_ajax() { |
| 29 | 29 | |
| 30 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
| 31 | - getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
| 32 | - getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
| 33 | - if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
| 34 | - /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
| 30 | + if (!empty($_GET['wpinv-ajax'])) { |
|
| 31 | + getpaid_maybe_define_constant('DOING_AJAX', true); |
|
| 32 | + getpaid_maybe_define_constant('WPInv_DOING_AJAX', true); |
|
| 33 | + if (!WP_DEBUG || (WP_DEBUG && !WP_DEBUG_DISPLAY)) { |
|
| 34 | + /** @scrutinizer ignore-unhandled */ @ini_set('display_errors', 0); |
|
| 35 | 35 | } |
| 36 | 36 | $GLOBALS['wpdb']->hide_errors(); |
| 37 | 37 | } |
@@ -44,13 +44,13 @@ discard block |
||
| 44 | 44 | * @since 1.0.18 |
| 45 | 45 | */ |
| 46 | 46 | private static function wpinv_ajax_headers() { |
| 47 | - if ( ! headers_sent() ) { |
|
| 47 | + if (!headers_sent()) { |
|
| 48 | 48 | send_origin_headers(); |
| 49 | 49 | send_nosniff_header(); |
| 50 | 50 | nocache_headers(); |
| 51 | - header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
| 52 | - header( 'X-Robots-Tag: noindex' ); |
|
| 53 | - status_header( 200 ); |
|
| 51 | + header('Content-Type: text/html; charset=' . get_option('blog_charset')); |
|
| 52 | + header('X-Robots-Tag: noindex'); |
|
| 53 | + status_header(200); |
|
| 54 | 54 | } |
| 55 | 55 | } |
| 56 | 56 | |
@@ -60,16 +60,16 @@ discard block |
||
| 60 | 60 | public static function do_wpinv_ajax() { |
| 61 | 61 | global $wp_query; |
| 62 | 62 | |
| 63 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
| 64 | - $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
| 63 | + if (!empty($_GET['wpinv-ajax'])) { |
|
| 64 | + $wp_query->set('wpinv-ajax', sanitize_text_field(wp_unslash($_GET['wpinv-ajax']))); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - $action = $wp_query->get( 'wpinv-ajax' ); |
|
| 67 | + $action = $wp_query->get('wpinv-ajax'); |
|
| 68 | 68 | |
| 69 | - if ( $action ) { |
|
| 69 | + if ($action) { |
|
| 70 | 70 | self::wpinv_ajax_headers(); |
| 71 | - $action = sanitize_text_field( $action ); |
|
| 72 | - do_action( 'wpinv_ajax_' . $action ); |
|
| 71 | + $action = sanitize_text_field($action); |
|
| 72 | + do_action('wpinv_ajax_' . $action); |
|
| 73 | 73 | wp_die(); |
| 74 | 74 | } |
| 75 | 75 | |
@@ -102,36 +102,36 @@ discard block |
||
| 102 | 102 | 'payment_form_refresh_prices' => true, |
| 103 | 103 | ); |
| 104 | 104 | |
| 105 | - foreach ( $ajax_events as $ajax_event => $nopriv ) { |
|
| 106 | - add_action( 'wp_ajax_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
| 107 | - add_action( 'wp_ajax_getpaid_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
| 105 | + foreach ($ajax_events as $ajax_event => $nopriv) { |
|
| 106 | + add_action('wp_ajax_wpinv_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
| 107 | + add_action('wp_ajax_getpaid_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
| 108 | 108 | |
| 109 | - if ( $nopriv ) { |
|
| 110 | - add_action( 'wp_ajax_nopriv_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
| 111 | - add_action( 'wp_ajax_nopriv_getpaid_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
| 112 | - add_action( 'wpinv_ajax_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
| 109 | + if ($nopriv) { |
|
| 110 | + add_action('wp_ajax_nopriv_wpinv_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
| 111 | + add_action('wp_ajax_nopriv_getpaid_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
| 112 | + add_action('wpinv_ajax_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
| 113 | 113 | } |
| 114 | 114 | } |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | public static function add_note() { |
| 118 | - check_ajax_referer( 'add-invoice-note', '_nonce' ); |
|
| 118 | + check_ajax_referer('add-invoice-note', '_nonce'); |
|
| 119 | 119 | |
| 120 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 120 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 121 | 121 | die(-1); |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - $post_id = absint( $_POST['post_id'] ); |
|
| 125 | - $note = wp_kses_post( trim( stripslashes( $_POST['note'] ) ) ); |
|
| 126 | - $note_type = sanitize_text_field( $_POST['note_type'] ); |
|
| 124 | + $post_id = absint($_POST['post_id']); |
|
| 125 | + $note = wp_kses_post(trim(stripslashes($_POST['note']))); |
|
| 126 | + $note_type = sanitize_text_field($_POST['note_type']); |
|
| 127 | 127 | |
| 128 | 128 | $is_customer_note = $note_type == 'customer' ? 1 : 0; |
| 129 | 129 | |
| 130 | - if ( $post_id > 0 ) { |
|
| 131 | - $note_id = wpinv_insert_payment_note( $post_id, $note, $is_customer_note ); |
|
| 130 | + if ($post_id > 0) { |
|
| 131 | + $note_id = wpinv_insert_payment_note($post_id, $note, $is_customer_note); |
|
| 132 | 132 | |
| 133 | - if ( $note_id > 0 && !is_wp_error( $note_id ) ) { |
|
| 134 | - wpinv_get_invoice_note_line_item( $note_id ); |
|
| 133 | + if ($note_id > 0 && !is_wp_error($note_id)) { |
|
| 134 | + wpinv_get_invoice_note_line_item($note_id); |
|
| 135 | 135 | } |
| 136 | 136 | } |
| 137 | 137 | |
@@ -139,16 +139,16 @@ discard block |
||
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | public static function delete_note() { |
| 142 | - check_ajax_referer( 'delete-invoice-note', '_nonce' ); |
|
| 142 | + check_ajax_referer('delete-invoice-note', '_nonce'); |
|
| 143 | 143 | |
| 144 | - if ( !wpinv_current_user_can_manage_invoicing() ) { |
|
| 144 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 145 | 145 | die(-1); |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - $note_id = (int)$_POST['note_id']; |
|
| 148 | + $note_id = (int) $_POST['note_id']; |
|
| 149 | 149 | |
| 150 | - if ( $note_id > 0 ) { |
|
| 151 | - wp_delete_comment( $note_id, true ); |
|
| 150 | + if ($note_id > 0) { |
|
| 151 | + wp_delete_comment($note_id, true); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | die(); |
@@ -166,34 +166,34 @@ discard block |
||
| 166 | 166 | public static function get_billing_details() { |
| 167 | 167 | |
| 168 | 168 | // Verify nonce. |
| 169 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 169 | + check_ajax_referer('wpinv-nonce'); |
|
| 170 | 170 | |
| 171 | 171 | // Can the user manage the plugin? |
| 172 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 172 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 173 | 173 | die(-1); |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | // Do we have a user id? |
| 177 | 177 | $user_id = $_GET['user_id']; |
| 178 | 178 | |
| 179 | - if ( empty( $user_id ) || ! is_numeric( $user_id ) ) { |
|
| 179 | + if (empty($user_id) || !is_numeric($user_id)) { |
|
| 180 | 180 | die(-1); |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | // Fetch the billing details. |
| 184 | - $billing_details = wpinv_get_user_address( $user_id ); |
|
| 185 | - $billing_details = apply_filters( 'wpinv_ajax_billing_details', $billing_details, $user_id ); |
|
| 184 | + $billing_details = wpinv_get_user_address($user_id); |
|
| 185 | + $billing_details = apply_filters('wpinv_ajax_billing_details', $billing_details, $user_id); |
|
| 186 | 186 | |
| 187 | 187 | // unset the user id and email. |
| 188 | - $to_ignore = array( 'user_id', 'email' ); |
|
| 188 | + $to_ignore = array('user_id', 'email'); |
|
| 189 | 189 | |
| 190 | - foreach ( $to_ignore as $key ) { |
|
| 191 | - if ( isset( $billing_details[ $key ] ) ) { |
|
| 192 | - unset( $billing_details[ $key ] ); |
|
| 190 | + foreach ($to_ignore as $key) { |
|
| 191 | + if (isset($billing_details[$key])) { |
|
| 192 | + unset($billing_details[$key]); |
|
| 193 | 193 | } |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - wp_send_json_success( $billing_details ); |
|
| 196 | + wp_send_json_success($billing_details); |
|
| 197 | 197 | |
| 198 | 198 | } |
| 199 | 199 | |
@@ -203,47 +203,47 @@ discard block |
||
| 203 | 203 | public static function check_new_user_email() { |
| 204 | 204 | |
| 205 | 205 | // Verify nonce. |
| 206 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 206 | + check_ajax_referer('wpinv-nonce'); |
|
| 207 | 207 | |
| 208 | 208 | // Can the user manage the plugin? |
| 209 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 209 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 210 | 210 | die(-1); |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | // We need an email address. |
| 214 | - if ( empty( $_GET['email'] ) ) { |
|
| 215 | - _e( "Provide the new user's email address", 'invoicing' ); |
|
| 214 | + if (empty($_GET['email'])) { |
|
| 215 | + _e("Provide the new user's email address", 'invoicing'); |
|
| 216 | 216 | exit; |
| 217 | 217 | } |
| 218 | 218 | |
| 219 | 219 | // Ensure the email is valid. |
| 220 | - $email = sanitize_text_field( $_GET['email'] ); |
|
| 221 | - if ( ! is_email( $email ) ) { |
|
| 222 | - _e( 'Invalid email address', 'invoicing' ); |
|
| 220 | + $email = sanitize_text_field($_GET['email']); |
|
| 221 | + if (!is_email($email)) { |
|
| 222 | + _e('Invalid email address', 'invoicing'); |
|
| 223 | 223 | exit; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | // And it does not exist. |
| 227 | - if ( email_exists( $email ) ) { |
|
| 228 | - _e( 'A user with this email address already exists', 'invoicing' ); |
|
| 227 | + if (email_exists($email)) { |
|
| 228 | + _e('A user with this email address already exists', 'invoicing'); |
|
| 229 | 229 | exit; |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | - wp_send_json_success( true ); |
|
| 232 | + wp_send_json_success(true); |
|
| 233 | 233 | } |
| 234 | 234 | |
| 235 | 235 | public static function run_tool() { |
| 236 | - check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
|
| 237 | - if ( !wpinv_current_user_can_manage_invoicing() ) { |
|
| 236 | + check_ajax_referer('wpinv-nonce', '_nonce'); |
|
| 237 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 238 | 238 | die(-1); |
| 239 | 239 | } |
| 240 | 240 | |
| 241 | - $tool = sanitize_text_field( $_POST['tool'] ); |
|
| 241 | + $tool = sanitize_text_field($_POST['tool']); |
|
| 242 | 242 | |
| 243 | - do_action( 'wpinv_run_tool' ); |
|
| 243 | + do_action('wpinv_run_tool'); |
|
| 244 | 244 | |
| 245 | - if ( !empty( $tool ) ) { |
|
| 246 | - do_action( 'wpinv_tool_' . $tool ); |
|
| 245 | + if (!empty($tool)) { |
|
| 246 | + do_action('wpinv_tool_' . $tool); |
|
| 247 | 247 | } |
| 248 | 248 | } |
| 249 | 249 | |
@@ -253,27 +253,27 @@ discard block |
||
| 253 | 253 | public static function get_payment_form() { |
| 254 | 254 | |
| 255 | 255 | // Check nonce. |
| 256 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
| 256 | + check_ajax_referer('getpaid_form_nonce'); |
|
| 257 | 257 | |
| 258 | 258 | // Is the request set up correctly? |
| 259 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
| 259 | + if (empty($_GET['form']) && empty($_GET['item'])) { |
|
| 260 | 260 | echo aui()->alert( |
| 261 | 261 | array( |
| 262 | 262 | 'type' => 'warning', |
| 263 | - 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
| 263 | + 'content' => __('No payment form or item provided', 'invoicing'), |
|
| 264 | 264 | ) |
| 265 | 265 | ); |
| 266 | 266 | exit; |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | 269 | // Payment form or button? |
| 270 | - if ( ! empty( $_GET['form'] ) ) { |
|
| 271 | - getpaid_display_payment_form( urldecode( $_GET['form'] ) ); |
|
| 272 | - } else if( ! empty( $_GET['invoice'] ) ) { |
|
| 273 | - getpaid_display_invoice_payment_form( urldecode( $_GET['invoice'] ) ); |
|
| 270 | + if (!empty($_GET['form'])) { |
|
| 271 | + getpaid_display_payment_form(urldecode($_GET['form'])); |
|
| 272 | + } else if (!empty($_GET['invoice'])) { |
|
| 273 | + getpaid_display_invoice_payment_form(urldecode($_GET['invoice'])); |
|
| 274 | 274 | } else { |
| 275 | - $items = getpaid_convert_items_to_array( urldecode( $_GET['item'] ) ); |
|
| 276 | - getpaid_display_item_payment_form( $items ); |
|
| 275 | + $items = getpaid_convert_items_to_array(urldecode($_GET['item'])); |
|
| 276 | + getpaid_display_item_payment_form($items); |
|
| 277 | 277 | } |
| 278 | 278 | |
| 279 | 279 | exit; |
@@ -288,17 +288,17 @@ discard block |
||
| 288 | 288 | public static function payment_form() { |
| 289 | 289 | |
| 290 | 290 | // Check nonce. |
| 291 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
| 291 | + check_ajax_referer('getpaid_form_nonce'); |
|
| 292 | 292 | |
| 293 | 293 | // ... form fields... |
| 294 | - if ( empty( $_POST['getpaid_payment_form_submission'] ) ) { |
|
| 295 | - _e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
| 294 | + if (empty($_POST['getpaid_payment_form_submission'])) { |
|
| 295 | + _e('Error: Reload the page and try again.', 'invoicing'); |
|
| 296 | 296 | exit; |
| 297 | 297 | } |
| 298 | 298 | |
| 299 | 299 | // Process the payment form. |
| 300 | - $checkout_class = apply_filters( 'getpaid_checkout_class', 'GetPaid_Checkout' ); |
|
| 301 | - $checkout = new $checkout_class( new GetPaid_Payment_Form_Submission() ); |
|
| 300 | + $checkout_class = apply_filters('getpaid_checkout_class', 'GetPaid_Checkout'); |
|
| 301 | + $checkout = new $checkout_class(new GetPaid_Payment_Form_Submission()); |
|
| 302 | 302 | $checkout->process_checkout(); |
| 303 | 303 | |
| 304 | 304 | exit; |
@@ -311,55 +311,55 @@ discard block |
||
| 311 | 311 | */ |
| 312 | 312 | public static function get_payment_form_states_field() { |
| 313 | 313 | |
| 314 | - if ( empty( $_GET['country'] ) || empty( $_GET['form'] ) ) { |
|
| 314 | + if (empty($_GET['country']) || empty($_GET['form'])) { |
|
| 315 | 315 | exit; |
| 316 | 316 | } |
| 317 | 317 | |
| 318 | - $elements = getpaid_get_payment_form_elements( $_GET['form'] ); |
|
| 318 | + $elements = getpaid_get_payment_form_elements($_GET['form']); |
|
| 319 | 319 | |
| 320 | - if ( empty( $elements ) ) { |
|
| 320 | + if (empty($elements)) { |
|
| 321 | 321 | exit; |
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | $address_fields = array(); |
| 325 | - foreach ( $elements as $element ) { |
|
| 326 | - if ( 'address' === $element['type'] ) { |
|
| 325 | + foreach ($elements as $element) { |
|
| 326 | + if ('address' === $element['type']) { |
|
| 327 | 327 | $address_fields = $element; |
| 328 | 328 | break; |
| 329 | 329 | } |
| 330 | 330 | } |
| 331 | 331 | |
| 332 | - if ( empty( $address_fields ) ) { |
|
| 332 | + if (empty($address_fields)) { |
|
| 333 | 333 | exit; |
| 334 | 334 | } |
| 335 | 335 | |
| 336 | - foreach ( $address_fields['fields'] as $address_field ) { |
|
| 336 | + foreach ($address_fields['fields'] as $address_field) { |
|
| 337 | 337 | |
| 338 | - if ( 'wpinv_state' == $address_field['name'] ) { |
|
| 338 | + if ('wpinv_state' == $address_field['name']) { |
|
| 339 | 339 | |
| 340 | - $wrap_class = getpaid_get_form_element_grid_class( $address_field ); |
|
| 341 | - $wrap_class = esc_attr( "$wrap_class getpaid-address-field-wrapper" ); |
|
| 342 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
| 343 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
| 344 | - $value = is_user_logged_in() ? get_user_meta( get_current_user_id(), '_wpinv_state', true ) : ''; |
|
| 345 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
| 340 | + $wrap_class = getpaid_get_form_element_grid_class($address_field); |
|
| 341 | + $wrap_class = esc_attr("$wrap_class getpaid-address-field-wrapper"); |
|
| 342 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
| 343 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
| 344 | + $value = is_user_logged_in() ? get_user_meta(get_current_user_id(), '_wpinv_state', true) : ''; |
|
| 345 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
| 346 | 346 | |
| 347 | - if ( ! empty( $address_field['required'] ) ) { |
|
| 347 | + if (!empty($address_field['required'])) { |
|
| 348 | 348 | $label .= "<span class='text-danger'> *</span>"; |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | - $html = getpaid_get_states_select_markup ( |
|
| 352 | - sanitize_text_field( $_GET['country'] ), |
|
| 351 | + $html = getpaid_get_states_select_markup( |
|
| 352 | + sanitize_text_field($_GET['country']), |
|
| 353 | 353 | $value, |
| 354 | 354 | $placeholder, |
| 355 | 355 | $label, |
| 356 | 356 | $description, |
| 357 | - ! empty( $address_field['required'] ), |
|
| 357 | + !empty($address_field['required']), |
|
| 358 | 358 | $wrap_class, |
| 359 | - wpinv_clean( $_GET['name'] ) |
|
| 359 | + wpinv_clean($_GET['name']) |
|
| 360 | 360 | ); |
| 361 | 361 | |
| 362 | - wp_send_json_success( $html ); |
|
| 362 | + wp_send_json_success($html); |
|
| 363 | 363 | exit; |
| 364 | 364 | |
| 365 | 365 | } |
@@ -375,66 +375,66 @@ discard block |
||
| 375 | 375 | public static function recalculate_invoice_totals() { |
| 376 | 376 | |
| 377 | 377 | // Verify nonce. |
| 378 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 378 | + check_ajax_referer('wpinv-nonce'); |
|
| 379 | 379 | |
| 380 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 380 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 381 | 381 | exit; |
| 382 | 382 | } |
| 383 | 383 | |
| 384 | 384 | // We need an invoice. |
| 385 | - if ( empty( $_POST['post_id'] ) ) { |
|
| 385 | + if (empty($_POST['post_id'])) { |
|
| 386 | 386 | exit; |
| 387 | 387 | } |
| 388 | 388 | |
| 389 | 389 | // Fetch the invoice. |
| 390 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
| 390 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
| 391 | 391 | |
| 392 | 392 | // Ensure it exists. |
| 393 | - if ( ! $invoice->get_id() ) { |
|
| 393 | + if (!$invoice->get_id()) { |
|
| 394 | 394 | exit; |
| 395 | 395 | } |
| 396 | 396 | |
| 397 | 397 | // Maybe set the country, state, currency. |
| 398 | - foreach ( array( 'country', 'state', 'currency', 'vat_number', 'discount_code' ) as $key ) { |
|
| 399 | - if ( isset( $_POST[ $key ] ) ) { |
|
| 398 | + foreach (array('country', 'state', 'currency', 'vat_number', 'discount_code') as $key) { |
|
| 399 | + if (isset($_POST[$key])) { |
|
| 400 | 400 | $method = "set_$key"; |
| 401 | - $invoice->$method( sanitize_text_field( $_POST[ $key ] ) ); |
|
| 401 | + $invoice->$method(sanitize_text_field($_POST[$key])); |
|
| 402 | 402 | } |
| 403 | 403 | } |
| 404 | 404 | |
| 405 | 405 | // Maybe disable taxes. |
| 406 | - $invoice->set_disable_taxes( ! empty( $_POST['taxes'] ) ); |
|
| 406 | + $invoice->set_disable_taxes(!empty($_POST['taxes'])); |
|
| 407 | 407 | |
| 408 | 408 | // Discount code. |
| 409 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 410 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 411 | - if ( $discount->exists() ) { |
|
| 412 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 409 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
| 410 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
| 411 | + if ($discount->exists()) { |
|
| 412 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
| 413 | 413 | } else { |
| 414 | - $invoice->remove_discount( 'discount_code' ); |
|
| 414 | + $invoice->remove_discount('discount_code'); |
|
| 415 | 415 | } |
| 416 | 416 | } |
| 417 | 417 | |
| 418 | 418 | // Recalculate totals. |
| 419 | 419 | $invoice->recalculate_total(); |
| 420 | 420 | |
| 421 | - $total = wpinv_price( $invoice->get_total(), $invoice->get_currency() ); |
|
| 422 | - $suscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 423 | - if ( is_a( $suscriptions, 'WPInv_Subscription' ) && $invoice->is_recurring() && $invoice->is_parent() && $invoice->get_total() != $invoice->get_recurring_total() ) { |
|
| 424 | - $recurring_total = wpinv_price( $invoice->get_recurring_total(), $invoice->get_currency() ); |
|
| 425 | - $total .= '<small class="form-text text-muted">' . sprintf( __( 'Recurring Price: %s', 'invoicing' ), $recurring_total ) . '</small>'; |
|
| 421 | + $total = wpinv_price($invoice->get_total(), $invoice->get_currency()); |
|
| 422 | + $suscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
| 423 | + if (is_a($suscriptions, 'WPInv_Subscription') && $invoice->is_recurring() && $invoice->is_parent() && $invoice->get_total() != $invoice->get_recurring_total()) { |
|
| 424 | + $recurring_total = wpinv_price($invoice->get_recurring_total(), $invoice->get_currency()); |
|
| 425 | + $total .= '<small class="form-text text-muted">' . sprintf(__('Recurring Price: %s', 'invoicing'), $recurring_total) . '</small>'; |
|
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | $totals = array( |
| 429 | - 'subtotal' => wpinv_price( $invoice->get_subtotal(), $invoice->get_currency() ), |
|
| 430 | - 'discount' => wpinv_price( $invoice->get_total_discount(), $invoice->get_currency() ), |
|
| 431 | - 'tax' => wpinv_price( $invoice->get_total_tax(), $invoice->get_currency() ), |
|
| 429 | + 'subtotal' => wpinv_price($invoice->get_subtotal(), $invoice->get_currency()), |
|
| 430 | + 'discount' => wpinv_price($invoice->get_total_discount(), $invoice->get_currency()), |
|
| 431 | + 'tax' => wpinv_price($invoice->get_total_tax(), $invoice->get_currency()), |
|
| 432 | 432 | 'total' => $total, |
| 433 | 433 | ); |
| 434 | 434 | |
| 435 | - $totals = apply_filters( 'getpaid_invoice_totals', $totals, $invoice ); |
|
| 435 | + $totals = apply_filters('getpaid_invoice_totals', $totals, $invoice); |
|
| 436 | 436 | |
| 437 | - wp_send_json_success( compact( 'totals' ) ); |
|
| 437 | + wp_send_json_success(compact('totals')); |
|
| 438 | 438 | } |
| 439 | 439 | |
| 440 | 440 | /** |
@@ -443,33 +443,33 @@ discard block |
||
| 443 | 443 | public static function get_invoice_items() { |
| 444 | 444 | |
| 445 | 445 | // Verify nonce. |
| 446 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 446 | + check_ajax_referer('wpinv-nonce'); |
|
| 447 | 447 | |
| 448 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 448 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 449 | 449 | exit; |
| 450 | 450 | } |
| 451 | 451 | |
| 452 | 452 | // We need an invoice and items. |
| 453 | - if ( empty( $_POST['post_id'] ) ) { |
|
| 453 | + if (empty($_POST['post_id'])) { |
|
| 454 | 454 | exit; |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | 457 | // Fetch the invoice. |
| 458 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
| 458 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
| 459 | 459 | |
| 460 | 460 | // Ensure it exists. |
| 461 | - if ( ! $invoice->get_id() ) { |
|
| 461 | + if (!$invoice->get_id()) { |
|
| 462 | 462 | exit; |
| 463 | 463 | } |
| 464 | 464 | |
| 465 | 465 | // Return an array of invoice items. |
| 466 | 466 | $items = array(); |
| 467 | 467 | |
| 468 | - foreach ( $invoice->get_items() as $item ) { |
|
| 469 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency(), $invoice->is_renewal() ); |
|
| 468 | + foreach ($invoice->get_items() as $item) { |
|
| 469 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency(), $invoice->is_renewal()); |
|
| 470 | 470 | } |
| 471 | 471 | |
| 472 | - wp_send_json_success( compact( 'items' ) ); |
|
| 472 | + wp_send_json_success(compact('items')); |
|
| 473 | 473 | } |
| 474 | 474 | |
| 475 | 475 | /** |
@@ -478,50 +478,50 @@ discard block |
||
| 478 | 478 | public static function edit_invoice_item() { |
| 479 | 479 | |
| 480 | 480 | // Verify nonce. |
| 481 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 481 | + check_ajax_referer('wpinv-nonce'); |
|
| 482 | 482 | |
| 483 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 483 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 484 | 484 | exit; |
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | // We need an invoice and item details. |
| 488 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['data'] ) ) { |
|
| 488 | + if (empty($_POST['post_id']) || empty($_POST['data'])) { |
|
| 489 | 489 | exit; |
| 490 | 490 | } |
| 491 | 491 | |
| 492 | 492 | // Fetch the invoice. |
| 493 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
| 493 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
| 494 | 494 | |
| 495 | 495 | // Ensure it exists and its not been paid for. |
| 496 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
| 496 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
| 497 | 497 | exit; |
| 498 | 498 | } |
| 499 | 499 | |
| 500 | 500 | // Format the data. |
| 501 | - $data = wp_unslash( wp_list_pluck( $_POST['data'], 'value', 'field' ) ); |
|
| 501 | + $data = wp_unslash(wp_list_pluck($_POST['data'], 'value', 'field')); |
|
| 502 | 502 | |
| 503 | 503 | // Ensure that we have an item id. |
| 504 | - if ( empty( $data['id'] ) ) { |
|
| 504 | + if (empty($data['id'])) { |
|
| 505 | 505 | exit; |
| 506 | 506 | } |
| 507 | 507 | |
| 508 | 508 | // Abort if the invoice does not have the specified item. |
| 509 | - $item = $invoice->get_item( (int) $data['id'] ); |
|
| 509 | + $item = $invoice->get_item((int) $data['id']); |
|
| 510 | 510 | |
| 511 | - if ( empty( $item ) ) { |
|
| 511 | + if (empty($item)) { |
|
| 512 | 512 | exit; |
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | // Update the item. |
| 516 | - $item->set_price( floatval( $data['price'] ) ); |
|
| 517 | - $item->set_name( sanitize_text_field( $data['name'] ) ); |
|
| 518 | - $item->set_description( wp_kses_post( $data['description'] ) ); |
|
| 519 | - $item->set_quantity( floatval( $data['quantity'] ) ); |
|
| 516 | + $item->set_price(floatval($data['price'])); |
|
| 517 | + $item->set_name(sanitize_text_field($data['name'])); |
|
| 518 | + $item->set_description(wp_kses_post($data['description'])); |
|
| 519 | + $item->set_quantity(floatval($data['quantity'])); |
|
| 520 | 520 | |
| 521 | 521 | // Add it to the invoice. |
| 522 | - $error = $invoice->add_item( $item ); |
|
| 522 | + $error = $invoice->add_item($item); |
|
| 523 | 523 | $alert = false; |
| 524 | - if ( is_wp_error( $error ) ) { |
|
| 524 | + if (is_wp_error($error)) { |
|
| 525 | 525 | $alert = $error->get_error_message(); |
| 526 | 526 | } |
| 527 | 527 | |
@@ -534,11 +534,11 @@ discard block |
||
| 534 | 534 | // Return an array of invoice items. |
| 535 | 535 | $items = array(); |
| 536 | 536 | |
| 537 | - foreach ( $invoice->get_items() as $item ) { |
|
| 538 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
| 537 | + foreach ($invoice->get_items() as $item) { |
|
| 538 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | - wp_send_json_success( compact( 'items', 'alert' ) ); |
|
| 541 | + wp_send_json_success(compact('items', 'alert')); |
|
| 542 | 542 | } |
| 543 | 543 | |
| 544 | 544 | /** |
@@ -547,33 +547,33 @@ discard block |
||
| 547 | 547 | public static function remove_invoice_item() { |
| 548 | 548 | |
| 549 | 549 | // Verify nonce. |
| 550 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 550 | + check_ajax_referer('wpinv-nonce'); |
|
| 551 | 551 | |
| 552 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 552 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 553 | 553 | exit; |
| 554 | 554 | } |
| 555 | 555 | |
| 556 | 556 | // We need an invoice and an item. |
| 557 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['item_id'] ) ) { |
|
| 557 | + if (empty($_POST['post_id']) || empty($_POST['item_id'])) { |
|
| 558 | 558 | exit; |
| 559 | 559 | } |
| 560 | 560 | |
| 561 | 561 | // Fetch the invoice. |
| 562 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
| 562 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
| 563 | 563 | |
| 564 | 564 | // Ensure it exists and its not been paid for. |
| 565 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
| 565 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
| 566 | 566 | exit; |
| 567 | 567 | } |
| 568 | 568 | |
| 569 | 569 | // Abort if the invoice does not have the specified item. |
| 570 | - $item = $invoice->get_item( (int) $_POST['item_id'] ); |
|
| 570 | + $item = $invoice->get_item((int) $_POST['item_id']); |
|
| 571 | 571 | |
| 572 | - if ( empty( $item ) ) { |
|
| 572 | + if (empty($item)) { |
|
| 573 | 573 | exit; |
| 574 | 574 | } |
| 575 | 575 | |
| 576 | - $invoice->remove_item( (int) $_POST['item_id'] ); |
|
| 576 | + $invoice->remove_item((int) $_POST['item_id']); |
|
| 577 | 577 | |
| 578 | 578 | // Update totals. |
| 579 | 579 | $invoice->recalculate_total(); |
@@ -584,11 +584,11 @@ discard block |
||
| 584 | 584 | // Return an array of invoice items. |
| 585 | 585 | $items = array(); |
| 586 | 586 | |
| 587 | - foreach ( $invoice->get_items() as $item ) { |
|
| 588 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
| 587 | + foreach ($invoice->get_items() as $item) { |
|
| 588 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
| 589 | 589 | } |
| 590 | 590 | |
| 591 | - wp_send_json_success( compact( 'items' ) ); |
|
| 591 | + wp_send_json_success(compact('items')); |
|
| 592 | 592 | } |
| 593 | 593 | |
| 594 | 594 | /** |
@@ -597,39 +597,39 @@ discard block |
||
| 597 | 597 | public static function add_invoice_items() { |
| 598 | 598 | |
| 599 | 599 | // Verify nonce. |
| 600 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 600 | + check_ajax_referer('wpinv-nonce'); |
|
| 601 | 601 | |
| 602 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 602 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 603 | 603 | exit; |
| 604 | 604 | } |
| 605 | 605 | |
| 606 | 606 | // We need an invoice and items. |
| 607 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['items'] ) ) { |
|
| 607 | + if (empty($_POST['post_id']) || empty($_POST['items'])) { |
|
| 608 | 608 | exit; |
| 609 | 609 | } |
| 610 | 610 | |
| 611 | 611 | // Fetch the invoice. |
| 612 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
| 612 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
| 613 | 613 | $alert = false; |
| 614 | 614 | |
| 615 | 615 | // Ensure it exists and its not been paid for. |
| 616 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
| 616 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
| 617 | 617 | exit; |
| 618 | 618 | } |
| 619 | 619 | |
| 620 | 620 | // Add the items. |
| 621 | - foreach ( $_POST['items'] as $data ) { |
|
| 621 | + foreach ($_POST['items'] as $data) { |
|
| 622 | 622 | |
| 623 | - $item = new GetPaid_Form_Item( $data[ 'id' ] ); |
|
| 623 | + $item = new GetPaid_Form_Item($data['id']); |
|
| 624 | 624 | |
| 625 | - if ( is_numeric( $data[ 'qty' ] ) && (float) $data[ 'qty' ] > 0 ) { |
|
| 626 | - $item->set_quantity( $data[ 'qty' ] ); |
|
| 625 | + if (is_numeric($data['qty']) && (float) $data['qty'] > 0) { |
|
| 626 | + $item->set_quantity($data['qty']); |
|
| 627 | 627 | } |
| 628 | 628 | |
| 629 | - if ( $item->get_id() > 0 ) { |
|
| 630 | - $error = $invoice->add_item( $item ); |
|
| 629 | + if ($item->get_id() > 0) { |
|
| 630 | + $error = $invoice->add_item($item); |
|
| 631 | 631 | |
| 632 | - if ( is_wp_error( $error ) ) { |
|
| 632 | + if (is_wp_error($error)) { |
|
| 633 | 633 | $alert = $error->get_error_message(); |
| 634 | 634 | } |
| 635 | 635 | |
@@ -644,11 +644,11 @@ discard block |
||
| 644 | 644 | // Return an array of invoice items. |
| 645 | 645 | $items = array(); |
| 646 | 646 | |
| 647 | - foreach ( $invoice->get_items() as $item ) { |
|
| 648 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
| 647 | + foreach ($invoice->get_items() as $item) { |
|
| 648 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
| 649 | 649 | } |
| 650 | 650 | |
| 651 | - wp_send_json_success( compact( 'items', 'alert' ) ); |
|
| 651 | + wp_send_json_success(compact('items', 'alert')); |
|
| 652 | 652 | } |
| 653 | 653 | |
| 654 | 654 | /** |
@@ -657,15 +657,15 @@ discard block |
||
| 657 | 657 | public static function get_invoicing_items() { |
| 658 | 658 | |
| 659 | 659 | // Verify nonce. |
| 660 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 660 | + check_ajax_referer('wpinv-nonce'); |
|
| 661 | 661 | |
| 662 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 662 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 663 | 663 | exit; |
| 664 | 664 | } |
| 665 | 665 | |
| 666 | 666 | // We need a search term. |
| 667 | - if ( empty( $_GET['search'] ) ) { |
|
| 668 | - wp_send_json_success( array() ); |
|
| 667 | + if (empty($_GET['search'])) { |
|
| 668 | + wp_send_json_success(array()); |
|
| 669 | 669 | } |
| 670 | 670 | |
| 671 | 671 | // Retrieve items. |
@@ -674,8 +674,8 @@ discard block |
||
| 674 | 674 | 'orderby' => 'title', |
| 675 | 675 | 'order' => 'ASC', |
| 676 | 676 | 'posts_per_page' => -1, |
| 677 | - 'post_status' => array( 'publish' ), |
|
| 678 | - 's' => trim( $_GET['search'] ), |
|
| 677 | + 'post_status' => array('publish'), |
|
| 678 | + 's' => trim($_GET['search']), |
|
| 679 | 679 | 'meta_query' => array( |
| 680 | 680 | array( |
| 681 | 681 | 'key' => '_wpinv_type', |
@@ -685,22 +685,22 @@ discard block |
||
| 685 | 685 | ) |
| 686 | 686 | ); |
| 687 | 687 | |
| 688 | - $items = get_posts( apply_filters( 'getpaid_ajax_invoice_items_query_args', $item_args ) ); |
|
| 688 | + $items = get_posts(apply_filters('getpaid_ajax_invoice_items_query_args', $item_args)); |
|
| 689 | 689 | $data = array(); |
| 690 | 690 | |
| 691 | 691 | |
| 692 | - $is_payment_form = ( ! empty( $_GET['post_id'] ) && 'wpi_payment_form' == get_post_type( $_GET['post_id'] ) ); |
|
| 692 | + $is_payment_form = (!empty($_GET['post_id']) && 'wpi_payment_form' == get_post_type($_GET['post_id'])); |
|
| 693 | 693 | |
| 694 | - foreach ( $items as $item ) { |
|
| 695 | - $item = new GetPaid_Form_Item( $item ); |
|
| 694 | + foreach ($items as $item) { |
|
| 695 | + $item = new GetPaid_Form_Item($item); |
|
| 696 | 696 | $data[] = array( |
| 697 | 697 | 'id' => (int) $item->get_id(), |
| 698 | - 'text' => strip_tags( $item->get_name() ), |
|
| 699 | - 'form_data' => $is_payment_form ? $item->prepare_data_for_use( false ) : '', |
|
| 698 | + 'text' => strip_tags($item->get_name()), |
|
| 699 | + 'form_data' => $is_payment_form ? $item->prepare_data_for_use(false) : '', |
|
| 700 | 700 | ); |
| 701 | 701 | } |
| 702 | 702 | |
| 703 | - wp_send_json_success( $data ); |
|
| 703 | + wp_send_json_success($data); |
|
| 704 | 704 | |
| 705 | 705 | } |
| 706 | 706 | |
@@ -710,37 +710,37 @@ discard block |
||
| 710 | 710 | public static function get_customers() { |
| 711 | 711 | |
| 712 | 712 | // Verify nonce. |
| 713 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 713 | + check_ajax_referer('wpinv-nonce'); |
|
| 714 | 714 | |
| 715 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 715 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
| 716 | 716 | exit; |
| 717 | 717 | } |
| 718 | 718 | |
| 719 | 719 | // We need a search term. |
| 720 | - if ( empty( $_GET['search'] ) ) { |
|
| 721 | - wp_send_json_success( array() ); |
|
| 720 | + if (empty($_GET['search'])) { |
|
| 721 | + wp_send_json_success(array()); |
|
| 722 | 722 | } |
| 723 | 723 | |
| 724 | 724 | // Retrieve customers. |
| 725 | 725 | |
| 726 | 726 | $customer_args = array( |
| 727 | - 'fields' => array( 'ID', 'user_email', 'display_name' ), |
|
| 727 | + 'fields' => array('ID', 'user_email', 'display_name'), |
|
| 728 | 728 | 'orderby' => 'display_name', |
| 729 | - 'search' => '*' . sanitize_text_field( $_GET['search'] ) . '*', |
|
| 730 | - 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
| 729 | + 'search' => '*' . sanitize_text_field($_GET['search']) . '*', |
|
| 730 | + 'search_columns' => array('user_login', 'user_email', 'display_name'), |
|
| 731 | 731 | ); |
| 732 | 732 | |
| 733 | - $customers = get_users( apply_filters( 'getpaid_ajax_invoice_customers_query_args', $customer_args ) ); |
|
| 733 | + $customers = get_users(apply_filters('getpaid_ajax_invoice_customers_query_args', $customer_args)); |
|
| 734 | 734 | $data = array(); |
| 735 | 735 | |
| 736 | - foreach ( $customers as $customer ) { |
|
| 736 | + foreach ($customers as $customer) { |
|
| 737 | 737 | $data[] = array( |
| 738 | 738 | 'id' => (int) $customer->ID, |
| 739 | - 'text' => strip_tags( sprintf( _x( '%1$s (%2$s)', 'user dropdown', 'invoicing' ), $customer->display_name, $customer->user_email ) ), |
|
| 739 | + 'text' => strip_tags(sprintf(_x('%1$s (%2$s)', 'user dropdown', 'invoicing'), $customer->display_name, $customer->user_email)), |
|
| 740 | 740 | ); |
| 741 | 741 | } |
| 742 | 742 | |
| 743 | - wp_send_json_success( $data ); |
|
| 743 | + wp_send_json_success($data); |
|
| 744 | 744 | |
| 745 | 745 | } |
| 746 | 746 | |
@@ -750,28 +750,28 @@ discard block |
||
| 750 | 750 | public static function get_aui_states_field() { |
| 751 | 751 | |
| 752 | 752 | // Verify nonce. |
| 753 | - check_ajax_referer( 'wpinv-nonce' ); |
|
| 753 | + check_ajax_referer('wpinv-nonce'); |
|
| 754 | 754 | |
| 755 | 755 | // We need a country. |
| 756 | - if ( empty( $_GET['country'] ) ) { |
|
| 756 | + if (empty($_GET['country'])) { |
|
| 757 | 757 | exit; |
| 758 | 758 | } |
| 759 | 759 | |
| 760 | - $states = wpinv_get_country_states( sanitize_text_field( $_GET['country'] ) ); |
|
| 761 | - $state = isset( $_GET['state'] ) ? sanitize_text_field( $_GET['state'] ) : wpinv_get_default_state(); |
|
| 762 | - $name = isset( $_GET['name'] ) ? sanitize_text_field( $_GET['name'] ) : 'wpinv_state'; |
|
| 763 | - $class = isset( $_GET['class'] ) ? sanitize_text_field( $_GET['class'] ) : 'form-control-sm'; |
|
| 760 | + $states = wpinv_get_country_states(sanitize_text_field($_GET['country'])); |
|
| 761 | + $state = isset($_GET['state']) ? sanitize_text_field($_GET['state']) : wpinv_get_default_state(); |
|
| 762 | + $name = isset($_GET['name']) ? sanitize_text_field($_GET['name']) : 'wpinv_state'; |
|
| 763 | + $class = isset($_GET['class']) ? sanitize_text_field($_GET['class']) : 'form-control-sm'; |
|
| 764 | 764 | |
| 765 | - if ( empty( $states ) ) { |
|
| 765 | + if (empty($states)) { |
|
| 766 | 766 | |
| 767 | 767 | $html = aui()->input( |
| 768 | 768 | array( |
| 769 | 769 | 'type' => 'text', |
| 770 | 770 | 'id' => 'wpinv_state', |
| 771 | 771 | 'name' => $name, |
| 772 | - 'label' => __( 'State', 'invoicing' ), |
|
| 772 | + 'label' => __('State', 'invoicing'), |
|
| 773 | 773 | 'label_type' => 'vertical', |
| 774 | - 'placeholder' => __( 'State', 'invoicing' ), |
|
| 774 | + 'placeholder' => __('State', 'invoicing'), |
|
| 775 | 775 | 'class' => $class, |
| 776 | 776 | 'value' => $state, |
| 777 | 777 | ) |
@@ -783,9 +783,9 @@ discard block |
||
| 783 | 783 | array( |
| 784 | 784 | 'id' => 'wpinv_state', |
| 785 | 785 | 'name' => $name, |
| 786 | - 'label' => __( 'State', 'invoicing' ), |
|
| 786 | + 'label' => __('State', 'invoicing'), |
|
| 787 | 787 | 'label_type' => 'vertical', |
| 788 | - 'placeholder' => __( 'Select a state', 'invoicing' ), |
|
| 788 | + 'placeholder' => __('Select a state', 'invoicing'), |
|
| 789 | 789 | 'class' => $class, |
| 790 | 790 | 'value' => $state, |
| 791 | 791 | 'options' => $states, |
@@ -799,7 +799,7 @@ discard block |
||
| 799 | 799 | wp_send_json_success( |
| 800 | 800 | array( |
| 801 | 801 | 'html' => $html, |
| 802 | - 'select' => ! empty ( $states ) |
|
| 802 | + 'select' => !empty ($states) |
|
| 803 | 803 | ) |
| 804 | 804 | ); |
| 805 | 805 | |
@@ -813,11 +813,11 @@ discard block |
||
| 813 | 813 | public static function payment_form_refresh_prices() { |
| 814 | 814 | |
| 815 | 815 | // Check nonce. |
| 816 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
| 816 | + check_ajax_referer('getpaid_form_nonce'); |
|
| 817 | 817 | |
| 818 | 818 | // ... form fields... |
| 819 | - if ( empty( $_POST['getpaid_payment_form_submission'] ) ) { |
|
| 820 | - _e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
| 819 | + if (empty($_POST['getpaid_payment_form_submission'])) { |
|
| 820 | + _e('Error: Reload the page and try again.', 'invoicing'); |
|
| 821 | 821 | exit; |
| 822 | 822 | } |
| 823 | 823 | |
@@ -825,7 +825,7 @@ discard block |
||
| 825 | 825 | $submission = new GetPaid_Payment_Form_Submission(); |
| 826 | 826 | |
| 827 | 827 | // Do we have an error? |
| 828 | - if ( ! empty( $submission->last_error ) ) { |
|
| 828 | + if (!empty($submission->last_error)) { |
|
| 829 | 829 | wp_send_json_error( |
| 830 | 830 | array( |
| 831 | 831 | 'code' => $submission->last_error_code, |
@@ -835,12 +835,12 @@ discard block |
||
| 835 | 835 | } |
| 836 | 836 | |
| 837 | 837 | // Prepare the response. |
| 838 | - $response = new GetPaid_Payment_Form_Submission_Refresh_Prices( $submission ); |
|
| 838 | + $response = new GetPaid_Payment_Form_Submission_Refresh_Prices($submission); |
|
| 839 | 839 | |
| 840 | 840 | // Filter the response. |
| 841 | - $response = apply_filters( 'getpaid_payment_form_ajax_refresh_prices', $response->response, $submission ); |
|
| 841 | + $response = apply_filters('getpaid_payment_form_ajax_refresh_prices', $response->response, $submission); |
|
| 842 | 842 | |
| 843 | - wp_send_json_success( $response ); |
|
| 843 | + wp_send_json_success($response); |
|
| 844 | 844 | } |
| 845 | 845 | |
| 846 | 846 | } |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | function getpaid_get_invoice_subscription_group( $invoice_id, $subscription_id ) { |
| 52 | 52 | $subscription_groups = getpaid_get_invoice_subscription_groups( $invoice_id ); |
| 53 | - $matching_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 53 | + $matching_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 54 | 54 | return reset( $matching_group ); |
| 55 | 55 | } |
| 56 | 56 | |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | * @return WPInv_Subscription|false |
| 63 | 63 | */ |
| 64 | 64 | function getpaid_get_subscription( $subscription ) { |
| 65 | - $subscription = new WPInv_Subscription( $subscription ); |
|
| 66 | - return $subscription->exists() ? $subscription : false; |
|
| 65 | + $subscription = new WPInv_Subscription( $subscription ); |
|
| 66 | + return $subscription->exists() ? $subscription : false; |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
@@ -77,28 +77,28 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | function getpaid_get_subscriptions( $args = array(), $return = 'results' ) { |
| 79 | 79 | |
| 80 | - // Do not retrieve all fields if we just want the count. |
|
| 81 | - if ( 'count' == $return ) { |
|
| 82 | - $args['fields'] = 'id'; |
|
| 83 | - $args['number'] = 1; |
|
| 84 | - } |
|
| 80 | + // Do not retrieve all fields if we just want the count. |
|
| 81 | + if ( 'count' == $return ) { |
|
| 82 | + $args['fields'] = 'id'; |
|
| 83 | + $args['number'] = 1; |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - // Do not count all matches if we just want the results. |
|
| 87 | - if ( 'results' == $return ) { |
|
| 88 | - $args['count_total'] = false; |
|
| 89 | - } |
|
| 86 | + // Do not count all matches if we just want the results. |
|
| 87 | + if ( 'results' == $return ) { |
|
| 88 | + $args['count_total'] = false; |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | - $query = new GetPaid_Subscriptions_Query( $args ); |
|
| 91 | + $query = new GetPaid_Subscriptions_Query( $args ); |
|
| 92 | 92 | |
| 93 | - if ( 'results' == $return ) { |
|
| 94 | - return $query->get_results(); |
|
| 95 | - } |
|
| 93 | + if ( 'results' == $return ) { |
|
| 94 | + return $query->get_results(); |
|
| 95 | + } |
|
| 96 | 96 | |
| 97 | - if ( 'count' == $return ) { |
|
| 98 | - return $query->get_total(); |
|
| 99 | - } |
|
| 97 | + if ( 'count' == $return ) { |
|
| 98 | + return $query->get_total(); |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | - return $query; |
|
| 101 | + return $query; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | /** |
@@ -108,18 +108,18 @@ discard block |
||
| 108 | 108 | */ |
| 109 | 109 | function getpaid_get_subscription_statuses() { |
| 110 | 110 | |
| 111 | - return apply_filters( |
|
| 112 | - 'getpaid_get_subscription_statuses', |
|
| 113 | - array( |
|
| 114 | - 'pending' => __( 'Pending', 'invoicing' ), |
|
| 115 | - 'trialling' => __( 'Trialing', 'invoicing' ), |
|
| 116 | - 'active' => __( 'Active', 'invoicing' ), |
|
| 117 | - 'failing' => __( 'Failing', 'invoicing' ), |
|
| 118 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
| 119 | - 'completed' => __( 'Complete', 'invoicing' ), |
|
| 120 | - 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
| 121 | - ) |
|
| 122 | - ); |
|
| 111 | + return apply_filters( |
|
| 112 | + 'getpaid_get_subscription_statuses', |
|
| 113 | + array( |
|
| 114 | + 'pending' => __( 'Pending', 'invoicing' ), |
|
| 115 | + 'trialling' => __( 'Trialing', 'invoicing' ), |
|
| 116 | + 'active' => __( 'Active', 'invoicing' ), |
|
| 117 | + 'failing' => __( 'Failing', 'invoicing' ), |
|
| 118 | + 'expired' => __( 'Expired', 'invoicing' ), |
|
| 119 | + 'completed' => __( 'Complete', 'invoicing' ), |
|
| 120 | + 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
| 121 | + ) |
|
| 122 | + ); |
|
| 123 | 123 | |
| 124 | 124 | } |
| 125 | 125 | |
@@ -129,8 +129,8 @@ discard block |
||
| 129 | 129 | * @return string |
| 130 | 130 | */ |
| 131 | 131 | function getpaid_get_subscription_status_label( $status ) { |
| 132 | - $statuses = getpaid_get_subscription_statuses(); |
|
| 133 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
| 132 | + $statuses = getpaid_get_subscription_statuses(); |
|
| 133 | + return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | /** |
@@ -140,18 +140,18 @@ discard block |
||
| 140 | 140 | */ |
| 141 | 141 | function getpaid_get_subscription_status_classes() { |
| 142 | 142 | |
| 143 | - return apply_filters( |
|
| 144 | - 'getpaid_get_subscription_status_classes', |
|
| 145 | - array( |
|
| 146 | - 'pending' => 'badge-dark', |
|
| 147 | - 'trialling' => 'badge-info', |
|
| 148 | - 'active' => 'badge-success', |
|
| 149 | - 'failing' => 'badge-warning', |
|
| 150 | - 'expired' => 'badge-danger', |
|
| 151 | - 'completed' => 'badge-primary', |
|
| 152 | - 'cancelled' => 'badge-secondary', |
|
| 153 | - ) |
|
| 154 | - ); |
|
| 143 | + return apply_filters( |
|
| 144 | + 'getpaid_get_subscription_status_classes', |
|
| 145 | + array( |
|
| 146 | + 'pending' => 'badge-dark', |
|
| 147 | + 'trialling' => 'badge-info', |
|
| 148 | + 'active' => 'badge-success', |
|
| 149 | + 'failing' => 'badge-warning', |
|
| 150 | + 'expired' => 'badge-danger', |
|
| 151 | + 'completed' => 'badge-primary', |
|
| 152 | + 'cancelled' => 'badge-secondary', |
|
| 153 | + ) |
|
| 154 | + ); |
|
| 155 | 155 | |
| 156 | 156 | } |
| 157 | 157 | |
@@ -162,15 +162,15 @@ discard block |
||
| 162 | 162 | */ |
| 163 | 163 | function getpaid_get_subscription_status_counts( $args = array() ) { |
| 164 | 164 | |
| 165 | - $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
| 166 | - $counts = array(); |
|
| 165 | + $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
| 166 | + $counts = array(); |
|
| 167 | 167 | |
| 168 | - foreach ( $statuses as $status ) { |
|
| 169 | - $_args = wp_parse_args( "status=$status", $args ); |
|
| 170 | - $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
| 171 | - } |
|
| 168 | + foreach ( $statuses as $status ) { |
|
| 169 | + $_args = wp_parse_args( "status=$status", $args ); |
|
| 170 | + $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
| 171 | + } |
|
| 172 | 172 | |
| 173 | - return $counts; |
|
| 173 | + return $counts; |
|
| 174 | 174 | |
| 175 | 175 | } |
| 176 | 176 | |
@@ -181,32 +181,32 @@ discard block |
||
| 181 | 181 | */ |
| 182 | 182 | function getpaid_get_subscription_periods() { |
| 183 | 183 | |
| 184 | - return apply_filters( |
|
| 185 | - 'getpaid_get_subscription_periods', |
|
| 186 | - array( |
|
| 184 | + return apply_filters( |
|
| 185 | + 'getpaid_get_subscription_periods', |
|
| 186 | + array( |
|
| 187 | 187 | |
| 188 | - 'day' => array( |
|
| 189 | - 'singular' => __( '%s day', 'invoicing' ), |
|
| 190 | - 'plural' => __( '%d days', 'invoicing' ), |
|
| 191 | - ), |
|
| 188 | + 'day' => array( |
|
| 189 | + 'singular' => __( '%s day', 'invoicing' ), |
|
| 190 | + 'plural' => __( '%d days', 'invoicing' ), |
|
| 191 | + ), |
|
| 192 | 192 | |
| 193 | - 'week' => array( |
|
| 194 | - 'singular' => __( '%s week', 'invoicing' ), |
|
| 195 | - 'plural' => __( '%d weeks', 'invoicing' ), |
|
| 196 | - ), |
|
| 193 | + 'week' => array( |
|
| 194 | + 'singular' => __( '%s week', 'invoicing' ), |
|
| 195 | + 'plural' => __( '%d weeks', 'invoicing' ), |
|
| 196 | + ), |
|
| 197 | 197 | |
| 198 | - 'month' => array( |
|
| 199 | - 'singular' => __( '%s month', 'invoicing' ), |
|
| 200 | - 'plural' => __( '%d months', 'invoicing' ), |
|
| 201 | - ), |
|
| 198 | + 'month' => array( |
|
| 199 | + 'singular' => __( '%s month', 'invoicing' ), |
|
| 200 | + 'plural' => __( '%d months', 'invoicing' ), |
|
| 201 | + ), |
|
| 202 | 202 | |
| 203 | - 'year' => array( |
|
| 204 | - 'singular' => __( '%s year', 'invoicing' ), |
|
| 205 | - 'plural' => __( '%d years', 'invoicing' ), |
|
| 206 | - ), |
|
| 203 | + 'year' => array( |
|
| 204 | + 'singular' => __( '%s year', 'invoicing' ), |
|
| 205 | + 'plural' => __( '%d years', 'invoicing' ), |
|
| 206 | + ), |
|
| 207 | 207 | |
| 208 | - ) |
|
| 209 | - ); |
|
| 208 | + ) |
|
| 209 | + ); |
|
| 210 | 210 | |
| 211 | 211 | } |
| 212 | 212 | |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | * @return int |
| 218 | 218 | */ |
| 219 | 219 | function getpaid_get_subscription_trial_period_interval( $trial_period ) { |
| 220 | - return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
| 220 | + return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | /** |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | * @return string |
| 228 | 228 | */ |
| 229 | 229 | function getpaid_get_subscription_trial_period_period( $trial_period ) { |
| 230 | - return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
| 230 | + return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -238,8 +238,8 @@ discard block |
||
| 238 | 238 | * @return string |
| 239 | 239 | */ |
| 240 | 240 | function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) { |
| 241 | - $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
| 242 | - return strtolower( sanitize_text_field( $label ) ); |
|
| 241 | + $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
| 242 | + return strtolower( sanitize_text_field( $label ) ); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
@@ -250,22 +250,22 @@ discard block |
||
| 250 | 250 | */ |
| 251 | 251 | function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) { |
| 252 | 252 | |
| 253 | - $periods = getpaid_get_subscription_periods(); |
|
| 254 | - $period = strtolower( $period ); |
|
| 253 | + $periods = getpaid_get_subscription_periods(); |
|
| 254 | + $period = strtolower( $period ); |
|
| 255 | 255 | |
| 256 | - if ( isset( $periods[ $period ] ) ) { |
|
| 257 | - return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
| 258 | - } |
|
| 256 | + if ( isset( $periods[ $period ] ) ) { |
|
| 257 | + return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
| 258 | + } |
|
| 259 | 259 | |
| 260 | - // Backwards compatibility. |
|
| 261 | - foreach ( $periods as $key => $data ) { |
|
| 262 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 263 | - return sprintf( $data['singular'], $singular_prefix ); |
|
| 264 | - } |
|
| 265 | - } |
|
| 260 | + // Backwards compatibility. |
|
| 261 | + foreach ( $periods as $key => $data ) { |
|
| 262 | + if ( strpos( $key, $period ) === 0 ) { |
|
| 263 | + return sprintf( $data['singular'], $singular_prefix ); |
|
| 264 | + } |
|
| 265 | + } |
|
| 266 | 266 | |
| 267 | - // Invalid string. |
|
| 268 | - return ''; |
|
| 267 | + // Invalid string. |
|
| 268 | + return ''; |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /** |
@@ -277,22 +277,22 @@ discard block |
||
| 277 | 277 | */ |
| 278 | 278 | function getpaid_get_plural_subscription_period_label( $period, $interval ) { |
| 279 | 279 | |
| 280 | - $periods = getpaid_get_subscription_periods(); |
|
| 281 | - $period = strtolower( $period ); |
|
| 280 | + $periods = getpaid_get_subscription_periods(); |
|
| 281 | + $period = strtolower( $period ); |
|
| 282 | 282 | |
| 283 | - if ( isset( $periods[ $period ] ) ) { |
|
| 284 | - return sprintf( $periods[ $period ]['plural'], $interval ); |
|
| 285 | - } |
|
| 283 | + if ( isset( $periods[ $period ] ) ) { |
|
| 284 | + return sprintf( $periods[ $period ]['plural'], $interval ); |
|
| 285 | + } |
|
| 286 | 286 | |
| 287 | - // Backwards compatibility. |
|
| 288 | - foreach ( $periods as $key => $data ) { |
|
| 289 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 290 | - return sprintf( $data['plural'], $interval ); |
|
| 291 | - } |
|
| 292 | - } |
|
| 287 | + // Backwards compatibility. |
|
| 288 | + foreach ( $periods as $key => $data ) { |
|
| 289 | + if ( strpos( $key, $period ) === 0 ) { |
|
| 290 | + return sprintf( $data['plural'], $interval ); |
|
| 291 | + } |
|
| 292 | + } |
|
| 293 | 293 | |
| 294 | - // Invalid string. |
|
| 295 | - return ''; |
|
| 294 | + // Invalid string. |
|
| 295 | + return ''; |
|
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | /** |
@@ -303,101 +303,101 @@ discard block |
||
| 303 | 303 | */ |
| 304 | 304 | function getpaid_get_formatted_subscription_amount( $subscription ) { |
| 305 | 305 | |
| 306 | - $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 307 | - $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 308 | - $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 309 | - $bill_times = $subscription->get_bill_times(); |
|
| 306 | + $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 307 | + $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 308 | + $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 309 | + $bill_times = $subscription->get_bill_times(); |
|
| 310 | 310 | |
| 311 | - if ( ! empty( $bill_times ) ) { |
|
| 312 | - $bill_times = $subscription->get_frequency() * $bill_times; |
|
| 313 | - $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
| 314 | - } |
|
| 311 | + if ( ! empty( $bill_times ) ) { |
|
| 312 | + $bill_times = $subscription->get_frequency() * $bill_times; |
|
| 313 | + $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
| 314 | + } |
|
| 315 | 315 | |
| 316 | - // Trial periods. |
|
| 317 | - if ( $subscription->has_trial_period() ) { |
|
| 316 | + // Trial periods. |
|
| 317 | + if ( $subscription->has_trial_period() ) { |
|
| 318 | 318 | |
| 319 | - $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
| 320 | - $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
| 319 | + $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
| 320 | + $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
| 321 | 321 | |
| 322 | - if ( empty( $bill_times ) ) { |
|
| 322 | + if ( empty( $bill_times ) ) { |
|
| 323 | 323 | |
| 324 | - return sprintf( |
|
| 324 | + return sprintf( |
|
| 325 | 325 | |
| 326 | - // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
|
| 327 | - _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' ), |
|
| 328 | - $initial, |
|
| 329 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 330 | - $recurring, |
|
| 331 | - $period |
|
| 326 | + // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
|
| 327 | + _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' ), |
|
| 328 | + $initial, |
|
| 329 | + getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 330 | + $recurring, |
|
| 331 | + $period |
|
| 332 | 332 | |
| 333 | - ); |
|
| 333 | + ); |
|
| 334 | 334 | |
| 335 | - } |
|
| 335 | + } |
|
| 336 | 336 | |
| 337 | - return sprintf( |
|
| 337 | + return sprintf( |
|
| 338 | 338 | |
| 339 | - // 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 |
|
| 340 | - _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' ), |
|
| 341 | - $initial, |
|
| 342 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 343 | - $recurring, |
|
| 344 | - $period, |
|
| 345 | - $bill_times |
|
| 346 | - ); |
|
| 339 | + // 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 |
|
| 340 | + _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' ), |
|
| 341 | + $initial, |
|
| 342 | + getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 343 | + $recurring, |
|
| 344 | + $period, |
|
| 345 | + $bill_times |
|
| 346 | + ); |
|
| 347 | 347 | |
| 348 | - } |
|
| 348 | + } |
|
| 349 | 349 | |
| 350 | - if ( $initial != $recurring ) { |
|
| 350 | + if ( $initial != $recurring ) { |
|
| 351 | 351 | |
| 352 | - if ( empty( $bill_times ) ) { |
|
| 352 | + if ( empty( $bill_times ) ) { |
|
| 353 | 353 | |
| 354 | - return sprintf( |
|
| 354 | + return sprintf( |
|
| 355 | 355 | |
| 356 | - // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
|
| 357 | - _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' ), |
|
| 358 | - $initial, |
|
| 359 | - $recurring, |
|
| 360 | - $period |
|
| 356 | + // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
|
| 357 | + _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' ), |
|
| 358 | + $initial, |
|
| 359 | + $recurring, |
|
| 360 | + $period |
|
| 361 | 361 | |
| 362 | - ); |
|
| 362 | + ); |
|
| 363 | 363 | |
| 364 | - } |
|
| 364 | + } |
|
| 365 | 365 | |
| 366 | - return sprintf( |
|
| 366 | + return sprintf( |
|
| 367 | 367 | |
| 368 | - // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
|
| 369 | - _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' ), |
|
| 370 | - $initial, |
|
| 371 | - $recurring, |
|
| 372 | - $period, |
|
| 373 | - $bill_times |
|
| 368 | + // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
|
| 369 | + _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' ), |
|
| 370 | + $initial, |
|
| 371 | + $recurring, |
|
| 372 | + $period, |
|
| 373 | + $bill_times |
|
| 374 | 374 | |
| 375 | - ); |
|
| 375 | + ); |
|
| 376 | 376 | |
| 377 | - } |
|
| 377 | + } |
|
| 378 | 378 | |
| 379 | - if ( empty( $bill_times ) ) { |
|
| 379 | + if ( empty( $bill_times ) ) { |
|
| 380 | 380 | |
| 381 | - return sprintf( |
|
| 381 | + return sprintf( |
|
| 382 | 382 | |
| 383 | - // translators: $1: is the recurring amount, $2: is the recurring period |
|
| 384 | - _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
| 385 | - $initial, |
|
| 386 | - $period |
|
| 383 | + // translators: $1: is the recurring amount, $2: is the recurring period |
|
| 384 | + _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
| 385 | + $initial, |
|
| 386 | + $period |
|
| 387 | 387 | |
| 388 | - ); |
|
| 388 | + ); |
|
| 389 | 389 | |
| 390 | - } |
|
| 390 | + } |
|
| 391 | 391 | |
| 392 | - return sprintf( |
|
| 392 | + return sprintf( |
|
| 393 | 393 | |
| 394 | - // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
|
| 395 | - _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
| 396 | - $bill_times, |
|
| 397 | - $initial, |
|
| 398 | - $period |
|
| 394 | + // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
|
| 395 | + _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
| 396 | + $bill_times, |
|
| 397 | + $initial, |
|
| 398 | + $period |
|
| 399 | 399 | |
| 400 | - ); |
|
| 400 | + ); |
|
| 401 | 401 | |
| 402 | 402 | } |
| 403 | 403 | |
@@ -408,7 +408,7 @@ discard block |
||
| 408 | 408 | * @return WPInv_Subscription|false |
| 409 | 409 | */ |
| 410 | 410 | function getpaid_get_invoice_subscription( $invoice ) { |
| 411 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 411 | + return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | /** |
@@ -417,10 +417,10 @@ discard block |
||
| 417 | 417 | * @param WPInv_Invoice $invoice |
| 418 | 418 | */ |
| 419 | 419 | function getpaid_activate_invoice_subscription( $invoice ) { |
| 420 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 421 | - if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 422 | - $subscription->activate(); |
|
| 423 | - } |
|
| 420 | + $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 421 | + if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 422 | + $subscription->activate(); |
|
| 423 | + } |
|
| 424 | 424 | } |
| 425 | 425 | |
| 426 | 426 | /** |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | * @return WPInv_Subscriptions |
| 430 | 430 | */ |
| 431 | 431 | function getpaid_subscriptions() { |
| 432 | - return getpaid()->get( 'subscriptions' ); |
|
| 432 | + return getpaid()->get( 'subscriptions' ); |
|
| 433 | 433 | } |
| 434 | 434 | |
| 435 | 435 | /** |
@@ -448,15 +448,15 @@ discard block |
||
| 448 | 448 | return false; |
| 449 | 449 | } |
| 450 | 450 | |
| 451 | - // Fetch the invoice subscription. |
|
| 452 | - $subscription = getpaid_get_subscriptions( |
|
| 453 | - array( |
|
| 454 | - 'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(), |
|
| 455 | - 'number' => 1, |
|
| 456 | - ) |
|
| 457 | - ); |
|
| 451 | + // Fetch the invoice subscription. |
|
| 452 | + $subscription = getpaid_get_subscriptions( |
|
| 453 | + array( |
|
| 454 | + 'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(), |
|
| 455 | + 'number' => 1, |
|
| 456 | + ) |
|
| 457 | + ); |
|
| 458 | 458 | |
| 459 | - return empty( $subscription ) ? false : $subscription[0]; |
|
| 459 | + return empty( $subscription ) ? false : $subscription[0]; |
|
| 460 | 460 | |
| 461 | 461 | } |
| 462 | 462 | |
@@ -473,48 +473,48 @@ discard block |
||
| 473 | 473 | */ |
| 474 | 474 | function getpaid_get_recurring_item_key( $cart_item ) { |
| 475 | 475 | |
| 476 | - $cart_key = 'renews_'; |
|
| 477 | - $interval = $cart_item->get_recurring_interval(); |
|
| 478 | - $period = $cart_item->get_recurring_period( true ); |
|
| 479 | - $length = $cart_item->get_recurring_limit() * $interval; |
|
| 480 | - $trial_period = $cart_item->get_trial_period( true ); |
|
| 481 | - $trial_length = $cart_item->get_trial_interval(); |
|
| 482 | - |
|
| 483 | - // First start with the billing interval and period |
|
| 484 | - switch ( $interval ) { |
|
| 485 | - case 1 : |
|
| 486 | - if ( 'day' == $period ) { |
|
| 487 | - $cart_key .= 'daily'; |
|
| 488 | - } else { |
|
| 489 | - $cart_key .= sprintf( '%sly', $period ); |
|
| 490 | - } |
|
| 491 | - break; |
|
| 492 | - case 2 : |
|
| 493 | - $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
| 494 | - break; |
|
| 495 | - case 3 : |
|
| 496 | - $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
| 497 | - break; |
|
| 498 | - default: |
|
| 499 | - $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
| 500 | - break; |
|
| 501 | - } |
|
| 502 | - |
|
| 503 | - // Maybe add the optional maximum billing periods... |
|
| 504 | - if ( $length > 0 ) { |
|
| 505 | - $cart_key .= '_for_'; |
|
| 506 | - $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
| 507 | - if ( $length > 1 ) { |
|
| 508 | - $cart_key .= 's'; |
|
| 509 | - } |
|
| 510 | - } |
|
| 511 | - |
|
| 512 | - // And an optional free trial. |
|
| 513 | - if ( $cart_item->has_free_trial() ) { |
|
| 514 | - $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
| 515 | - } |
|
| 516 | - |
|
| 517 | - return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
| 476 | + $cart_key = 'renews_'; |
|
| 477 | + $interval = $cart_item->get_recurring_interval(); |
|
| 478 | + $period = $cart_item->get_recurring_period( true ); |
|
| 479 | + $length = $cart_item->get_recurring_limit() * $interval; |
|
| 480 | + $trial_period = $cart_item->get_trial_period( true ); |
|
| 481 | + $trial_length = $cart_item->get_trial_interval(); |
|
| 482 | + |
|
| 483 | + // First start with the billing interval and period |
|
| 484 | + switch ( $interval ) { |
|
| 485 | + case 1 : |
|
| 486 | + if ( 'day' == $period ) { |
|
| 487 | + $cart_key .= 'daily'; |
|
| 488 | + } else { |
|
| 489 | + $cart_key .= sprintf( '%sly', $period ); |
|
| 490 | + } |
|
| 491 | + break; |
|
| 492 | + case 2 : |
|
| 493 | + $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
| 494 | + break; |
|
| 495 | + case 3 : |
|
| 496 | + $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
| 497 | + break; |
|
| 498 | + default: |
|
| 499 | + $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
| 500 | + break; |
|
| 501 | + } |
|
| 502 | + |
|
| 503 | + // Maybe add the optional maximum billing periods... |
|
| 504 | + if ( $length > 0 ) { |
|
| 505 | + $cart_key .= '_for_'; |
|
| 506 | + $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
| 507 | + if ( $length > 1 ) { |
|
| 508 | + $cart_key .= 's'; |
|
| 509 | + } |
|
| 510 | + } |
|
| 511 | + |
|
| 512 | + // And an optional free trial. |
|
| 513 | + if ( $cart_item->has_free_trial() ) { |
|
| 514 | + $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
| 515 | + } |
|
| 516 | + |
|
| 517 | + return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
| 518 | 518 | } |
| 519 | 519 | |
| 520 | 520 | /** |
@@ -525,17 +525,17 @@ discard block |
||
| 525 | 525 | */ |
| 526 | 526 | function getpaid_get_subscription_groups( $invoice ) { |
| 527 | 527 | |
| 528 | - // Generate subscription groups. |
|
| 529 | - $subscription_groups = array(); |
|
| 530 | - foreach ( $invoice->get_items() as $item ) { |
|
| 528 | + // Generate subscription groups. |
|
| 529 | + $subscription_groups = array(); |
|
| 530 | + foreach ( $invoice->get_items() as $item ) { |
|
| 531 | 531 | |
| 532 | - if ( $item->is_recurring() ) { |
|
| 533 | - $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
| 534 | - } |
|
| 532 | + if ( $item->is_recurring() ) { |
|
| 533 | + $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
| 534 | + } |
|
| 535 | 535 | |
| 536 | - } |
|
| 536 | + } |
|
| 537 | 537 | |
| 538 | - return $subscription_groups; |
|
| 538 | + return $subscription_groups; |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | /** |
@@ -549,57 +549,57 @@ discard block |
||
| 549 | 549 | */ |
| 550 | 550 | function getpaid_calculate_subscription_totals( $invoice ) { |
| 551 | 551 | |
| 552 | - // Generate subscription groups. |
|
| 553 | - $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
| 552 | + // Generate subscription groups. |
|
| 553 | + $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
| 554 | 554 | |
| 555 | - // Now let's calculate the totals for each group of subscriptions |
|
| 556 | - $subscription_totals = array(); |
|
| 555 | + // Now let's calculate the totals for each group of subscriptions |
|
| 556 | + $subscription_totals = array(); |
|
| 557 | 557 | |
| 558 | - foreach ( $subscription_groups as $subscription_key => $items ) { |
|
| 558 | + foreach ( $subscription_groups as $subscription_key => $items ) { |
|
| 559 | 559 | |
| 560 | - if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
| 560 | + if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
| 561 | 561 | |
| 562 | - $subscription_totals[ $subscription_key ] = array( |
|
| 563 | - 'initial_total' => 0, |
|
| 564 | - 'recurring_total' => 0, |
|
| 565 | - 'items' => array(), |
|
| 566 | - 'trialling' => false, |
|
| 567 | - ); |
|
| 562 | + $subscription_totals[ $subscription_key ] = array( |
|
| 563 | + 'initial_total' => 0, |
|
| 564 | + 'recurring_total' => 0, |
|
| 565 | + 'items' => array(), |
|
| 566 | + 'trialling' => false, |
|
| 567 | + ); |
|
| 568 | 568 | |
| 569 | - } |
|
| 569 | + } |
|
| 570 | 570 | |
| 571 | - /** |
|
| 572 | - * Get the totals of the group. |
|
| 573 | - * @var GetPaid_Form_Item $item |
|
| 574 | - */ |
|
| 575 | - foreach ( $items as $item ) { |
|
| 571 | + /** |
|
| 572 | + * Get the totals of the group. |
|
| 573 | + * @var GetPaid_Form_Item $item |
|
| 574 | + */ |
|
| 575 | + foreach ( $items as $item ) { |
|
| 576 | 576 | |
| 577 | - $subscription_totals[ $subscription_key ]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
| 578 | - $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
| 579 | - $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
| 580 | - $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
| 581 | - $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total(); |
|
| 582 | - $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total(); |
|
| 583 | - $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
| 577 | + $subscription_totals[ $subscription_key ]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
| 578 | + $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
| 579 | + $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
| 580 | + $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
| 581 | + $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total(); |
|
| 582 | + $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total(); |
|
| 583 | + $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
| 584 | 584 | |
| 585 | - // Calculate the next renewal date. |
|
| 586 | - $period = $item->get_recurring_period( true ); |
|
| 587 | - $interval = $item->get_recurring_interval(); |
|
| 585 | + // Calculate the next renewal date. |
|
| 586 | + $period = $item->get_recurring_period( true ); |
|
| 587 | + $interval = $item->get_recurring_interval(); |
|
| 588 | 588 | |
| 589 | - // If the subscription item has a trial period... |
|
| 590 | - if ( $item->has_free_trial() ) { |
|
| 591 | - $period = $item->get_trial_period( true ); |
|
| 592 | - $interval = $item->get_trial_interval(); |
|
| 593 | - $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
| 594 | - } |
|
| 589 | + // If the subscription item has a trial period... |
|
| 590 | + if ( $item->has_free_trial() ) { |
|
| 591 | + $period = $item->get_trial_period( true ); |
|
| 592 | + $interval = $item->get_trial_interval(); |
|
| 593 | + $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
| 594 | + } |
|
| 595 | 595 | |
| 596 | - $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
| 596 | + $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
| 597 | 597 | |
| 598 | - } |
|
| 598 | + } |
|
| 599 | 599 | |
| 600 | - } |
|
| 600 | + } |
|
| 601 | 601 | |
| 602 | - return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
| 602 | + return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
| 603 | 603 | } |
| 604 | 604 | |
| 605 | 605 | /** |
@@ -610,15 +610,15 @@ discard block |
||
| 610 | 610 | */ |
| 611 | 611 | function getpaid_should_group_subscriptions( $invoice ) { |
| 612 | 612 | |
| 613 | - $recurring_items = 0; |
|
| 613 | + $recurring_items = 0; |
|
| 614 | 614 | |
| 615 | - foreach ( $invoice->get_items() as $item ) { |
|
| 615 | + foreach ( $invoice->get_items() as $item ) { |
|
| 616 | 616 | |
| 617 | - if ( $item->is_recurring() ) { |
|
| 618 | - $recurring_items ++; |
|
| 619 | - } |
|
| 617 | + if ( $item->is_recurring() ) { |
|
| 618 | + $recurring_items ++; |
|
| 619 | + } |
|
| 620 | 620 | |
| 621 | - } |
|
| 621 | + } |
|
| 622 | 622 | |
| 623 | - return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
| 623 | + return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
| 624 | 624 | } |
@@ -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,8 +61,8 @@ discard block |
||
| 61 | 61 | * @since 2.3.0 |
| 62 | 62 | * @return WPInv_Subscription|false |
| 63 | 63 | */ |
| 64 | -function getpaid_get_subscription( $subscription ) { |
|
| 65 | - $subscription = new WPInv_Subscription( $subscription ); |
|
| 64 | +function getpaid_get_subscription($subscription) { |
|
| 65 | + $subscription = new WPInv_Subscription($subscription); |
|
| 66 | 66 | return $subscription->exists() ? $subscription : false; |
| 67 | 67 | } |
| 68 | 68 | |
@@ -75,26 +75,26 @@ discard block |
||
| 75 | 75 | * |
| 76 | 76 | * @return int|array|WPInv_Subscription[]|GetPaid_Subscriptions_Query |
| 77 | 77 | */ |
| 78 | -function getpaid_get_subscriptions( $args = array(), $return = 'results' ) { |
|
| 78 | +function getpaid_get_subscriptions($args = array(), $return = 'results') { |
|
| 79 | 79 | |
| 80 | 80 | // Do not retrieve all fields if we just want the count. |
| 81 | - if ( 'count' == $return ) { |
|
| 81 | + if ('count' == $return) { |
|
| 82 | 82 | $args['fields'] = 'id'; |
| 83 | 83 | $args['number'] = 1; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | // Do not count all matches if we just want the results. |
| 87 | - if ( 'results' == $return ) { |
|
| 87 | + if ('results' == $return) { |
|
| 88 | 88 | $args['count_total'] = false; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - $query = new GetPaid_Subscriptions_Query( $args ); |
|
| 91 | + $query = new GetPaid_Subscriptions_Query($args); |
|
| 92 | 92 | |
| 93 | - if ( 'results' == $return ) { |
|
| 93 | + if ('results' == $return) { |
|
| 94 | 94 | return $query->get_results(); |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - if ( 'count' == $return ) { |
|
| 97 | + if ('count' == $return) { |
|
| 98 | 98 | return $query->get_total(); |
| 99 | 99 | } |
| 100 | 100 | |
@@ -111,13 +111,13 @@ discard block |
||
| 111 | 111 | return apply_filters( |
| 112 | 112 | 'getpaid_get_subscription_statuses', |
| 113 | 113 | array( |
| 114 | - 'pending' => __( 'Pending', 'invoicing' ), |
|
| 115 | - 'trialling' => __( 'Trialing', 'invoicing' ), |
|
| 116 | - 'active' => __( 'Active', 'invoicing' ), |
|
| 117 | - 'failing' => __( 'Failing', 'invoicing' ), |
|
| 118 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
| 119 | - 'completed' => __( 'Complete', 'invoicing' ), |
|
| 120 | - 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
| 114 | + 'pending' => __('Pending', 'invoicing'), |
|
| 115 | + 'trialling' => __('Trialing', 'invoicing'), |
|
| 116 | + 'active' => __('Active', 'invoicing'), |
|
| 117 | + 'failing' => __('Failing', 'invoicing'), |
|
| 118 | + 'expired' => __('Expired', 'invoicing'), |
|
| 119 | + 'completed' => __('Complete', 'invoicing'), |
|
| 120 | + 'cancelled' => __('Cancelled', 'invoicing'), |
|
| 121 | 121 | ) |
| 122 | 122 | ); |
| 123 | 123 | |
@@ -128,9 +128,9 @@ discard block |
||
| 128 | 128 | * |
| 129 | 129 | * @return string |
| 130 | 130 | */ |
| 131 | -function getpaid_get_subscription_status_label( $status ) { |
|
| 131 | +function getpaid_get_subscription_status_label($status) { |
|
| 132 | 132 | $statuses = getpaid_get_subscription_statuses(); |
| 133 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
| 133 | + return isset($statuses[$status]) ? $statuses[$status] : ucfirst(sanitize_text_field($status)); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | /** |
@@ -160,14 +160,14 @@ discard block |
||
| 160 | 160 | * |
| 161 | 161 | * @return array |
| 162 | 162 | */ |
| 163 | -function getpaid_get_subscription_status_counts( $args = array() ) { |
|
| 163 | +function getpaid_get_subscription_status_counts($args = array()) { |
|
| 164 | 164 | |
| 165 | - $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
| 165 | + $statuses = array_keys(getpaid_get_subscription_statuses()); |
|
| 166 | 166 | $counts = array(); |
| 167 | 167 | |
| 168 | - foreach ( $statuses as $status ) { |
|
| 169 | - $_args = wp_parse_args( "status=$status", $args ); |
|
| 170 | - $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
| 168 | + foreach ($statuses as $status) { |
|
| 169 | + $_args = wp_parse_args("status=$status", $args); |
|
| 170 | + $counts[$status] = getpaid_get_subscriptions($_args, 'count'); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | return $counts; |
@@ -186,23 +186,23 @@ discard block |
||
| 186 | 186 | array( |
| 187 | 187 | |
| 188 | 188 | 'day' => array( |
| 189 | - 'singular' => __( '%s day', 'invoicing' ), |
|
| 190 | - 'plural' => __( '%d days', 'invoicing' ), |
|
| 189 | + 'singular' => __('%s day', 'invoicing'), |
|
| 190 | + 'plural' => __('%d days', 'invoicing'), |
|
| 191 | 191 | ), |
| 192 | 192 | |
| 193 | 193 | 'week' => array( |
| 194 | - 'singular' => __( '%s week', 'invoicing' ), |
|
| 195 | - 'plural' => __( '%d weeks', 'invoicing' ), |
|
| 194 | + 'singular' => __('%s week', 'invoicing'), |
|
| 195 | + 'plural' => __('%d weeks', 'invoicing'), |
|
| 196 | 196 | ), |
| 197 | 197 | |
| 198 | 198 | 'month' => array( |
| 199 | - 'singular' => __( '%s month', 'invoicing' ), |
|
| 200 | - 'plural' => __( '%d months', 'invoicing' ), |
|
| 199 | + 'singular' => __('%s month', 'invoicing'), |
|
| 200 | + 'plural' => __('%d months', 'invoicing'), |
|
| 201 | 201 | ), |
| 202 | 202 | |
| 203 | 203 | 'year' => array( |
| 204 | - 'singular' => __( '%s year', 'invoicing' ), |
|
| 205 | - 'plural' => __( '%d years', 'invoicing' ), |
|
| 204 | + 'singular' => __('%s year', 'invoicing'), |
|
| 205 | + 'plural' => __('%d years', 'invoicing'), |
|
| 206 | 206 | ), |
| 207 | 207 | |
| 208 | 208 | ) |
@@ -216,8 +216,8 @@ discard block |
||
| 216 | 216 | * @param string $trial_period |
| 217 | 217 | * @return int |
| 218 | 218 | */ |
| 219 | -function getpaid_get_subscription_trial_period_interval( $trial_period ) { |
|
| 220 | - return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
| 219 | +function getpaid_get_subscription_trial_period_interval($trial_period) { |
|
| 220 | + return (int) preg_replace('/[^0-9]/', '', $trial_period); |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | /** |
@@ -226,8 +226,8 @@ discard block |
||
| 226 | 226 | * @param string $trial_period |
| 227 | 227 | * @return string |
| 228 | 228 | */ |
| 229 | -function getpaid_get_subscription_trial_period_period( $trial_period ) { |
|
| 230 | - return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
| 229 | +function getpaid_get_subscription_trial_period_period($trial_period) { |
|
| 230 | + return preg_replace('/[^a-z]/', '', strtolower($trial_period)); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -237,9 +237,9 @@ discard block |
||
| 237 | 237 | * @param int $interval |
| 238 | 238 | * @return string |
| 239 | 239 | */ |
| 240 | -function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) { |
|
| 241 | - $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
| 242 | - return strtolower( sanitize_text_field( $label ) ); |
|
| 240 | +function getpaid_get_subscription_period_label($period, $interval = 1, $singular_prefix = '1') { |
|
| 241 | + $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label($period, $interval) : getpaid_get_singular_subscription_period_label($period, $singular_prefix); |
|
| 242 | + return strtolower(sanitize_text_field($label)); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
@@ -248,19 +248,19 @@ discard block |
||
| 248 | 248 | * @param string $period |
| 249 | 249 | * @return string |
| 250 | 250 | */ |
| 251 | -function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) { |
|
| 251 | +function getpaid_get_singular_subscription_period_label($period, $singular_prefix = '1') { |
|
| 252 | 252 | |
| 253 | 253 | $periods = getpaid_get_subscription_periods(); |
| 254 | - $period = strtolower( $period ); |
|
| 254 | + $period = strtolower($period); |
|
| 255 | 255 | |
| 256 | - if ( isset( $periods[ $period ] ) ) { |
|
| 257 | - return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
| 256 | + if (isset($periods[$period])) { |
|
| 257 | + return sprintf($periods[$period]['singular'], $singular_prefix); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | // Backwards compatibility. |
| 261 | - foreach ( $periods as $key => $data ) { |
|
| 262 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 263 | - return sprintf( $data['singular'], $singular_prefix ); |
|
| 261 | + foreach ($periods as $key => $data) { |
|
| 262 | + if (strpos($key, $period) === 0) { |
|
| 263 | + return sprintf($data['singular'], $singular_prefix); |
|
| 264 | 264 | } |
| 265 | 265 | } |
| 266 | 266 | |
@@ -275,19 +275,19 @@ discard block |
||
| 275 | 275 | * @param int $interval |
| 276 | 276 | * @return string |
| 277 | 277 | */ |
| 278 | -function getpaid_get_plural_subscription_period_label( $period, $interval ) { |
|
| 278 | +function getpaid_get_plural_subscription_period_label($period, $interval) { |
|
| 279 | 279 | |
| 280 | 280 | $periods = getpaid_get_subscription_periods(); |
| 281 | - $period = strtolower( $period ); |
|
| 281 | + $period = strtolower($period); |
|
| 282 | 282 | |
| 283 | - if ( isset( $periods[ $period ] ) ) { |
|
| 284 | - return sprintf( $periods[ $period ]['plural'], $interval ); |
|
| 283 | + if (isset($periods[$period])) { |
|
| 284 | + return sprintf($periods[$period]['plural'], $interval); |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | // Backwards compatibility. |
| 288 | - foreach ( $periods as $key => $data ) { |
|
| 289 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 290 | - return sprintf( $data['plural'], $interval ); |
|
| 288 | + foreach ($periods as $key => $data) { |
|
| 289 | + if (strpos($key, $period) === 0) { |
|
| 290 | + return sprintf($data['plural'], $interval); |
|
| 291 | 291 | } |
| 292 | 292 | } |
| 293 | 293 | |
@@ -301,32 +301,32 @@ discard block |
||
| 301 | 301 | * @param WPInv_Subscription $subscription |
| 302 | 302 | * @return string |
| 303 | 303 | */ |
| 304 | -function getpaid_get_formatted_subscription_amount( $subscription ) { |
|
| 304 | +function getpaid_get_formatted_subscription_amount($subscription) { |
|
| 305 | 305 | |
| 306 | - $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 307 | - $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 308 | - $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 306 | + $initial = wpinv_price($subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency()); |
|
| 307 | + $recurring = wpinv_price($subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency()); |
|
| 308 | + $period = getpaid_get_subscription_period_label($subscription->get_period(), $subscription->get_frequency(), ''); |
|
| 309 | 309 | $bill_times = $subscription->get_bill_times(); |
| 310 | 310 | |
| 311 | - if ( ! empty( $bill_times ) ) { |
|
| 311 | + if (!empty($bill_times)) { |
|
| 312 | 312 | $bill_times = $subscription->get_frequency() * $bill_times; |
| 313 | - $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
| 313 | + $bill_times = getpaid_get_subscription_period_label($subscription->get_period(), $bill_times); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | // Trial periods. |
| 317 | - if ( $subscription->has_trial_period() ) { |
|
| 317 | + if ($subscription->has_trial_period()) { |
|
| 318 | 318 | |
| 319 | - $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
| 320 | - $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
| 319 | + $trial_period = getpaid_get_subscription_trial_period_period($subscription->get_trial_period()); |
|
| 320 | + $trial_interval = getpaid_get_subscription_trial_period_interval($subscription->get_trial_period()); |
|
| 321 | 321 | |
| 322 | - if ( empty( $bill_times ) ) { |
|
| 322 | + if (empty($bill_times)) { |
|
| 323 | 323 | |
| 324 | 324 | return sprintf( |
| 325 | 325 | |
| 326 | 326 | // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
| 327 | - _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' ), |
|
| 327 | + _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'), |
|
| 328 | 328 | $initial, |
| 329 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 329 | + getpaid_get_subscription_period_label($trial_period, $trial_interval), |
|
| 330 | 330 | $recurring, |
| 331 | 331 | $period |
| 332 | 332 | |
@@ -337,9 +337,9 @@ discard block |
||
| 337 | 337 | return sprintf( |
| 338 | 338 | |
| 339 | 339 | // 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 |
| 340 | - _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' ), |
|
| 340 | + _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'), |
|
| 341 | 341 | $initial, |
| 342 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 342 | + getpaid_get_subscription_period_label($trial_period, $trial_interval), |
|
| 343 | 343 | $recurring, |
| 344 | 344 | $period, |
| 345 | 345 | $bill_times |
@@ -347,14 +347,14 @@ discard block |
||
| 347 | 347 | |
| 348 | 348 | } |
| 349 | 349 | |
| 350 | - if ( $initial != $recurring ) { |
|
| 350 | + if ($initial != $recurring) { |
|
| 351 | 351 | |
| 352 | - if ( empty( $bill_times ) ) { |
|
| 352 | + if (empty($bill_times)) { |
|
| 353 | 353 | |
| 354 | 354 | return sprintf( |
| 355 | 355 | |
| 356 | 356 | // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
| 357 | - _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' ), |
|
| 357 | + _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'), |
|
| 358 | 358 | $initial, |
| 359 | 359 | $recurring, |
| 360 | 360 | $period |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | return sprintf( |
| 367 | 367 | |
| 368 | 368 | // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
| 369 | - _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' ), |
|
| 369 | + _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'), |
|
| 370 | 370 | $initial, |
| 371 | 371 | $recurring, |
| 372 | 372 | $period, |
@@ -376,12 +376,12 @@ discard block |
||
| 376 | 376 | |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | - if ( empty( $bill_times ) ) { |
|
| 379 | + if (empty($bill_times)) { |
|
| 380 | 380 | |
| 381 | 381 | return sprintf( |
| 382 | 382 | |
| 383 | 383 | // translators: $1: is the recurring amount, $2: is the recurring period |
| 384 | - _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
| 384 | + _x('%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing'), |
|
| 385 | 385 | $initial, |
| 386 | 386 | $period |
| 387 | 387 | |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | return sprintf( |
| 393 | 393 | |
| 394 | 394 | // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
| 395 | - _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
| 395 | + _x('%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing'), |
|
| 396 | 396 | $bill_times, |
| 397 | 397 | $initial, |
| 398 | 398 | $period |
@@ -407,8 +407,8 @@ discard block |
||
| 407 | 407 | * @param WPInv_Invoice $invoice |
| 408 | 408 | * @return WPInv_Subscription|false |
| 409 | 409 | */ |
| 410 | -function getpaid_get_invoice_subscription( $invoice ) { |
|
| 411 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 410 | +function getpaid_get_invoice_subscription($invoice) { |
|
| 411 | + return getpaid_subscriptions()->get_invoice_subscription($invoice); |
|
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | /** |
@@ -416,9 +416,9 @@ discard block |
||
| 416 | 416 | * |
| 417 | 417 | * @param WPInv_Invoice $invoice |
| 418 | 418 | */ |
| 419 | -function getpaid_activate_invoice_subscription( $invoice ) { |
|
| 420 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 421 | - if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 419 | +function getpaid_activate_invoice_subscription($invoice) { |
|
| 420 | + $subscription = getpaid_get_invoice_subscription($invoice); |
|
| 421 | + if (is_a($subscription, 'WPInv_Subscription')) { |
|
| 422 | 422 | $subscription->activate(); |
| 423 | 423 | } |
| 424 | 424 | } |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | * @return WPInv_Subscriptions |
| 430 | 430 | */ |
| 431 | 431 | function getpaid_subscriptions() { |
| 432 | - return getpaid()->get( 'subscriptions' ); |
|
| 432 | + return getpaid()->get('subscriptions'); |
|
| 433 | 433 | } |
| 434 | 434 | |
| 435 | 435 | /** |
@@ -438,13 +438,13 @@ discard block |
||
| 438 | 438 | * @since 2.3.0 |
| 439 | 439 | * @return WPInv_Subscription|bool |
| 440 | 440 | */ |
| 441 | -function wpinv_get_invoice_subscription( $invoice ) { |
|
| 441 | +function wpinv_get_invoice_subscription($invoice) { |
|
| 442 | 442 | |
| 443 | 443 | // Retrieve the invoice. |
| 444 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 444 | + $invoice = new WPInv_Invoice($invoice); |
|
| 445 | 445 | |
| 446 | 446 | // Ensure it is a recurring invoice. |
| 447 | - if ( ! $invoice->is_recurring() ) { |
|
| 447 | + if (!$invoice->is_recurring()) { |
|
| 448 | 448 | return false; |
| 449 | 449 | } |
| 450 | 450 | |
@@ -456,7 +456,7 @@ discard block |
||
| 456 | 456 | ) |
| 457 | 457 | ); |
| 458 | 458 | |
| 459 | - return empty( $subscription ) ? false : $subscription[0]; |
|
| 459 | + return empty($subscription) ? false : $subscription[0]; |
|
| 460 | 460 | |
| 461 | 461 | } |
| 462 | 462 | |
@@ -471,50 +471,50 @@ discard block |
||
| 471 | 471 | * @param GetPaid_Form_Item|WPInv_Item $cart_item |
| 472 | 472 | * @return string |
| 473 | 473 | */ |
| 474 | -function getpaid_get_recurring_item_key( $cart_item ) { |
|
| 474 | +function getpaid_get_recurring_item_key($cart_item) { |
|
| 475 | 475 | |
| 476 | 476 | $cart_key = 'renews_'; |
| 477 | 477 | $interval = $cart_item->get_recurring_interval(); |
| 478 | - $period = $cart_item->get_recurring_period( true ); |
|
| 478 | + $period = $cart_item->get_recurring_period(true); |
|
| 479 | 479 | $length = $cart_item->get_recurring_limit() * $interval; |
| 480 | - $trial_period = $cart_item->get_trial_period( true ); |
|
| 480 | + $trial_period = $cart_item->get_trial_period(true); |
|
| 481 | 481 | $trial_length = $cart_item->get_trial_interval(); |
| 482 | 482 | |
| 483 | 483 | // First start with the billing interval and period |
| 484 | - switch ( $interval ) { |
|
| 484 | + switch ($interval) { |
|
| 485 | 485 | case 1 : |
| 486 | - if ( 'day' == $period ) { |
|
| 486 | + if ('day' == $period) { |
|
| 487 | 487 | $cart_key .= 'daily'; |
| 488 | 488 | } else { |
| 489 | - $cart_key .= sprintf( '%sly', $period ); |
|
| 489 | + $cart_key .= sprintf('%sly', $period); |
|
| 490 | 490 | } |
| 491 | 491 | break; |
| 492 | 492 | case 2 : |
| 493 | - $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
| 493 | + $cart_key .= sprintf('every_2nd_%s', $period); |
|
| 494 | 494 | break; |
| 495 | 495 | case 3 : |
| 496 | - $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
| 496 | + $cart_key .= sprintf('every_3rd_%s', $period); |
|
| 497 | 497 | break; |
| 498 | 498 | default: |
| 499 | - $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
| 499 | + $cart_key .= sprintf('every_%dth_%s', $interval, $period); |
|
| 500 | 500 | break; |
| 501 | 501 | } |
| 502 | 502 | |
| 503 | 503 | // Maybe add the optional maximum billing periods... |
| 504 | - if ( $length > 0 ) { |
|
| 504 | + if ($length > 0) { |
|
| 505 | 505 | $cart_key .= '_for_'; |
| 506 | - $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
| 507 | - if ( $length > 1 ) { |
|
| 506 | + $cart_key .= sprintf('%d_%s', $length, $period); |
|
| 507 | + if ($length > 1) { |
|
| 508 | 508 | $cart_key .= 's'; |
| 509 | 509 | } |
| 510 | 510 | } |
| 511 | 511 | |
| 512 | 512 | // And an optional free trial. |
| 513 | - if ( $cart_item->has_free_trial() ) { |
|
| 514 | - $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
| 513 | + if ($cart_item->has_free_trial()) { |
|
| 514 | + $cart_key .= sprintf('_after_a_%d_%s_trial', $trial_length, $trial_period); |
|
| 515 | 515 | } |
| 516 | 516 | |
| 517 | - return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
| 517 | + return apply_filters('getpaid_get_recurring_item_key', $cart_key, $cart_item); |
|
| 518 | 518 | } |
| 519 | 519 | |
| 520 | 520 | /** |
@@ -523,14 +523,14 @@ discard block |
||
| 523 | 523 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
| 524 | 524 | * @return array |
| 525 | 525 | */ |
| 526 | -function getpaid_get_subscription_groups( $invoice ) { |
|
| 526 | +function getpaid_get_subscription_groups($invoice) { |
|
| 527 | 527 | |
| 528 | 528 | // Generate subscription groups. |
| 529 | 529 | $subscription_groups = array(); |
| 530 | - foreach ( $invoice->get_items() as $item ) { |
|
| 530 | + foreach ($invoice->get_items() as $item) { |
|
| 531 | 531 | |
| 532 | - if ( $item->is_recurring() ) { |
|
| 533 | - $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
| 532 | + if ($item->is_recurring()) { |
|
| 533 | + $subscription_groups[getpaid_get_recurring_item_key($item)][] = $item; |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | 536 | } |
@@ -547,19 +547,19 @@ discard block |
||
| 547 | 547 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
| 548 | 548 | * @return array |
| 549 | 549 | */ |
| 550 | -function getpaid_calculate_subscription_totals( $invoice ) { |
|
| 550 | +function getpaid_calculate_subscription_totals($invoice) { |
|
| 551 | 551 | |
| 552 | 552 | // Generate subscription groups. |
| 553 | - $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
| 553 | + $subscription_groups = getpaid_get_subscription_groups($invoice); |
|
| 554 | 554 | |
| 555 | 555 | // Now let's calculate the totals for each group of subscriptions |
| 556 | 556 | $subscription_totals = array(); |
| 557 | 557 | |
| 558 | - foreach ( $subscription_groups as $subscription_key => $items ) { |
|
| 558 | + foreach ($subscription_groups as $subscription_key => $items) { |
|
| 559 | 559 | |
| 560 | - if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
| 560 | + if (empty($subscription_totals[$subscription_key])) { |
|
| 561 | 561 | |
| 562 | - $subscription_totals[ $subscription_key ] = array( |
|
| 562 | + $subscription_totals[$subscription_key] = array( |
|
| 563 | 563 | 'initial_total' => 0, |
| 564 | 564 | 'recurring_total' => 0, |
| 565 | 565 | 'items' => array(), |
@@ -572,34 +572,34 @@ discard block |
||
| 572 | 572 | * Get the totals of the group. |
| 573 | 573 | * @var GetPaid_Form_Item $item |
| 574 | 574 | */ |
| 575 | - foreach ( $items as $item ) { |
|
| 575 | + foreach ($items as $item) { |
|
| 576 | 576 | |
| 577 | - $subscription_totals[ $subscription_key ]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
| 578 | - $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
| 579 | - $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
| 580 | - $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
| 581 | - $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total(); |
|
| 582 | - $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total(); |
|
| 583 | - $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
| 577 | + $subscription_totals[$subscription_key]['items'][$item->get_id()] = $item->prepare_data_for_saving(); |
|
| 578 | + $subscription_totals[$subscription_key]['item_id'] = $item->get_id(); |
|
| 579 | + $subscription_totals[$subscription_key]['period'] = $item->get_recurring_period(true); |
|
| 580 | + $subscription_totals[$subscription_key]['interval'] = $item->get_recurring_interval(); |
|
| 581 | + $subscription_totals[$subscription_key]['initial_total'] += $item->get_sub_total(); |
|
| 582 | + $subscription_totals[$subscription_key]['recurring_total'] += $item->get_recurring_sub_total(); |
|
| 583 | + $subscription_totals[$subscription_key]['recurring_limit'] = $item->get_recurring_limit(); |
|
| 584 | 584 | |
| 585 | 585 | // Calculate the next renewal date. |
| 586 | - $period = $item->get_recurring_period( true ); |
|
| 586 | + $period = $item->get_recurring_period(true); |
|
| 587 | 587 | $interval = $item->get_recurring_interval(); |
| 588 | 588 | |
| 589 | 589 | // If the subscription item has a trial period... |
| 590 | - if ( $item->has_free_trial() ) { |
|
| 591 | - $period = $item->get_trial_period( true ); |
|
| 590 | + if ($item->has_free_trial()) { |
|
| 591 | + $period = $item->get_trial_period(true); |
|
| 592 | 592 | $interval = $item->get_trial_interval(); |
| 593 | - $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
| 593 | + $subscription_totals[$subscription_key]['trialling'] = $interval . ' ' . $period; |
|
| 594 | 594 | } |
| 595 | 595 | |
| 596 | - $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
| 596 | + $subscription_totals[$subscription_key]['renews_on'] = date('Y-m-d H:i:s', strtotime("+$interval $period", current_time('timestamp'))); |
|
| 597 | 597 | |
| 598 | 598 | } |
| 599 | 599 | |
| 600 | 600 | } |
| 601 | 601 | |
| 602 | - return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
| 602 | + return apply_filters('getpaid_calculate_subscription_totals', $subscription_totals, $invoice); |
|
| 603 | 603 | } |
| 604 | 604 | |
| 605 | 605 | /** |
@@ -608,17 +608,17 @@ discard block |
||
| 608 | 608 | * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice |
| 609 | 609 | * @return array |
| 610 | 610 | */ |
| 611 | -function getpaid_should_group_subscriptions( $invoice ) { |
|
| 611 | +function getpaid_should_group_subscriptions($invoice) { |
|
| 612 | 612 | |
| 613 | 613 | $recurring_items = 0; |
| 614 | 614 | |
| 615 | - foreach ( $invoice->get_items() as $item ) { |
|
| 615 | + foreach ($invoice->get_items() as $item) { |
|
| 616 | 616 | |
| 617 | - if ( $item->is_recurring() ) { |
|
| 618 | - $recurring_items ++; |
|
| 617 | + if ($item->is_recurring()) { |
|
| 618 | + $recurring_items++; |
|
| 619 | 619 | } |
| 620 | 620 | |
| 621 | 621 | } |
| 622 | 622 | |
| 623 | - return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
| 623 | + return apply_filters('getpaid_should_group_subscriptions', $recurring_items > 1, $invoice); |
|
| 624 | 624 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | - exit; |
|
| 3 | + exit; |
|
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | /** |
@@ -10,30 +10,30 @@ discard block |
||
| 10 | 10 | class WPInv_Item extends GetPaid_Data { |
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | - * Which data store to load. |
|
| 14 | - * |
|
| 15 | - * @var string |
|
| 16 | - */ |
|
| 13 | + * Which data store to load. |
|
| 14 | + * |
|
| 15 | + * @var string |
|
| 16 | + */ |
|
| 17 | 17 | protected $data_store_name = 'item'; |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * This is the name of this object type. |
|
| 21 | - * |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 24 | - protected $object_type = 'item'; |
|
| 20 | + * This is the name of this object type. |
|
| 21 | + * |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | + protected $object_type = 'item'; |
|
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | - * Item Data array. This is the core item data exposed in APIs. |
|
| 28 | - * |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - protected $data = array( |
|
| 33 | - 'parent_id' => 0, |
|
| 34 | - 'status' => 'draft', |
|
| 35 | - 'version' => '', |
|
| 36 | - 'date_created' => null, |
|
| 27 | + * Item Data array. This is the core item data exposed in APIs. |
|
| 28 | + * |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + protected $data = array( |
|
| 33 | + 'parent_id' => 0, |
|
| 34 | + 'status' => 'draft', |
|
| 35 | + 'version' => '', |
|
| 36 | + 'date_created' => null, |
|
| 37 | 37 | 'date_modified' => null, |
| 38 | 38 | 'name' => '', |
| 39 | 39 | 'description' => '', |
@@ -58,13 +58,13 @@ discard block |
||
| 58 | 58 | ); |
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | - * Stores meta in cache for future reads. |
|
| 62 | - * |
|
| 63 | - * A group must be set to to enable caching. |
|
| 64 | - * |
|
| 65 | - * @var string |
|
| 66 | - */ |
|
| 67 | - protected $cache_group = 'getpaid_items'; |
|
| 61 | + * Stores meta in cache for future reads. |
|
| 62 | + * |
|
| 63 | + * A group must be set to to enable caching. |
|
| 64 | + * |
|
| 65 | + * @var string |
|
| 66 | + */ |
|
| 67 | + protected $cache_group = 'getpaid_items'; |
|
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | 70 | * Stores a reference to the original WP_Post object |
@@ -74,37 +74,37 @@ discard block |
||
| 74 | 74 | protected $post = null; |
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | - * Get the item if ID is passed, otherwise the item is new and empty. |
|
| 78 | - * |
|
| 79 | - * @param int|object|WPInv_Item|WP_Post $item Item to read. |
|
| 80 | - */ |
|
| 81 | - public function __construct( $item = 0 ) { |
|
| 82 | - parent::__construct( $item ); |
|
| 83 | - |
|
| 84 | - if ( ! empty( $item ) && is_numeric( $item ) && 'wpi_item' == get_post_type( $item ) ) { |
|
| 85 | - $this->set_id( $item ); |
|
| 86 | - } elseif ( $item instanceof self ) { |
|
| 87 | - $this->set_id( $item->get_id() ); |
|
| 88 | - } elseif ( ! empty( $item->ID ) ) { |
|
| 89 | - $this->set_id( $item->ID ); |
|
| 90 | - } elseif ( is_scalar( $item ) && $item_id = self::get_item_id_by_field( $item, 'custom_id' ) ) { |
|
| 91 | - $this->set_id( $item_id ); |
|
| 92 | - } elseif ( is_scalar( $item ) && $item_id = self::get_item_id_by_field( $item, 'name' ) ) { |
|
| 93 | - $this->set_id( $item_id ); |
|
| 94 | - } else { |
|
| 95 | - $this->set_object_read( true ); |
|
| 96 | - } |
|
| 77 | + * Get the item if ID is passed, otherwise the item is new and empty. |
|
| 78 | + * |
|
| 79 | + * @param int|object|WPInv_Item|WP_Post $item Item to read. |
|
| 80 | + */ |
|
| 81 | + public function __construct( $item = 0 ) { |
|
| 82 | + parent::__construct( $item ); |
|
| 83 | + |
|
| 84 | + if ( ! empty( $item ) && is_numeric( $item ) && 'wpi_item' == get_post_type( $item ) ) { |
|
| 85 | + $this->set_id( $item ); |
|
| 86 | + } elseif ( $item instanceof self ) { |
|
| 87 | + $this->set_id( $item->get_id() ); |
|
| 88 | + } elseif ( ! empty( $item->ID ) ) { |
|
| 89 | + $this->set_id( $item->ID ); |
|
| 90 | + } elseif ( is_scalar( $item ) && $item_id = self::get_item_id_by_field( $item, 'custom_id' ) ) { |
|
| 91 | + $this->set_id( $item_id ); |
|
| 92 | + } elseif ( is_scalar( $item ) && $item_id = self::get_item_id_by_field( $item, 'name' ) ) { |
|
| 93 | + $this->set_id( $item_id ); |
|
| 94 | + } else { |
|
| 95 | + $this->set_object_read( true ); |
|
| 96 | + } |
|
| 97 | 97 | |
| 98 | 98 | // Load the datastore. |
| 99 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 99 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 100 | 100 | |
| 101 | - if ( $this->get_id() > 0 ) { |
|
| 101 | + if ( $this->get_id() > 0 ) { |
|
| 102 | 102 | $this->post = get_post( $this->get_id() ); |
| 103 | 103 | $this->ID = $this->get_id(); |
| 104 | - $this->data_store->read( $this ); |
|
| 104 | + $this->data_store->read( $this ); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - } |
|
| 107 | + } |
|
| 108 | 108 | |
| 109 | 109 | /* |
| 110 | 110 | |-------------------------------------------------------------------------- |
@@ -122,401 +122,401 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | |
| 124 | 124 | /** |
| 125 | - * Get parent item ID. |
|
| 126 | - * |
|
| 127 | - * @since 1.0.19 |
|
| 128 | - * @param string $context View or edit context. |
|
| 129 | - * @return int |
|
| 130 | - */ |
|
| 131 | - public function get_parent_id( $context = 'view' ) { |
|
| 132 | - return (int) $this->get_prop( 'parent_id', $context ); |
|
| 125 | + * Get parent item ID. |
|
| 126 | + * |
|
| 127 | + * @since 1.0.19 |
|
| 128 | + * @param string $context View or edit context. |
|
| 129 | + * @return int |
|
| 130 | + */ |
|
| 131 | + public function get_parent_id( $context = 'view' ) { |
|
| 132 | + return (int) $this->get_prop( 'parent_id', $context ); |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | /** |
| 136 | - * Get item status. |
|
| 137 | - * |
|
| 138 | - * @since 1.0.19 |
|
| 139 | - * @param string $context View or edit context. |
|
| 140 | - * @return string |
|
| 141 | - */ |
|
| 142 | - public function get_status( $context = 'view' ) { |
|
| 143 | - return $this->get_prop( 'status', $context ); |
|
| 136 | + * Get item status. |
|
| 137 | + * |
|
| 138 | + * @since 1.0.19 |
|
| 139 | + * @param string $context View or edit context. |
|
| 140 | + * @return string |
|
| 141 | + */ |
|
| 142 | + public function get_status( $context = 'view' ) { |
|
| 143 | + return $this->get_prop( 'status', $context ); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | - * Get plugin version when the item was created. |
|
| 148 | - * |
|
| 149 | - * @since 1.0.19 |
|
| 150 | - * @param string $context View or edit context. |
|
| 151 | - * @return string |
|
| 152 | - */ |
|
| 153 | - public function get_version( $context = 'view' ) { |
|
| 154 | - return $this->get_prop( 'version', $context ); |
|
| 147 | + * Get plugin version when the item was created. |
|
| 148 | + * |
|
| 149 | + * @since 1.0.19 |
|
| 150 | + * @param string $context View or edit context. |
|
| 151 | + * @return string |
|
| 152 | + */ |
|
| 153 | + public function get_version( $context = 'view' ) { |
|
| 154 | + return $this->get_prop( 'version', $context ); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | /** |
| 158 | - * Get date when the item was created. |
|
| 159 | - * |
|
| 160 | - * @since 1.0.19 |
|
| 161 | - * @param string $context View or edit context. |
|
| 162 | - * @return string |
|
| 163 | - */ |
|
| 164 | - public function get_date_created( $context = 'view' ) { |
|
| 165 | - return $this->get_prop( 'date_created', $context ); |
|
| 158 | + * Get date when the item was created. |
|
| 159 | + * |
|
| 160 | + * @since 1.0.19 |
|
| 161 | + * @param string $context View or edit context. |
|
| 162 | + * @return string |
|
| 163 | + */ |
|
| 164 | + public function get_date_created( $context = 'view' ) { |
|
| 165 | + return $this->get_prop( 'date_created', $context ); |
|
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | /** |
| 169 | - * Get GMT date when the item was created. |
|
| 170 | - * |
|
| 171 | - * @since 1.0.19 |
|
| 172 | - * @param string $context View or edit context. |
|
| 173 | - * @return string |
|
| 174 | - */ |
|
| 175 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 169 | + * Get GMT date when the item was created. |
|
| 170 | + * |
|
| 171 | + * @since 1.0.19 |
|
| 172 | + * @param string $context View or edit context. |
|
| 173 | + * @return string |
|
| 174 | + */ |
|
| 175 | + public function get_date_created_gmt( $context = 'view' ) { |
|
| 176 | 176 | $date = $this->get_date_created( $context ); |
| 177 | 177 | |
| 178 | 178 | if ( $date ) { |
| 179 | 179 | $date = get_gmt_from_date( $date ); |
| 180 | 180 | } |
| 181 | - return $date; |
|
| 181 | + return $date; |
|
| 182 | 182 | } |
| 183 | 183 | |
| 184 | 184 | /** |
| 185 | - * Get date when the item was last modified. |
|
| 186 | - * |
|
| 187 | - * @since 1.0.19 |
|
| 188 | - * @param string $context View or edit context. |
|
| 189 | - * @return string |
|
| 190 | - */ |
|
| 191 | - public function get_date_modified( $context = 'view' ) { |
|
| 192 | - return $this->get_prop( 'date_modified', $context ); |
|
| 185 | + * Get date when the item was last modified. |
|
| 186 | + * |
|
| 187 | + * @since 1.0.19 |
|
| 188 | + * @param string $context View or edit context. |
|
| 189 | + * @return string |
|
| 190 | + */ |
|
| 191 | + public function get_date_modified( $context = 'view' ) { |
|
| 192 | + return $this->get_prop( 'date_modified', $context ); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
| 196 | - * Get GMT date when the item was last modified. |
|
| 197 | - * |
|
| 198 | - * @since 1.0.19 |
|
| 199 | - * @param string $context View or edit context. |
|
| 200 | - * @return string |
|
| 201 | - */ |
|
| 202 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
| 196 | + * Get GMT date when the item was last modified. |
|
| 197 | + * |
|
| 198 | + * @since 1.0.19 |
|
| 199 | + * @param string $context View or edit context. |
|
| 200 | + * @return string |
|
| 201 | + */ |
|
| 202 | + public function get_date_modified_gmt( $context = 'view' ) { |
|
| 203 | 203 | $date = $this->get_date_modified( $context ); |
| 204 | 204 | |
| 205 | 205 | if ( $date ) { |
| 206 | 206 | $date = get_gmt_from_date( $date ); |
| 207 | 207 | } |
| 208 | - return $date; |
|
| 208 | + return $date; |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | /** |
| 212 | - * Get the item name. |
|
| 213 | - * |
|
| 214 | - * @since 1.0.19 |
|
| 215 | - * @param string $context View or edit context. |
|
| 216 | - * @return string |
|
| 217 | - */ |
|
| 218 | - public function get_name( $context = 'view' ) { |
|
| 219 | - return $this->get_prop( 'name', $context ); |
|
| 212 | + * Get the item name. |
|
| 213 | + * |
|
| 214 | + * @since 1.0.19 |
|
| 215 | + * @param string $context View or edit context. |
|
| 216 | + * @return string |
|
| 217 | + */ |
|
| 218 | + public function get_name( $context = 'view' ) { |
|
| 219 | + return $this->get_prop( 'name', $context ); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | /** |
| 223 | - * Alias of self::get_name(). |
|
| 224 | - * |
|
| 225 | - * @since 1.0.19 |
|
| 226 | - * @param string $context View or edit context. |
|
| 227 | - * @return string |
|
| 228 | - */ |
|
| 229 | - public function get_title( $context = 'view' ) { |
|
| 230 | - return $this->get_name( $context ); |
|
| 223 | + * Alias of self::get_name(). |
|
| 224 | + * |
|
| 225 | + * @since 1.0.19 |
|
| 226 | + * @param string $context View or edit context. |
|
| 227 | + * @return string |
|
| 228 | + */ |
|
| 229 | + public function get_title( $context = 'view' ) { |
|
| 230 | + return $this->get_name( $context ); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
| 234 | - * Get the item description. |
|
| 235 | - * |
|
| 236 | - * @since 1.0.19 |
|
| 237 | - * @param string $context View or edit context. |
|
| 238 | - * @return string |
|
| 239 | - */ |
|
| 240 | - public function get_description( $context = 'view' ) { |
|
| 241 | - return $this->get_prop( 'description', $context ); |
|
| 234 | + * Get the item description. |
|
| 235 | + * |
|
| 236 | + * @since 1.0.19 |
|
| 237 | + * @param string $context View or edit context. |
|
| 238 | + * @return string |
|
| 239 | + */ |
|
| 240 | + public function get_description( $context = 'view' ) { |
|
| 241 | + return $this->get_prop( 'description', $context ); |
|
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | /** |
| 245 | - * Alias of self::get_description(). |
|
| 246 | - * |
|
| 247 | - * @since 1.0.19 |
|
| 248 | - * @param string $context View or edit context. |
|
| 249 | - * @return string |
|
| 250 | - */ |
|
| 251 | - public function get_excerpt( $context = 'view' ) { |
|
| 252 | - return $this->get_description( $context ); |
|
| 245 | + * Alias of self::get_description(). |
|
| 246 | + * |
|
| 247 | + * @since 1.0.19 |
|
| 248 | + * @param string $context View or edit context. |
|
| 249 | + * @return string |
|
| 250 | + */ |
|
| 251 | + public function get_excerpt( $context = 'view' ) { |
|
| 252 | + return $this->get_description( $context ); |
|
| 253 | 253 | } |
| 254 | 254 | |
| 255 | 255 | /** |
| 256 | - * Alias of self::get_description(). |
|
| 257 | - * |
|
| 258 | - * @since 1.0.19 |
|
| 259 | - * @param string $context View or edit context. |
|
| 260 | - * @return string |
|
| 261 | - */ |
|
| 262 | - public function get_summary( $context = 'view' ) { |
|
| 263 | - return $this->get_description( $context ); |
|
| 256 | + * Alias of self::get_description(). |
|
| 257 | + * |
|
| 258 | + * @since 1.0.19 |
|
| 259 | + * @param string $context View or edit context. |
|
| 260 | + * @return string |
|
| 261 | + */ |
|
| 262 | + public function get_summary( $context = 'view' ) { |
|
| 263 | + return $this->get_description( $context ); |
|
| 264 | 264 | } |
| 265 | 265 | |
| 266 | 266 | /** |
| 267 | - * Get the owner of the item. |
|
| 268 | - * |
|
| 269 | - * @since 1.0.19 |
|
| 270 | - * @param string $context View or edit context. |
|
| 271 | - * @return int |
|
| 272 | - */ |
|
| 273 | - public function get_author( $context = 'view' ) { |
|
| 274 | - return (int) $this->get_prop( 'author', $context ); |
|
| 275 | - } |
|
| 267 | + * Get the owner of the item. |
|
| 268 | + * |
|
| 269 | + * @since 1.0.19 |
|
| 270 | + * @param string $context View or edit context. |
|
| 271 | + * @return int |
|
| 272 | + */ |
|
| 273 | + public function get_author( $context = 'view' ) { |
|
| 274 | + return (int) $this->get_prop( 'author', $context ); |
|
| 275 | + } |
|
| 276 | 276 | |
| 277 | - /** |
|
| 278 | - * Alias of self::get_author(). |
|
| 279 | - * |
|
| 280 | - * @since 1.0.19 |
|
| 281 | - * @param string $context View or edit context. |
|
| 282 | - * @return int |
|
| 283 | - */ |
|
| 284 | - public function get_owner( $context = 'view' ) { |
|
| 285 | - return $this->get_author( $context ); |
|
| 286 | - } |
|
| 287 | - |
|
| 288 | - /** |
|
| 289 | - * Get the price of the item. |
|
| 290 | - * |
|
| 291 | - * @since 1.0.19 |
|
| 292 | - * @param string $context View or edit context. |
|
| 293 | - * @return float |
|
| 294 | - */ |
|
| 295 | - public function get_price( $context = 'view' ) { |
|
| 277 | + /** |
|
| 278 | + * Alias of self::get_author(). |
|
| 279 | + * |
|
| 280 | + * @since 1.0.19 |
|
| 281 | + * @param string $context View or edit context. |
|
| 282 | + * @return int |
|
| 283 | + */ |
|
| 284 | + public function get_owner( $context = 'view' ) { |
|
| 285 | + return $this->get_author( $context ); |
|
| 286 | + } |
|
| 287 | + |
|
| 288 | + /** |
|
| 289 | + * Get the price of the item. |
|
| 290 | + * |
|
| 291 | + * @since 1.0.19 |
|
| 292 | + * @param string $context View or edit context. |
|
| 293 | + * @return float |
|
| 294 | + */ |
|
| 295 | + public function get_price( $context = 'view' ) { |
|
| 296 | 296 | return wpinv_sanitize_amount( $this->get_prop( 'price', $context ) ); |
| 297 | - } |
|
| 297 | + } |
|
| 298 | 298 | |
| 299 | - /** |
|
| 300 | - * Get the inital price of the item. |
|
| 301 | - * |
|
| 302 | - * @since 1.0.19 |
|
| 303 | - * @param string $context View or edit context. |
|
| 304 | - * @return float |
|
| 305 | - */ |
|
| 306 | - public function get_initial_price( $context = 'view' ) { |
|
| 299 | + /** |
|
| 300 | + * Get the inital price of the item. |
|
| 301 | + * |
|
| 302 | + * @since 1.0.19 |
|
| 303 | + * @param string $context View or edit context. |
|
| 304 | + * @return float |
|
| 305 | + */ |
|
| 306 | + public function get_initial_price( $context = 'view' ) { |
|
| 307 | 307 | |
| 308 | - $price = (float) $this->get_price( $context ); |
|
| 308 | + $price = (float) $this->get_price( $context ); |
|
| 309 | 309 | |
| 310 | - if ( $this->has_free_trial() ) { |
|
| 311 | - $price = 0; |
|
| 312 | - } |
|
| 310 | + if ( $this->has_free_trial() ) { |
|
| 311 | + $price = 0; |
|
| 312 | + } |
|
| 313 | 313 | |
| 314 | 314 | return wpinv_sanitize_amount( apply_filters( 'wpinv_get_initial_item_price', $price, $this ) ); |
| 315 | 315 | } |
| 316 | 316 | |
| 317 | 317 | /** |
| 318 | - * Returns a formated price. |
|
| 319 | - * |
|
| 320 | - * @since 1.0.19 |
|
| 321 | - * @param string $context View or edit context. |
|
| 322 | - * @return string |
|
| 323 | - */ |
|
| 318 | + * Returns a formated price. |
|
| 319 | + * |
|
| 320 | + * @since 1.0.19 |
|
| 321 | + * @param string $context View or edit context. |
|
| 322 | + * @return string |
|
| 323 | + */ |
|
| 324 | 324 | public function get_the_price() { |
| 325 | 325 | return wpinv_price( $this->get_price() ); |
| 326 | - } |
|
| 327 | - |
|
| 328 | - /** |
|
| 329 | - * Returns the formated initial price. |
|
| 330 | - * |
|
| 331 | - * @since 1.0.19 |
|
| 332 | - * @param string $context View or edit context. |
|
| 333 | - * @return string |
|
| 334 | - */ |
|
| 326 | + } |
|
| 327 | + |
|
| 328 | + /** |
|
| 329 | + * Returns the formated initial price. |
|
| 330 | + * |
|
| 331 | + * @since 1.0.19 |
|
| 332 | + * @param string $context View or edit context. |
|
| 333 | + * @return string |
|
| 334 | + */ |
|
| 335 | 335 | public function get_the_initial_price() { |
| 336 | 336 | return wpinv_price( $this->get_initial_price() ); |
| 337 | 337 | } |
| 338 | 338 | |
| 339 | 339 | /** |
| 340 | - * Get the VAT rule of the item. |
|
| 341 | - * |
|
| 342 | - * @since 1.0.19 |
|
| 343 | - * @param string $context View or edit context. |
|
| 344 | - * @return string |
|
| 345 | - */ |
|
| 346 | - public function get_vat_rule( $context = 'view' ) { |
|
| 340 | + * Get the VAT rule of the item. |
|
| 341 | + * |
|
| 342 | + * @since 1.0.19 |
|
| 343 | + * @param string $context View or edit context. |
|
| 344 | + * @return string |
|
| 345 | + */ |
|
| 346 | + public function get_vat_rule( $context = 'view' ) { |
|
| 347 | 347 | return $this->get_prop( 'vat_rule', $context ); |
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | /** |
| 351 | - * Get the VAT class of the item. |
|
| 352 | - * |
|
| 353 | - * @since 1.0.19 |
|
| 354 | - * @param string $context View or edit context. |
|
| 355 | - * @return string |
|
| 356 | - */ |
|
| 357 | - public function get_vat_class( $context = 'view' ) { |
|
| 351 | + * Get the VAT class of the item. |
|
| 352 | + * |
|
| 353 | + * @since 1.0.19 |
|
| 354 | + * @param string $context View or edit context. |
|
| 355 | + * @return string |
|
| 356 | + */ |
|
| 357 | + public function get_vat_class( $context = 'view' ) { |
|
| 358 | 358 | return $this->get_prop( 'vat_class', $context ); |
| 359 | 359 | } |
| 360 | 360 | |
| 361 | 361 | /** |
| 362 | - * Get the type of the item. |
|
| 363 | - * |
|
| 364 | - * @since 1.0.19 |
|
| 365 | - * @param string $context View or edit context. |
|
| 366 | - * @return string |
|
| 367 | - */ |
|
| 368 | - public function get_type( $context = 'view' ) { |
|
| 362 | + * Get the type of the item. |
|
| 363 | + * |
|
| 364 | + * @since 1.0.19 |
|
| 365 | + * @param string $context View or edit context. |
|
| 366 | + * @return string |
|
| 367 | + */ |
|
| 368 | + public function get_type( $context = 'view' ) { |
|
| 369 | 369 | return $this->get_prop( 'type', $context ); |
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | /** |
| 373 | - * Get the custom id of the item. |
|
| 374 | - * |
|
| 375 | - * @since 1.0.19 |
|
| 376 | - * @param string $context View or edit context. |
|
| 377 | - * @return string |
|
| 378 | - */ |
|
| 379 | - public function get_custom_id( $context = 'view' ) { |
|
| 373 | + * Get the custom id of the item. |
|
| 374 | + * |
|
| 375 | + * @since 1.0.19 |
|
| 376 | + * @param string $context View or edit context. |
|
| 377 | + * @return string |
|
| 378 | + */ |
|
| 379 | + public function get_custom_id( $context = 'view' ) { |
|
| 380 | 380 | return $this->get_prop( 'custom_id', $context ); |
| 381 | 381 | } |
| 382 | 382 | |
| 383 | 383 | /** |
| 384 | - * Get the custom name of the item. |
|
| 385 | - * |
|
| 386 | - * @since 1.0.19 |
|
| 387 | - * @param string $context View or edit context. |
|
| 388 | - * @return string |
|
| 389 | - */ |
|
| 390 | - public function get_custom_name( $context = 'view' ) { |
|
| 384 | + * Get the custom name of the item. |
|
| 385 | + * |
|
| 386 | + * @since 1.0.19 |
|
| 387 | + * @param string $context View or edit context. |
|
| 388 | + * @return string |
|
| 389 | + */ |
|
| 390 | + public function get_custom_name( $context = 'view' ) { |
|
| 391 | 391 | return $this->get_prop( 'custom_name', $context ); |
| 392 | 392 | } |
| 393 | 393 | |
| 394 | 394 | /** |
| 395 | - * Get the custom singular name of the item. |
|
| 396 | - * |
|
| 397 | - * @since 1.0.19 |
|
| 398 | - * @param string $context View or edit context. |
|
| 399 | - * @return string |
|
| 400 | - */ |
|
| 401 | - public function get_custom_singular_name( $context = 'view' ) { |
|
| 395 | + * Get the custom singular name of the item. |
|
| 396 | + * |
|
| 397 | + * @since 1.0.19 |
|
| 398 | + * @param string $context View or edit context. |
|
| 399 | + * @return string |
|
| 400 | + */ |
|
| 401 | + public function get_custom_singular_name( $context = 'view' ) { |
|
| 402 | 402 | return $this->get_prop( 'custom_singular_name', $context ); |
| 403 | 403 | } |
| 404 | 404 | |
| 405 | 405 | /** |
| 406 | - * Checks if an item is editable.. |
|
| 407 | - * |
|
| 408 | - * @since 1.0.19 |
|
| 409 | - * @param string $context View or edit context. |
|
| 410 | - * @return int |
|
| 411 | - */ |
|
| 412 | - public function get_is_editable( $context = 'view' ) { |
|
| 406 | + * Checks if an item is editable.. |
|
| 407 | + * |
|
| 408 | + * @since 1.0.19 |
|
| 409 | + * @param string $context View or edit context. |
|
| 410 | + * @return int |
|
| 411 | + */ |
|
| 412 | + public function get_is_editable( $context = 'view' ) { |
|
| 413 | 413 | return (int) $this->get_prop( 'is_editable', $context ); |
| 414 | 414 | } |
| 415 | 415 | |
| 416 | 416 | /** |
| 417 | - * Alias of self::get_is_editable(). |
|
| 418 | - * |
|
| 419 | - * @since 1.0.19 |
|
| 420 | - * @param string $context View or edit context. |
|
| 421 | - * @return int |
|
| 422 | - */ |
|
| 423 | - public function get_editable( $context = 'view' ) { |
|
| 424 | - return $this->get_is_editable( $context ); |
|
| 417 | + * Alias of self::get_is_editable(). |
|
| 418 | + * |
|
| 419 | + * @since 1.0.19 |
|
| 420 | + * @param string $context View or edit context. |
|
| 421 | + * @return int |
|
| 422 | + */ |
|
| 423 | + public function get_editable( $context = 'view' ) { |
|
| 424 | + return $this->get_is_editable( $context ); |
|
| 425 | 425 | } |
| 426 | 426 | |
| 427 | 427 | /** |
| 428 | - * Checks if dynamic pricing is enabled. |
|
| 429 | - * |
|
| 430 | - * @since 1.0.19 |
|
| 431 | - * @param string $context View or edit context. |
|
| 432 | - * @return int |
|
| 433 | - */ |
|
| 434 | - public function get_is_dynamic_pricing( $context = 'view' ) { |
|
| 428 | + * Checks if dynamic pricing is enabled. |
|
| 429 | + * |
|
| 430 | + * @since 1.0.19 |
|
| 431 | + * @param string $context View or edit context. |
|
| 432 | + * @return int |
|
| 433 | + */ |
|
| 434 | + public function get_is_dynamic_pricing( $context = 'view' ) { |
|
| 435 | 435 | return (int) $this->get_prop( 'is_dynamic_pricing', $context ); |
| 436 | 436 | } |
| 437 | 437 | |
| 438 | 438 | /** |
| 439 | - * Returns the minimum price if dynamic pricing is enabled. |
|
| 440 | - * |
|
| 441 | - * @since 1.0.19 |
|
| 442 | - * @param string $context View or edit context. |
|
| 443 | - * @return float |
|
| 444 | - */ |
|
| 445 | - public function get_minimum_price( $context = 'view' ) { |
|
| 439 | + * Returns the minimum price if dynamic pricing is enabled. |
|
| 440 | + * |
|
| 441 | + * @since 1.0.19 |
|
| 442 | + * @param string $context View or edit context. |
|
| 443 | + * @return float |
|
| 444 | + */ |
|
| 445 | + public function get_minimum_price( $context = 'view' ) { |
|
| 446 | 446 | return wpinv_sanitize_amount( $this->get_prop( 'minimum_price', $context ) ); |
| 447 | 447 | } |
| 448 | 448 | |
| 449 | 449 | /** |
| 450 | - * Checks if this is a recurring item. |
|
| 451 | - * |
|
| 452 | - * @since 1.0.19 |
|
| 453 | - * @param string $context View or edit context. |
|
| 454 | - * @return int |
|
| 455 | - */ |
|
| 456 | - public function get_is_recurring( $context = 'view' ) { |
|
| 450 | + * Checks if this is a recurring item. |
|
| 451 | + * |
|
| 452 | + * @since 1.0.19 |
|
| 453 | + * @param string $context View or edit context. |
|
| 454 | + * @return int |
|
| 455 | + */ |
|
| 456 | + public function get_is_recurring( $context = 'view' ) { |
|
| 457 | 457 | return (int) $this->get_prop( 'is_recurring', $context ); |
| 458 | - } |
|
| 458 | + } |
|
| 459 | 459 | |
| 460 | - /** |
|
| 461 | - * Get the recurring price of the item. |
|
| 462 | - * |
|
| 463 | - * @since 1.0.19 |
|
| 464 | - * @param string $context View or edit context. |
|
| 465 | - * @return float |
|
| 466 | - */ |
|
| 467 | - public function get_recurring_price( $context = 'view' ) { |
|
| 468 | - $price = $this->get_price( $context ); |
|
| 460 | + /** |
|
| 461 | + * Get the recurring price of the item. |
|
| 462 | + * |
|
| 463 | + * @since 1.0.19 |
|
| 464 | + * @param string $context View or edit context. |
|
| 465 | + * @return float |
|
| 466 | + */ |
|
| 467 | + public function get_recurring_price( $context = 'view' ) { |
|
| 468 | + $price = $this->get_price( $context ); |
|
| 469 | 469 | return wpinv_sanitize_amount( apply_filters( 'wpinv_get_recurring_item_price', $price, $this->ID ) ); |
| 470 | - } |
|
| 471 | - |
|
| 472 | - /** |
|
| 473 | - * Get the formatted recurring price of the item. |
|
| 474 | - * |
|
| 475 | - * @since 1.0.19 |
|
| 476 | - * @param string $context View or edit context. |
|
| 477 | - * @return string |
|
| 478 | - */ |
|
| 470 | + } |
|
| 471 | + |
|
| 472 | + /** |
|
| 473 | + * Get the formatted recurring price of the item. |
|
| 474 | + * |
|
| 475 | + * @since 1.0.19 |
|
| 476 | + * @param string $context View or edit context. |
|
| 477 | + * @return string |
|
| 478 | + */ |
|
| 479 | 479 | public function get_the_recurring_price() { |
| 480 | 480 | return wpinv_price( $this->get_recurring_price() ); |
| 481 | - } |
|
| 482 | - |
|
| 483 | - /** |
|
| 484 | - * Get the first renewal date (in timestamps) of the item. |
|
| 485 | - * |
|
| 486 | - * @since 1.0.19 |
|
| 487 | - * @return int |
|
| 488 | - */ |
|
| 489 | - public function get_first_renewal_date() { |
|
| 490 | - |
|
| 491 | - $periods = array( |
|
| 492 | - 'D' => 'days', |
|
| 493 | - 'W' => 'weeks', |
|
| 494 | - 'M' => 'months', |
|
| 495 | - 'Y' => 'years', |
|
| 496 | - ); |
|
| 497 | - |
|
| 498 | - $period = $this->get_recurring_period(); |
|
| 499 | - $interval = $this->get_recurring_interval(); |
|
| 500 | - |
|
| 501 | - if ( $this->has_free_trial() ) { |
|
| 502 | - $period = $this->get_trial_period(); |
|
| 503 | - $interval = $this->get_trial_interval(); |
|
| 504 | - } |
|
| 505 | - |
|
| 506 | - $period = $periods[ $period ]; |
|
| 507 | - $interval = empty( $interval ) ? 1 : $interval; |
|
| 508 | - $next_renewal = strtotime( "+$interval $period", current_time( 'timestamp' ) ); |
|
| 481 | + } |
|
| 482 | + |
|
| 483 | + /** |
|
| 484 | + * Get the first renewal date (in timestamps) of the item. |
|
| 485 | + * |
|
| 486 | + * @since 1.0.19 |
|
| 487 | + * @return int |
|
| 488 | + */ |
|
| 489 | + public function get_first_renewal_date() { |
|
| 490 | + |
|
| 491 | + $periods = array( |
|
| 492 | + 'D' => 'days', |
|
| 493 | + 'W' => 'weeks', |
|
| 494 | + 'M' => 'months', |
|
| 495 | + 'Y' => 'years', |
|
| 496 | + ); |
|
| 497 | + |
|
| 498 | + $period = $this->get_recurring_period(); |
|
| 499 | + $interval = $this->get_recurring_interval(); |
|
| 500 | + |
|
| 501 | + if ( $this->has_free_trial() ) { |
|
| 502 | + $period = $this->get_trial_period(); |
|
| 503 | + $interval = $this->get_trial_interval(); |
|
| 504 | + } |
|
| 505 | + |
|
| 506 | + $period = $periods[ $period ]; |
|
| 507 | + $interval = empty( $interval ) ? 1 : $interval; |
|
| 508 | + $next_renewal = strtotime( "+$interval $period", current_time( 'timestamp' ) ); |
|
| 509 | 509 | return apply_filters( 'wpinv_get_first_renewal_date', $next_renewal, $this ); |
| 510 | 510 | } |
| 511 | 511 | |
| 512 | 512 | /** |
| 513 | - * Get the recurring period. |
|
| 514 | - * |
|
| 515 | - * @since 1.0.19 |
|
| 516 | - * @param bool $full Return abbreviation or in full. |
|
| 517 | - * @return string |
|
| 518 | - */ |
|
| 519 | - public function get_recurring_period( $full = false ) { |
|
| 513 | + * Get the recurring period. |
|
| 514 | + * |
|
| 515 | + * @since 1.0.19 |
|
| 516 | + * @param bool $full Return abbreviation or in full. |
|
| 517 | + * @return string |
|
| 518 | + */ |
|
| 519 | + public function get_recurring_period( $full = false ) { |
|
| 520 | 520 | $period = $this->get_prop( 'recurring_period', 'view' ); |
| 521 | 521 | |
| 522 | 522 | if ( $full && ! is_bool( $full ) ) { |
@@ -527,58 +527,58 @@ discard block |
||
| 527 | 527 | } |
| 528 | 528 | |
| 529 | 529 | /** |
| 530 | - * Get the recurring interval. |
|
| 531 | - * |
|
| 532 | - * @since 1.0.19 |
|
| 533 | - * @param string $context View or edit context. |
|
| 534 | - * @return int |
|
| 535 | - */ |
|
| 536 | - public function get_recurring_interval( $context = 'view' ) { |
|
| 537 | - $interval = absint( $this->get_prop( 'recurring_interval', $context ) ); |
|
| 538 | - return max( 1, $interval ); |
|
| 530 | + * Get the recurring interval. |
|
| 531 | + * |
|
| 532 | + * @since 1.0.19 |
|
| 533 | + * @param string $context View or edit context. |
|
| 534 | + * @return int |
|
| 535 | + */ |
|
| 536 | + public function get_recurring_interval( $context = 'view' ) { |
|
| 537 | + $interval = absint( $this->get_prop( 'recurring_interval', $context ) ); |
|
| 538 | + return max( 1, $interval ); |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | /** |
| 542 | - * Get the recurring limit. |
|
| 543 | - * |
|
| 544 | - * @since 1.0.19 |
|
| 545 | - * @param string $context View or edit context. |
|
| 546 | - * @return int |
|
| 547 | - */ |
|
| 548 | - public function get_recurring_limit( $context = 'view' ) { |
|
| 542 | + * Get the recurring limit. |
|
| 543 | + * |
|
| 544 | + * @since 1.0.19 |
|
| 545 | + * @param string $context View or edit context. |
|
| 546 | + * @return int |
|
| 547 | + */ |
|
| 548 | + public function get_recurring_limit( $context = 'view' ) { |
|
| 549 | 549 | return (int) $this->get_prop( 'recurring_limit', $context ); |
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | /** |
| 553 | - * Checks if we have a free trial. |
|
| 554 | - * |
|
| 555 | - * @since 1.0.19 |
|
| 556 | - * @param string $context View or edit context. |
|
| 557 | - * @return int |
|
| 558 | - */ |
|
| 559 | - public function get_is_free_trial( $context = 'view' ) { |
|
| 553 | + * Checks if we have a free trial. |
|
| 554 | + * |
|
| 555 | + * @since 1.0.19 |
|
| 556 | + * @param string $context View or edit context. |
|
| 557 | + * @return int |
|
| 558 | + */ |
|
| 559 | + public function get_is_free_trial( $context = 'view' ) { |
|
| 560 | 560 | return (int) $this->get_prop( 'is_free_trial', $context ); |
| 561 | 561 | } |
| 562 | 562 | |
| 563 | 563 | /** |
| 564 | - * Alias for self::get_is_free_trial(). |
|
| 565 | - * |
|
| 566 | - * @since 1.0.19 |
|
| 567 | - * @param string $context View or edit context. |
|
| 568 | - * @return int |
|
| 569 | - */ |
|
| 570 | - public function get_free_trial( $context = 'view' ) { |
|
| 564 | + * Alias for self::get_is_free_trial(). |
|
| 565 | + * |
|
| 566 | + * @since 1.0.19 |
|
| 567 | + * @param string $context View or edit context. |
|
| 568 | + * @return int |
|
| 569 | + */ |
|
| 570 | + public function get_free_trial( $context = 'view' ) { |
|
| 571 | 571 | return $this->get_is_free_trial( $context ); |
| 572 | 572 | } |
| 573 | 573 | |
| 574 | 574 | /** |
| 575 | - * Get the trial period. |
|
| 576 | - * |
|
| 577 | - * @since 1.0.19 |
|
| 578 | - * @param bool $full Return abbreviation or in full. |
|
| 579 | - * @return string |
|
| 580 | - */ |
|
| 581 | - public function get_trial_period( $full = false ) { |
|
| 575 | + * Get the trial period. |
|
| 576 | + * |
|
| 577 | + * @since 1.0.19 |
|
| 578 | + * @param bool $full Return abbreviation or in full. |
|
| 579 | + * @return string |
|
| 580 | + */ |
|
| 581 | + public function get_trial_period( $full = false ) { |
|
| 582 | 582 | $period = $this->get_prop( 'trial_period', 'view' ); |
| 583 | 583 | |
| 584 | 584 | if ( $full && ! is_bool( $full ) ) { |
@@ -589,104 +589,104 @@ discard block |
||
| 589 | 589 | } |
| 590 | 590 | |
| 591 | 591 | /** |
| 592 | - * Get the trial interval. |
|
| 593 | - * |
|
| 594 | - * @since 1.0.19 |
|
| 595 | - * @param string $context View or edit context. |
|
| 596 | - * @return int |
|
| 597 | - */ |
|
| 598 | - public function get_trial_interval( $context = 'view' ) { |
|
| 592 | + * Get the trial interval. |
|
| 593 | + * |
|
| 594 | + * @since 1.0.19 |
|
| 595 | + * @param string $context View or edit context. |
|
| 596 | + * @return int |
|
| 597 | + */ |
|
| 598 | + public function get_trial_interval( $context = 'view' ) { |
|
| 599 | 599 | return (int) $this->get_prop( 'trial_interval', $context ); |
| 600 | - } |
|
| 600 | + } |
|
| 601 | 601 | |
| 602 | - /** |
|
| 603 | - * Get the item's edit url. |
|
| 604 | - * |
|
| 605 | - * @since 1.0.19 |
|
| 606 | - * @return string |
|
| 607 | - */ |
|
| 608 | - public function get_edit_url() { |
|
| 602 | + /** |
|
| 603 | + * Get the item's edit url. |
|
| 604 | + * |
|
| 605 | + * @since 1.0.19 |
|
| 606 | + * @return string |
|
| 607 | + */ |
|
| 608 | + public function get_edit_url() { |
|
| 609 | 609 | return get_edit_post_link( $this->get_id(), 'edit' ); |
| 610 | - } |
|
| 611 | - |
|
| 612 | - /** |
|
| 613 | - * Given an item's name/custom id, it returns its id. |
|
| 614 | - * |
|
| 615 | - * |
|
| 616 | - * @static |
|
| 617 | - * @param string $value The item name or custom id. |
|
| 618 | - * @param string $field Either name or custom_id. |
|
| 619 | - * @param string $type in case you need to search for a given type. |
|
| 620 | - * @since 1.0.15 |
|
| 621 | - * @return int |
|
| 622 | - */ |
|
| 623 | - public static function get_item_id_by_field( $value, $field = 'custom_id', $type = '' ) { |
|
| 624 | - |
|
| 625 | - // Trim the value. |
|
| 626 | - $value = sanitize_text_field( $value ); |
|
| 627 | - if ( empty( $value ) ) { |
|
| 628 | - return 0; |
|
| 629 | - } |
|
| 610 | + } |
|
| 611 | + |
|
| 612 | + /** |
|
| 613 | + * Given an item's name/custom id, it returns its id. |
|
| 614 | + * |
|
| 615 | + * |
|
| 616 | + * @static |
|
| 617 | + * @param string $value The item name or custom id. |
|
| 618 | + * @param string $field Either name or custom_id. |
|
| 619 | + * @param string $type in case you need to search for a given type. |
|
| 620 | + * @since 1.0.15 |
|
| 621 | + * @return int |
|
| 622 | + */ |
|
| 623 | + public static function get_item_id_by_field( $value, $field = 'custom_id', $type = '' ) { |
|
| 624 | + |
|
| 625 | + // Trim the value. |
|
| 626 | + $value = sanitize_text_field( $value ); |
|
| 627 | + if ( empty( $value ) ) { |
|
| 628 | + return 0; |
|
| 629 | + } |
|
| 630 | 630 | |
| 631 | 631 | // Valid fields. |
| 632 | 632 | $fields = array( 'custom_id', 'name', 'slug' ); |
| 633 | 633 | |
| 634 | - // Ensure a field has been passed. |
|
| 635 | - if ( empty( $field ) || ! in_array( $field, $fields ) ) { |
|
| 636 | - return 0; |
|
| 637 | - } |
|
| 638 | - |
|
| 639 | - if ( $field == 'name' ) { |
|
| 640 | - $field = 'slug'; |
|
| 641 | - } |
|
| 642 | - |
|
| 643 | - // Maybe retrieve from the cache. |
|
| 644 | - $item_id = wp_cache_get( $value, "getpaid_{$type}_item_{$field}s_to_item_ids" ); |
|
| 645 | - if ( ! empty( $item_id ) ) { |
|
| 646 | - return $item_id; |
|
| 647 | - } |
|
| 648 | - |
|
| 649 | - // Fetch from the db. |
|
| 650 | - $items = array(); |
|
| 651 | - if ( $field == 'slug' ) { |
|
| 652 | - $items = get_posts( |
|
| 653 | - array( |
|
| 654 | - 'post_type' => 'wpi_item', |
|
| 655 | - 'name' => $value, |
|
| 656 | - 'posts_per_page' => 1, |
|
| 657 | - 'post_status' => 'any', |
|
| 658 | - ) |
|
| 659 | - ); |
|
| 660 | - } |
|
| 661 | - |
|
| 662 | - if ( $field =='custom_id' ) { |
|
| 663 | - $items = get_posts( |
|
| 664 | - array( |
|
| 665 | - 'post_type' => 'wpi_item', |
|
| 666 | - 'posts_per_page' => 1, |
|
| 667 | - 'post_status' => 'any', |
|
| 668 | - 'meta_query' => array( |
|
| 669 | - array( |
|
| 670 | - 'key' => '_wpinv_type', |
|
| 671 | - 'value' => $type, |
|
| 672 | - ), |
|
| 673 | - array( |
|
| 674 | - 'key' => '_wpinv_custom_id', |
|
| 675 | - 'value' => $value, |
|
| 676 | - ) |
|
| 677 | - ) |
|
| 678 | - ) |
|
| 679 | - ); |
|
| 680 | - } |
|
| 681 | - |
|
| 682 | - if ( empty( $items ) ) { |
|
| 683 | - return 0; |
|
| 684 | - } |
|
| 685 | - |
|
| 686 | - // Update the cache with our data |
|
| 687 | - wp_cache_set( $value, $items[0]->ID, "getpaid_{$type}_item_{$field}s_to_item_ids" ); |
|
| 688 | - |
|
| 689 | - return $items[0]->ID; |
|
| 634 | + // Ensure a field has been passed. |
|
| 635 | + if ( empty( $field ) || ! in_array( $field, $fields ) ) { |
|
| 636 | + return 0; |
|
| 637 | + } |
|
| 638 | + |
|
| 639 | + if ( $field == 'name' ) { |
|
| 640 | + $field = 'slug'; |
|
| 641 | + } |
|
| 642 | + |
|
| 643 | + // Maybe retrieve from the cache. |
|
| 644 | + $item_id = wp_cache_get( $value, "getpaid_{$type}_item_{$field}s_to_item_ids" ); |
|
| 645 | + if ( ! empty( $item_id ) ) { |
|
| 646 | + return $item_id; |
|
| 647 | + } |
|
| 648 | + |
|
| 649 | + // Fetch from the db. |
|
| 650 | + $items = array(); |
|
| 651 | + if ( $field == 'slug' ) { |
|
| 652 | + $items = get_posts( |
|
| 653 | + array( |
|
| 654 | + 'post_type' => 'wpi_item', |
|
| 655 | + 'name' => $value, |
|
| 656 | + 'posts_per_page' => 1, |
|
| 657 | + 'post_status' => 'any', |
|
| 658 | + ) |
|
| 659 | + ); |
|
| 660 | + } |
|
| 661 | + |
|
| 662 | + if ( $field =='custom_id' ) { |
|
| 663 | + $items = get_posts( |
|
| 664 | + array( |
|
| 665 | + 'post_type' => 'wpi_item', |
|
| 666 | + 'posts_per_page' => 1, |
|
| 667 | + 'post_status' => 'any', |
|
| 668 | + 'meta_query' => array( |
|
| 669 | + array( |
|
| 670 | + 'key' => '_wpinv_type', |
|
| 671 | + 'value' => $type, |
|
| 672 | + ), |
|
| 673 | + array( |
|
| 674 | + 'key' => '_wpinv_custom_id', |
|
| 675 | + 'value' => $value, |
|
| 676 | + ) |
|
| 677 | + ) |
|
| 678 | + ) |
|
| 679 | + ); |
|
| 680 | + } |
|
| 681 | + |
|
| 682 | + if ( empty( $items ) ) { |
|
| 683 | + return 0; |
|
| 684 | + } |
|
| 685 | + |
|
| 686 | + // Update the cache with our data |
|
| 687 | + wp_cache_set( $value, $items[0]->ID, "getpaid_{$type}_item_{$field}s_to_item_ids" ); |
|
| 688 | + |
|
| 689 | + return $items[0]->ID; |
|
| 690 | 690 | } |
| 691 | 691 | |
| 692 | 692 | /** |
@@ -719,52 +719,52 @@ discard block |
||
| 719 | 719 | */ |
| 720 | 720 | |
| 721 | 721 | /** |
| 722 | - * Set parent order ID. |
|
| 723 | - * |
|
| 724 | - * @since 1.0.19 |
|
| 725 | - */ |
|
| 726 | - public function set_parent_id( $value ) { |
|
| 727 | - if ( $value && ( $value === $this->get_id() || ! get_post( $value ) ) ) { |
|
| 728 | - return; |
|
| 729 | - } |
|
| 730 | - $this->set_prop( 'parent_id', absint( $value ) ); |
|
| 731 | - } |
|
| 732 | - |
|
| 733 | - /** |
|
| 734 | - * Sets item status. |
|
| 735 | - * |
|
| 736 | - * @since 1.0.19 |
|
| 737 | - * @param string $status New status. |
|
| 738 | - * @return array details of change. |
|
| 739 | - */ |
|
| 740 | - public function set_status( $status ) { |
|
| 722 | + * Set parent order ID. |
|
| 723 | + * |
|
| 724 | + * @since 1.0.19 |
|
| 725 | + */ |
|
| 726 | + public function set_parent_id( $value ) { |
|
| 727 | + if ( $value && ( $value === $this->get_id() || ! get_post( $value ) ) ) { |
|
| 728 | + return; |
|
| 729 | + } |
|
| 730 | + $this->set_prop( 'parent_id', absint( $value ) ); |
|
| 731 | + } |
|
| 732 | + |
|
| 733 | + /** |
|
| 734 | + * Sets item status. |
|
| 735 | + * |
|
| 736 | + * @since 1.0.19 |
|
| 737 | + * @param string $status New status. |
|
| 738 | + * @return array details of change. |
|
| 739 | + */ |
|
| 740 | + public function set_status( $status ) { |
|
| 741 | 741 | $old_status = $this->get_status(); |
| 742 | 742 | |
| 743 | 743 | $this->set_prop( 'status', $status ); |
| 744 | 744 | |
| 745 | - return array( |
|
| 746 | - 'from' => $old_status, |
|
| 747 | - 'to' => $status, |
|
| 748 | - ); |
|
| 745 | + return array( |
|
| 746 | + 'from' => $old_status, |
|
| 747 | + 'to' => $status, |
|
| 748 | + ); |
|
| 749 | 749 | } |
| 750 | 750 | |
| 751 | 751 | /** |
| 752 | - * Set plugin version when the item was created. |
|
| 753 | - * |
|
| 754 | - * @since 1.0.19 |
|
| 755 | - */ |
|
| 756 | - public function set_version( $value ) { |
|
| 757 | - $this->set_prop( 'version', $value ); |
|
| 752 | + * Set plugin version when the item was created. |
|
| 753 | + * |
|
| 754 | + * @since 1.0.19 |
|
| 755 | + */ |
|
| 756 | + public function set_version( $value ) { |
|
| 757 | + $this->set_prop( 'version', $value ); |
|
| 758 | 758 | } |
| 759 | 759 | |
| 760 | 760 | /** |
| 761 | - * Set date when the item was created. |
|
| 762 | - * |
|
| 763 | - * @since 1.0.19 |
|
| 764 | - * @param string $value Value to set. |
|
| 761 | + * Set date when the item was created. |
|
| 762 | + * |
|
| 763 | + * @since 1.0.19 |
|
| 764 | + * @param string $value Value to set. |
|
| 765 | 765 | * @return bool Whether or not the date was set. |
| 766 | - */ |
|
| 767 | - public function set_date_created( $value ) { |
|
| 766 | + */ |
|
| 767 | + public function set_date_created( $value ) { |
|
| 768 | 768 | $date = strtotime( $value ); |
| 769 | 769 | |
| 770 | 770 | if ( $date ) { |
@@ -777,13 +777,13 @@ discard block |
||
| 777 | 777 | } |
| 778 | 778 | |
| 779 | 779 | /** |
| 780 | - * Set date when the item was last modified. |
|
| 781 | - * |
|
| 782 | - * @since 1.0.19 |
|
| 783 | - * @param string $value Value to set. |
|
| 780 | + * Set date when the item was last modified. |
|
| 781 | + * |
|
| 782 | + * @since 1.0.19 |
|
| 783 | + * @param string $value Value to set. |
|
| 784 | 784 | * @return bool Whether or not the date was set. |
| 785 | - */ |
|
| 786 | - public function set_date_modified( $value ) { |
|
| 785 | + */ |
|
| 786 | + public function set_date_modified( $value ) { |
|
| 787 | 787 | $date = strtotime( $value ); |
| 788 | 788 | |
| 789 | 789 | if ( $date ) { |
@@ -796,115 +796,115 @@ discard block |
||
| 796 | 796 | } |
| 797 | 797 | |
| 798 | 798 | /** |
| 799 | - * Set the item name. |
|
| 800 | - * |
|
| 801 | - * @since 1.0.19 |
|
| 802 | - * @param string $value New name. |
|
| 803 | - */ |
|
| 804 | - public function set_name( $value ) { |
|
| 799 | + * Set the item name. |
|
| 800 | + * |
|
| 801 | + * @since 1.0.19 |
|
| 802 | + * @param string $value New name. |
|
| 803 | + */ |
|
| 804 | + public function set_name( $value ) { |
|
| 805 | 805 | $name = sanitize_text_field( $value ); |
| 806 | - $this->set_prop( 'name', $name ); |
|
| 806 | + $this->set_prop( 'name', $name ); |
|
| 807 | 807 | } |
| 808 | 808 | |
| 809 | 809 | /** |
| 810 | - * Alias of self::set_name(). |
|
| 811 | - * |
|
| 812 | - * @since 1.0.19 |
|
| 813 | - * @param string $value New name. |
|
| 814 | - */ |
|
| 815 | - public function set_title( $value ) { |
|
| 816 | - $this->set_name( $value ); |
|
| 810 | + * Alias of self::set_name(). |
|
| 811 | + * |
|
| 812 | + * @since 1.0.19 |
|
| 813 | + * @param string $value New name. |
|
| 814 | + */ |
|
| 815 | + public function set_title( $value ) { |
|
| 816 | + $this->set_name( $value ); |
|
| 817 | 817 | } |
| 818 | 818 | |
| 819 | 819 | /** |
| 820 | - * Set the item description. |
|
| 821 | - * |
|
| 822 | - * @since 1.0.19 |
|
| 823 | - * @param string $value New description. |
|
| 824 | - */ |
|
| 825 | - public function set_description( $value ) { |
|
| 826 | - $description = wp_kses_post( $value ); |
|
| 827 | - return $this->set_prop( 'description', $description ); |
|
| 820 | + * Set the item description. |
|
| 821 | + * |
|
| 822 | + * @since 1.0.19 |
|
| 823 | + * @param string $value New description. |
|
| 824 | + */ |
|
| 825 | + public function set_description( $value ) { |
|
| 826 | + $description = wp_kses_post( $value ); |
|
| 827 | + return $this->set_prop( 'description', $description ); |
|
| 828 | 828 | } |
| 829 | 829 | |
| 830 | 830 | /** |
| 831 | - * Alias of self::set_description(). |
|
| 832 | - * |
|
| 833 | - * @since 1.0.19 |
|
| 834 | - * @param string $value New description. |
|
| 835 | - */ |
|
| 836 | - public function set_excerpt( $value ) { |
|
| 837 | - $this->set_description( $value ); |
|
| 831 | + * Alias of self::set_description(). |
|
| 832 | + * |
|
| 833 | + * @since 1.0.19 |
|
| 834 | + * @param string $value New description. |
|
| 835 | + */ |
|
| 836 | + public function set_excerpt( $value ) { |
|
| 837 | + $this->set_description( $value ); |
|
| 838 | 838 | } |
| 839 | 839 | |
| 840 | 840 | /** |
| 841 | - * Alias of self::set_description(). |
|
| 842 | - * |
|
| 843 | - * @since 1.0.19 |
|
| 844 | - * @param string $value New description. |
|
| 845 | - */ |
|
| 846 | - public function set_summary( $value ) { |
|
| 847 | - $this->set_description( $value ); |
|
| 841 | + * Alias of self::set_description(). |
|
| 842 | + * |
|
| 843 | + * @since 1.0.19 |
|
| 844 | + * @param string $value New description. |
|
| 845 | + */ |
|
| 846 | + public function set_summary( $value ) { |
|
| 847 | + $this->set_description( $value ); |
|
| 848 | 848 | } |
| 849 | 849 | |
| 850 | 850 | /** |
| 851 | - * Set the owner of the item. |
|
| 852 | - * |
|
| 853 | - * @since 1.0.19 |
|
| 854 | - * @param int $value New author. |
|
| 855 | - */ |
|
| 856 | - public function set_author( $value ) { |
|
| 857 | - $this->set_prop( 'author', (int) $value ); |
|
| 858 | - } |
|
| 851 | + * Set the owner of the item. |
|
| 852 | + * |
|
| 853 | + * @since 1.0.19 |
|
| 854 | + * @param int $value New author. |
|
| 855 | + */ |
|
| 856 | + public function set_author( $value ) { |
|
| 857 | + $this->set_prop( 'author', (int) $value ); |
|
| 858 | + } |
|
| 859 | 859 | |
| 860 | - /** |
|
| 861 | - * Alias of self::set_author(). |
|
| 862 | - * |
|
| 863 | - * @since 1.0.19 |
|
| 864 | - * @param int $value New author. |
|
| 865 | - */ |
|
| 866 | - public function set_owner( $value ) { |
|
| 867 | - $this->set_author( $value ); |
|
| 868 | - } |
|
| 869 | - |
|
| 870 | - /** |
|
| 871 | - * Set the price of the item. |
|
| 872 | - * |
|
| 873 | - * @since 1.0.19 |
|
| 874 | - * @param float $value New price. |
|
| 875 | - */ |
|
| 876 | - public function set_price( $value ) { |
|
| 860 | + /** |
|
| 861 | + * Alias of self::set_author(). |
|
| 862 | + * |
|
| 863 | + * @since 1.0.19 |
|
| 864 | + * @param int $value New author. |
|
| 865 | + */ |
|
| 866 | + public function set_owner( $value ) { |
|
| 867 | + $this->set_author( $value ); |
|
| 868 | + } |
|
| 869 | + |
|
| 870 | + /** |
|
| 871 | + * Set the price of the item. |
|
| 872 | + * |
|
| 873 | + * @since 1.0.19 |
|
| 874 | + * @param float $value New price. |
|
| 875 | + */ |
|
| 876 | + public function set_price( $value ) { |
|
| 877 | 877 | $this->set_prop( 'price', (float) wpinv_sanitize_amount( $value ) ); |
| 878 | 878 | } |
| 879 | 879 | |
| 880 | 880 | /** |
| 881 | - * Set the VAT rule of the item. |
|
| 882 | - * |
|
| 883 | - * @since 1.0.19 |
|
| 884 | - * @param string $value new rule. |
|
| 885 | - */ |
|
| 886 | - public function set_vat_rule( $value ) { |
|
| 881 | + * Set the VAT rule of the item. |
|
| 882 | + * |
|
| 883 | + * @since 1.0.19 |
|
| 884 | + * @param string $value new rule. |
|
| 885 | + */ |
|
| 886 | + public function set_vat_rule( $value ) { |
|
| 887 | 887 | $this->set_prop( 'vat_rule', $value ); |
| 888 | 888 | } |
| 889 | 889 | |
| 890 | 890 | /** |
| 891 | - * Set the VAT class of the item. |
|
| 892 | - * |
|
| 893 | - * @since 1.0.19 |
|
| 894 | - * @param string $value new class. |
|
| 895 | - */ |
|
| 896 | - public function set_vat_class( $value ) { |
|
| 891 | + * Set the VAT class of the item. |
|
| 892 | + * |
|
| 893 | + * @since 1.0.19 |
|
| 894 | + * @param string $value new class. |
|
| 895 | + */ |
|
| 896 | + public function set_vat_class( $value ) { |
|
| 897 | 897 | $this->set_prop( 'vat_class', $value ); |
| 898 | 898 | } |
| 899 | 899 | |
| 900 | 900 | /** |
| 901 | - * Set the type of the item. |
|
| 902 | - * |
|
| 903 | - * @since 1.0.19 |
|
| 904 | - * @param string $value new item type. |
|
| 905 | - * @return string |
|
| 906 | - */ |
|
| 907 | - public function set_type( $value ) { |
|
| 901 | + * Set the type of the item. |
|
| 902 | + * |
|
| 903 | + * @since 1.0.19 |
|
| 904 | + * @param string $value new item type. |
|
| 905 | + * @return string |
|
| 906 | + */ |
|
| 907 | + public function set_type( $value ) { |
|
| 908 | 908 | |
| 909 | 909 | if ( empty( $value ) ) { |
| 910 | 910 | $value = 'custom'; |
@@ -914,132 +914,132 @@ discard block |
||
| 914 | 914 | } |
| 915 | 915 | |
| 916 | 916 | /** |
| 917 | - * Set the custom id of the item. |
|
| 918 | - * |
|
| 919 | - * @since 1.0.19 |
|
| 920 | - * @param string $value new custom id. |
|
| 921 | - */ |
|
| 922 | - public function set_custom_id( $value ) { |
|
| 917 | + * Set the custom id of the item. |
|
| 918 | + * |
|
| 919 | + * @since 1.0.19 |
|
| 920 | + * @param string $value new custom id. |
|
| 921 | + */ |
|
| 922 | + public function set_custom_id( $value ) { |
|
| 923 | 923 | $this->set_prop( 'custom_id', $value ); |
| 924 | 924 | } |
| 925 | 925 | |
| 926 | 926 | /** |
| 927 | - * Set the custom name of the item. |
|
| 928 | - * |
|
| 929 | - * @since 1.0.19 |
|
| 930 | - * @param string $value new custom name. |
|
| 931 | - */ |
|
| 932 | - public function set_custom_name( $value ) { |
|
| 927 | + * Set the custom name of the item. |
|
| 928 | + * |
|
| 929 | + * @since 1.0.19 |
|
| 930 | + * @param string $value new custom name. |
|
| 931 | + */ |
|
| 932 | + public function set_custom_name( $value ) { |
|
| 933 | 933 | $this->set_prop( 'custom_name', $value ); |
| 934 | 934 | } |
| 935 | 935 | |
| 936 | 936 | /** |
| 937 | - * Set the custom singular name of the item. |
|
| 938 | - * |
|
| 939 | - * @since 1.0.19 |
|
| 940 | - * @param string $value new custom singular name. |
|
| 941 | - */ |
|
| 942 | - public function set_custom_singular_name( $value ) { |
|
| 937 | + * Set the custom singular name of the item. |
|
| 938 | + * |
|
| 939 | + * @since 1.0.19 |
|
| 940 | + * @param string $value new custom singular name. |
|
| 941 | + */ |
|
| 942 | + public function set_custom_singular_name( $value ) { |
|
| 943 | 943 | $this->set_prop( 'custom_singular_name', $value ); |
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | /** |
| 947 | - * Sets if an item is editable.. |
|
| 948 | - * |
|
| 949 | - * @since 1.0.19 |
|
| 950 | - * @param int|bool $value whether or not the item is editable. |
|
| 951 | - */ |
|
| 952 | - public function set_is_editable( $value ) { |
|
| 953 | - $this->set_prop( 'is_editable', (int) $value ); |
|
| 947 | + * Sets if an item is editable.. |
|
| 948 | + * |
|
| 949 | + * @since 1.0.19 |
|
| 950 | + * @param int|bool $value whether or not the item is editable. |
|
| 951 | + */ |
|
| 952 | + public function set_is_editable( $value ) { |
|
| 953 | + $this->set_prop( 'is_editable', (int) $value ); |
|
| 954 | 954 | } |
| 955 | 955 | |
| 956 | 956 | /** |
| 957 | - * Sets if dynamic pricing is enabled. |
|
| 958 | - * |
|
| 959 | - * @since 1.0.19 |
|
| 960 | - * @param int|bool $value whether or not dynamic pricing is allowed. |
|
| 961 | - */ |
|
| 962 | - public function set_is_dynamic_pricing( $value ) { |
|
| 957 | + * Sets if dynamic pricing is enabled. |
|
| 958 | + * |
|
| 959 | + * @since 1.0.19 |
|
| 960 | + * @param int|bool $value whether or not dynamic pricing is allowed. |
|
| 961 | + */ |
|
| 962 | + public function set_is_dynamic_pricing( $value ) { |
|
| 963 | 963 | $this->set_prop( 'is_dynamic_pricing', (int) $value ); |
| 964 | 964 | } |
| 965 | 965 | |
| 966 | 966 | /** |
| 967 | - * Sets the minimum price if dynamic pricing is enabled. |
|
| 968 | - * |
|
| 969 | - * @since 1.0.19 |
|
| 970 | - * @param float $value minimum price. |
|
| 971 | - */ |
|
| 972 | - public function set_minimum_price( $value ) { |
|
| 967 | + * Sets the minimum price if dynamic pricing is enabled. |
|
| 968 | + * |
|
| 969 | + * @since 1.0.19 |
|
| 970 | + * @param float $value minimum price. |
|
| 971 | + */ |
|
| 972 | + public function set_minimum_price( $value ) { |
|
| 973 | 973 | $this->set_prop( 'minimum_price', (float) wpinv_sanitize_amount( $value ) ); |
| 974 | 974 | } |
| 975 | 975 | |
| 976 | 976 | /** |
| 977 | - * Sets if this is a recurring item. |
|
| 978 | - * |
|
| 979 | - * @since 1.0.19 |
|
| 980 | - * @param int|bool $value whether or not dynamic pricing is allowed. |
|
| 981 | - */ |
|
| 982 | - public function set_is_recurring( $value ) { |
|
| 977 | + * Sets if this is a recurring item. |
|
| 978 | + * |
|
| 979 | + * @since 1.0.19 |
|
| 980 | + * @param int|bool $value whether or not dynamic pricing is allowed. |
|
| 981 | + */ |
|
| 982 | + public function set_is_recurring( $value ) { |
|
| 983 | 983 | $this->set_prop( 'is_recurring', (int) $value ); |
| 984 | 984 | } |
| 985 | 985 | |
| 986 | 986 | /** |
| 987 | - * Set the recurring period. |
|
| 988 | - * |
|
| 989 | - * @since 1.0.19 |
|
| 990 | - * @param string $value new period. |
|
| 991 | - */ |
|
| 992 | - public function set_recurring_period( $value ) { |
|
| 987 | + * Set the recurring period. |
|
| 988 | + * |
|
| 989 | + * @since 1.0.19 |
|
| 990 | + * @param string $value new period. |
|
| 991 | + */ |
|
| 992 | + public function set_recurring_period( $value ) { |
|
| 993 | 993 | $this->set_prop( 'recurring_period', $value ); |
| 994 | 994 | } |
| 995 | 995 | |
| 996 | 996 | /** |
| 997 | - * Set the recurring interval. |
|
| 998 | - * |
|
| 999 | - * @since 1.0.19 |
|
| 1000 | - * @param int $value recurring interval. |
|
| 1001 | - */ |
|
| 1002 | - public function set_recurring_interval( $value ) { |
|
| 997 | + * Set the recurring interval. |
|
| 998 | + * |
|
| 999 | + * @since 1.0.19 |
|
| 1000 | + * @param int $value recurring interval. |
|
| 1001 | + */ |
|
| 1002 | + public function set_recurring_interval( $value ) { |
|
| 1003 | 1003 | return $this->set_prop( 'recurring_interval', (int) $value ); |
| 1004 | 1004 | } |
| 1005 | 1005 | |
| 1006 | 1006 | /** |
| 1007 | - * Get the recurring limit. |
|
| 1008 | - * @since 1.0.19 |
|
| 1009 | - * @param int $value The recurring limit. |
|
| 1010 | - * @return int |
|
| 1011 | - */ |
|
| 1012 | - public function set_recurring_limit( $value ) { |
|
| 1007 | + * Get the recurring limit. |
|
| 1008 | + * @since 1.0.19 |
|
| 1009 | + * @param int $value The recurring limit. |
|
| 1010 | + * @return int |
|
| 1011 | + */ |
|
| 1012 | + public function set_recurring_limit( $value ) { |
|
| 1013 | 1013 | $this->set_prop( 'recurring_limit', (int) $value ); |
| 1014 | 1014 | } |
| 1015 | 1015 | |
| 1016 | 1016 | /** |
| 1017 | - * Checks if we have a free trial. |
|
| 1018 | - * |
|
| 1019 | - * @since 1.0.19 |
|
| 1020 | - * @param int|bool $value whether or not it has a free trial. |
|
| 1021 | - */ |
|
| 1022 | - public function set_is_free_trial( $value ) { |
|
| 1017 | + * Checks if we have a free trial. |
|
| 1018 | + * |
|
| 1019 | + * @since 1.0.19 |
|
| 1020 | + * @param int|bool $value whether or not it has a free trial. |
|
| 1021 | + */ |
|
| 1022 | + public function set_is_free_trial( $value ) { |
|
| 1023 | 1023 | $this->set_prop( 'is_free_trial', (int) $value ); |
| 1024 | 1024 | } |
| 1025 | 1025 | |
| 1026 | 1026 | /** |
| 1027 | - * Set the trial period. |
|
| 1028 | - * |
|
| 1029 | - * @since 1.0.19 |
|
| 1030 | - * @param string $value trial period. |
|
| 1031 | - */ |
|
| 1032 | - public function set_trial_period( $value ) { |
|
| 1027 | + * Set the trial period. |
|
| 1028 | + * |
|
| 1029 | + * @since 1.0.19 |
|
| 1030 | + * @param string $value trial period. |
|
| 1031 | + */ |
|
| 1032 | + public function set_trial_period( $value ) { |
|
| 1033 | 1033 | $this->set_prop( 'trial_period', $value ); |
| 1034 | 1034 | } |
| 1035 | 1035 | |
| 1036 | 1036 | /** |
| 1037 | - * Set the trial interval. |
|
| 1038 | - * |
|
| 1039 | - * @since 1.0.19 |
|
| 1040 | - * @param int $value trial interval. |
|
| 1041 | - */ |
|
| 1042 | - public function set_trial_interval( $value ) { |
|
| 1037 | + * Set the trial interval. |
|
| 1038 | + * |
|
| 1039 | + * @since 1.0.19 |
|
| 1040 | + * @param int $value trial interval. |
|
| 1041 | + */ |
|
| 1042 | + public function set_trial_interval( $value ) { |
|
| 1043 | 1043 | $this->set_prop( 'trial_interval', $value ); |
| 1044 | 1044 | } |
| 1045 | 1045 | |
@@ -1047,17 +1047,17 @@ discard block |
||
| 1047 | 1047 | * Create an item. For backwards compatibilty. |
| 1048 | 1048 | * |
| 1049 | 1049 | * @deprecated |
| 1050 | - * @return int item id |
|
| 1050 | + * @return int item id |
|
| 1051 | 1051 | */ |
| 1052 | 1052 | public function create( $data = array() ) { |
| 1053 | 1053 | |
| 1054 | - // Set the properties. |
|
| 1055 | - if ( is_array( $data ) ) { |
|
| 1056 | - $this->set_props( $data ); |
|
| 1057 | - } |
|
| 1054 | + // Set the properties. |
|
| 1055 | + if ( is_array( $data ) ) { |
|
| 1056 | + $this->set_props( $data ); |
|
| 1057 | + } |
|
| 1058 | 1058 | |
| 1059 | - // Save the item. |
|
| 1060 | - return $this->save(); |
|
| 1059 | + // Save the item. |
|
| 1060 | + return $this->save(); |
|
| 1061 | 1061 | |
| 1062 | 1062 | } |
| 1063 | 1063 | |
@@ -1065,7 +1065,7 @@ discard block |
||
| 1065 | 1065 | * Updates an item. For backwards compatibilty. |
| 1066 | 1066 | * |
| 1067 | 1067 | * @deprecated |
| 1068 | - * @return int item id |
|
| 1068 | + * @return int item id |
|
| 1069 | 1069 | */ |
| 1070 | 1070 | public function update( $data = array() ) { |
| 1071 | 1071 | return $this->create( $data ); |
@@ -1081,93 +1081,93 @@ discard block |
||
| 1081 | 1081 | */ |
| 1082 | 1082 | |
| 1083 | 1083 | /** |
| 1084 | - * Checks whether the item has enabled dynamic pricing. |
|
| 1085 | - * |
|
| 1086 | - * @since 1.0.19 |
|
| 1087 | - * @return bool |
|
| 1088 | - */ |
|
| 1089 | - public function user_can_set_their_price() { |
|
| 1084 | + * Checks whether the item has enabled dynamic pricing. |
|
| 1085 | + * |
|
| 1086 | + * @since 1.0.19 |
|
| 1087 | + * @return bool |
|
| 1088 | + */ |
|
| 1089 | + public function user_can_set_their_price() { |
|
| 1090 | 1090 | return (bool) $this->get_is_dynamic_pricing(); |
| 1091 | - } |
|
| 1091 | + } |
|
| 1092 | 1092 | |
| 1093 | - /** |
|
| 1094 | - * Checks whether the item is recurring. |
|
| 1095 | - * |
|
| 1096 | - * @since 1.0.19 |
|
| 1097 | - * @return bool |
|
| 1098 | - */ |
|
| 1099 | - public function is_recurring() { |
|
| 1093 | + /** |
|
| 1094 | + * Checks whether the item is recurring. |
|
| 1095 | + * |
|
| 1096 | + * @since 1.0.19 |
|
| 1097 | + * @return bool |
|
| 1098 | + */ |
|
| 1099 | + public function is_recurring() { |
|
| 1100 | 1100 | return (bool) $this->get_is_recurring(); |
| 1101 | 1101 | } |
| 1102 | 1102 | |
| 1103 | 1103 | /** |
| 1104 | - * Checks whether the item has a free trial. |
|
| 1105 | - * |
|
| 1106 | - * @since 1.0.19 |
|
| 1107 | - * @return bool |
|
| 1108 | - */ |
|
| 1104 | + * Checks whether the item has a free trial. |
|
| 1105 | + * |
|
| 1106 | + * @since 1.0.19 |
|
| 1107 | + * @return bool |
|
| 1108 | + */ |
|
| 1109 | 1109 | public function has_free_trial() { |
| 1110 | 1110 | $has_trial = $this->is_recurring() && (bool) $this->get_free_trial() ? true : false; |
| 1111 | 1111 | return (bool) apply_filters( 'wpinv_item_has_free_trial', $has_trial, $this->ID, $this ); |
| 1112 | 1112 | } |
| 1113 | 1113 | |
| 1114 | 1114 | /** |
| 1115 | - * Checks whether the item is free. |
|
| 1116 | - * |
|
| 1117 | - * @since 1.0.19 |
|
| 1118 | - * @return bool |
|
| 1119 | - */ |
|
| 1115 | + * Checks whether the item is free. |
|
| 1116 | + * |
|
| 1117 | + * @since 1.0.19 |
|
| 1118 | + * @return bool |
|
| 1119 | + */ |
|
| 1120 | 1120 | public function is_free() { |
| 1121 | 1121 | $is_free = $this->get_price() == 0; |
| 1122 | 1122 | return (bool) apply_filters( 'wpinv_is_free_item', $is_free, $this->ID, $this ); |
| 1123 | 1123 | } |
| 1124 | 1124 | |
| 1125 | 1125 | /** |
| 1126 | - * Checks the item status against a passed in status. |
|
| 1127 | - * |
|
| 1128 | - * @param array|string $status Status to check. |
|
| 1129 | - * @return bool |
|
| 1130 | - */ |
|
| 1131 | - public function has_status( $status ) { |
|
| 1132 | - $has_status = ( is_array( $status ) && in_array( $this->get_status(), $status, true ) ) || $this->get_status() === $status; |
|
| 1133 | - return (bool) apply_filters( 'getpaid_item_has_status', $has_status, $this, $status ); |
|
| 1126 | + * Checks the item status against a passed in status. |
|
| 1127 | + * |
|
| 1128 | + * @param array|string $status Status to check. |
|
| 1129 | + * @return bool |
|
| 1130 | + */ |
|
| 1131 | + public function has_status( $status ) { |
|
| 1132 | + $has_status = ( is_array( $status ) && in_array( $this->get_status(), $status, true ) ) || $this->get_status() === $status; |
|
| 1133 | + return (bool) apply_filters( 'getpaid_item_has_status', $has_status, $this, $status ); |
|
| 1134 | 1134 | } |
| 1135 | 1135 | |
| 1136 | 1136 | /** |
| 1137 | - * Checks the item type against a passed in types. |
|
| 1138 | - * |
|
| 1139 | - * @param array|string $type Type to check. |
|
| 1140 | - * @return bool |
|
| 1141 | - */ |
|
| 1142 | - public function is_type( $type ) { |
|
| 1143 | - $is_type = ( is_array( $type ) && in_array( $this->get_type(), $type, true ) ) || $this->get_type() === $type; |
|
| 1144 | - return (bool) apply_filters( 'getpaid_item_is_type', $is_type, $this, $type ); |
|
| 1145 | - } |
|
| 1137 | + * Checks the item type against a passed in types. |
|
| 1138 | + * |
|
| 1139 | + * @param array|string $type Type to check. |
|
| 1140 | + * @return bool |
|
| 1141 | + */ |
|
| 1142 | + public function is_type( $type ) { |
|
| 1143 | + $is_type = ( is_array( $type ) && in_array( $this->get_type(), $type, true ) ) || $this->get_type() === $type; |
|
| 1144 | + return (bool) apply_filters( 'getpaid_item_is_type', $is_type, $this, $type ); |
|
| 1145 | + } |
|
| 1146 | 1146 | |
| 1147 | 1147 | /** |
| 1148 | - * Checks whether the item is editable. |
|
| 1149 | - * |
|
| 1150 | - * @since 1.0.19 |
|
| 1151 | - * @return bool |
|
| 1152 | - */ |
|
| 1148 | + * Checks whether the item is editable. |
|
| 1149 | + * |
|
| 1150 | + * @since 1.0.19 |
|
| 1151 | + * @return bool |
|
| 1152 | + */ |
|
| 1153 | 1153 | public function is_editable() { |
| 1154 | 1154 | $is_editable = $this->get_is_editable(); |
| 1155 | 1155 | return (bool) apply_filters( 'wpinv_item_is_editable', $is_editable, $this->ID, $this ); |
| 1156 | - } |
|
| 1156 | + } |
|
| 1157 | 1157 | |
| 1158 | - /** |
|
| 1159 | - * Returns an array of cart fees. |
|
| 1160 | - */ |
|
| 1161 | - public function get_fees() { |
|
| 1158 | + /** |
|
| 1159 | + * Returns an array of cart fees. |
|
| 1160 | + */ |
|
| 1161 | + public function get_fees() { |
|
| 1162 | 1162 | return array(); |
| 1163 | 1163 | } |
| 1164 | 1164 | |
| 1165 | 1165 | /** |
| 1166 | - * Checks whether the item is purchasable. |
|
| 1167 | - * |
|
| 1168 | - * @since 1.0.19 |
|
| 1169 | - * @return bool |
|
| 1170 | - */ |
|
| 1166 | + * Checks whether the item is purchasable. |
|
| 1167 | + * |
|
| 1168 | + * @since 1.0.19 |
|
| 1169 | + * @return bool |
|
| 1170 | + */ |
|
| 1171 | 1171 | public function can_purchase() { |
| 1172 | 1172 | $can_purchase = $this->exists(); |
| 1173 | 1173 | |
@@ -1179,11 +1179,11 @@ discard block |
||
| 1179 | 1179 | } |
| 1180 | 1180 | |
| 1181 | 1181 | /** |
| 1182 | - * Checks whether the item supports dynamic pricing. |
|
| 1183 | - * |
|
| 1184 | - * @since 1.0.19 |
|
| 1185 | - * @return bool |
|
| 1186 | - */ |
|
| 1182 | + * Checks whether the item supports dynamic pricing. |
|
| 1183 | + * |
|
| 1184 | + * @since 1.0.19 |
|
| 1185 | + * @return bool |
|
| 1186 | + */ |
|
| 1187 | 1187 | public function supports_dynamic_pricing() { |
| 1188 | 1188 | return (bool) apply_filters( 'wpinv_item_supports_dynamic_pricing', true, $this ); |
| 1189 | 1189 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -78,30 +78,30 @@ discard block |
||
| 78 | 78 | * |
| 79 | 79 | * @param int|object|WPInv_Item|WP_Post $item Item to read. |
| 80 | 80 | */ |
| 81 | - public function __construct( $item = 0 ) { |
|
| 82 | - parent::__construct( $item ); |
|
| 83 | - |
|
| 84 | - if ( ! empty( $item ) && is_numeric( $item ) && 'wpi_item' == get_post_type( $item ) ) { |
|
| 85 | - $this->set_id( $item ); |
|
| 86 | - } elseif ( $item instanceof self ) { |
|
| 87 | - $this->set_id( $item->get_id() ); |
|
| 88 | - } elseif ( ! empty( $item->ID ) ) { |
|
| 89 | - $this->set_id( $item->ID ); |
|
| 90 | - } elseif ( is_scalar( $item ) && $item_id = self::get_item_id_by_field( $item, 'custom_id' ) ) { |
|
| 91 | - $this->set_id( $item_id ); |
|
| 92 | - } elseif ( is_scalar( $item ) && $item_id = self::get_item_id_by_field( $item, 'name' ) ) { |
|
| 93 | - $this->set_id( $item_id ); |
|
| 81 | + public function __construct($item = 0) { |
|
| 82 | + parent::__construct($item); |
|
| 83 | + |
|
| 84 | + if (!empty($item) && is_numeric($item) && 'wpi_item' == get_post_type($item)) { |
|
| 85 | + $this->set_id($item); |
|
| 86 | + } elseif ($item instanceof self) { |
|
| 87 | + $this->set_id($item->get_id()); |
|
| 88 | + } elseif (!empty($item->ID)) { |
|
| 89 | + $this->set_id($item->ID); |
|
| 90 | + } elseif (is_scalar($item) && $item_id = self::get_item_id_by_field($item, 'custom_id')) { |
|
| 91 | + $this->set_id($item_id); |
|
| 92 | + } elseif (is_scalar($item) && $item_id = self::get_item_id_by_field($item, 'name')) { |
|
| 93 | + $this->set_id($item_id); |
|
| 94 | 94 | } else { |
| 95 | - $this->set_object_read( true ); |
|
| 95 | + $this->set_object_read(true); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | // Load the datastore. |
| 99 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 99 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
| 100 | 100 | |
| 101 | - if ( $this->get_id() > 0 ) { |
|
| 102 | - $this->post = get_post( $this->get_id() ); |
|
| 101 | + if ($this->get_id() > 0) { |
|
| 102 | + $this->post = get_post($this->get_id()); |
|
| 103 | 103 | $this->ID = $this->get_id(); |
| 104 | - $this->data_store->read( $this ); |
|
| 104 | + $this->data_store->read($this); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | } |
@@ -128,8 +128,8 @@ discard block |
||
| 128 | 128 | * @param string $context View or edit context. |
| 129 | 129 | * @return int |
| 130 | 130 | */ |
| 131 | - public function get_parent_id( $context = 'view' ) { |
|
| 132 | - return (int) $this->get_prop( 'parent_id', $context ); |
|
| 131 | + public function get_parent_id($context = 'view') { |
|
| 132 | + return (int) $this->get_prop('parent_id', $context); |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | /** |
@@ -139,8 +139,8 @@ discard block |
||
| 139 | 139 | * @param string $context View or edit context. |
| 140 | 140 | * @return string |
| 141 | 141 | */ |
| 142 | - public function get_status( $context = 'view' ) { |
|
| 143 | - return $this->get_prop( 'status', $context ); |
|
| 142 | + public function get_status($context = 'view') { |
|
| 143 | + return $this->get_prop('status', $context); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
@@ -150,8 +150,8 @@ discard block |
||
| 150 | 150 | * @param string $context View or edit context. |
| 151 | 151 | * @return string |
| 152 | 152 | */ |
| 153 | - public function get_version( $context = 'view' ) { |
|
| 154 | - return $this->get_prop( 'version', $context ); |
|
| 153 | + public function get_version($context = 'view') { |
|
| 154 | + return $this->get_prop('version', $context); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | /** |
@@ -161,8 +161,8 @@ discard block |
||
| 161 | 161 | * @param string $context View or edit context. |
| 162 | 162 | * @return string |
| 163 | 163 | */ |
| 164 | - public function get_date_created( $context = 'view' ) { |
|
| 165 | - return $this->get_prop( 'date_created', $context ); |
|
| 164 | + public function get_date_created($context = 'view') { |
|
| 165 | + return $this->get_prop('date_created', $context); |
|
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | /** |
@@ -172,11 +172,11 @@ discard block |
||
| 172 | 172 | * @param string $context View or edit context. |
| 173 | 173 | * @return string |
| 174 | 174 | */ |
| 175 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 176 | - $date = $this->get_date_created( $context ); |
|
| 175 | + public function get_date_created_gmt($context = 'view') { |
|
| 176 | + $date = $this->get_date_created($context); |
|
| 177 | 177 | |
| 178 | - if ( $date ) { |
|
| 179 | - $date = get_gmt_from_date( $date ); |
|
| 178 | + if ($date) { |
|
| 179 | + $date = get_gmt_from_date($date); |
|
| 180 | 180 | } |
| 181 | 181 | return $date; |
| 182 | 182 | } |
@@ -188,8 +188,8 @@ discard block |
||
| 188 | 188 | * @param string $context View or edit context. |
| 189 | 189 | * @return string |
| 190 | 190 | */ |
| 191 | - public function get_date_modified( $context = 'view' ) { |
|
| 192 | - return $this->get_prop( 'date_modified', $context ); |
|
| 191 | + public function get_date_modified($context = 'view') { |
|
| 192 | + return $this->get_prop('date_modified', $context); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
@@ -199,11 +199,11 @@ discard block |
||
| 199 | 199 | * @param string $context View or edit context. |
| 200 | 200 | * @return string |
| 201 | 201 | */ |
| 202 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
| 203 | - $date = $this->get_date_modified( $context ); |
|
| 202 | + public function get_date_modified_gmt($context = 'view') { |
|
| 203 | + $date = $this->get_date_modified($context); |
|
| 204 | 204 | |
| 205 | - if ( $date ) { |
|
| 206 | - $date = get_gmt_from_date( $date ); |
|
| 205 | + if ($date) { |
|
| 206 | + $date = get_gmt_from_date($date); |
|
| 207 | 207 | } |
| 208 | 208 | return $date; |
| 209 | 209 | } |
@@ -215,8 +215,8 @@ discard block |
||
| 215 | 215 | * @param string $context View or edit context. |
| 216 | 216 | * @return string |
| 217 | 217 | */ |
| 218 | - public function get_name( $context = 'view' ) { |
|
| 219 | - return $this->get_prop( 'name', $context ); |
|
| 218 | + public function get_name($context = 'view') { |
|
| 219 | + return $this->get_prop('name', $context); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | /** |
@@ -226,8 +226,8 @@ discard block |
||
| 226 | 226 | * @param string $context View or edit context. |
| 227 | 227 | * @return string |
| 228 | 228 | */ |
| 229 | - public function get_title( $context = 'view' ) { |
|
| 230 | - return $this->get_name( $context ); |
|
| 229 | + public function get_title($context = 'view') { |
|
| 230 | + return $this->get_name($context); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -237,8 +237,8 @@ discard block |
||
| 237 | 237 | * @param string $context View or edit context. |
| 238 | 238 | * @return string |
| 239 | 239 | */ |
| 240 | - public function get_description( $context = 'view' ) { |
|
| 241 | - return $this->get_prop( 'description', $context ); |
|
| 240 | + public function get_description($context = 'view') { |
|
| 241 | + return $this->get_prop('description', $context); |
|
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | /** |
@@ -248,8 +248,8 @@ discard block |
||
| 248 | 248 | * @param string $context View or edit context. |
| 249 | 249 | * @return string |
| 250 | 250 | */ |
| 251 | - public function get_excerpt( $context = 'view' ) { |
|
| 252 | - return $this->get_description( $context ); |
|
| 251 | + public function get_excerpt($context = 'view') { |
|
| 252 | + return $this->get_description($context); |
|
| 253 | 253 | } |
| 254 | 254 | |
| 255 | 255 | /** |
@@ -259,8 +259,8 @@ discard block |
||
| 259 | 259 | * @param string $context View or edit context. |
| 260 | 260 | * @return string |
| 261 | 261 | */ |
| 262 | - public function get_summary( $context = 'view' ) { |
|
| 263 | - return $this->get_description( $context ); |
|
| 262 | + public function get_summary($context = 'view') { |
|
| 263 | + return $this->get_description($context); |
|
| 264 | 264 | } |
| 265 | 265 | |
| 266 | 266 | /** |
@@ -270,8 +270,8 @@ discard block |
||
| 270 | 270 | * @param string $context View or edit context. |
| 271 | 271 | * @return int |
| 272 | 272 | */ |
| 273 | - public function get_author( $context = 'view' ) { |
|
| 274 | - return (int) $this->get_prop( 'author', $context ); |
|
| 273 | + public function get_author($context = 'view') { |
|
| 274 | + return (int) $this->get_prop('author', $context); |
|
| 275 | 275 | } |
| 276 | 276 | |
| 277 | 277 | /** |
@@ -281,8 +281,8 @@ discard block |
||
| 281 | 281 | * @param string $context View or edit context. |
| 282 | 282 | * @return int |
| 283 | 283 | */ |
| 284 | - public function get_owner( $context = 'view' ) { |
|
| 285 | - return $this->get_author( $context ); |
|
| 284 | + public function get_owner($context = 'view') { |
|
| 285 | + return $this->get_author($context); |
|
| 286 | 286 | } |
| 287 | 287 | |
| 288 | 288 | /** |
@@ -292,8 +292,8 @@ discard block |
||
| 292 | 292 | * @param string $context View or edit context. |
| 293 | 293 | * @return float |
| 294 | 294 | */ |
| 295 | - public function get_price( $context = 'view' ) { |
|
| 296 | - return wpinv_sanitize_amount( $this->get_prop( 'price', $context ) ); |
|
| 295 | + public function get_price($context = 'view') { |
|
| 296 | + return wpinv_sanitize_amount($this->get_prop('price', $context)); |
|
| 297 | 297 | } |
| 298 | 298 | |
| 299 | 299 | /** |
@@ -303,15 +303,15 @@ discard block |
||
| 303 | 303 | * @param string $context View or edit context. |
| 304 | 304 | * @return float |
| 305 | 305 | */ |
| 306 | - public function get_initial_price( $context = 'view' ) { |
|
| 306 | + public function get_initial_price($context = 'view') { |
|
| 307 | 307 | |
| 308 | - $price = (float) $this->get_price( $context ); |
|
| 308 | + $price = (float) $this->get_price($context); |
|
| 309 | 309 | |
| 310 | - if ( $this->has_free_trial() ) { |
|
| 310 | + if ($this->has_free_trial()) { |
|
| 311 | 311 | $price = 0; |
| 312 | 312 | } |
| 313 | 313 | |
| 314 | - return wpinv_sanitize_amount( apply_filters( 'wpinv_get_initial_item_price', $price, $this ) ); |
|
| 314 | + return wpinv_sanitize_amount(apply_filters('wpinv_get_initial_item_price', $price, $this)); |
|
| 315 | 315 | } |
| 316 | 316 | |
| 317 | 317 | /** |
@@ -322,7 +322,7 @@ discard block |
||
| 322 | 322 | * @return string |
| 323 | 323 | */ |
| 324 | 324 | public function get_the_price() { |
| 325 | - return wpinv_price( $this->get_price() ); |
|
| 325 | + return wpinv_price($this->get_price()); |
|
| 326 | 326 | } |
| 327 | 327 | |
| 328 | 328 | /** |
@@ -333,7 +333,7 @@ discard block |
||
| 333 | 333 | * @return string |
| 334 | 334 | */ |
| 335 | 335 | public function get_the_initial_price() { |
| 336 | - return wpinv_price( $this->get_initial_price() ); |
|
| 336 | + return wpinv_price($this->get_initial_price()); |
|
| 337 | 337 | } |
| 338 | 338 | |
| 339 | 339 | /** |
@@ -343,8 +343,8 @@ discard block |
||
| 343 | 343 | * @param string $context View or edit context. |
| 344 | 344 | * @return string |
| 345 | 345 | */ |
| 346 | - public function get_vat_rule( $context = 'view' ) { |
|
| 347 | - return $this->get_prop( 'vat_rule', $context ); |
|
| 346 | + public function get_vat_rule($context = 'view') { |
|
| 347 | + return $this->get_prop('vat_rule', $context); |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | /** |
@@ -354,8 +354,8 @@ discard block |
||
| 354 | 354 | * @param string $context View or edit context. |
| 355 | 355 | * @return string |
| 356 | 356 | */ |
| 357 | - public function get_vat_class( $context = 'view' ) { |
|
| 358 | - return $this->get_prop( 'vat_class', $context ); |
|
| 357 | + public function get_vat_class($context = 'view') { |
|
| 358 | + return $this->get_prop('vat_class', $context); |
|
| 359 | 359 | } |
| 360 | 360 | |
| 361 | 361 | /** |
@@ -365,8 +365,8 @@ discard block |
||
| 365 | 365 | * @param string $context View or edit context. |
| 366 | 366 | * @return string |
| 367 | 367 | */ |
| 368 | - public function get_type( $context = 'view' ) { |
|
| 369 | - return $this->get_prop( 'type', $context ); |
|
| 368 | + public function get_type($context = 'view') { |
|
| 369 | + return $this->get_prop('type', $context); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | /** |
@@ -376,8 +376,8 @@ discard block |
||
| 376 | 376 | * @param string $context View or edit context. |
| 377 | 377 | * @return string |
| 378 | 378 | */ |
| 379 | - public function get_custom_id( $context = 'view' ) { |
|
| 380 | - return $this->get_prop( 'custom_id', $context ); |
|
| 379 | + public function get_custom_id($context = 'view') { |
|
| 380 | + return $this->get_prop('custom_id', $context); |
|
| 381 | 381 | } |
| 382 | 382 | |
| 383 | 383 | /** |
@@ -387,8 +387,8 @@ discard block |
||
| 387 | 387 | * @param string $context View or edit context. |
| 388 | 388 | * @return string |
| 389 | 389 | */ |
| 390 | - public function get_custom_name( $context = 'view' ) { |
|
| 391 | - return $this->get_prop( 'custom_name', $context ); |
|
| 390 | + public function get_custom_name($context = 'view') { |
|
| 391 | + return $this->get_prop('custom_name', $context); |
|
| 392 | 392 | } |
| 393 | 393 | |
| 394 | 394 | /** |
@@ -398,8 +398,8 @@ discard block |
||
| 398 | 398 | * @param string $context View or edit context. |
| 399 | 399 | * @return string |
| 400 | 400 | */ |
| 401 | - public function get_custom_singular_name( $context = 'view' ) { |
|
| 402 | - return $this->get_prop( 'custom_singular_name', $context ); |
|
| 401 | + public function get_custom_singular_name($context = 'view') { |
|
| 402 | + return $this->get_prop('custom_singular_name', $context); |
|
| 403 | 403 | } |
| 404 | 404 | |
| 405 | 405 | /** |
@@ -409,8 +409,8 @@ discard block |
||
| 409 | 409 | * @param string $context View or edit context. |
| 410 | 410 | * @return int |
| 411 | 411 | */ |
| 412 | - public function get_is_editable( $context = 'view' ) { |
|
| 413 | - return (int) $this->get_prop( 'is_editable', $context ); |
|
| 412 | + public function get_is_editable($context = 'view') { |
|
| 413 | + return (int) $this->get_prop('is_editable', $context); |
|
| 414 | 414 | } |
| 415 | 415 | |
| 416 | 416 | /** |
@@ -420,8 +420,8 @@ discard block |
||
| 420 | 420 | * @param string $context View or edit context. |
| 421 | 421 | * @return int |
| 422 | 422 | */ |
| 423 | - public function get_editable( $context = 'view' ) { |
|
| 424 | - return $this->get_is_editable( $context ); |
|
| 423 | + public function get_editable($context = 'view') { |
|
| 424 | + return $this->get_is_editable($context); |
|
| 425 | 425 | } |
| 426 | 426 | |
| 427 | 427 | /** |
@@ -431,8 +431,8 @@ discard block |
||
| 431 | 431 | * @param string $context View or edit context. |
| 432 | 432 | * @return int |
| 433 | 433 | */ |
| 434 | - public function get_is_dynamic_pricing( $context = 'view' ) { |
|
| 435 | - return (int) $this->get_prop( 'is_dynamic_pricing', $context ); |
|
| 434 | + public function get_is_dynamic_pricing($context = 'view') { |
|
| 435 | + return (int) $this->get_prop('is_dynamic_pricing', $context); |
|
| 436 | 436 | } |
| 437 | 437 | |
| 438 | 438 | /** |
@@ -442,8 +442,8 @@ discard block |
||
| 442 | 442 | * @param string $context View or edit context. |
| 443 | 443 | * @return float |
| 444 | 444 | */ |
| 445 | - public function get_minimum_price( $context = 'view' ) { |
|
| 446 | - return wpinv_sanitize_amount( $this->get_prop( 'minimum_price', $context ) ); |
|
| 445 | + public function get_minimum_price($context = 'view') { |
|
| 446 | + return wpinv_sanitize_amount($this->get_prop('minimum_price', $context)); |
|
| 447 | 447 | } |
| 448 | 448 | |
| 449 | 449 | /** |
@@ -453,8 +453,8 @@ discard block |
||
| 453 | 453 | * @param string $context View or edit context. |
| 454 | 454 | * @return int |
| 455 | 455 | */ |
| 456 | - public function get_is_recurring( $context = 'view' ) { |
|
| 457 | - return (int) $this->get_prop( 'is_recurring', $context ); |
|
| 456 | + public function get_is_recurring($context = 'view') { |
|
| 457 | + return (int) $this->get_prop('is_recurring', $context); |
|
| 458 | 458 | } |
| 459 | 459 | |
| 460 | 460 | /** |
@@ -464,9 +464,9 @@ discard block |
||
| 464 | 464 | * @param string $context View or edit context. |
| 465 | 465 | * @return float |
| 466 | 466 | */ |
| 467 | - public function get_recurring_price( $context = 'view' ) { |
|
| 468 | - $price = $this->get_price( $context ); |
|
| 469 | - return wpinv_sanitize_amount( apply_filters( 'wpinv_get_recurring_item_price', $price, $this->ID ) ); |
|
| 467 | + public function get_recurring_price($context = 'view') { |
|
| 468 | + $price = $this->get_price($context); |
|
| 469 | + return wpinv_sanitize_amount(apply_filters('wpinv_get_recurring_item_price', $price, $this->ID)); |
|
| 470 | 470 | } |
| 471 | 471 | |
| 472 | 472 | /** |
@@ -477,7 +477,7 @@ discard block |
||
| 477 | 477 | * @return string |
| 478 | 478 | */ |
| 479 | 479 | public function get_the_recurring_price() { |
| 480 | - return wpinv_price( $this->get_recurring_price() ); |
|
| 480 | + return wpinv_price($this->get_recurring_price()); |
|
| 481 | 481 | } |
| 482 | 482 | |
| 483 | 483 | /** |
@@ -498,15 +498,15 @@ discard block |
||
| 498 | 498 | $period = $this->get_recurring_period(); |
| 499 | 499 | $interval = $this->get_recurring_interval(); |
| 500 | 500 | |
| 501 | - if ( $this->has_free_trial() ) { |
|
| 501 | + if ($this->has_free_trial()) { |
|
| 502 | 502 | $period = $this->get_trial_period(); |
| 503 | 503 | $interval = $this->get_trial_interval(); |
| 504 | 504 | } |
| 505 | 505 | |
| 506 | - $period = $periods[ $period ]; |
|
| 507 | - $interval = empty( $interval ) ? 1 : $interval; |
|
| 508 | - $next_renewal = strtotime( "+$interval $period", current_time( 'timestamp' ) ); |
|
| 509 | - return apply_filters( 'wpinv_get_first_renewal_date', $next_renewal, $this ); |
|
| 506 | + $period = $periods[$period]; |
|
| 507 | + $interval = empty($interval) ? 1 : $interval; |
|
| 508 | + $next_renewal = strtotime("+$interval $period", current_time('timestamp')); |
|
| 509 | + return apply_filters('wpinv_get_first_renewal_date', $next_renewal, $this); |
|
| 510 | 510 | } |
| 511 | 511 | |
| 512 | 512 | /** |
@@ -516,14 +516,14 @@ discard block |
||
| 516 | 516 | * @param bool $full Return abbreviation or in full. |
| 517 | 517 | * @return string |
| 518 | 518 | */ |
| 519 | - public function get_recurring_period( $full = false ) { |
|
| 520 | - $period = $this->get_prop( 'recurring_period', 'view' ); |
|
| 519 | + public function get_recurring_period($full = false) { |
|
| 520 | + $period = $this->get_prop('recurring_period', 'view'); |
|
| 521 | 521 | |
| 522 | - if ( $full && ! is_bool( $full ) ) { |
|
| 522 | + if ($full && !is_bool($full)) { |
|
| 523 | 523 | $full = false; |
| 524 | 524 | } |
| 525 | 525 | |
| 526 | - return getpaid_sanitize_recurring_period( $period, $full ); |
|
| 526 | + return getpaid_sanitize_recurring_period($period, $full); |
|
| 527 | 527 | } |
| 528 | 528 | |
| 529 | 529 | /** |
@@ -533,9 +533,9 @@ discard block |
||
| 533 | 533 | * @param string $context View or edit context. |
| 534 | 534 | * @return int |
| 535 | 535 | */ |
| 536 | - public function get_recurring_interval( $context = 'view' ) { |
|
| 537 | - $interval = absint( $this->get_prop( 'recurring_interval', $context ) ); |
|
| 538 | - return max( 1, $interval ); |
|
| 536 | + public function get_recurring_interval($context = 'view') { |
|
| 537 | + $interval = absint($this->get_prop('recurring_interval', $context)); |
|
| 538 | + return max(1, $interval); |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | /** |
@@ -545,8 +545,8 @@ discard block |
||
| 545 | 545 | * @param string $context View or edit context. |
| 546 | 546 | * @return int |
| 547 | 547 | */ |
| 548 | - public function get_recurring_limit( $context = 'view' ) { |
|
| 549 | - return (int) $this->get_prop( 'recurring_limit', $context ); |
|
| 548 | + public function get_recurring_limit($context = 'view') { |
|
| 549 | + return (int) $this->get_prop('recurring_limit', $context); |
|
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | /** |
@@ -556,8 +556,8 @@ discard block |
||
| 556 | 556 | * @param string $context View or edit context. |
| 557 | 557 | * @return int |
| 558 | 558 | */ |
| 559 | - public function get_is_free_trial( $context = 'view' ) { |
|
| 560 | - return (int) $this->get_prop( 'is_free_trial', $context ); |
|
| 559 | + public function get_is_free_trial($context = 'view') { |
|
| 560 | + return (int) $this->get_prop('is_free_trial', $context); |
|
| 561 | 561 | } |
| 562 | 562 | |
| 563 | 563 | /** |
@@ -567,8 +567,8 @@ discard block |
||
| 567 | 567 | * @param string $context View or edit context. |
| 568 | 568 | * @return int |
| 569 | 569 | */ |
| 570 | - public function get_free_trial( $context = 'view' ) { |
|
| 571 | - return $this->get_is_free_trial( $context ); |
|
| 570 | + public function get_free_trial($context = 'view') { |
|
| 571 | + return $this->get_is_free_trial($context); |
|
| 572 | 572 | } |
| 573 | 573 | |
| 574 | 574 | /** |
@@ -578,14 +578,14 @@ discard block |
||
| 578 | 578 | * @param bool $full Return abbreviation or in full. |
| 579 | 579 | * @return string |
| 580 | 580 | */ |
| 581 | - public function get_trial_period( $full = false ) { |
|
| 582 | - $period = $this->get_prop( 'trial_period', 'view' ); |
|
| 581 | + public function get_trial_period($full = false) { |
|
| 582 | + $period = $this->get_prop('trial_period', 'view'); |
|
| 583 | 583 | |
| 584 | - if ( $full && ! is_bool( $full ) ) { |
|
| 584 | + if ($full && !is_bool($full)) { |
|
| 585 | 585 | $full = false; |
| 586 | 586 | } |
| 587 | 587 | |
| 588 | - return getpaid_sanitize_recurring_period( $period, $full ); |
|
| 588 | + return getpaid_sanitize_recurring_period($period, $full); |
|
| 589 | 589 | } |
| 590 | 590 | |
| 591 | 591 | /** |
@@ -595,8 +595,8 @@ discard block |
||
| 595 | 595 | * @param string $context View or edit context. |
| 596 | 596 | * @return int |
| 597 | 597 | */ |
| 598 | - public function get_trial_interval( $context = 'view' ) { |
|
| 599 | - return (int) $this->get_prop( 'trial_interval', $context ); |
|
| 598 | + public function get_trial_interval($context = 'view') { |
|
| 599 | + return (int) $this->get_prop('trial_interval', $context); |
|
| 600 | 600 | } |
| 601 | 601 | |
| 602 | 602 | /** |
@@ -606,7 +606,7 @@ discard block |
||
| 606 | 606 | * @return string |
| 607 | 607 | */ |
| 608 | 608 | public function get_edit_url() { |
| 609 | - return get_edit_post_link( $this->get_id(), 'edit' ); |
|
| 609 | + return get_edit_post_link($this->get_id(), 'edit'); |
|
| 610 | 610 | } |
| 611 | 611 | |
| 612 | 612 | /** |
@@ -620,35 +620,35 @@ discard block |
||
| 620 | 620 | * @since 1.0.15 |
| 621 | 621 | * @return int |
| 622 | 622 | */ |
| 623 | - public static function get_item_id_by_field( $value, $field = 'custom_id', $type = '' ) { |
|
| 623 | + public static function get_item_id_by_field($value, $field = 'custom_id', $type = '') { |
|
| 624 | 624 | |
| 625 | 625 | // Trim the value. |
| 626 | - $value = sanitize_text_field( $value ); |
|
| 627 | - if ( empty( $value ) ) { |
|
| 626 | + $value = sanitize_text_field($value); |
|
| 627 | + if (empty($value)) { |
|
| 628 | 628 | return 0; |
| 629 | 629 | } |
| 630 | 630 | |
| 631 | 631 | // Valid fields. |
| 632 | - $fields = array( 'custom_id', 'name', 'slug' ); |
|
| 632 | + $fields = array('custom_id', 'name', 'slug'); |
|
| 633 | 633 | |
| 634 | 634 | // Ensure a field has been passed. |
| 635 | - if ( empty( $field ) || ! in_array( $field, $fields ) ) { |
|
| 635 | + if (empty($field) || !in_array($field, $fields)) { |
|
| 636 | 636 | return 0; |
| 637 | 637 | } |
| 638 | 638 | |
| 639 | - if ( $field == 'name' ) { |
|
| 639 | + if ($field == 'name') { |
|
| 640 | 640 | $field = 'slug'; |
| 641 | 641 | } |
| 642 | 642 | |
| 643 | 643 | // Maybe retrieve from the cache. |
| 644 | - $item_id = wp_cache_get( $value, "getpaid_{$type}_item_{$field}s_to_item_ids" ); |
|
| 645 | - if ( ! empty( $item_id ) ) { |
|
| 644 | + $item_id = wp_cache_get($value, "getpaid_{$type}_item_{$field}s_to_item_ids"); |
|
| 645 | + if (!empty($item_id)) { |
|
| 646 | 646 | return $item_id; |
| 647 | 647 | } |
| 648 | 648 | |
| 649 | 649 | // Fetch from the db. |
| 650 | 650 | $items = array(); |
| 651 | - if ( $field == 'slug' ) { |
|
| 651 | + if ($field == 'slug') { |
|
| 652 | 652 | $items = get_posts( |
| 653 | 653 | array( |
| 654 | 654 | 'post_type' => 'wpi_item', |
@@ -659,7 +659,7 @@ discard block |
||
| 659 | 659 | ); |
| 660 | 660 | } |
| 661 | 661 | |
| 662 | - if ( $field =='custom_id' ) { |
|
| 662 | + if ($field == 'custom_id') { |
|
| 663 | 663 | $items = get_posts( |
| 664 | 664 | array( |
| 665 | 665 | 'post_type' => 'wpi_item', |
@@ -679,12 +679,12 @@ discard block |
||
| 679 | 679 | ); |
| 680 | 680 | } |
| 681 | 681 | |
| 682 | - if ( empty( $items ) ) { |
|
| 682 | + if (empty($items)) { |
|
| 683 | 683 | return 0; |
| 684 | 684 | } |
| 685 | 685 | |
| 686 | 686 | // Update the cache with our data |
| 687 | - wp_cache_set( $value, $items[0]->ID, "getpaid_{$type}_item_{$field}s_to_item_ids" ); |
|
| 687 | + wp_cache_set($value, $items[0]->ID, "getpaid_{$type}_item_{$field}s_to_item_ids"); |
|
| 688 | 688 | |
| 689 | 689 | return $items[0]->ID; |
| 690 | 690 | } |
@@ -692,19 +692,19 @@ discard block |
||
| 692 | 692 | /** |
| 693 | 693 | * Margic method for retrieving a property. |
| 694 | 694 | */ |
| 695 | - public function __get( $key ) { |
|
| 695 | + public function __get($key) { |
|
| 696 | 696 | |
| 697 | 697 | // Check if we have a helper method for that. |
| 698 | - if ( method_exists( $this, 'get_' . $key ) ) { |
|
| 699 | - return call_user_func( array( $this, 'get_' . $key ) ); |
|
| 698 | + if (method_exists($this, 'get_' . $key)) { |
|
| 699 | + return call_user_func(array($this, 'get_' . $key)); |
|
| 700 | 700 | } |
| 701 | 701 | |
| 702 | 702 | // Check if the key is in the associated $post object. |
| 703 | - if ( ! empty( $this->post ) && isset( $this->post->$key ) ) { |
|
| 703 | + if (!empty($this->post) && isset($this->post->$key)) { |
|
| 704 | 704 | return $this->post->$key; |
| 705 | 705 | } |
| 706 | 706 | |
| 707 | - return $this->get_prop( $key ); |
|
| 707 | + return $this->get_prop($key); |
|
| 708 | 708 | |
| 709 | 709 | } |
| 710 | 710 | |
@@ -723,11 +723,11 @@ discard block |
||
| 723 | 723 | * |
| 724 | 724 | * @since 1.0.19 |
| 725 | 725 | */ |
| 726 | - public function set_parent_id( $value ) { |
|
| 727 | - if ( $value && ( $value === $this->get_id() || ! get_post( $value ) ) ) { |
|
| 726 | + public function set_parent_id($value) { |
|
| 727 | + if ($value && ($value === $this->get_id() || !get_post($value))) { |
|
| 728 | 728 | return; |
| 729 | 729 | } |
| 730 | - $this->set_prop( 'parent_id', absint( $value ) ); |
|
| 730 | + $this->set_prop('parent_id', absint($value)); |
|
| 731 | 731 | } |
| 732 | 732 | |
| 733 | 733 | /** |
@@ -737,10 +737,10 @@ discard block |
||
| 737 | 737 | * @param string $status New status. |
| 738 | 738 | * @return array details of change. |
| 739 | 739 | */ |
| 740 | - public function set_status( $status ) { |
|
| 740 | + public function set_status($status) { |
|
| 741 | 741 | $old_status = $this->get_status(); |
| 742 | 742 | |
| 743 | - $this->set_prop( 'status', $status ); |
|
| 743 | + $this->set_prop('status', $status); |
|
| 744 | 744 | |
| 745 | 745 | return array( |
| 746 | 746 | 'from' => $old_status, |
@@ -753,8 +753,8 @@ discard block |
||
| 753 | 753 | * |
| 754 | 754 | * @since 1.0.19 |
| 755 | 755 | */ |
| 756 | - public function set_version( $value ) { |
|
| 757 | - $this->set_prop( 'version', $value ); |
|
| 756 | + public function set_version($value) { |
|
| 757 | + $this->set_prop('version', $value); |
|
| 758 | 758 | } |
| 759 | 759 | |
| 760 | 760 | /** |
@@ -764,11 +764,11 @@ discard block |
||
| 764 | 764 | * @param string $value Value to set. |
| 765 | 765 | * @return bool Whether or not the date was set. |
| 766 | 766 | */ |
| 767 | - public function set_date_created( $value ) { |
|
| 768 | - $date = strtotime( $value ); |
|
| 767 | + public function set_date_created($value) { |
|
| 768 | + $date = strtotime($value); |
|
| 769 | 769 | |
| 770 | - if ( $date ) { |
|
| 771 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
| 770 | + if ($date) { |
|
| 771 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
| 772 | 772 | return true; |
| 773 | 773 | } |
| 774 | 774 | |
@@ -783,11 +783,11 @@ discard block |
||
| 783 | 783 | * @param string $value Value to set. |
| 784 | 784 | * @return bool Whether or not the date was set. |
| 785 | 785 | */ |
| 786 | - public function set_date_modified( $value ) { |
|
| 787 | - $date = strtotime( $value ); |
|
| 786 | + public function set_date_modified($value) { |
|
| 787 | + $date = strtotime($value); |
|
| 788 | 788 | |
| 789 | - if ( $date ) { |
|
| 790 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
| 789 | + if ($date) { |
|
| 790 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
| 791 | 791 | return true; |
| 792 | 792 | } |
| 793 | 793 | |
@@ -801,9 +801,9 @@ discard block |
||
| 801 | 801 | * @since 1.0.19 |
| 802 | 802 | * @param string $value New name. |
| 803 | 803 | */ |
| 804 | - public function set_name( $value ) { |
|
| 805 | - $name = sanitize_text_field( $value ); |
|
| 806 | - $this->set_prop( 'name', $name ); |
|
| 804 | + public function set_name($value) { |
|
| 805 | + $name = sanitize_text_field($value); |
|
| 806 | + $this->set_prop('name', $name); |
|
| 807 | 807 | } |
| 808 | 808 | |
| 809 | 809 | /** |
@@ -812,8 +812,8 @@ discard block |
||
| 812 | 812 | * @since 1.0.19 |
| 813 | 813 | * @param string $value New name. |
| 814 | 814 | */ |
| 815 | - public function set_title( $value ) { |
|
| 816 | - $this->set_name( $value ); |
|
| 815 | + public function set_title($value) { |
|
| 816 | + $this->set_name($value); |
|
| 817 | 817 | } |
| 818 | 818 | |
| 819 | 819 | /** |
@@ -822,9 +822,9 @@ discard block |
||
| 822 | 822 | * @since 1.0.19 |
| 823 | 823 | * @param string $value New description. |
| 824 | 824 | */ |
| 825 | - public function set_description( $value ) { |
|
| 826 | - $description = wp_kses_post( $value ); |
|
| 827 | - return $this->set_prop( 'description', $description ); |
|
| 825 | + public function set_description($value) { |
|
| 826 | + $description = wp_kses_post($value); |
|
| 827 | + return $this->set_prop('description', $description); |
|
| 828 | 828 | } |
| 829 | 829 | |
| 830 | 830 | /** |
@@ -833,8 +833,8 @@ discard block |
||
| 833 | 833 | * @since 1.0.19 |
| 834 | 834 | * @param string $value New description. |
| 835 | 835 | */ |
| 836 | - public function set_excerpt( $value ) { |
|
| 837 | - $this->set_description( $value ); |
|
| 836 | + public function set_excerpt($value) { |
|
| 837 | + $this->set_description($value); |
|
| 838 | 838 | } |
| 839 | 839 | |
| 840 | 840 | /** |
@@ -843,8 +843,8 @@ discard block |
||
| 843 | 843 | * @since 1.0.19 |
| 844 | 844 | * @param string $value New description. |
| 845 | 845 | */ |
| 846 | - public function set_summary( $value ) { |
|
| 847 | - $this->set_description( $value ); |
|
| 846 | + public function set_summary($value) { |
|
| 847 | + $this->set_description($value); |
|
| 848 | 848 | } |
| 849 | 849 | |
| 850 | 850 | /** |
@@ -853,8 +853,8 @@ discard block |
||
| 853 | 853 | * @since 1.0.19 |
| 854 | 854 | * @param int $value New author. |
| 855 | 855 | */ |
| 856 | - public function set_author( $value ) { |
|
| 857 | - $this->set_prop( 'author', (int) $value ); |
|
| 856 | + public function set_author($value) { |
|
| 857 | + $this->set_prop('author', (int) $value); |
|
| 858 | 858 | } |
| 859 | 859 | |
| 860 | 860 | /** |
@@ -863,8 +863,8 @@ discard block |
||
| 863 | 863 | * @since 1.0.19 |
| 864 | 864 | * @param int $value New author. |
| 865 | 865 | */ |
| 866 | - public function set_owner( $value ) { |
|
| 867 | - $this->set_author( $value ); |
|
| 866 | + public function set_owner($value) { |
|
| 867 | + $this->set_author($value); |
|
| 868 | 868 | } |
| 869 | 869 | |
| 870 | 870 | /** |
@@ -873,8 +873,8 @@ discard block |
||
| 873 | 873 | * @since 1.0.19 |
| 874 | 874 | * @param float $value New price. |
| 875 | 875 | */ |
| 876 | - public function set_price( $value ) { |
|
| 877 | - $this->set_prop( 'price', (float) wpinv_sanitize_amount( $value ) ); |
|
| 876 | + public function set_price($value) { |
|
| 877 | + $this->set_prop('price', (float) wpinv_sanitize_amount($value)); |
|
| 878 | 878 | } |
| 879 | 879 | |
| 880 | 880 | /** |
@@ -883,8 +883,8 @@ discard block |
||
| 883 | 883 | * @since 1.0.19 |
| 884 | 884 | * @param string $value new rule. |
| 885 | 885 | */ |
| 886 | - public function set_vat_rule( $value ) { |
|
| 887 | - $this->set_prop( 'vat_rule', $value ); |
|
| 886 | + public function set_vat_rule($value) { |
|
| 887 | + $this->set_prop('vat_rule', $value); |
|
| 888 | 888 | } |
| 889 | 889 | |
| 890 | 890 | /** |
@@ -893,8 +893,8 @@ discard block |
||
| 893 | 893 | * @since 1.0.19 |
| 894 | 894 | * @param string $value new class. |
| 895 | 895 | */ |
| 896 | - public function set_vat_class( $value ) { |
|
| 897 | - $this->set_prop( 'vat_class', $value ); |
|
| 896 | + public function set_vat_class($value) { |
|
| 897 | + $this->set_prop('vat_class', $value); |
|
| 898 | 898 | } |
| 899 | 899 | |
| 900 | 900 | /** |
@@ -904,13 +904,13 @@ discard block |
||
| 904 | 904 | * @param string $value new item type. |
| 905 | 905 | * @return string |
| 906 | 906 | */ |
| 907 | - public function set_type( $value ) { |
|
| 907 | + public function set_type($value) { |
|
| 908 | 908 | |
| 909 | - if ( empty( $value ) ) { |
|
| 909 | + if (empty($value)) { |
|
| 910 | 910 | $value = 'custom'; |
| 911 | 911 | } |
| 912 | 912 | |
| 913 | - $this->set_prop( 'type', $value ); |
|
| 913 | + $this->set_prop('type', $value); |
|
| 914 | 914 | } |
| 915 | 915 | |
| 916 | 916 | /** |
@@ -919,8 +919,8 @@ discard block |
||
| 919 | 919 | * @since 1.0.19 |
| 920 | 920 | * @param string $value new custom id. |
| 921 | 921 | */ |
| 922 | - public function set_custom_id( $value ) { |
|
| 923 | - $this->set_prop( 'custom_id', $value ); |
|
| 922 | + public function set_custom_id($value) { |
|
| 923 | + $this->set_prop('custom_id', $value); |
|
| 924 | 924 | } |
| 925 | 925 | |
| 926 | 926 | /** |
@@ -929,8 +929,8 @@ discard block |
||
| 929 | 929 | * @since 1.0.19 |
| 930 | 930 | * @param string $value new custom name. |
| 931 | 931 | */ |
| 932 | - public function set_custom_name( $value ) { |
|
| 933 | - $this->set_prop( 'custom_name', $value ); |
|
| 932 | + public function set_custom_name($value) { |
|
| 933 | + $this->set_prop('custom_name', $value); |
|
| 934 | 934 | } |
| 935 | 935 | |
| 936 | 936 | /** |
@@ -939,8 +939,8 @@ discard block |
||
| 939 | 939 | * @since 1.0.19 |
| 940 | 940 | * @param string $value new custom singular name. |
| 941 | 941 | */ |
| 942 | - public function set_custom_singular_name( $value ) { |
|
| 943 | - $this->set_prop( 'custom_singular_name', $value ); |
|
| 942 | + public function set_custom_singular_name($value) { |
|
| 943 | + $this->set_prop('custom_singular_name', $value); |
|
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | /** |
@@ -949,8 +949,8 @@ discard block |
||
| 949 | 949 | * @since 1.0.19 |
| 950 | 950 | * @param int|bool $value whether or not the item is editable. |
| 951 | 951 | */ |
| 952 | - public function set_is_editable( $value ) { |
|
| 953 | - $this->set_prop( 'is_editable', (int) $value ); |
|
| 952 | + public function set_is_editable($value) { |
|
| 953 | + $this->set_prop('is_editable', (int) $value); |
|
| 954 | 954 | } |
| 955 | 955 | |
| 956 | 956 | /** |
@@ -959,8 +959,8 @@ discard block |
||
| 959 | 959 | * @since 1.0.19 |
| 960 | 960 | * @param int|bool $value whether or not dynamic pricing is allowed. |
| 961 | 961 | */ |
| 962 | - public function set_is_dynamic_pricing( $value ) { |
|
| 963 | - $this->set_prop( 'is_dynamic_pricing', (int) $value ); |
|
| 962 | + public function set_is_dynamic_pricing($value) { |
|
| 963 | + $this->set_prop('is_dynamic_pricing', (int) $value); |
|
| 964 | 964 | } |
| 965 | 965 | |
| 966 | 966 | /** |
@@ -969,8 +969,8 @@ discard block |
||
| 969 | 969 | * @since 1.0.19 |
| 970 | 970 | * @param float $value minimum price. |
| 971 | 971 | */ |
| 972 | - public function set_minimum_price( $value ) { |
|
| 973 | - $this->set_prop( 'minimum_price', (float) wpinv_sanitize_amount( $value ) ); |
|
| 972 | + public function set_minimum_price($value) { |
|
| 973 | + $this->set_prop('minimum_price', (float) wpinv_sanitize_amount($value)); |
|
| 974 | 974 | } |
| 975 | 975 | |
| 976 | 976 | /** |
@@ -979,8 +979,8 @@ discard block |
||
| 979 | 979 | * @since 1.0.19 |
| 980 | 980 | * @param int|bool $value whether or not dynamic pricing is allowed. |
| 981 | 981 | */ |
| 982 | - public function set_is_recurring( $value ) { |
|
| 983 | - $this->set_prop( 'is_recurring', (int) $value ); |
|
| 982 | + public function set_is_recurring($value) { |
|
| 983 | + $this->set_prop('is_recurring', (int) $value); |
|
| 984 | 984 | } |
| 985 | 985 | |
| 986 | 986 | /** |
@@ -989,8 +989,8 @@ discard block |
||
| 989 | 989 | * @since 1.0.19 |
| 990 | 990 | * @param string $value new period. |
| 991 | 991 | */ |
| 992 | - public function set_recurring_period( $value ) { |
|
| 993 | - $this->set_prop( 'recurring_period', $value ); |
|
| 992 | + public function set_recurring_period($value) { |
|
| 993 | + $this->set_prop('recurring_period', $value); |
|
| 994 | 994 | } |
| 995 | 995 | |
| 996 | 996 | /** |
@@ -999,8 +999,8 @@ discard block |
||
| 999 | 999 | * @since 1.0.19 |
| 1000 | 1000 | * @param int $value recurring interval. |
| 1001 | 1001 | */ |
| 1002 | - public function set_recurring_interval( $value ) { |
|
| 1003 | - return $this->set_prop( 'recurring_interval', (int) $value ); |
|
| 1002 | + public function set_recurring_interval($value) { |
|
| 1003 | + return $this->set_prop('recurring_interval', (int) $value); |
|
| 1004 | 1004 | } |
| 1005 | 1005 | |
| 1006 | 1006 | /** |
@@ -1009,8 +1009,8 @@ discard block |
||
| 1009 | 1009 | * @param int $value The recurring limit. |
| 1010 | 1010 | * @return int |
| 1011 | 1011 | */ |
| 1012 | - public function set_recurring_limit( $value ) { |
|
| 1013 | - $this->set_prop( 'recurring_limit', (int) $value ); |
|
| 1012 | + public function set_recurring_limit($value) { |
|
| 1013 | + $this->set_prop('recurring_limit', (int) $value); |
|
| 1014 | 1014 | } |
| 1015 | 1015 | |
| 1016 | 1016 | /** |
@@ -1019,8 +1019,8 @@ discard block |
||
| 1019 | 1019 | * @since 1.0.19 |
| 1020 | 1020 | * @param int|bool $value whether or not it has a free trial. |
| 1021 | 1021 | */ |
| 1022 | - public function set_is_free_trial( $value ) { |
|
| 1023 | - $this->set_prop( 'is_free_trial', (int) $value ); |
|
| 1022 | + public function set_is_free_trial($value) { |
|
| 1023 | + $this->set_prop('is_free_trial', (int) $value); |
|
| 1024 | 1024 | } |
| 1025 | 1025 | |
| 1026 | 1026 | /** |
@@ -1029,8 +1029,8 @@ discard block |
||
| 1029 | 1029 | * @since 1.0.19 |
| 1030 | 1030 | * @param string $value trial period. |
| 1031 | 1031 | */ |
| 1032 | - public function set_trial_period( $value ) { |
|
| 1033 | - $this->set_prop( 'trial_period', $value ); |
|
| 1032 | + public function set_trial_period($value) { |
|
| 1033 | + $this->set_prop('trial_period', $value); |
|
| 1034 | 1034 | } |
| 1035 | 1035 | |
| 1036 | 1036 | /** |
@@ -1039,8 +1039,8 @@ discard block |
||
| 1039 | 1039 | * @since 1.0.19 |
| 1040 | 1040 | * @param int $value trial interval. |
| 1041 | 1041 | */ |
| 1042 | - public function set_trial_interval( $value ) { |
|
| 1043 | - $this->set_prop( 'trial_interval', $value ); |
|
| 1042 | + public function set_trial_interval($value) { |
|
| 1043 | + $this->set_prop('trial_interval', $value); |
|
| 1044 | 1044 | } |
| 1045 | 1045 | |
| 1046 | 1046 | /** |
@@ -1049,11 +1049,11 @@ discard block |
||
| 1049 | 1049 | * @deprecated |
| 1050 | 1050 | * @return int item id |
| 1051 | 1051 | */ |
| 1052 | - public function create( $data = array() ) { |
|
| 1052 | + public function create($data = array()) { |
|
| 1053 | 1053 | |
| 1054 | 1054 | // Set the properties. |
| 1055 | - if ( is_array( $data ) ) { |
|
| 1056 | - $this->set_props( $data ); |
|
| 1055 | + if (is_array($data)) { |
|
| 1056 | + $this->set_props($data); |
|
| 1057 | 1057 | } |
| 1058 | 1058 | |
| 1059 | 1059 | // Save the item. |
@@ -1067,8 +1067,8 @@ discard block |
||
| 1067 | 1067 | * @deprecated |
| 1068 | 1068 | * @return int item id |
| 1069 | 1069 | */ |
| 1070 | - public function update( $data = array() ) { |
|
| 1071 | - return $this->create( $data ); |
|
| 1070 | + public function update($data = array()) { |
|
| 1071 | + return $this->create($data); |
|
| 1072 | 1072 | } |
| 1073 | 1073 | |
| 1074 | 1074 | /* |
@@ -1108,7 +1108,7 @@ discard block |
||
| 1108 | 1108 | */ |
| 1109 | 1109 | public function has_free_trial() { |
| 1110 | 1110 | $has_trial = $this->is_recurring() && (bool) $this->get_free_trial() ? true : false; |
| 1111 | - return (bool) apply_filters( 'wpinv_item_has_free_trial', $has_trial, $this->ID, $this ); |
|
| 1111 | + return (bool) apply_filters('wpinv_item_has_free_trial', $has_trial, $this->ID, $this); |
|
| 1112 | 1112 | } |
| 1113 | 1113 | |
| 1114 | 1114 | /** |
@@ -1118,8 +1118,8 @@ discard block |
||
| 1118 | 1118 | * @return bool |
| 1119 | 1119 | */ |
| 1120 | 1120 | public function is_free() { |
| 1121 | - $is_free = $this->get_price() == 0; |
|
| 1122 | - return (bool) apply_filters( 'wpinv_is_free_item', $is_free, $this->ID, $this ); |
|
| 1121 | + $is_free = $this->get_price() == 0; |
|
| 1122 | + return (bool) apply_filters('wpinv_is_free_item', $is_free, $this->ID, $this); |
|
| 1123 | 1123 | } |
| 1124 | 1124 | |
| 1125 | 1125 | /** |
@@ -1128,9 +1128,9 @@ discard block |
||
| 1128 | 1128 | * @param array|string $status Status to check. |
| 1129 | 1129 | * @return bool |
| 1130 | 1130 | */ |
| 1131 | - public function has_status( $status ) { |
|
| 1132 | - $has_status = ( is_array( $status ) && in_array( $this->get_status(), $status, true ) ) || $this->get_status() === $status; |
|
| 1133 | - return (bool) apply_filters( 'getpaid_item_has_status', $has_status, $this, $status ); |
|
| 1131 | + public function has_status($status) { |
|
| 1132 | + $has_status = (is_array($status) && in_array($this->get_status(), $status, true)) || $this->get_status() === $status; |
|
| 1133 | + return (bool) apply_filters('getpaid_item_has_status', $has_status, $this, $status); |
|
| 1134 | 1134 | } |
| 1135 | 1135 | |
| 1136 | 1136 | /** |
@@ -1139,9 +1139,9 @@ discard block |
||
| 1139 | 1139 | * @param array|string $type Type to check. |
| 1140 | 1140 | * @return bool |
| 1141 | 1141 | */ |
| 1142 | - public function is_type( $type ) { |
|
| 1143 | - $is_type = ( is_array( $type ) && in_array( $this->get_type(), $type, true ) ) || $this->get_type() === $type; |
|
| 1144 | - return (bool) apply_filters( 'getpaid_item_is_type', $is_type, $this, $type ); |
|
| 1142 | + public function is_type($type) { |
|
| 1143 | + $is_type = (is_array($type) && in_array($this->get_type(), $type, true)) || $this->get_type() === $type; |
|
| 1144 | + return (bool) apply_filters('getpaid_item_is_type', $is_type, $this, $type); |
|
| 1145 | 1145 | } |
| 1146 | 1146 | |
| 1147 | 1147 | /** |
@@ -1152,7 +1152,7 @@ discard block |
||
| 1152 | 1152 | */ |
| 1153 | 1153 | public function is_editable() { |
| 1154 | 1154 | $is_editable = $this->get_is_editable(); |
| 1155 | - return (bool) apply_filters( 'wpinv_item_is_editable', $is_editable, $this->ID, $this ); |
|
| 1155 | + return (bool) apply_filters('wpinv_item_is_editable', $is_editable, $this->ID, $this); |
|
| 1156 | 1156 | } |
| 1157 | 1157 | |
| 1158 | 1158 | /** |
@@ -1171,11 +1171,11 @@ discard block |
||
| 1171 | 1171 | public function can_purchase() { |
| 1172 | 1172 | $can_purchase = $this->exists(); |
| 1173 | 1173 | |
| 1174 | - if ( ! current_user_can( 'edit_post', $this->ID ) && $this->post_status != 'publish' ) { |
|
| 1174 | + if (!current_user_can('edit_post', $this->ID) && $this->post_status != 'publish') { |
|
| 1175 | 1175 | $can_purchase = false; |
| 1176 | 1176 | } |
| 1177 | 1177 | |
| 1178 | - return (bool) apply_filters( 'wpinv_can_purchase_item', $can_purchase, $this ); |
|
| 1178 | + return (bool) apply_filters('wpinv_can_purchase_item', $can_purchase, $this); |
|
| 1179 | 1179 | } |
| 1180 | 1180 | |
| 1181 | 1181 | /** |
@@ -1185,6 +1185,6 @@ discard block |
||
| 1185 | 1185 | * @return bool |
| 1186 | 1186 | */ |
| 1187 | 1187 | public function supports_dynamic_pricing() { |
| 1188 | - return (bool) apply_filters( 'wpinv_item_supports_dynamic_pricing', true, $this ); |
|
| 1188 | + return (bool) apply_filters('wpinv_item_supports_dynamic_pricing', true, $this); |
|
| 1189 | 1189 | } |
| 1190 | 1190 | } |
@@ -12,315 +12,315 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Payment_Form_Submission_Refresh_Prices { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Contains the response for refreshing prices. |
|
| 17 | - * @var array |
|
| 18 | - */ |
|
| 19 | - public $response = array(); |
|
| 15 | + /** |
|
| 16 | + * Contains the response for refreshing prices. |
|
| 17 | + * @var array |
|
| 18 | + */ |
|
| 19 | + public $response = array(); |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | - * Class constructor |
|
| 23 | - * |
|
| 24 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 25 | - */ |
|
| 26 | - public function __construct( $submission ) { |
|
| 27 | - |
|
| 28 | - $this->response = array( |
|
| 29 | - 'submission_id' => $submission->id, |
|
| 22 | + * Class constructor |
|
| 23 | + * |
|
| 24 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 25 | + */ |
|
| 26 | + public function __construct( $submission ) { |
|
| 27 | + |
|
| 28 | + $this->response = array( |
|
| 29 | + 'submission_id' => $submission->id, |
|
| 30 | 30 | 'has_recurring' => $submission->has_recurring, |
| 31 | - 'has_subscription_group' => $submission->has_subscription_group(), |
|
| 32 | - 'has_multiple_subscription_groups' => $submission->has_multiple_subscription_groups(), |
|
| 31 | + 'has_subscription_group' => $submission->has_subscription_group(), |
|
| 32 | + 'has_multiple_subscription_groups' => $submission->has_multiple_subscription_groups(), |
|
| 33 | 33 | 'is_free' => ! $submission->should_collect_payment_details(), |
| 34 | - ); |
|
| 35 | - |
|
| 36 | - $this->add_totals( $submission ); |
|
| 37 | - $this->add_texts( $submission ); |
|
| 38 | - $this->add_items( $submission ); |
|
| 39 | - $this->add_fees( $submission ); |
|
| 40 | - $this->add_discounts( $submission ); |
|
| 41 | - $this->add_taxes( $submission ); |
|
| 42 | - $this->add_gateways( $submission ); |
|
| 43 | - $this->add_data( $submission ); |
|
| 44 | - |
|
| 45 | - } |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Adds totals to a response for submission refresh prices. |
|
| 49 | - * |
|
| 50 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 51 | - */ |
|
| 52 | - public function add_totals( $submission ) { |
|
| 53 | - |
|
| 54 | - $this->response = array_merge( |
|
| 55 | - $this->response, |
|
| 56 | - array( |
|
| 57 | - |
|
| 58 | - 'totals' => array( |
|
| 59 | - 'subtotal' => $submission->format_amount( $submission->get_subtotal() ), |
|
| 60 | - 'discount' => $submission->format_amount( $submission->get_discount() ), |
|
| 61 | - 'fees' => $submission->format_amount( $submission->get_fee() ), |
|
| 62 | - 'tax' => $submission->format_amount( $submission->get_tax() ), |
|
| 63 | - 'total' => $submission->format_amount( $submission->get_total() ), |
|
| 64 | - 'raw_total' => html_entity_decode( sanitize_text_field( $submission->format_amount( $submission->get_total() ) ), ENT_QUOTES ), |
|
| 65 | - ), |
|
| 66 | - |
|
| 67 | - 'recurring' => array( |
|
| 68 | - 'subtotal' => $submission->format_amount( $submission->get_recurring_subtotal() ), |
|
| 69 | - 'discount' => $submission->format_amount( $submission->get_recurring_discount() ), |
|
| 70 | - 'fees' => $submission->format_amount( $submission->get_recurring_fee() ), |
|
| 71 | - 'tax' => $submission->format_amount( $submission->get_recurring_tax() ), |
|
| 72 | - 'total' => $submission->format_amount( $submission->get_recurring_total() ), |
|
| 73 | - ), |
|
| 74 | - |
|
| 75 | - 'initial_amt' => wpinv_round_amount( $submission->get_total(), null, true ), |
|
| 76 | - 'currency' => $submission->get_currency(), |
|
| 77 | - |
|
| 78 | - ) |
|
| 79 | - ); |
|
| 80 | - |
|
| 81 | - } |
|
| 82 | - |
|
| 83 | - /** |
|
| 84 | - * Adds texts to a response for submission refresh prices. |
|
| 85 | - * |
|
| 86 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 87 | - */ |
|
| 88 | - public function add_texts( $submission ) { |
|
| 89 | - |
|
| 90 | - $payable = $submission->format_amount( $submission->get_total() ); |
|
| 91 | - $groups = getpaid_get_subscription_groups( $submission ); |
|
| 92 | - |
|
| 93 | - if ( $submission->has_recurring && 2 > count( $groups ) ) { |
|
| 94 | - |
|
| 95 | - $recurring = new WPInv_Item( $submission->has_recurring ); |
|
| 96 | - $period = getpaid_get_subscription_period_label( $recurring->get_recurring_period( true ), $recurring->get_recurring_interval(), '' ); |
|
| 97 | - $main_item = reset( $groups ); |
|
| 98 | - |
|
| 99 | - if ( $submission->get_total() == $submission->get_recurring_total() ) { |
|
| 100 | - $payable = "$payable / $period"; |
|
| 101 | - } else if ( $main_item ) { |
|
| 102 | - |
|
| 103 | - $main_item = reset( $main_item ); |
|
| 104 | - |
|
| 105 | - // Calculate the next renewal date. |
|
| 106 | - $_period = $main_item->get_recurring_period( true ); |
|
| 107 | - $_interval = $main_item->get_recurring_interval(); |
|
| 108 | - |
|
| 109 | - // If the subscription item has a trial period... |
|
| 110 | - if ( $main_item->has_free_trial() ) { |
|
| 111 | - $_period = $main_item->get_trial_period( true ); |
|
| 112 | - $_interval = $main_item->get_trial_interval(); |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - $payable = sprintf( |
|
| 116 | - __( '%1$s (renews at %2$s / %3$s)', 'invoicing' ), |
|
| 117 | - $submission->format_amount( $submission->get_total() ), |
|
| 118 | - $submission->format_amount( $submission->get_recurring_total() ), |
|
| 119 | - $period |
|
| 120 | - ); |
|
| 121 | - |
|
| 122 | - $payable .= sprintf( |
|
| 123 | - '<small class="text-muted form-text">%s</small>', |
|
| 124 | - sprintf( |
|
| 125 | - __( 'First renewal on %s', 'invoicing' ), |
|
| 126 | - getpaid_format_date( date( 'Y-m-d H:i:s', strtotime( "+$_interval $_period", current_time( 'timestamp' ) ) ) ) |
|
| 127 | - ) |
|
| 128 | - ); |
|
| 129 | - |
|
| 130 | - } else { |
|
| 131 | - $payable = sprintf( |
|
| 132 | - __( '%1$s (renews at %2$s / %3$s)', 'invoicing' ), |
|
| 133 | - $submission->format_amount( $submission->get_total() ), |
|
| 134 | - $submission->format_amount( $submission->get_recurring_total() ), |
|
| 135 | - $period |
|
| 136 | - ); |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - $texts = array( |
|
| 142 | - '.getpaid-checkout-total-payable' => $payable, |
|
| 143 | - ); |
|
| 144 | - |
|
| 145 | - foreach ( $submission->get_items() as $item ) { |
|
| 146 | - $item_id = $item->get_id(); |
|
| 147 | - $initial_price = $submission->format_amount( $this->standardize_price( $item->get_id(), $item->get_sub_total(), $submission->get_discount_code(), false ) ); |
|
| 148 | - $recurring_price = $submission->format_amount( $this->standardize_price( $item->get_id(), $item->get_recurring_sub_total(), $submission->get_discount_code(), true ) ); |
|
| 149 | - $texts[".item-$item_id .getpaid-form-item-price-desc"] = getpaid_item_recurring_price_help_text( $item, $submission->get_currency(), $initial_price, $recurring_price ); |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - $this->response = array_merge( $this->response, array( 'texts' => $texts ) ); |
|
| 153 | - |
|
| 154 | - } |
|
| 155 | - |
|
| 156 | - /** |
|
| 157 | - * Adds items to a response for submission refresh prices. |
|
| 158 | - * |
|
| 159 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 160 | - */ |
|
| 161 | - public function add_items( $submission ) { |
|
| 162 | - |
|
| 163 | - // Add items. |
|
| 164 | - $items = array(); |
|
| 34 | + ); |
|
| 35 | + |
|
| 36 | + $this->add_totals( $submission ); |
|
| 37 | + $this->add_texts( $submission ); |
|
| 38 | + $this->add_items( $submission ); |
|
| 39 | + $this->add_fees( $submission ); |
|
| 40 | + $this->add_discounts( $submission ); |
|
| 41 | + $this->add_taxes( $submission ); |
|
| 42 | + $this->add_gateways( $submission ); |
|
| 43 | + $this->add_data( $submission ); |
|
| 44 | + |
|
| 45 | + } |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Adds totals to a response for submission refresh prices. |
|
| 49 | + * |
|
| 50 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 51 | + */ |
|
| 52 | + public function add_totals( $submission ) { |
|
| 53 | + |
|
| 54 | + $this->response = array_merge( |
|
| 55 | + $this->response, |
|
| 56 | + array( |
|
| 57 | + |
|
| 58 | + 'totals' => array( |
|
| 59 | + 'subtotal' => $submission->format_amount( $submission->get_subtotal() ), |
|
| 60 | + 'discount' => $submission->format_amount( $submission->get_discount() ), |
|
| 61 | + 'fees' => $submission->format_amount( $submission->get_fee() ), |
|
| 62 | + 'tax' => $submission->format_amount( $submission->get_tax() ), |
|
| 63 | + 'total' => $submission->format_amount( $submission->get_total() ), |
|
| 64 | + 'raw_total' => html_entity_decode( sanitize_text_field( $submission->format_amount( $submission->get_total() ) ), ENT_QUOTES ), |
|
| 65 | + ), |
|
| 66 | + |
|
| 67 | + 'recurring' => array( |
|
| 68 | + 'subtotal' => $submission->format_amount( $submission->get_recurring_subtotal() ), |
|
| 69 | + 'discount' => $submission->format_amount( $submission->get_recurring_discount() ), |
|
| 70 | + 'fees' => $submission->format_amount( $submission->get_recurring_fee() ), |
|
| 71 | + 'tax' => $submission->format_amount( $submission->get_recurring_tax() ), |
|
| 72 | + 'total' => $submission->format_amount( $submission->get_recurring_total() ), |
|
| 73 | + ), |
|
| 74 | + |
|
| 75 | + 'initial_amt' => wpinv_round_amount( $submission->get_total(), null, true ), |
|
| 76 | + 'currency' => $submission->get_currency(), |
|
| 77 | + |
|
| 78 | + ) |
|
| 79 | + ); |
|
| 80 | + |
|
| 81 | + } |
|
| 82 | + |
|
| 83 | + /** |
|
| 84 | + * Adds texts to a response for submission refresh prices. |
|
| 85 | + * |
|
| 86 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 87 | + */ |
|
| 88 | + public function add_texts( $submission ) { |
|
| 89 | + |
|
| 90 | + $payable = $submission->format_amount( $submission->get_total() ); |
|
| 91 | + $groups = getpaid_get_subscription_groups( $submission ); |
|
| 92 | + |
|
| 93 | + if ( $submission->has_recurring && 2 > count( $groups ) ) { |
|
| 94 | + |
|
| 95 | + $recurring = new WPInv_Item( $submission->has_recurring ); |
|
| 96 | + $period = getpaid_get_subscription_period_label( $recurring->get_recurring_period( true ), $recurring->get_recurring_interval(), '' ); |
|
| 97 | + $main_item = reset( $groups ); |
|
| 98 | + |
|
| 99 | + if ( $submission->get_total() == $submission->get_recurring_total() ) { |
|
| 100 | + $payable = "$payable / $period"; |
|
| 101 | + } else if ( $main_item ) { |
|
| 102 | + |
|
| 103 | + $main_item = reset( $main_item ); |
|
| 104 | + |
|
| 105 | + // Calculate the next renewal date. |
|
| 106 | + $_period = $main_item->get_recurring_period( true ); |
|
| 107 | + $_interval = $main_item->get_recurring_interval(); |
|
| 108 | + |
|
| 109 | + // If the subscription item has a trial period... |
|
| 110 | + if ( $main_item->has_free_trial() ) { |
|
| 111 | + $_period = $main_item->get_trial_period( true ); |
|
| 112 | + $_interval = $main_item->get_trial_interval(); |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + $payable = sprintf( |
|
| 116 | + __( '%1$s (renews at %2$s / %3$s)', 'invoicing' ), |
|
| 117 | + $submission->format_amount( $submission->get_total() ), |
|
| 118 | + $submission->format_amount( $submission->get_recurring_total() ), |
|
| 119 | + $period |
|
| 120 | + ); |
|
| 121 | + |
|
| 122 | + $payable .= sprintf( |
|
| 123 | + '<small class="text-muted form-text">%s</small>', |
|
| 124 | + sprintf( |
|
| 125 | + __( 'First renewal on %s', 'invoicing' ), |
|
| 126 | + getpaid_format_date( date( 'Y-m-d H:i:s', strtotime( "+$_interval $_period", current_time( 'timestamp' ) ) ) ) |
|
| 127 | + ) |
|
| 128 | + ); |
|
| 129 | + |
|
| 130 | + } else { |
|
| 131 | + $payable = sprintf( |
|
| 132 | + __( '%1$s (renews at %2$s / %3$s)', 'invoicing' ), |
|
| 133 | + $submission->format_amount( $submission->get_total() ), |
|
| 134 | + $submission->format_amount( $submission->get_recurring_total() ), |
|
| 135 | + $period |
|
| 136 | + ); |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + $texts = array( |
|
| 142 | + '.getpaid-checkout-total-payable' => $payable, |
|
| 143 | + ); |
|
| 165 | 144 | |
| 166 | 145 | foreach ( $submission->get_items() as $item ) { |
| 167 | - $item_id = $item->get_id(); |
|
| 168 | - $items["$item_id"] = $submission->format_amount( $item->get_sub_total() ); |
|
| 169 | - } |
|
| 146 | + $item_id = $item->get_id(); |
|
| 147 | + $initial_price = $submission->format_amount( $this->standardize_price( $item->get_id(), $item->get_sub_total(), $submission->get_discount_code(), false ) ); |
|
| 148 | + $recurring_price = $submission->format_amount( $this->standardize_price( $item->get_id(), $item->get_recurring_sub_total(), $submission->get_discount_code(), true ) ); |
|
| 149 | + $texts[".item-$item_id .getpaid-form-item-price-desc"] = getpaid_item_recurring_price_help_text( $item, $submission->get_currency(), $initial_price, $recurring_price ); |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + $this->response = array_merge( $this->response, array( 'texts' => $texts ) ); |
|
| 170 | 153 | |
| 171 | - $this->response = array_merge( |
|
| 172 | - $this->response, |
|
| 173 | - array( 'items' => $items ) |
|
| 174 | - ); |
|
| 154 | + } |
|
| 175 | 155 | |
| 176 | - } |
|
| 156 | + /** |
|
| 157 | + * Adds items to a response for submission refresh prices. |
|
| 158 | + * |
|
| 159 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 160 | + */ |
|
| 161 | + public function add_items( $submission ) { |
|
| 177 | 162 | |
| 178 | - /** |
|
| 179 | - * Adds fees to a response for submission refresh prices. |
|
| 180 | - * |
|
| 181 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 182 | - */ |
|
| 183 | - public function add_fees( $submission ) { |
|
| 163 | + // Add items. |
|
| 164 | + $items = array(); |
|
| 165 | + |
|
| 166 | + foreach ( $submission->get_items() as $item ) { |
|
| 167 | + $item_id = $item->get_id(); |
|
| 168 | + $items["$item_id"] = $submission->format_amount( $item->get_sub_total() ); |
|
| 169 | + } |
|
| 184 | 170 | |
| 185 | - $fees = array(); |
|
| 171 | + $this->response = array_merge( |
|
| 172 | + $this->response, |
|
| 173 | + array( 'items' => $items ) |
|
| 174 | + ); |
|
| 175 | + |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + /** |
|
| 179 | + * Adds fees to a response for submission refresh prices. |
|
| 180 | + * |
|
| 181 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 182 | + */ |
|
| 183 | + public function add_fees( $submission ) { |
|
| 184 | + |
|
| 185 | + $fees = array(); |
|
| 186 | 186 | |
| 187 | 187 | foreach ( $submission->get_fees() as $name => $data ) { |
| 188 | - $fees[$name] = $submission->format_amount( $data['initial_fee'] ); |
|
| 189 | - } |
|
| 188 | + $fees[$name] = $submission->format_amount( $data['initial_fee'] ); |
|
| 189 | + } |
|
| 190 | 190 | |
| 191 | - $this->response = array_merge( |
|
| 192 | - $this->response, |
|
| 193 | - array( 'fees' => $fees ) |
|
| 194 | - ); |
|
| 191 | + $this->response = array_merge( |
|
| 192 | + $this->response, |
|
| 193 | + array( 'fees' => $fees ) |
|
| 194 | + ); |
|
| 195 | 195 | |
| 196 | - } |
|
| 196 | + } |
|
| 197 | 197 | |
| 198 | - /** |
|
| 199 | - * Adds discounts to a response for submission refresh prices. |
|
| 200 | - * |
|
| 201 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 202 | - */ |
|
| 203 | - public function add_discounts( $submission ) { |
|
| 198 | + /** |
|
| 199 | + * Adds discounts to a response for submission refresh prices. |
|
| 200 | + * |
|
| 201 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 202 | + */ |
|
| 203 | + public function add_discounts( $submission ) { |
|
| 204 | 204 | |
| 205 | - $discounts = array(); |
|
| 205 | + $discounts = array(); |
|
| 206 | 206 | |
| 207 | 207 | foreach ( $submission->get_discounts() as $name => $data ) { |
| 208 | - $discounts[$name] = $submission->format_amount( $data['initial_discount'] ); |
|
| 209 | - } |
|
| 208 | + $discounts[$name] = $submission->format_amount( $data['initial_discount'] ); |
|
| 209 | + } |
|
| 210 | 210 | |
| 211 | - $this->response = array_merge( |
|
| 212 | - $this->response, |
|
| 213 | - array( 'discounts' => $discounts ) |
|
| 214 | - ); |
|
| 211 | + $this->response = array_merge( |
|
| 212 | + $this->response, |
|
| 213 | + array( 'discounts' => $discounts ) |
|
| 214 | + ); |
|
| 215 | 215 | |
| 216 | - } |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - /** |
|
| 219 | - * Adds taxes to a response for submission refresh prices. |
|
| 220 | - * |
|
| 221 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 222 | - */ |
|
| 223 | - public function add_taxes( $submission ) { |
|
| 224 | - |
|
| 225 | - $taxes = array(); |
|
| 226 | - $markup = ''; |
|
| 218 | + /** |
|
| 219 | + * Adds taxes to a response for submission refresh prices. |
|
| 220 | + * |
|
| 221 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 222 | + */ |
|
| 223 | + public function add_taxes( $submission ) { |
|
| 224 | + |
|
| 225 | + $taxes = array(); |
|
| 226 | + $markup = ''; |
|
| 227 | 227 | foreach ( $submission->get_taxes() as $name => $data ) { |
| 228 | - $name = sanitize_text_field( $name ); |
|
| 229 | - $amount = $submission->format_amount( $data['initial_tax'] ); |
|
| 230 | - $taxes[$name] = $amount; |
|
| 231 | - $markup .= "<small class='form-text'>$name : $amount</small>"; |
|
| 232 | - } |
|
| 233 | - |
|
| 234 | - if ( wpinv_display_individual_tax_rates() && ! empty( $taxes ) ) { |
|
| 235 | - $this->response['texts']['.getpaid-form-cart-totals-total-tax'] = $markup; |
|
| 236 | - } |
|
| 237 | - |
|
| 238 | - $this->response = array_merge( |
|
| 239 | - $this->response, |
|
| 240 | - array( 'taxes' => $taxes ) |
|
| 241 | - ); |
|
| 242 | - |
|
| 243 | - } |
|
| 244 | - |
|
| 245 | - /** |
|
| 246 | - * Adds gateways to a response for submission refresh prices. |
|
| 247 | - * |
|
| 248 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 249 | - */ |
|
| 250 | - public function add_gateways( $submission ) { |
|
| 251 | - |
|
| 252 | - $gateways = array_keys( wpinv_get_enabled_payment_gateways() ); |
|
| 253 | - |
|
| 254 | - if ( $this->response['has_recurring'] ) { |
|
| 255 | - |
|
| 256 | - foreach ( $gateways as $i => $gateway ) { |
|
| 257 | - |
|
| 258 | - if ( |
|
| 259 | - ! getpaid_payment_gateway_supports( $gateway, 'subscription' ) |
|
| 260 | - || ( $this->response['has_subscription_group'] && ! getpaid_payment_gateway_supports( $gateway, 'single_subscription_group' ) ) |
|
| 261 | - || ( $this->response['has_multiple_subscription_groups'] && ! getpaid_payment_gateway_supports( $gateway, 'multiple_subscription_groups' ) ) ) { |
|
| 262 | - unset( $gateways[ $i ] ); |
|
| 263 | - } |
|
| 264 | - |
|
| 265 | - } |
|
| 266 | - |
|
| 267 | - } |
|
| 268 | - |
|
| 269 | - $gateways = apply_filters( 'getpaid_submission_gateways', $gateways, $submission ); |
|
| 270 | - $this->response = array_merge( |
|
| 271 | - $this->response, |
|
| 272 | - array( 'gateways' => $gateways ) |
|
| 273 | - ); |
|
| 274 | - |
|
| 275 | - } |
|
| 276 | - |
|
| 277 | - /** |
|
| 278 | - * Standardizes prices. |
|
| 279 | - * |
|
| 280 | - * @param int $item_id |
|
| 281 | - * @param float $item_total |
|
| 282 | - * @param string $discount_code |
|
| 283 | - * @param bool $recurring |
|
| 284 | - */ |
|
| 285 | - public function standardize_price( $item_id, $item_total, $discount_code, $recurring = false ) { |
|
| 286 | - |
|
| 287 | - $standardadized_price = $item_total; |
|
| 288 | - |
|
| 289 | - // Do we have a $discount_code? |
|
| 290 | - if ( ! empty( $discount_code ) ) { |
|
| 291 | - |
|
| 292 | - $discount = new WPInv_Discount( $discount_code ); |
|
| 293 | - |
|
| 294 | - if ( $discount->exists() && $discount->is_valid_for_items( $item_id ) && ( ! $recurring || $discount->is_recurring() ) ) { |
|
| 295 | - $standardadized_price = $item_total - $discount->get_discounted_amount( $item_total ); |
|
| 296 | - } |
|
| 297 | - |
|
| 298 | - } |
|
| 299 | - |
|
| 300 | - return max( 0, $standardadized_price ); |
|
| 301 | - |
|
| 302 | - } |
|
| 303 | - |
|
| 304 | - /** |
|
| 305 | - * Adds data to a response for submission refresh prices. |
|
| 306 | - * |
|
| 307 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 308 | - */ |
|
| 309 | - public function add_data( $submission ) { |
|
| 310 | - |
|
| 311 | - $this->response = array_merge( |
|
| 312 | - $this->response, |
|
| 313 | - array( |
|
| 314 | - 'js_data' => apply_filters( |
|
| 315 | - 'getpaid_submission_js_data', |
|
| 316 | - array( |
|
| 317 | - 'is_recurring' => $this->response['has_recurring'], |
|
| 318 | - ), |
|
| 319 | - $submission |
|
| 320 | - ) |
|
| 321 | - ) |
|
| 322 | - ); |
|
| 323 | - |
|
| 324 | - } |
|
| 228 | + $name = sanitize_text_field( $name ); |
|
| 229 | + $amount = $submission->format_amount( $data['initial_tax'] ); |
|
| 230 | + $taxes[$name] = $amount; |
|
| 231 | + $markup .= "<small class='form-text'>$name : $amount</small>"; |
|
| 232 | + } |
|
| 233 | + |
|
| 234 | + if ( wpinv_display_individual_tax_rates() && ! empty( $taxes ) ) { |
|
| 235 | + $this->response['texts']['.getpaid-form-cart-totals-total-tax'] = $markup; |
|
| 236 | + } |
|
| 237 | + |
|
| 238 | + $this->response = array_merge( |
|
| 239 | + $this->response, |
|
| 240 | + array( 'taxes' => $taxes ) |
|
| 241 | + ); |
|
| 242 | + |
|
| 243 | + } |
|
| 244 | + |
|
| 245 | + /** |
|
| 246 | + * Adds gateways to a response for submission refresh prices. |
|
| 247 | + * |
|
| 248 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 249 | + */ |
|
| 250 | + public function add_gateways( $submission ) { |
|
| 251 | + |
|
| 252 | + $gateways = array_keys( wpinv_get_enabled_payment_gateways() ); |
|
| 253 | + |
|
| 254 | + if ( $this->response['has_recurring'] ) { |
|
| 255 | + |
|
| 256 | + foreach ( $gateways as $i => $gateway ) { |
|
| 257 | + |
|
| 258 | + if ( |
|
| 259 | + ! getpaid_payment_gateway_supports( $gateway, 'subscription' ) |
|
| 260 | + || ( $this->response['has_subscription_group'] && ! getpaid_payment_gateway_supports( $gateway, 'single_subscription_group' ) ) |
|
| 261 | + || ( $this->response['has_multiple_subscription_groups'] && ! getpaid_payment_gateway_supports( $gateway, 'multiple_subscription_groups' ) ) ) { |
|
| 262 | + unset( $gateways[ $i ] ); |
|
| 263 | + } |
|
| 264 | + |
|
| 265 | + } |
|
| 266 | + |
|
| 267 | + } |
|
| 268 | + |
|
| 269 | + $gateways = apply_filters( 'getpaid_submission_gateways', $gateways, $submission ); |
|
| 270 | + $this->response = array_merge( |
|
| 271 | + $this->response, |
|
| 272 | + array( 'gateways' => $gateways ) |
|
| 273 | + ); |
|
| 274 | + |
|
| 275 | + } |
|
| 276 | + |
|
| 277 | + /** |
|
| 278 | + * Standardizes prices. |
|
| 279 | + * |
|
| 280 | + * @param int $item_id |
|
| 281 | + * @param float $item_total |
|
| 282 | + * @param string $discount_code |
|
| 283 | + * @param bool $recurring |
|
| 284 | + */ |
|
| 285 | + public function standardize_price( $item_id, $item_total, $discount_code, $recurring = false ) { |
|
| 286 | + |
|
| 287 | + $standardadized_price = $item_total; |
|
| 288 | + |
|
| 289 | + // Do we have a $discount_code? |
|
| 290 | + if ( ! empty( $discount_code ) ) { |
|
| 291 | + |
|
| 292 | + $discount = new WPInv_Discount( $discount_code ); |
|
| 293 | + |
|
| 294 | + if ( $discount->exists() && $discount->is_valid_for_items( $item_id ) && ( ! $recurring || $discount->is_recurring() ) ) { |
|
| 295 | + $standardadized_price = $item_total - $discount->get_discounted_amount( $item_total ); |
|
| 296 | + } |
|
| 297 | + |
|
| 298 | + } |
|
| 299 | + |
|
| 300 | + return max( 0, $standardadized_price ); |
|
| 301 | + |
|
| 302 | + } |
|
| 303 | + |
|
| 304 | + /** |
|
| 305 | + * Adds data to a response for submission refresh prices. |
|
| 306 | + * |
|
| 307 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 308 | + */ |
|
| 309 | + public function add_data( $submission ) { |
|
| 310 | + |
|
| 311 | + $this->response = array_merge( |
|
| 312 | + $this->response, |
|
| 313 | + array( |
|
| 314 | + 'js_data' => apply_filters( |
|
| 315 | + 'getpaid_submission_js_data', |
|
| 316 | + array( |
|
| 317 | + 'is_recurring' => $this->response['has_recurring'], |
|
| 318 | + ), |
|
| 319 | + $submission |
|
| 320 | + ) |
|
| 321 | + ) |
|
| 322 | + ); |
|
| 323 | + |
|
| 324 | + } |
|
| 325 | 325 | |
| 326 | 326 | } |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Payment form submission refresh prices class |
@@ -23,24 +23,24 @@ discard block |
||
| 23 | 23 | * |
| 24 | 24 | * @param GetPaid_Payment_Form_Submission $submission |
| 25 | 25 | */ |
| 26 | - public function __construct( $submission ) { |
|
| 26 | + public function __construct($submission) { |
|
| 27 | 27 | |
| 28 | 28 | $this->response = array( |
| 29 | 29 | 'submission_id' => $submission->id, |
| 30 | 30 | 'has_recurring' => $submission->has_recurring, |
| 31 | 31 | 'has_subscription_group' => $submission->has_subscription_group(), |
| 32 | 32 | 'has_multiple_subscription_groups' => $submission->has_multiple_subscription_groups(), |
| 33 | - 'is_free' => ! $submission->should_collect_payment_details(), |
|
| 33 | + 'is_free' => !$submission->should_collect_payment_details(), |
|
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | - $this->add_totals( $submission ); |
|
| 37 | - $this->add_texts( $submission ); |
|
| 38 | - $this->add_items( $submission ); |
|
| 39 | - $this->add_fees( $submission ); |
|
| 40 | - $this->add_discounts( $submission ); |
|
| 41 | - $this->add_taxes( $submission ); |
|
| 42 | - $this->add_gateways( $submission ); |
|
| 43 | - $this->add_data( $submission ); |
|
| 36 | + $this->add_totals($submission); |
|
| 37 | + $this->add_texts($submission); |
|
| 38 | + $this->add_items($submission); |
|
| 39 | + $this->add_fees($submission); |
|
| 40 | + $this->add_discounts($submission); |
|
| 41 | + $this->add_taxes($submission); |
|
| 42 | + $this->add_gateways($submission); |
|
| 43 | + $this->add_data($submission); |
|
| 44 | 44 | |
| 45 | 45 | } |
| 46 | 46 | |
@@ -49,30 +49,30 @@ discard block |
||
| 49 | 49 | * |
| 50 | 50 | * @param GetPaid_Payment_Form_Submission $submission |
| 51 | 51 | */ |
| 52 | - public function add_totals( $submission ) { |
|
| 52 | + public function add_totals($submission) { |
|
| 53 | 53 | |
| 54 | 54 | $this->response = array_merge( |
| 55 | 55 | $this->response, |
| 56 | 56 | array( |
| 57 | 57 | |
| 58 | 58 | 'totals' => array( |
| 59 | - 'subtotal' => $submission->format_amount( $submission->get_subtotal() ), |
|
| 60 | - 'discount' => $submission->format_amount( $submission->get_discount() ), |
|
| 61 | - 'fees' => $submission->format_amount( $submission->get_fee() ), |
|
| 62 | - 'tax' => $submission->format_amount( $submission->get_tax() ), |
|
| 63 | - 'total' => $submission->format_amount( $submission->get_total() ), |
|
| 64 | - 'raw_total' => html_entity_decode( sanitize_text_field( $submission->format_amount( $submission->get_total() ) ), ENT_QUOTES ), |
|
| 59 | + 'subtotal' => $submission->format_amount($submission->get_subtotal()), |
|
| 60 | + 'discount' => $submission->format_amount($submission->get_discount()), |
|
| 61 | + 'fees' => $submission->format_amount($submission->get_fee()), |
|
| 62 | + 'tax' => $submission->format_amount($submission->get_tax()), |
|
| 63 | + 'total' => $submission->format_amount($submission->get_total()), |
|
| 64 | + 'raw_total' => html_entity_decode(sanitize_text_field($submission->format_amount($submission->get_total())), ENT_QUOTES), |
|
| 65 | 65 | ), |
| 66 | 66 | |
| 67 | 67 | 'recurring' => array( |
| 68 | - 'subtotal' => $submission->format_amount( $submission->get_recurring_subtotal() ), |
|
| 69 | - 'discount' => $submission->format_amount( $submission->get_recurring_discount() ), |
|
| 70 | - 'fees' => $submission->format_amount( $submission->get_recurring_fee() ), |
|
| 71 | - 'tax' => $submission->format_amount( $submission->get_recurring_tax() ), |
|
| 72 | - 'total' => $submission->format_amount( $submission->get_recurring_total() ), |
|
| 68 | + 'subtotal' => $submission->format_amount($submission->get_recurring_subtotal()), |
|
| 69 | + 'discount' => $submission->format_amount($submission->get_recurring_discount()), |
|
| 70 | + 'fees' => $submission->format_amount($submission->get_recurring_fee()), |
|
| 71 | + 'tax' => $submission->format_amount($submission->get_recurring_tax()), |
|
| 72 | + 'total' => $submission->format_amount($submission->get_recurring_total()), |
|
| 73 | 73 | ), |
| 74 | 74 | |
| 75 | - 'initial_amt' => wpinv_round_amount( $submission->get_total(), null, true ), |
|
| 75 | + 'initial_amt' => wpinv_round_amount($submission->get_total(), null, true), |
|
| 76 | 76 | 'currency' => $submission->get_currency(), |
| 77 | 77 | |
| 78 | 78 | ) |
@@ -85,53 +85,53 @@ discard block |
||
| 85 | 85 | * |
| 86 | 86 | * @param GetPaid_Payment_Form_Submission $submission |
| 87 | 87 | */ |
| 88 | - public function add_texts( $submission ) { |
|
| 88 | + public function add_texts($submission) { |
|
| 89 | 89 | |
| 90 | - $payable = $submission->format_amount( $submission->get_total() ); |
|
| 91 | - $groups = getpaid_get_subscription_groups( $submission ); |
|
| 90 | + $payable = $submission->format_amount($submission->get_total()); |
|
| 91 | + $groups = getpaid_get_subscription_groups($submission); |
|
| 92 | 92 | |
| 93 | - if ( $submission->has_recurring && 2 > count( $groups ) ) { |
|
| 93 | + if ($submission->has_recurring && 2 > count($groups)) { |
|
| 94 | 94 | |
| 95 | - $recurring = new WPInv_Item( $submission->has_recurring ); |
|
| 96 | - $period = getpaid_get_subscription_period_label( $recurring->get_recurring_period( true ), $recurring->get_recurring_interval(), '' ); |
|
| 97 | - $main_item = reset( $groups ); |
|
| 95 | + $recurring = new WPInv_Item($submission->has_recurring); |
|
| 96 | + $period = getpaid_get_subscription_period_label($recurring->get_recurring_period(true), $recurring->get_recurring_interval(), ''); |
|
| 97 | + $main_item = reset($groups); |
|
| 98 | 98 | |
| 99 | - if ( $submission->get_total() == $submission->get_recurring_total() ) { |
|
| 99 | + if ($submission->get_total() == $submission->get_recurring_total()) { |
|
| 100 | 100 | $payable = "$payable / $period"; |
| 101 | - } else if ( $main_item ) { |
|
| 101 | + } else if ($main_item) { |
|
| 102 | 102 | |
| 103 | - $main_item = reset( $main_item ); |
|
| 103 | + $main_item = reset($main_item); |
|
| 104 | 104 | |
| 105 | 105 | // Calculate the next renewal date. |
| 106 | - $_period = $main_item->get_recurring_period( true ); |
|
| 106 | + $_period = $main_item->get_recurring_period(true); |
|
| 107 | 107 | $_interval = $main_item->get_recurring_interval(); |
| 108 | 108 | |
| 109 | 109 | // If the subscription item has a trial period... |
| 110 | - if ( $main_item->has_free_trial() ) { |
|
| 111 | - $_period = $main_item->get_trial_period( true ); |
|
| 110 | + if ($main_item->has_free_trial()) { |
|
| 111 | + $_period = $main_item->get_trial_period(true); |
|
| 112 | 112 | $_interval = $main_item->get_trial_interval(); |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | $payable = sprintf( |
| 116 | - __( '%1$s (renews at %2$s / %3$s)', 'invoicing' ), |
|
| 117 | - $submission->format_amount( $submission->get_total() ), |
|
| 118 | - $submission->format_amount( $submission->get_recurring_total() ), |
|
| 116 | + __('%1$s (renews at %2$s / %3$s)', 'invoicing'), |
|
| 117 | + $submission->format_amount($submission->get_total()), |
|
| 118 | + $submission->format_amount($submission->get_recurring_total()), |
|
| 119 | 119 | $period |
| 120 | 120 | ); |
| 121 | 121 | |
| 122 | 122 | $payable .= sprintf( |
| 123 | 123 | '<small class="text-muted form-text">%s</small>', |
| 124 | 124 | sprintf( |
| 125 | - __( 'First renewal on %s', 'invoicing' ), |
|
| 126 | - getpaid_format_date( date( 'Y-m-d H:i:s', strtotime( "+$_interval $_period", current_time( 'timestamp' ) ) ) ) |
|
| 125 | + __('First renewal on %s', 'invoicing'), |
|
| 126 | + getpaid_format_date(date('Y-m-d H:i:s', strtotime("+$_interval $_period", current_time('timestamp')))) |
|
| 127 | 127 | ) |
| 128 | 128 | ); |
| 129 | 129 | |
| 130 | 130 | } else { |
| 131 | 131 | $payable = sprintf( |
| 132 | - __( '%1$s (renews at %2$s / %3$s)', 'invoicing' ), |
|
| 133 | - $submission->format_amount( $submission->get_total() ), |
|
| 134 | - $submission->format_amount( $submission->get_recurring_total() ), |
|
| 132 | + __('%1$s (renews at %2$s / %3$s)', 'invoicing'), |
|
| 133 | + $submission->format_amount($submission->get_total()), |
|
| 134 | + $submission->format_amount($submission->get_recurring_total()), |
|
| 135 | 135 | $period |
| 136 | 136 | ); |
| 137 | 137 | } |
@@ -142,14 +142,14 @@ discard block |
||
| 142 | 142 | '.getpaid-checkout-total-payable' => $payable, |
| 143 | 143 | ); |
| 144 | 144 | |
| 145 | - foreach ( $submission->get_items() as $item ) { |
|
| 145 | + foreach ($submission->get_items() as $item) { |
|
| 146 | 146 | $item_id = $item->get_id(); |
| 147 | - $initial_price = $submission->format_amount( $this->standardize_price( $item->get_id(), $item->get_sub_total(), $submission->get_discount_code(), false ) ); |
|
| 148 | - $recurring_price = $submission->format_amount( $this->standardize_price( $item->get_id(), $item->get_recurring_sub_total(), $submission->get_discount_code(), true ) ); |
|
| 149 | - $texts[".item-$item_id .getpaid-form-item-price-desc"] = getpaid_item_recurring_price_help_text( $item, $submission->get_currency(), $initial_price, $recurring_price ); |
|
| 147 | + $initial_price = $submission->format_amount($this->standardize_price($item->get_id(), $item->get_sub_total(), $submission->get_discount_code(), false)); |
|
| 148 | + $recurring_price = $submission->format_amount($this->standardize_price($item->get_id(), $item->get_recurring_sub_total(), $submission->get_discount_code(), true)); |
|
| 149 | + $texts[".item-$item_id .getpaid-form-item-price-desc"] = getpaid_item_recurring_price_help_text($item, $submission->get_currency(), $initial_price, $recurring_price); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - $this->response = array_merge( $this->response, array( 'texts' => $texts ) ); |
|
| 152 | + $this->response = array_merge($this->response, array('texts' => $texts)); |
|
| 153 | 153 | |
| 154 | 154 | } |
| 155 | 155 | |
@@ -158,19 +158,19 @@ discard block |
||
| 158 | 158 | * |
| 159 | 159 | * @param GetPaid_Payment_Form_Submission $submission |
| 160 | 160 | */ |
| 161 | - public function add_items( $submission ) { |
|
| 161 | + public function add_items($submission) { |
|
| 162 | 162 | |
| 163 | 163 | // Add items. |
| 164 | 164 | $items = array(); |
| 165 | 165 | |
| 166 | - foreach ( $submission->get_items() as $item ) { |
|
| 166 | + foreach ($submission->get_items() as $item) { |
|
| 167 | 167 | $item_id = $item->get_id(); |
| 168 | - $items["$item_id"] = $submission->format_amount( $item->get_sub_total() ); |
|
| 168 | + $items["$item_id"] = $submission->format_amount($item->get_sub_total()); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | $this->response = array_merge( |
| 172 | 172 | $this->response, |
| 173 | - array( 'items' => $items ) |
|
| 173 | + array('items' => $items) |
|
| 174 | 174 | ); |
| 175 | 175 | |
| 176 | 176 | } |
@@ -180,17 +180,17 @@ discard block |
||
| 180 | 180 | * |
| 181 | 181 | * @param GetPaid_Payment_Form_Submission $submission |
| 182 | 182 | */ |
| 183 | - public function add_fees( $submission ) { |
|
| 183 | + public function add_fees($submission) { |
|
| 184 | 184 | |
| 185 | 185 | $fees = array(); |
| 186 | 186 | |
| 187 | - foreach ( $submission->get_fees() as $name => $data ) { |
|
| 188 | - $fees[$name] = $submission->format_amount( $data['initial_fee'] ); |
|
| 187 | + foreach ($submission->get_fees() as $name => $data) { |
|
| 188 | + $fees[$name] = $submission->format_amount($data['initial_fee']); |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | $this->response = array_merge( |
| 192 | 192 | $this->response, |
| 193 | - array( 'fees' => $fees ) |
|
| 193 | + array('fees' => $fees) |
|
| 194 | 194 | ); |
| 195 | 195 | |
| 196 | 196 | } |
@@ -200,17 +200,17 @@ discard block |
||
| 200 | 200 | * |
| 201 | 201 | * @param GetPaid_Payment_Form_Submission $submission |
| 202 | 202 | */ |
| 203 | - public function add_discounts( $submission ) { |
|
| 203 | + public function add_discounts($submission) { |
|
| 204 | 204 | |
| 205 | 205 | $discounts = array(); |
| 206 | 206 | |
| 207 | - foreach ( $submission->get_discounts() as $name => $data ) { |
|
| 208 | - $discounts[$name] = $submission->format_amount( $data['initial_discount'] ); |
|
| 207 | + foreach ($submission->get_discounts() as $name => $data) { |
|
| 208 | + $discounts[$name] = $submission->format_amount($data['initial_discount']); |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | $this->response = array_merge( |
| 212 | 212 | $this->response, |
| 213 | - array( 'discounts' => $discounts ) |
|
| 213 | + array('discounts' => $discounts) |
|
| 214 | 214 | ); |
| 215 | 215 | |
| 216 | 216 | } |
@@ -220,24 +220,24 @@ discard block |
||
| 220 | 220 | * |
| 221 | 221 | * @param GetPaid_Payment_Form_Submission $submission |
| 222 | 222 | */ |
| 223 | - public function add_taxes( $submission ) { |
|
| 223 | + public function add_taxes($submission) { |
|
| 224 | 224 | |
| 225 | 225 | $taxes = array(); |
| 226 | 226 | $markup = ''; |
| 227 | - foreach ( $submission->get_taxes() as $name => $data ) { |
|
| 228 | - $name = sanitize_text_field( $name ); |
|
| 229 | - $amount = $submission->format_amount( $data['initial_tax'] ); |
|
| 227 | + foreach ($submission->get_taxes() as $name => $data) { |
|
| 228 | + $name = sanitize_text_field($name); |
|
| 229 | + $amount = $submission->format_amount($data['initial_tax']); |
|
| 230 | 230 | $taxes[$name] = $amount; |
| 231 | 231 | $markup .= "<small class='form-text'>$name : $amount</small>"; |
| 232 | 232 | } |
| 233 | 233 | |
| 234 | - if ( wpinv_display_individual_tax_rates() && ! empty( $taxes ) ) { |
|
| 234 | + if (wpinv_display_individual_tax_rates() && !empty($taxes)) { |
|
| 235 | 235 | $this->response['texts']['.getpaid-form-cart-totals-total-tax'] = $markup; |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | $this->response = array_merge( |
| 239 | 239 | $this->response, |
| 240 | - array( 'taxes' => $taxes ) |
|
| 240 | + array('taxes' => $taxes) |
|
| 241 | 241 | ); |
| 242 | 242 | |
| 243 | 243 | } |
@@ -247,29 +247,29 @@ discard block |
||
| 247 | 247 | * |
| 248 | 248 | * @param GetPaid_Payment_Form_Submission $submission |
| 249 | 249 | */ |
| 250 | - public function add_gateways( $submission ) { |
|
| 250 | + public function add_gateways($submission) { |
|
| 251 | 251 | |
| 252 | - $gateways = array_keys( wpinv_get_enabled_payment_gateways() ); |
|
| 252 | + $gateways = array_keys(wpinv_get_enabled_payment_gateways()); |
|
| 253 | 253 | |
| 254 | - if ( $this->response['has_recurring'] ) { |
|
| 254 | + if ($this->response['has_recurring']) { |
|
| 255 | 255 | |
| 256 | - foreach ( $gateways as $i => $gateway ) { |
|
| 256 | + foreach ($gateways as $i => $gateway) { |
|
| 257 | 257 | |
| 258 | 258 | if ( |
| 259 | - ! getpaid_payment_gateway_supports( $gateway, 'subscription' ) |
|
| 260 | - || ( $this->response['has_subscription_group'] && ! getpaid_payment_gateway_supports( $gateway, 'single_subscription_group' ) ) |
|
| 261 | - || ( $this->response['has_multiple_subscription_groups'] && ! getpaid_payment_gateway_supports( $gateway, 'multiple_subscription_groups' ) ) ) { |
|
| 262 | - unset( $gateways[ $i ] ); |
|
| 259 | + !getpaid_payment_gateway_supports($gateway, 'subscription') |
|
| 260 | + || ($this->response['has_subscription_group'] && !getpaid_payment_gateway_supports($gateway, 'single_subscription_group')) |
|
| 261 | + || ($this->response['has_multiple_subscription_groups'] && !getpaid_payment_gateway_supports($gateway, 'multiple_subscription_groups')) ) { |
|
| 262 | + unset($gateways[$i]); |
|
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | - $gateways = apply_filters( 'getpaid_submission_gateways', $gateways, $submission ); |
|
| 269 | + $gateways = apply_filters('getpaid_submission_gateways', $gateways, $submission); |
|
| 270 | 270 | $this->response = array_merge( |
| 271 | 271 | $this->response, |
| 272 | - array( 'gateways' => $gateways ) |
|
| 272 | + array('gateways' => $gateways) |
|
| 273 | 273 | ); |
| 274 | 274 | |
| 275 | 275 | } |
@@ -282,22 +282,22 @@ discard block |
||
| 282 | 282 | * @param string $discount_code |
| 283 | 283 | * @param bool $recurring |
| 284 | 284 | */ |
| 285 | - public function standardize_price( $item_id, $item_total, $discount_code, $recurring = false ) { |
|
| 285 | + public function standardize_price($item_id, $item_total, $discount_code, $recurring = false) { |
|
| 286 | 286 | |
| 287 | 287 | $standardadized_price = $item_total; |
| 288 | 288 | |
| 289 | 289 | // Do we have a $discount_code? |
| 290 | - if ( ! empty( $discount_code ) ) { |
|
| 290 | + if (!empty($discount_code)) { |
|
| 291 | 291 | |
| 292 | - $discount = new WPInv_Discount( $discount_code ); |
|
| 292 | + $discount = new WPInv_Discount($discount_code); |
|
| 293 | 293 | |
| 294 | - if ( $discount->exists() && $discount->is_valid_for_items( $item_id ) && ( ! $recurring || $discount->is_recurring() ) ) { |
|
| 295 | - $standardadized_price = $item_total - $discount->get_discounted_amount( $item_total ); |
|
| 294 | + if ($discount->exists() && $discount->is_valid_for_items($item_id) && (!$recurring || $discount->is_recurring())) { |
|
| 295 | + $standardadized_price = $item_total - $discount->get_discounted_amount($item_total); |
|
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - return max( 0, $standardadized_price ); |
|
| 300 | + return max(0, $standardadized_price); |
|
| 301 | 301 | |
| 302 | 302 | } |
| 303 | 303 | |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | * |
| 307 | 307 | * @param GetPaid_Payment_Form_Submission $submission |
| 308 | 308 | */ |
| 309 | - public function add_data( $submission ) { |
|
| 309 | + public function add_data($submission) { |
|
| 310 | 310 | |
| 311 | 311 | $this->response = array_merge( |
| 312 | 312 | $this->response, |
@@ -13,94 +13,94 @@ discard block |
||
| 13 | 13 | class GetPaid_Paypal_Gateway extends GetPaid_Payment_Gateway { |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * Payment method id. |
|
| 17 | - * |
|
| 18 | - * @var string |
|
| 19 | - */ |
|
| 16 | + * Payment method id. |
|
| 17 | + * |
|
| 18 | + * @var string |
|
| 19 | + */ |
|
| 20 | 20 | public $id = 'paypal'; |
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | - * An array of features that this gateway supports. |
|
| 24 | - * |
|
| 25 | - * @var array |
|
| 26 | - */ |
|
| 23 | + * An array of features that this gateway supports. |
|
| 24 | + * |
|
| 25 | + * @var array |
|
| 26 | + */ |
|
| 27 | 27 | protected $supports = array( 'subscription', 'sandbox', 'single_subscription_group' ); |
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | - * Payment method order. |
|
| 31 | - * |
|
| 32 | - * @var int |
|
| 33 | - */ |
|
| 30 | + * Payment method order. |
|
| 31 | + * |
|
| 32 | + * @var int |
|
| 33 | + */ |
|
| 34 | 34 | public $order = 1; |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * Stores line items to send to PayPal. |
|
| 38 | - * |
|
| 39 | - * @var array |
|
| 40 | - */ |
|
| 37 | + * Stores line items to send to PayPal. |
|
| 38 | + * |
|
| 39 | + * @var array |
|
| 40 | + */ |
|
| 41 | 41 | protected $line_items = array(); |
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | - * Endpoint for requests from PayPal. |
|
| 45 | - * |
|
| 46 | - * @var string |
|
| 47 | - */ |
|
| 48 | - protected $notify_url; |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * Endpoint for requests to PayPal. |
|
| 52 | - * |
|
| 53 | - * @var string |
|
| 54 | - */ |
|
| 44 | + * Endpoint for requests from PayPal. |
|
| 45 | + * |
|
| 46 | + * @var string |
|
| 47 | + */ |
|
| 48 | + protected $notify_url; |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * Endpoint for requests to PayPal. |
|
| 52 | + * |
|
| 53 | + * @var string |
|
| 54 | + */ |
|
| 55 | 55 | protected $endpoint; |
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | - * Currencies this gateway is allowed for. |
|
| 59 | - * |
|
| 60 | - * @var array |
|
| 61 | - */ |
|
| 62 | - public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
| 58 | + * Currencies this gateway is allowed for. |
|
| 59 | + * |
|
| 60 | + * @var array |
|
| 61 | + */ |
|
| 62 | + public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | - * URL to view a transaction. |
|
| 66 | - * |
|
| 67 | - * @var string |
|
| 68 | - */ |
|
| 65 | + * URL to view a transaction. |
|
| 66 | + * |
|
| 67 | + * @var string |
|
| 68 | + */ |
|
| 69 | 69 | public $view_transaction_url = 'https://www.{sandbox}paypal.com/activity/payment/%s'; |
| 70 | 70 | |
| 71 | 71 | /** |
| 72 | - * URL to view a subscription. |
|
| 73 | - * |
|
| 74 | - * @var string |
|
| 75 | - */ |
|
| 76 | - public $view_subscription_url = 'https://www.{sandbox}paypal.com/cgi-bin/webscr?cmd=_profile-recurring-payments&encrypted_profile_id=%s'; |
|
| 72 | + * URL to view a subscription. |
|
| 73 | + * |
|
| 74 | + * @var string |
|
| 75 | + */ |
|
| 76 | + public $view_subscription_url = 'https://www.{sandbox}paypal.com/cgi-bin/webscr?cmd=_profile-recurring-payments&encrypted_profile_id=%s'; |
|
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | - * Class constructor. |
|
| 80 | - */ |
|
| 81 | - public function __construct() { |
|
| 79 | + * Class constructor. |
|
| 80 | + */ |
|
| 81 | + public function __construct() { |
|
| 82 | 82 | |
| 83 | 83 | $this->title = __( 'PayPal Standard', 'invoicing' ); |
| 84 | 84 | $this->method_title = __( 'PayPal Standard', 'invoicing' ); |
| 85 | 85 | $this->checkout_button_text = __( 'Proceed to PayPal', 'invoicing' ); |
| 86 | 86 | $this->notify_url = wpinv_get_ipn_url( $this->id ); |
| 87 | 87 | |
| 88 | - add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
| 88 | + add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
| 89 | 89 | add_filter( 'getpaid_paypal_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
| 90 | 90 | |
| 91 | 91 | parent::__construct(); |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | /** |
| 95 | - * Process Payment. |
|
| 96 | - * |
|
| 97 | - * |
|
| 98 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 99 | - * @param array $submission_data Posted checkout fields. |
|
| 100 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
| 101 | - * @return array |
|
| 102 | - */ |
|
| 103 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 95 | + * Process Payment. |
|
| 96 | + * |
|
| 97 | + * |
|
| 98 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 99 | + * @param array $submission_data Posted checkout fields. |
|
| 100 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
| 101 | + * @return array |
|
| 102 | + */ |
|
| 103 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 104 | 104 | |
| 105 | 105 | // Get redirect url. |
| 106 | 106 | $paypal_redirect = $this->get_request_url( $invoice ); |
@@ -123,15 +123,15 @@ discard block |
||
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | /** |
| 126 | - * Get the PayPal request URL for an invoice. |
|
| 127 | - * |
|
| 128 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 129 | - * @return string |
|
| 130 | - */ |
|
| 131 | - public function get_request_url( $invoice ) { |
|
| 126 | + * Get the PayPal request URL for an invoice. |
|
| 127 | + * |
|
| 128 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 129 | + * @return string |
|
| 130 | + */ |
|
| 131 | + public function get_request_url( $invoice ) { |
|
| 132 | 132 | |
| 133 | 133 | // Endpoint for this request |
| 134 | - $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
| 134 | + $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
| 135 | 135 | |
| 136 | 136 | // Retrieve paypal args. |
| 137 | 137 | $paypal_args = map_deep( $this->get_paypal_args( $invoice ), 'urlencode' ); |
@@ -144,44 +144,44 @@ discard block |
||
| 144 | 144 | |
| 145 | 145 | return add_query_arg( $paypal_args, $this->endpoint ); |
| 146 | 146 | |
| 147 | - } |
|
| 147 | + } |
|
| 148 | 148 | |
| 149 | 149 | /** |
| 150 | - * Get PayPal Args for passing to PP. |
|
| 151 | - * |
|
| 152 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 153 | - * @return array |
|
| 154 | - */ |
|
| 155 | - protected function get_paypal_args( $invoice ) { |
|
| 150 | + * Get PayPal Args for passing to PP. |
|
| 151 | + * |
|
| 152 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 153 | + * @return array |
|
| 154 | + */ |
|
| 155 | + protected function get_paypal_args( $invoice ) { |
|
| 156 | 156 | |
| 157 | 157 | // Whether or not to send the line items as one item. |
| 158 | - $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
| 159 | - |
|
| 160 | - if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
| 161 | - $force_one_line_item = true; |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - $paypal_args = apply_filters( |
|
| 165 | - 'getpaid_paypal_args', |
|
| 166 | - array_merge( |
|
| 167 | - $this->get_transaction_args( $invoice ), |
|
| 168 | - $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
| 169 | - ), |
|
| 170 | - $invoice |
|
| 171 | - ); |
|
| 172 | - |
|
| 173 | - return $this->fix_request_length( $invoice, $paypal_args ); |
|
| 158 | + $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
| 159 | + |
|
| 160 | + if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
| 161 | + $force_one_line_item = true; |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + $paypal_args = apply_filters( |
|
| 165 | + 'getpaid_paypal_args', |
|
| 166 | + array_merge( |
|
| 167 | + $this->get_transaction_args( $invoice ), |
|
| 168 | + $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
| 169 | + ), |
|
| 170 | + $invoice |
|
| 171 | + ); |
|
| 172 | + |
|
| 173 | + return $this->fix_request_length( $invoice, $paypal_args ); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
| 177 | - * Get transaction args for paypal request. |
|
| 178 | - * |
|
| 179 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 180 | - * @return array |
|
| 181 | - */ |
|
| 182 | - protected function get_transaction_args( $invoice ) { |
|
| 183 | - |
|
| 184 | - return array( |
|
| 177 | + * Get transaction args for paypal request. |
|
| 178 | + * |
|
| 179 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 180 | + * @return array |
|
| 181 | + */ |
|
| 182 | + protected function get_transaction_args( $invoice ) { |
|
| 183 | + |
|
| 184 | + return array( |
|
| 185 | 185 | 'cmd' => '_cart', |
| 186 | 186 | 'business' => wpinv_get_option( 'paypal_email', false ), |
| 187 | 187 | 'no_shipping' => '1', |
@@ -206,16 +206,16 @@ discard block |
||
| 206 | 206 | } |
| 207 | 207 | |
| 208 | 208 | /** |
| 209 | - * Get line item args for paypal request. |
|
| 210 | - * |
|
| 211 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 212 | - * @param bool $force_one_line_item Create only one item for this invoice. |
|
| 213 | - * @return array |
|
| 214 | - */ |
|
| 215 | - protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
| 209 | + * Get line item args for paypal request. |
|
| 210 | + * |
|
| 211 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 212 | + * @param bool $force_one_line_item Create only one item for this invoice. |
|
| 213 | + * @return array |
|
| 214 | + */ |
|
| 215 | + protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
| 216 | 216 | |
| 217 | 217 | // Maybe send invoice as a single item. |
| 218 | - if ( $force_one_line_item ) { |
|
| 218 | + if ( $force_one_line_item ) { |
|
| 219 | 219 | return $this->get_line_item_args_single_item( $invoice ); |
| 220 | 220 | } |
| 221 | 221 | |
@@ -235,129 +235,129 @@ discard block |
||
| 235 | 235 | $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_discount(), 2 ); |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - return array_merge( $line_item_args, $this->get_line_items() ); |
|
| 238 | + return array_merge( $line_item_args, $this->get_line_items() ); |
|
| 239 | 239 | |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | /** |
| 243 | - * Get line item args for paypal request as a single line item. |
|
| 244 | - * |
|
| 245 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 246 | - * @return array |
|
| 247 | - */ |
|
| 248 | - protected function get_line_item_args_single_item( $invoice ) { |
|
| 249 | - $this->delete_line_items(); |
|
| 243 | + * Get line item args for paypal request as a single line item. |
|
| 244 | + * |
|
| 245 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 246 | + * @return array |
|
| 247 | + */ |
|
| 248 | + protected function get_line_item_args_single_item( $invoice ) { |
|
| 249 | + $this->delete_line_items(); |
|
| 250 | 250 | |
| 251 | 251 | $item_name = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
| 252 | - $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
| 252 | + $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
| 253 | 253 | |
| 254 | - return $this->get_line_items(); |
|
| 254 | + return $this->get_line_items(); |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | /** |
| 258 | - * Return all line items. |
|
| 259 | - */ |
|
| 260 | - protected function get_line_items() { |
|
| 261 | - return $this->line_items; |
|
| 262 | - } |
|
| 258 | + * Return all line items. |
|
| 259 | + */ |
|
| 260 | + protected function get_line_items() { |
|
| 261 | + return $this->line_items; |
|
| 262 | + } |
|
| 263 | 263 | |
| 264 | 264 | /** |
| 265 | - * Remove all line items. |
|
| 266 | - */ |
|
| 267 | - protected function delete_line_items() { |
|
| 268 | - $this->line_items = array(); |
|
| 265 | + * Remove all line items. |
|
| 266 | + */ |
|
| 267 | + protected function delete_line_items() { |
|
| 268 | + $this->line_items = array(); |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /** |
| 272 | - * Prepare line items to send to paypal. |
|
| 273 | - * |
|
| 274 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 275 | - */ |
|
| 276 | - protected function prepare_line_items( $invoice ) { |
|
| 277 | - $this->delete_line_items(); |
|
| 278 | - |
|
| 279 | - // Items. |
|
| 280 | - foreach ( $invoice->get_items() as $item ) { |
|
| 281 | - $amount = $item->get_price(); |
|
| 282 | - $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
|
| 283 | - $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
| 272 | + * Prepare line items to send to paypal. |
|
| 273 | + * |
|
| 274 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 275 | + */ |
|
| 276 | + protected function prepare_line_items( $invoice ) { |
|
| 277 | + $this->delete_line_items(); |
|
| 278 | + |
|
| 279 | + // Items. |
|
| 280 | + foreach ( $invoice->get_items() as $item ) { |
|
| 281 | + $amount = $item->get_price(); |
|
| 282 | + $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
|
| 283 | + $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | // Fees. |
| 287 | - foreach ( $invoice->get_fees() as $fee => $data ) { |
|
| 287 | + foreach ( $invoice->get_fees() as $fee => $data ) { |
|
| 288 | 288 | $this->add_line_item( $fee, 1, wpinv_sanitize_amount( $data['initial_fee'] ) ); |
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | } |
| 292 | 292 | |
| 293 | 293 | /** |
| 294 | - * Add PayPal Line Item. |
|
| 295 | - * |
|
| 296 | - * @param string $item_name Item name. |
|
| 297 | - * @param float $quantity Item quantity. |
|
| 298 | - * @param float $amount Amount. |
|
| 299 | - * @param string $item_number Item number. |
|
| 300 | - */ |
|
| 301 | - protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
| 302 | - $index = ( count( $this->line_items ) / 4 ) + 1; |
|
| 303 | - |
|
| 304 | - $item = apply_filters( |
|
| 305 | - 'getpaid_paypal_line_item', |
|
| 306 | - array( |
|
| 307 | - 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
| 308 | - 'quantity' => (float) $quantity, |
|
| 309 | - 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
| 310 | - 'item_number' => $item_number, |
|
| 311 | - ), |
|
| 312 | - $item_name, |
|
| 313 | - $quantity, |
|
| 314 | - $amount, |
|
| 315 | - $item_number |
|
| 316 | - ); |
|
| 317 | - |
|
| 318 | - $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
| 294 | + * Add PayPal Line Item. |
|
| 295 | + * |
|
| 296 | + * @param string $item_name Item name. |
|
| 297 | + * @param float $quantity Item quantity. |
|
| 298 | + * @param float $amount Amount. |
|
| 299 | + * @param string $item_number Item number. |
|
| 300 | + */ |
|
| 301 | + protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
| 302 | + $index = ( count( $this->line_items ) / 4 ) + 1; |
|
| 303 | + |
|
| 304 | + $item = apply_filters( |
|
| 305 | + 'getpaid_paypal_line_item', |
|
| 306 | + array( |
|
| 307 | + 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
| 308 | + 'quantity' => (float) $quantity, |
|
| 309 | + 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
| 310 | + 'item_number' => $item_number, |
|
| 311 | + ), |
|
| 312 | + $item_name, |
|
| 313 | + $quantity, |
|
| 314 | + $amount, |
|
| 315 | + $item_number |
|
| 316 | + ); |
|
| 317 | + |
|
| 318 | + $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
| 319 | 319 | $this->line_items[ 'quantity_' . $index ] = $item['quantity']; |
| 320 | 320 | |
| 321 | 321 | // The price or amount of the product, service, or contribution, not including shipping, handling, or tax. |
| 322 | - $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
| 323 | - $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
| 322 | + $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
| 323 | + $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | /** |
| 327 | - * If the default request with line items is too long, generate a new one with only one line item. |
|
| 328 | - * |
|
| 329 | - * https://support.microsoft.com/en-us/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer. |
|
| 330 | - * |
|
| 331 | - * @param WPInv_Invoice $invoice Invoice to be sent to Paypal. |
|
| 332 | - * @param array $paypal_args Arguments sent to Paypal in the request. |
|
| 333 | - * @return array |
|
| 334 | - */ |
|
| 335 | - protected function fix_request_length( $invoice, $paypal_args ) { |
|
| 336 | - $max_paypal_length = 2083; |
|
| 337 | - $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
| 338 | - |
|
| 339 | - if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
| 340 | - return $paypal_args; |
|
| 341 | - } |
|
| 342 | - |
|
| 343 | - return apply_filters( |
|
| 344 | - 'getpaid_paypal_args', |
|
| 345 | - array_merge( |
|
| 346 | - $this->get_transaction_args( $invoice ), |
|
| 347 | - $this->get_line_item_args( $invoice, true ) |
|
| 348 | - ), |
|
| 349 | - $invoice |
|
| 350 | - ); |
|
| 327 | + * If the default request with line items is too long, generate a new one with only one line item. |
|
| 328 | + * |
|
| 329 | + * https://support.microsoft.com/en-us/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer. |
|
| 330 | + * |
|
| 331 | + * @param WPInv_Invoice $invoice Invoice to be sent to Paypal. |
|
| 332 | + * @param array $paypal_args Arguments sent to Paypal in the request. |
|
| 333 | + * @return array |
|
| 334 | + */ |
|
| 335 | + protected function fix_request_length( $invoice, $paypal_args ) { |
|
| 336 | + $max_paypal_length = 2083; |
|
| 337 | + $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
| 338 | + |
|
| 339 | + if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
| 340 | + return $paypal_args; |
|
| 341 | + } |
|
| 342 | + |
|
| 343 | + return apply_filters( |
|
| 344 | + 'getpaid_paypal_args', |
|
| 345 | + array_merge( |
|
| 346 | + $this->get_transaction_args( $invoice ), |
|
| 347 | + $this->get_line_item_args( $invoice, true ) |
|
| 348 | + ), |
|
| 349 | + $invoice |
|
| 350 | + ); |
|
| 351 | 351 | |
| 352 | 352 | } |
| 353 | 353 | |
| 354 | 354 | /** |
| 355 | - * Processes recurring invoices. |
|
| 356 | - * |
|
| 357 | - * @param array $paypal_args PayPal args. |
|
| 358 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 359 | - */ |
|
| 360 | - public function process_subscription( $paypal_args, $invoice ) { |
|
| 355 | + * Processes recurring invoices. |
|
| 356 | + * |
|
| 357 | + * @param array $paypal_args PayPal args. |
|
| 358 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 359 | + */ |
|
| 360 | + public function process_subscription( $paypal_args, $invoice ) { |
|
| 361 | 361 | |
| 362 | 362 | // Make sure this is a subscription. |
| 363 | 363 | if ( ! $invoice->is_recurring() || ! $subscription = getpaid_get_invoice_subscription( $invoice ) ) { |
@@ -382,11 +382,11 @@ discard block |
||
| 382 | 382 | |
| 383 | 383 | $paypal_args['a1'] = 0 == $initial_amount ? 0 : $initial_amount; |
| 384 | 384 | |
| 385 | - // Trial period length. |
|
| 386 | - $paypal_args['p1'] = $subscription_item->get_trial_interval(); |
|
| 385 | + // Trial period length. |
|
| 386 | + $paypal_args['p1'] = $subscription_item->get_trial_interval(); |
|
| 387 | 387 | |
| 388 | - // Trial period. |
|
| 389 | - $paypal_args['t1'] = $subscription_item->get_trial_period(); |
|
| 388 | + // Trial period. |
|
| 389 | + $paypal_args['t1'] = $subscription_item->get_trial_period(); |
|
| 390 | 390 | |
| 391 | 391 | } else if ( $initial_amount != $recurring_amount ) { |
| 392 | 392 | |
@@ -409,40 +409,40 @@ discard block |
||
| 409 | 409 | } |
| 410 | 410 | |
| 411 | 411 | // We have a recurring payment |
| 412 | - if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
| 412 | + if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
| 413 | 413 | |
| 414 | - // Subscription price |
|
| 415 | - $paypal_args['a3'] = $recurring_amount; |
|
| 414 | + // Subscription price |
|
| 415 | + $paypal_args['a3'] = $recurring_amount; |
|
| 416 | 416 | |
| 417 | - // Subscription duration |
|
| 418 | - $paypal_args['p3'] = $interval; |
|
| 417 | + // Subscription duration |
|
| 418 | + $paypal_args['p3'] = $interval; |
|
| 419 | 419 | |
| 420 | - // Subscription period |
|
| 421 | - $paypal_args['t3'] = $period; |
|
| 420 | + // Subscription period |
|
| 421 | + $paypal_args['t3'] = $period; |
|
| 422 | 422 | |
| 423 | 423 | } |
| 424 | 424 | |
| 425 | 425 | // Recurring payments |
| 426 | - if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
| 426 | + if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
| 427 | 427 | |
| 428 | - // Non-recurring payments |
|
| 429 | - $paypal_args['src'] = 0; |
|
| 428 | + // Non-recurring payments |
|
| 429 | + $paypal_args['src'] = 0; |
|
| 430 | 430 | |
| 431 | - } else { |
|
| 431 | + } else { |
|
| 432 | 432 | |
| 433 | - $paypal_args['src'] = 1; |
|
| 433 | + $paypal_args['src'] = 1; |
|
| 434 | 434 | |
| 435 | - if ( $bill_times > 0 ) { |
|
| 435 | + if ( $bill_times > 0 ) { |
|
| 436 | 436 | |
| 437 | - // An initial period is being used to charge a sign-up fee |
|
| 438 | - if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
| 439 | - $bill_times--; |
|
| 440 | - } |
|
| 437 | + // An initial period is being used to charge a sign-up fee |
|
| 438 | + if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
| 439 | + $bill_times--; |
|
| 440 | + } |
|
| 441 | 441 | |
| 442 | 442 | // Make sure it's not over the max of 52 |
| 443 | 443 | $paypal_args['srt'] = ( $bill_times <= 52 ? absint( $bill_times ) : 52 ); |
| 444 | 444 | |
| 445 | - } |
|
| 445 | + } |
|
| 446 | 446 | } |
| 447 | 447 | |
| 448 | 448 | // Force return URL so that order description & instructions display |
@@ -458,19 +458,19 @@ discard block |
||
| 458 | 458 | } |
| 459 | 459 | |
| 460 | 460 | return apply_filters( |
| 461 | - 'getpaid_paypal_subscription_args', |
|
| 462 | - $paypal_args, |
|
| 463 | - $invoice |
|
| 461 | + 'getpaid_paypal_subscription_args', |
|
| 462 | + $paypal_args, |
|
| 463 | + $invoice |
|
| 464 | 464 | ); |
| 465 | 465 | |
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | /** |
| 469 | - * Processes ipns and marks payments as complete. |
|
| 470 | - * |
|
| 471 | - * @return void |
|
| 472 | - */ |
|
| 473 | - public function verify_ipn() { |
|
| 469 | + * Processes ipns and marks payments as complete. |
|
| 470 | + * |
|
| 471 | + * @return void |
|
| 472 | + */ |
|
| 473 | + public function verify_ipn() { |
|
| 474 | 474 | new GetPaid_Paypal_Gateway_IPN_Handler( $this ); |
| 475 | 475 | } |
| 476 | 476 | |
@@ -480,10 +480,10 @@ discard block |
||
| 480 | 480 | public function sandbox_notice() { |
| 481 | 481 | |
| 482 | 482 | return sprintf( |
| 483 | - __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %sPayPal Sandbox Testing Guide%s for more details.', 'invoicing' ), |
|
| 484 | - '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
|
| 485 | - '</a>' |
|
| 486 | - ); |
|
| 483 | + __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %sPayPal Sandbox Testing Guide%s for more details.', 'invoicing' ), |
|
| 484 | + '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
|
| 485 | + '</a>' |
|
| 486 | + ); |
|
| 487 | 487 | |
| 488 | 488 | } |
| 489 | 489 | |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Paypal Payment Gateway class. |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | * |
| 25 | 25 | * @var array |
| 26 | 26 | */ |
| 27 | - protected $supports = array( 'subscription', 'sandbox', 'single_subscription_group' ); |
|
| 27 | + protected $supports = array('subscription', 'sandbox', 'single_subscription_group'); |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * Payment method order. |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @var array |
| 61 | 61 | */ |
| 62 | - public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
| 62 | + public $currencies = array('AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR'); |
|
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | 65 | * URL to view a transaction. |
@@ -80,13 +80,13 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | public function __construct() { |
| 82 | 82 | |
| 83 | - $this->title = __( 'PayPal Standard', 'invoicing' ); |
|
| 84 | - $this->method_title = __( 'PayPal Standard', 'invoicing' ); |
|
| 85 | - $this->checkout_button_text = __( 'Proceed to PayPal', 'invoicing' ); |
|
| 86 | - $this->notify_url = wpinv_get_ipn_url( $this->id ); |
|
| 83 | + $this->title = __('PayPal Standard', 'invoicing'); |
|
| 84 | + $this->method_title = __('PayPal Standard', 'invoicing'); |
|
| 85 | + $this->checkout_button_text = __('Proceed to PayPal', 'invoicing'); |
|
| 86 | + $this->notify_url = wpinv_get_ipn_url($this->id); |
|
| 87 | 87 | |
| 88 | - add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
| 89 | - add_filter( 'getpaid_paypal_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
|
| 88 | + add_filter('getpaid_paypal_args', array($this, 'process_subscription'), 10, 2); |
|
| 89 | + add_filter('getpaid_paypal_sandbox_notice', array($this, 'sandbox_notice')); |
|
| 90 | 90 | |
| 91 | 91 | parent::__construct(); |
| 92 | 92 | } |
@@ -100,16 +100,16 @@ discard block |
||
| 100 | 100 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
| 101 | 101 | * @return array |
| 102 | 102 | */ |
| 103 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 103 | + public function process_payment($invoice, $submission_data, $submission) { |
|
| 104 | 104 | |
| 105 | 105 | // Get redirect url. |
| 106 | - $paypal_redirect = $this->get_request_url( $invoice ); |
|
| 106 | + $paypal_redirect = $this->get_request_url($invoice); |
|
| 107 | 107 | |
| 108 | 108 | // Add a note about the request url. |
| 109 | 109 | $invoice->add_note( |
| 110 | 110 | sprintf( |
| 111 | - __( 'Redirecting to PayPal: %s', 'invoicing' ), |
|
| 112 | - esc_url( $paypal_redirect ) |
|
| 111 | + __('Redirecting to PayPal: %s', 'invoicing'), |
|
| 112 | + esc_url($paypal_redirect) |
|
| 113 | 113 | ), |
| 114 | 114 | false, |
| 115 | 115 | false, |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | ); |
| 118 | 118 | |
| 119 | 119 | // Redirect to PayPal |
| 120 | - wp_redirect( $paypal_redirect ); |
|
| 120 | + wp_redirect($paypal_redirect); |
|
| 121 | 121 | exit; |
| 122 | 122 | |
| 123 | 123 | } |
@@ -128,21 +128,21 @@ discard block |
||
| 128 | 128 | * @param WPInv_Invoice $invoice Invoice object. |
| 129 | 129 | * @return string |
| 130 | 130 | */ |
| 131 | - public function get_request_url( $invoice ) { |
|
| 131 | + public function get_request_url($invoice) { |
|
| 132 | 132 | |
| 133 | 133 | // Endpoint for this request |
| 134 | - $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
| 134 | + $this->endpoint = $this->is_sandbox($invoice) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
| 135 | 135 | |
| 136 | 136 | // Retrieve paypal args. |
| 137 | - $paypal_args = map_deep( $this->get_paypal_args( $invoice ), 'urlencode' ); |
|
| 137 | + $paypal_args = map_deep($this->get_paypal_args($invoice), 'urlencode'); |
|
| 138 | 138 | |
| 139 | - if ( $invoice->is_recurring() ) { |
|
| 139 | + if ($invoice->is_recurring()) { |
|
| 140 | 140 | $paypal_args['bn'] = 'GetPaid_Subscribe_WPS_US'; |
| 141 | 141 | } else { |
| 142 | 142 | $paypal_args['bn'] = 'GetPaid_ShoppingCart_WPS_US'; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - return add_query_arg( $paypal_args, $this->endpoint ); |
|
| 145 | + return add_query_arg($paypal_args, $this->endpoint); |
|
| 146 | 146 | |
| 147 | 147 | } |
| 148 | 148 | |
@@ -152,25 +152,25 @@ discard block |
||
| 152 | 152 | * @param WPInv_Invoice $invoice Invoice object. |
| 153 | 153 | * @return array |
| 154 | 154 | */ |
| 155 | - protected function get_paypal_args( $invoice ) { |
|
| 155 | + protected function get_paypal_args($invoice) { |
|
| 156 | 156 | |
| 157 | 157 | // Whether or not to send the line items as one item. |
| 158 | - $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
| 158 | + $force_one_line_item = apply_filters('getpaid_paypal_force_one_line_item', true, $invoice); |
|
| 159 | 159 | |
| 160 | - if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
| 160 | + if ($invoice->is_recurring() || (wpinv_use_taxes() && wpinv_prices_include_tax())) { |
|
| 161 | 161 | $force_one_line_item = true; |
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | $paypal_args = apply_filters( |
| 165 | 165 | 'getpaid_paypal_args', |
| 166 | 166 | array_merge( |
| 167 | - $this->get_transaction_args( $invoice ), |
|
| 168 | - $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
| 167 | + $this->get_transaction_args($invoice), |
|
| 168 | + $this->get_line_item_args($invoice, $force_one_line_item) |
|
| 169 | 169 | ), |
| 170 | 170 | $invoice |
| 171 | 171 | ); |
| 172 | 172 | |
| 173 | - return $this->fix_request_length( $invoice, $paypal_args ); |
|
| 173 | + return $this->fix_request_length($invoice, $paypal_args); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
@@ -179,11 +179,11 @@ discard block |
||
| 179 | 179 | * @param WPInv_Invoice $invoice Invoice object. |
| 180 | 180 | * @return array |
| 181 | 181 | */ |
| 182 | - protected function get_transaction_args( $invoice ) { |
|
| 182 | + protected function get_transaction_args($invoice) { |
|
| 183 | 183 | |
| 184 | 184 | return array( |
| 185 | 185 | 'cmd' => '_cart', |
| 186 | - 'business' => wpinv_get_option( 'paypal_email', false ), |
|
| 186 | + 'business' => wpinv_get_option('paypal_email', false), |
|
| 187 | 187 | 'no_shipping' => '1', |
| 188 | 188 | 'shipping' => '0', |
| 189 | 189 | 'no_note' => '1', |
@@ -191,16 +191,16 @@ discard block |
||
| 191 | 191 | 'rm' => is_ssl() ? 2 : 1, |
| 192 | 192 | 'upload' => 1, |
| 193 | 193 | 'currency_code' => $invoice->get_currency(), // https://developer.paypal.com/docs/nvp-soap-api/currency-codes/#paypal |
| 194 | - 'return' => esc_url_raw( $this->get_return_url( $invoice ) ), |
|
| 195 | - 'cancel_return' => esc_url_raw( $invoice->get_checkout_payment_url() ), |
|
| 196 | - 'notify_url' => getpaid_limit_length( $this->notify_url, 255 ), |
|
| 197 | - 'invoice' => getpaid_limit_length( $invoice->get_number(), 127 ), |
|
| 194 | + 'return' => esc_url_raw($this->get_return_url($invoice)), |
|
| 195 | + 'cancel_return' => esc_url_raw($invoice->get_checkout_payment_url()), |
|
| 196 | + 'notify_url' => getpaid_limit_length($this->notify_url, 255), |
|
| 197 | + 'invoice' => getpaid_limit_length($invoice->get_number(), 127), |
|
| 198 | 198 | 'custom' => $invoice->get_id(), |
| 199 | - 'first_name' => getpaid_limit_length( $invoice->get_first_name(), 32 ), |
|
| 200 | - 'last_name' => getpaid_limit_length( $invoice->get_last_name(), 64 ), |
|
| 201 | - 'country' => getpaid_limit_length( $invoice->get_country(), 2 ), |
|
| 202 | - 'email' => getpaid_limit_length( $invoice->get_email(), 127 ), |
|
| 203 | - 'cbt' => get_bloginfo( 'name' ) |
|
| 199 | + 'first_name' => getpaid_limit_length($invoice->get_first_name(), 32), |
|
| 200 | + 'last_name' => getpaid_limit_length($invoice->get_last_name(), 64), |
|
| 201 | + 'country' => getpaid_limit_length($invoice->get_country(), 2), |
|
| 202 | + 'email' => getpaid_limit_length($invoice->get_email(), 127), |
|
| 203 | + 'cbt' => get_bloginfo('name') |
|
| 204 | 204 | ); |
| 205 | 205 | |
| 206 | 206 | } |
@@ -212,30 +212,30 @@ discard block |
||
| 212 | 212 | * @param bool $force_one_line_item Create only one item for this invoice. |
| 213 | 213 | * @return array |
| 214 | 214 | */ |
| 215 | - protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
| 215 | + protected function get_line_item_args($invoice, $force_one_line_item = false) { |
|
| 216 | 216 | |
| 217 | 217 | // Maybe send invoice as a single item. |
| 218 | - if ( $force_one_line_item ) { |
|
| 219 | - return $this->get_line_item_args_single_item( $invoice ); |
|
| 218 | + if ($force_one_line_item) { |
|
| 219 | + return $this->get_line_item_args_single_item($invoice); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | // Send each line item individually. |
| 223 | 223 | $line_item_args = array(); |
| 224 | 224 | |
| 225 | 225 | // Prepare line items. |
| 226 | - $this->prepare_line_items( $invoice ); |
|
| 226 | + $this->prepare_line_items($invoice); |
|
| 227 | 227 | |
| 228 | 228 | // Add taxes to the cart |
| 229 | - if ( wpinv_use_taxes() && $invoice->is_taxable() ) { |
|
| 230 | - $line_item_args['tax_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_tax(), 2 ); |
|
| 229 | + if (wpinv_use_taxes() && $invoice->is_taxable()) { |
|
| 230 | + $line_item_args['tax_cart'] = wpinv_sanitize_amount((float) $invoice->get_total_tax(), 2); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | // Add discount. |
| 234 | - if ( $invoice->get_total_discount() > 0 ) { |
|
| 235 | - $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_discount(), 2 ); |
|
| 234 | + if ($invoice->get_total_discount() > 0) { |
|
| 235 | + $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount((float) $invoice->get_total_discount(), 2); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - return array_merge( $line_item_args, $this->get_line_items() ); |
|
| 238 | + return array_merge($line_item_args, $this->get_line_items()); |
|
| 239 | 239 | |
| 240 | 240 | } |
| 241 | 241 | |
@@ -245,11 +245,11 @@ discard block |
||
| 245 | 245 | * @param WPInv_Invoice $invoice Invoice object. |
| 246 | 246 | * @return array |
| 247 | 247 | */ |
| 248 | - protected function get_line_item_args_single_item( $invoice ) { |
|
| 248 | + protected function get_line_item_args_single_item($invoice) { |
|
| 249 | 249 | $this->delete_line_items(); |
| 250 | 250 | |
| 251 | - $item_name = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
|
| 252 | - $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
| 251 | + $item_name = sprintf(__('Invoice #%s', 'invoicing'), $invoice->get_number()); |
|
| 252 | + $this->add_line_item($item_name, 1, wpinv_round_amount((float) $invoice->get_total(), 2, true), $invoice->get_id()); |
|
| 253 | 253 | |
| 254 | 254 | return $this->get_line_items(); |
| 255 | 255 | } |
@@ -273,19 +273,19 @@ discard block |
||
| 273 | 273 | * |
| 274 | 274 | * @param WPInv_Invoice $invoice Invoice object. |
| 275 | 275 | */ |
| 276 | - protected function prepare_line_items( $invoice ) { |
|
| 276 | + protected function prepare_line_items($invoice) { |
|
| 277 | 277 | $this->delete_line_items(); |
| 278 | 278 | |
| 279 | 279 | // Items. |
| 280 | - foreach ( $invoice->get_items() as $item ) { |
|
| 280 | + foreach ($invoice->get_items() as $item) { |
|
| 281 | 281 | $amount = $item->get_price(); |
| 282 | 282 | $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
| 283 | - $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
| 283 | + $this->add_line_item($item->get_raw_name(), $quantity, $amount, $item->get_id()); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | // Fees. |
| 287 | - foreach ( $invoice->get_fees() as $fee => $data ) { |
|
| 288 | - $this->add_line_item( $fee, 1, wpinv_sanitize_amount( $data['initial_fee'] ) ); |
|
| 287 | + foreach ($invoice->get_fees() as $fee => $data) { |
|
| 288 | + $this->add_line_item($fee, 1, wpinv_sanitize_amount($data['initial_fee'])); |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | } |
@@ -298,15 +298,15 @@ discard block |
||
| 298 | 298 | * @param float $amount Amount. |
| 299 | 299 | * @param string $item_number Item number. |
| 300 | 300 | */ |
| 301 | - protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
| 302 | - $index = ( count( $this->line_items ) / 4 ) + 1; |
|
| 301 | + protected function add_line_item($item_name, $quantity = 1, $amount = 0.0, $item_number = '') { |
|
| 302 | + $index = (count($this->line_items) / 4) + 1; |
|
| 303 | 303 | |
| 304 | 304 | $item = apply_filters( |
| 305 | 305 | 'getpaid_paypal_line_item', |
| 306 | 306 | array( |
| 307 | - 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
| 307 | + 'item_name' => html_entity_decode(getpaid_limit_length($item_name ? wp_strip_all_tags($item_name) : __('Item', 'invoicing'), 127), ENT_NOQUOTES, 'UTF-8'), |
|
| 308 | 308 | 'quantity' => (float) $quantity, |
| 309 | - 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
| 309 | + 'amount' => wpinv_sanitize_amount((float) $amount, 2), |
|
| 310 | 310 | 'item_number' => $item_number, |
| 311 | 311 | ), |
| 312 | 312 | $item_name, |
@@ -315,12 +315,12 @@ discard block |
||
| 315 | 315 | $item_number |
| 316 | 316 | ); |
| 317 | 317 | |
| 318 | - $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
| 319 | - $this->line_items[ 'quantity_' . $index ] = $item['quantity']; |
|
| 318 | + $this->line_items['item_name_' . $index] = getpaid_limit_length($item['item_name'], 127); |
|
| 319 | + $this->line_items['quantity_' . $index] = $item['quantity']; |
|
| 320 | 320 | |
| 321 | 321 | // The price or amount of the product, service, or contribution, not including shipping, handling, or tax. |
| 322 | - $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
| 323 | - $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
| 322 | + $this->line_items['amount_' . $index] = $item['amount'] * $item['quantity']; |
|
| 323 | + $this->line_items['item_number_' . $index] = getpaid_limit_length($item['item_number'], 127); |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | /** |
@@ -332,19 +332,19 @@ discard block |
||
| 332 | 332 | * @param array $paypal_args Arguments sent to Paypal in the request. |
| 333 | 333 | * @return array |
| 334 | 334 | */ |
| 335 | - protected function fix_request_length( $invoice, $paypal_args ) { |
|
| 335 | + protected function fix_request_length($invoice, $paypal_args) { |
|
| 336 | 336 | $max_paypal_length = 2083; |
| 337 | - $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
| 337 | + $query_candidate = http_build_query($paypal_args, '', '&'); |
|
| 338 | 338 | |
| 339 | - if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
| 339 | + if (strlen($this->endpoint . $query_candidate) <= $max_paypal_length) { |
|
| 340 | 340 | return $paypal_args; |
| 341 | 341 | } |
| 342 | 342 | |
| 343 | 343 | return apply_filters( |
| 344 | 344 | 'getpaid_paypal_args', |
| 345 | 345 | array_merge( |
| 346 | - $this->get_transaction_args( $invoice ), |
|
| 347 | - $this->get_line_item_args( $invoice, true ) |
|
| 346 | + $this->get_transaction_args($invoice), |
|
| 347 | + $this->get_line_item_args($invoice, true) |
|
| 348 | 348 | ), |
| 349 | 349 | $invoice |
| 350 | 350 | ); |
@@ -357,10 +357,10 @@ discard block |
||
| 357 | 357 | * @param array $paypal_args PayPal args. |
| 358 | 358 | * @param WPInv_Invoice $invoice Invoice object. |
| 359 | 359 | */ |
| 360 | - public function process_subscription( $paypal_args, $invoice ) { |
|
| 360 | + public function process_subscription($paypal_args, $invoice) { |
|
| 361 | 361 | |
| 362 | 362 | // Make sure this is a subscription. |
| 363 | - if ( ! $invoice->is_recurring() || ! $subscription = getpaid_get_invoice_subscription( $invoice ) ) { |
|
| 363 | + if (!$invoice->is_recurring() || !$subscription = getpaid_get_invoice_subscription($invoice)) { |
|
| 364 | 364 | return $paypal_args; |
| 365 | 365 | } |
| 366 | 366 | |
@@ -368,17 +368,17 @@ discard block |
||
| 368 | 368 | $paypal_args['cmd'] = '_xclick-subscriptions'; |
| 369 | 369 | |
| 370 | 370 | // Subscription name. |
| 371 | - $paypal_args['item_name'] = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
|
| 371 | + $paypal_args['item_name'] = sprintf(__('Invoice #%s', 'invoicing'), $invoice->get_number()); |
|
| 372 | 372 | |
| 373 | 373 | // Get subscription args. |
| 374 | - $period = strtoupper( substr( $subscription->get_period(), 0, 1) ); |
|
| 374 | + $period = strtoupper(substr($subscription->get_period(), 0, 1)); |
|
| 375 | 375 | $interval = (int) $subscription->get_frequency(); |
| 376 | 376 | $bill_times = (int) $subscription->get_bill_times(); |
| 377 | - $initial_amount = (float) wpinv_sanitize_amount( $invoice->get_initial_total(), 2 ); |
|
| 378 | - $recurring_amount = (float) wpinv_sanitize_amount( $invoice->get_recurring_total(), 2 ); |
|
| 379 | - $subscription_item = $invoice->get_recurring( true ); |
|
| 377 | + $initial_amount = (float) wpinv_sanitize_amount($invoice->get_initial_total(), 2); |
|
| 378 | + $recurring_amount = (float) wpinv_sanitize_amount($invoice->get_recurring_total(), 2); |
|
| 379 | + $subscription_item = $invoice->get_recurring(true); |
|
| 380 | 380 | |
| 381 | - if ( $subscription_item->has_free_trial() ) { |
|
| 381 | + if ($subscription_item->has_free_trial()) { |
|
| 382 | 382 | |
| 383 | 383 | $paypal_args['a1'] = 0 == $initial_amount ? 0 : $initial_amount; |
| 384 | 384 | |
@@ -388,28 +388,28 @@ discard block |
||
| 388 | 388 | // Trial period. |
| 389 | 389 | $paypal_args['t1'] = $subscription_item->get_trial_period(); |
| 390 | 390 | |
| 391 | - } else if ( $initial_amount != $recurring_amount ) { |
|
| 391 | + } else if ($initial_amount != $recurring_amount) { |
|
| 392 | 392 | |
| 393 | 393 | // No trial period, but initial amount includes a sign-up fee and/or other items, so charge it as a separate period. |
| 394 | 394 | |
| 395 | - if ( 1 == $bill_times ) { |
|
| 395 | + if (1 == $bill_times) { |
|
| 396 | 396 | $param_number = 3; |
| 397 | 397 | } else { |
| 398 | 398 | $param_number = 1; |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | - $paypal_args[ 'a' . $param_number ] = $initial_amount ? $initial_amount : 0; |
|
| 401 | + $paypal_args['a' . $param_number] = $initial_amount ? $initial_amount : 0; |
|
| 402 | 402 | |
| 403 | 403 | // Sign Up interval |
| 404 | - $paypal_args[ 'p' . $param_number ] = $interval; |
|
| 404 | + $paypal_args['p' . $param_number] = $interval; |
|
| 405 | 405 | |
| 406 | 406 | // Sign Up unit of duration |
| 407 | - $paypal_args[ 't' . $param_number ] = $period; |
|
| 407 | + $paypal_args['t' . $param_number] = $period; |
|
| 408 | 408 | |
| 409 | 409 | } |
| 410 | 410 | |
| 411 | 411 | // We have a recurring payment |
| 412 | - if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
| 412 | + if (!isset($param_number) || 1 == $param_number) { |
|
| 413 | 413 | |
| 414 | 414 | // Subscription price |
| 415 | 415 | $paypal_args['a3'] = $recurring_amount; |
@@ -423,7 +423,7 @@ discard block |
||
| 423 | 423 | } |
| 424 | 424 | |
| 425 | 425 | // Recurring payments |
| 426 | - if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
| 426 | + if (1 == $bill_times || ($initial_amount != $recurring_amount && !$subscription_item->has_free_trial() && 2 == $bill_times)) { |
|
| 427 | 427 | |
| 428 | 428 | // Non-recurring payments |
| 429 | 429 | $paypal_args['src'] = 0; |
@@ -432,15 +432,15 @@ discard block |
||
| 432 | 432 | |
| 433 | 433 | $paypal_args['src'] = 1; |
| 434 | 434 | |
| 435 | - if ( $bill_times > 0 ) { |
|
| 435 | + if ($bill_times > 0) { |
|
| 436 | 436 | |
| 437 | 437 | // An initial period is being used to charge a sign-up fee |
| 438 | - if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
| 438 | + if ($initial_amount != $recurring_amount && !$subscription_item->has_free_trial()) { |
|
| 439 | 439 | $bill_times--; |
| 440 | 440 | } |
| 441 | 441 | |
| 442 | 442 | // Make sure it's not over the max of 52 |
| 443 | - $paypal_args['srt'] = ( $bill_times <= 52 ? absint( $bill_times ) : 52 ); |
|
| 443 | + $paypal_args['srt'] = ($bill_times <= 52 ? absint($bill_times) : 52); |
|
| 444 | 444 | |
| 445 | 445 | } |
| 446 | 446 | } |
@@ -449,10 +449,10 @@ discard block |
||
| 449 | 449 | $paypal_args['rm'] = 2; |
| 450 | 450 | |
| 451 | 451 | // Get rid of redudant items. |
| 452 | - foreach ( array( 'item_name_1', 'quantity_1', 'amount_1', 'item_number_1' ) as $arg ) { |
|
| 452 | + foreach (array('item_name_1', 'quantity_1', 'amount_1', 'item_number_1') as $arg) { |
|
| 453 | 453 | |
| 454 | - if ( isset( $paypal_args[ $arg ] ) ) { |
|
| 455 | - unset( $paypal_args[ $arg ] ); |
|
| 454 | + if (isset($paypal_args[$arg])) { |
|
| 455 | + unset($paypal_args[$arg]); |
|
| 456 | 456 | } |
| 457 | 457 | |
| 458 | 458 | } |
@@ -471,7 +471,7 @@ discard block |
||
| 471 | 471 | * @return void |
| 472 | 472 | */ |
| 473 | 473 | public function verify_ipn() { |
| 474 | - new GetPaid_Paypal_Gateway_IPN_Handler( $this ); |
|
| 474 | + new GetPaid_Paypal_Gateway_IPN_Handler($this); |
|
| 475 | 475 | } |
| 476 | 476 | |
| 477 | 477 | /** |
@@ -480,7 +480,7 @@ discard block |
||
| 480 | 480 | public function sandbox_notice() { |
| 481 | 481 | |
| 482 | 482 | return sprintf( |
| 483 | - __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %sPayPal Sandbox Testing Guide%s for more details.', 'invoicing' ), |
|
| 483 | + __('SANDBOX ENABLED. You can use sandbox testing accounts only. See the %sPayPal Sandbox Testing Guide%s for more details.', 'invoicing'), |
|
| 484 | 484 | '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
| 485 | 485 | '</a>' |
| 486 | 486 | ); |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Authorize.net Payment Gateway class. |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | * |
| 25 | 25 | * @var array |
| 26 | 26 | */ |
| 27 | - protected $supports = array( 'subscription', 'sandbox', 'tokens', 'addons', 'single_subscription_group', 'multiple_subscription_groups' ); |
|
| 27 | + protected $supports = array('subscription', 'sandbox', 'tokens', 'addons', 'single_subscription_group', 'multiple_subscription_groups'); |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * Payment method order. |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * |
| 53 | 53 | * @var array |
| 54 | 54 | */ |
| 55 | - public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
| 55 | + public $currencies = array('USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD'); |
|
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | 58 | * URL to view a transaction. |
@@ -66,12 +66,12 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | public function __construct() { |
| 68 | 68 | |
| 69 | - $this->title = __( 'Credit Card / Debit Card', 'invoicing' ); |
|
| 70 | - $this->method_title = __( 'Authorize.Net', 'invoicing' ); |
|
| 71 | - $this->notify_url = getpaid_get_non_query_string_ipn_url( $this->id ); |
|
| 69 | + $this->title = __('Credit Card / Debit Card', 'invoicing'); |
|
| 70 | + $this->method_title = __('Authorize.Net', 'invoicing'); |
|
| 71 | + $this->notify_url = getpaid_get_non_query_string_ipn_url($this->id); |
|
| 72 | 72 | |
| 73 | - add_filter( 'getpaid_daily_maintenance_should_expire_subscription', array( $this, 'maybe_renew_subscription' ), 10, 2 ); |
|
| 74 | - add_filter( 'getpaid_authorizenet_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
|
| 73 | + add_filter('getpaid_daily_maintenance_should_expire_subscription', array($this, 'maybe_renew_subscription'), 10, 2); |
|
| 74 | + add_filter('getpaid_authorizenet_sandbox_notice', array($this, 'sandbox_notice')); |
|
| 75 | 75 | parent::__construct(); |
| 76 | 76 | } |
| 77 | 77 | |
@@ -81,13 +81,13 @@ discard block |
||
| 81 | 81 | * @param int $invoice_id 0 or invoice id. |
| 82 | 82 | * @param GetPaid_Payment_Form $form Current payment form. |
| 83 | 83 | */ |
| 84 | - public function payment_fields( $invoice_id, $form ) { |
|
| 84 | + public function payment_fields($invoice_id, $form) { |
|
| 85 | 85 | |
| 86 | 86 | // Let the user select a payment method. |
| 87 | 87 | echo $this->saved_payment_methods(); |
| 88 | 88 | |
| 89 | 89 | // Show the credit card entry form. |
| 90 | - echo $this->new_payment_method_entry( $this->get_cc_form( true ) ); |
|
| 90 | + echo $this->new_payment_method_entry($this->get_cc_form(true)); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -100,64 +100,64 @@ discard block |
||
| 100 | 100 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
| 101 | 101 | * @return string|WP_Error Payment profile id. |
| 102 | 102 | */ |
| 103 | - public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
| 103 | + public function create_customer_profile($invoice, $submission_data, $save = true) { |
|
| 104 | 104 | |
| 105 | 105 | // Remove non-digits from the number |
| 106 | - $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
|
| 106 | + $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number']); |
|
| 107 | 107 | |
| 108 | 108 | // Generate args. |
| 109 | 109 | $args = array( |
| 110 | 110 | 'createCustomerProfileRequest' => array( |
| 111 | 111 | 'merchantAuthentication' => $this->get_auth_params(), |
| 112 | 112 | 'profile' => array( |
| 113 | - 'merchantCustomerId' => getpaid_limit_length( $invoice->get_user_id(), 20 ), |
|
| 114 | - 'description' => getpaid_limit_length( $invoice->get_full_name(), 255 ), |
|
| 115 | - 'email' => getpaid_limit_length( $invoice->get_email(), 255 ), |
|
| 113 | + 'merchantCustomerId' => getpaid_limit_length($invoice->get_user_id(), 20), |
|
| 114 | + 'description' => getpaid_limit_length($invoice->get_full_name(), 255), |
|
| 115 | + 'email' => getpaid_limit_length($invoice->get_email(), 255), |
|
| 116 | 116 | 'paymentProfiles' => array( |
| 117 | 117 | 'customerType' => 'individual', |
| 118 | 118 | |
| 119 | 119 | // Billing information. |
| 120 | 120 | 'billTo' => array( |
| 121 | - 'firstName' => getpaid_limit_length( $invoice->get_first_name(), 50 ), |
|
| 122 | - 'lastName' => getpaid_limit_length( $invoice->get_last_name(), 50 ), |
|
| 123 | - 'address' => getpaid_limit_length( $invoice->get_address(), 60 ), |
|
| 124 | - 'city' => getpaid_limit_length( $invoice->get_city(), 40 ), |
|
| 125 | - 'state' => getpaid_limit_length( $invoice->get_state(), 40 ), |
|
| 126 | - 'zip' => getpaid_limit_length( $invoice->get_zip(), 20 ), |
|
| 127 | - 'country' => getpaid_limit_length( $invoice->get_country(), 60 ), |
|
| 121 | + 'firstName' => getpaid_limit_length($invoice->get_first_name(), 50), |
|
| 122 | + 'lastName' => getpaid_limit_length($invoice->get_last_name(), 50), |
|
| 123 | + 'address' => getpaid_limit_length($invoice->get_address(), 60), |
|
| 124 | + 'city' => getpaid_limit_length($invoice->get_city(), 40), |
|
| 125 | + 'state' => getpaid_limit_length($invoice->get_state(), 40), |
|
| 126 | + 'zip' => getpaid_limit_length($invoice->get_zip(), 20), |
|
| 127 | + 'country' => getpaid_limit_length($invoice->get_country(), 60), |
|
| 128 | 128 | ), |
| 129 | 129 | |
| 130 | 130 | // Payment information. |
| 131 | - 'payment' => $this->get_payment_information( $submission_data['authorizenet'] ), |
|
| 131 | + 'payment' => $this->get_payment_information($submission_data['authorizenet']), |
|
| 132 | 132 | ) |
| 133 | 133 | ), |
| 134 | - 'validationMode' => $this->is_sandbox( $invoice ) ? 'testMode' : 'liveMode', |
|
| 134 | + 'validationMode' => $this->is_sandbox($invoice) ? 'testMode' : 'liveMode', |
|
| 135 | 135 | ) |
| 136 | 136 | ); |
| 137 | 137 | |
| 138 | - $response = $this->post( apply_filters( 'getpaid_authorizenet_customer_profile_args', $args, $invoice ), $invoice ); |
|
| 138 | + $response = $this->post(apply_filters('getpaid_authorizenet_customer_profile_args', $args, $invoice), $invoice); |
|
| 139 | 139 | |
| 140 | - if ( is_wp_error( $response ) ) { |
|
| 140 | + if (is_wp_error($response)) { |
|
| 141 | 141 | return $response; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - update_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), $response->customerProfileId ); |
|
| 144 | + update_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), $response->customerProfileId); |
|
| 145 | 145 | |
| 146 | 146 | // Save the payment token. |
| 147 | - if ( $save ) { |
|
| 147 | + if ($save) { |
|
| 148 | 148 | $this->save_token( |
| 149 | 149 | array( |
| 150 | 150 | 'id' => $response->customerPaymentProfileIdList[0], |
| 151 | - 'name' => getpaid_get_card_name( $submission_data['authorizenet']['cc_number'] ) . '····' . substr( $submission_data['authorizenet']['cc_number'], -4 ), |
|
| 151 | + 'name' => getpaid_get_card_name($submission_data['authorizenet']['cc_number']) . '····' . substr($submission_data['authorizenet']['cc_number'], -4), |
|
| 152 | 152 | 'default' => true, |
| 153 | - 'type' => $this->is_sandbox( $invoice ) ? 'sandbox' : 'live', |
|
| 153 | + 'type' => $this->is_sandbox($invoice) ? 'sandbox' : 'live', |
|
| 154 | 154 | ) |
| 155 | 155 | ); |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | // Add a note about the validation response. |
| 159 | 159 | $invoice->add_note( |
| 160 | - sprintf( __( 'Created Authorize.NET customer profile: %s', 'invoicing' ), $response->validationDirectResponseList[0] ), |
|
| 160 | + sprintf(__('Created Authorize.NET customer profile: %s', 'invoicing'), $response->validationDirectResponseList[0]), |
|
| 161 | 161 | false, |
| 162 | 162 | false, |
| 163 | 163 | true |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | * @return string|WP_Error Profile id. |
| 175 | 175 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile |
| 176 | 176 | */ |
| 177 | - public function get_customer_profile( $profile_id ) { |
|
| 177 | + public function get_customer_profile($profile_id) { |
|
| 178 | 178 | |
| 179 | 179 | // Generate args. |
| 180 | 180 | $args = array( |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | ) |
| 185 | 185 | ); |
| 186 | 186 | |
| 187 | - return $this->post( $args, false ); |
|
| 187 | + return $this->post($args, false); |
|
| 188 | 188 | |
| 189 | 189 | } |
| 190 | 190 | |
@@ -199,18 +199,18 @@ discard block |
||
| 199 | 199 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
| 200 | 200 | * @return string|WP_Error Profile id. |
| 201 | 201 | */ |
| 202 | - public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
| 202 | + public function create_customer_payment_profile($customer_profile, $invoice, $submission_data, $save) { |
|
| 203 | 203 | |
| 204 | 204 | // Remove non-digits from the number |
| 205 | - $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
|
| 205 | + $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number']); |
|
| 206 | 206 | |
| 207 | 207 | // Prepare card details. |
| 208 | - $payment_information = $this->get_payment_information( $submission_data['authorizenet'] ); |
|
| 208 | + $payment_information = $this->get_payment_information($submission_data['authorizenet']); |
|
| 209 | 209 | |
| 210 | 210 | // Authorize.NET does not support saving the same card twice. |
| 211 | - $cached_information = $this->retrieve_payment_profile_from_cache( $payment_information, $customer_profile, $invoice ); |
|
| 211 | + $cached_information = $this->retrieve_payment_profile_from_cache($payment_information, $customer_profile, $invoice); |
|
| 212 | 212 | |
| 213 | - if ( $cached_information ) { |
|
| 213 | + if ($cached_information) { |
|
| 214 | 214 | return $cached_information; |
| 215 | 215 | } |
| 216 | 216 | |
@@ -223,45 +223,45 @@ discard block |
||
| 223 | 223 | |
| 224 | 224 | // Billing information. |
| 225 | 225 | 'billTo' => array( |
| 226 | - 'firstName' => getpaid_limit_length( $invoice->get_first_name(), 50 ), |
|
| 227 | - 'lastName' => getpaid_limit_length( $invoice->get_last_name(), 50 ), |
|
| 228 | - 'address' => getpaid_limit_length( $invoice->get_address(), 60 ), |
|
| 229 | - 'city' => getpaid_limit_length( $invoice->get_city(), 40 ), |
|
| 230 | - 'state' => getpaid_limit_length( $invoice->get_state(), 40 ), |
|
| 231 | - 'zip' => getpaid_limit_length( $invoice->get_zip(), 20 ), |
|
| 232 | - 'country' => getpaid_limit_length( $invoice->get_country(), 60 ), |
|
| 226 | + 'firstName' => getpaid_limit_length($invoice->get_first_name(), 50), |
|
| 227 | + 'lastName' => getpaid_limit_length($invoice->get_last_name(), 50), |
|
| 228 | + 'address' => getpaid_limit_length($invoice->get_address(), 60), |
|
| 229 | + 'city' => getpaid_limit_length($invoice->get_city(), 40), |
|
| 230 | + 'state' => getpaid_limit_length($invoice->get_state(), 40), |
|
| 231 | + 'zip' => getpaid_limit_length($invoice->get_zip(), 20), |
|
| 232 | + 'country' => getpaid_limit_length($invoice->get_country(), 60), |
|
| 233 | 233 | ), |
| 234 | 234 | |
| 235 | 235 | // Payment information. |
| 236 | 236 | 'payment' => $payment_information |
| 237 | 237 | ), |
| 238 | - 'validationMode' => $this->is_sandbox( $invoice ) ? 'testMode' : 'liveMode', |
|
| 238 | + 'validationMode' => $this->is_sandbox($invoice) ? 'testMode' : 'liveMode', |
|
| 239 | 239 | ) |
| 240 | 240 | ); |
| 241 | 241 | |
| 242 | - $response = $this->post( apply_filters( 'getpaid_authorizenet_create_customer_payment_profile_args', $args, $invoice ), $invoice ); |
|
| 242 | + $response = $this->post(apply_filters('getpaid_authorizenet_create_customer_payment_profile_args', $args, $invoice), $invoice); |
|
| 243 | 243 | |
| 244 | - if ( is_wp_error( $response ) ) { |
|
| 244 | + if (is_wp_error($response)) { |
|
| 245 | 245 | return $response; |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | 248 | // Save the payment token. |
| 249 | - if ( $save ) { |
|
| 249 | + if ($save) { |
|
| 250 | 250 | $this->save_token( |
| 251 | 251 | array( |
| 252 | 252 | 'id' => $response->customerPaymentProfileId, |
| 253 | - 'name' => getpaid_get_card_name( $submission_data['authorizenet']['cc_number'] ) . ' ···· ' . substr( $submission_data['authorizenet']['cc_number'], -4 ), |
|
| 253 | + 'name' => getpaid_get_card_name($submission_data['authorizenet']['cc_number']) . ' ···· ' . substr($submission_data['authorizenet']['cc_number'], -4), |
|
| 254 | 254 | 'default' => true |
| 255 | 255 | ) |
| 256 | 256 | ); |
| 257 | 257 | } |
| 258 | 258 | |
| 259 | 259 | // Cache payment profile id. |
| 260 | - $this->add_payment_profile_to_cache( $payment_information, $response->customerPaymentProfileId ); |
|
| 260 | + $this->add_payment_profile_to_cache($payment_information, $response->customerPaymentProfileId); |
|
| 261 | 261 | |
| 262 | 262 | // Add a note about the validation response. |
| 263 | 263 | $invoice->add_note( |
| 264 | - sprintf( __( 'Saved Authorize.NET payment profile: %s', 'invoicing' ), $response->validationDirectResponse ), |
|
| 264 | + sprintf(__('Saved Authorize.NET payment profile: %s', 'invoicing'), $response->validationDirectResponse), |
|
| 265 | 265 | false, |
| 266 | 266 | false, |
| 267 | 267 | true |
@@ -278,12 +278,12 @@ discard block |
||
| 278 | 278 | * @param array $payment_details. |
| 279 | 279 | * @return array|false Profile id. |
| 280 | 280 | */ |
| 281 | - public function retrieve_payment_profile_from_cache( $payment_details, $customer_profile, $invoice ) { |
|
| 281 | + public function retrieve_payment_profile_from_cache($payment_details, $customer_profile, $invoice) { |
|
| 282 | 282 | |
| 283 | - $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
|
| 284 | - $payment_details = hash_hmac( 'sha256', json_encode( $payment_details ), SECURE_AUTH_KEY ); |
|
| 283 | + $cached_information = get_option('getpaid_authorize_net_cached_profiles', array()); |
|
| 284 | + $payment_details = hash_hmac('sha256', json_encode($payment_details), SECURE_AUTH_KEY); |
|
| 285 | 285 | |
| 286 | - if ( ! is_array( $cached_information ) || ! array_key_exists( $payment_details, $cached_information ) ) { |
|
| 286 | + if (!is_array($cached_information) || !array_key_exists($payment_details, $cached_information)) { |
|
| 287 | 287 | return false; |
| 288 | 288 | } |
| 289 | 289 | |
@@ -292,13 +292,13 @@ discard block |
||
| 292 | 292 | 'getCustomerPaymentProfileRequest' => array( |
| 293 | 293 | 'merchantAuthentication' => $this->get_auth_params(), |
| 294 | 294 | 'customerProfileId' => $customer_profile, |
| 295 | - 'customerPaymentProfileId' => $cached_information[ $payment_details ], |
|
| 295 | + 'customerPaymentProfileId' => $cached_information[$payment_details], |
|
| 296 | 296 | ) |
| 297 | 297 | ); |
| 298 | 298 | |
| 299 | - $response = $this->post( $args, $invoice ); |
|
| 299 | + $response = $this->post($args, $invoice); |
|
| 300 | 300 | |
| 301 | - return is_wp_error( $response ) ? false : $cached_information[ $payment_details ]; |
|
| 301 | + return is_wp_error($response) ? false : $cached_information[$payment_details]; |
|
| 302 | 302 | |
| 303 | 303 | } |
| 304 | 304 | |
@@ -309,14 +309,14 @@ discard block |
||
| 309 | 309 | * @param array $payment_details. |
| 310 | 310 | * @param string $payment_profile_id. |
| 311 | 311 | */ |
| 312 | - public function add_payment_profile_to_cache( $payment_details, $payment_profile_id ) { |
|
| 312 | + public function add_payment_profile_to_cache($payment_details, $payment_profile_id) { |
|
| 313 | 313 | |
| 314 | - $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
|
| 315 | - $cached_information = is_array( $cached_information ) ? $cached_information : array(); |
|
| 316 | - $payment_details = hash_hmac( 'sha256', json_encode( $payment_details ), SECURE_AUTH_KEY ); |
|
| 314 | + $cached_information = get_option('getpaid_authorize_net_cached_profiles', array()); |
|
| 315 | + $cached_information = is_array($cached_information) ? $cached_information : array(); |
|
| 316 | + $payment_details = hash_hmac('sha256', json_encode($payment_details), SECURE_AUTH_KEY); |
|
| 317 | 317 | |
| 318 | - $cached_information[ $payment_details ] = $payment_profile_id; |
|
| 319 | - update_option( 'getpaid_authorize_net_cached_profiles', $cached_information ); |
|
| 318 | + $cached_information[$payment_details] = $payment_profile_id; |
|
| 319 | + update_option('getpaid_authorize_net_cached_profiles', $cached_information); |
|
| 320 | 320 | |
| 321 | 321 | } |
| 322 | 322 | |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | * @return string|WP_Error Profile id. |
| 330 | 330 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-payment-profile |
| 331 | 331 | */ |
| 332 | - public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
| 332 | + public function get_customer_payment_profile($customer_profile_id, $payment_profile_id) { |
|
| 333 | 333 | |
| 334 | 334 | // Generate args. |
| 335 | 335 | $args = array( |
@@ -340,7 +340,7 @@ discard block |
||
| 340 | 340 | ) |
| 341 | 341 | ); |
| 342 | 342 | |
| 343 | - return $this->post( $args, false ); |
|
| 343 | + return $this->post($args, false); |
|
| 344 | 344 | |
| 345 | 345 | } |
| 346 | 346 | |
@@ -353,7 +353,7 @@ discard block |
||
| 353 | 353 | * @link https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-customer-profile |
| 354 | 354 | * @return WP_Error|object |
| 355 | 355 | */ |
| 356 | - public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
| 356 | + public function charge_customer_payment_profile($customer_profile_id, $payment_profile_id, $invoice) { |
|
| 357 | 357 | |
| 358 | 358 | // Generate args. |
| 359 | 359 | $args = array( |
@@ -373,28 +373,28 @@ discard block |
||
| 373 | 373 | ) |
| 374 | 374 | ), |
| 375 | 375 | 'order' => array( |
| 376 | - 'invoiceNumber' => getpaid_limit_length( $invoice->get_number(), 20 ), |
|
| 376 | + 'invoiceNumber' => getpaid_limit_length($invoice->get_number(), 20), |
|
| 377 | 377 | ), |
| 378 | - 'lineItems' => array( 'lineItem' => $this->get_line_items( $invoice ) ), |
|
| 378 | + 'lineItems' => array('lineItem' => $this->get_line_items($invoice)), |
|
| 379 | 379 | 'tax' => array( |
| 380 | 380 | 'amount' => $invoice->get_total_tax(), |
| 381 | - 'name' => __( 'TAX', 'invoicing' ), |
|
| 381 | + 'name' => __('TAX', 'invoicing'), |
|
| 382 | 382 | ), |
| 383 | - 'poNumber' => getpaid_limit_length( $invoice->get_number(), 25 ), |
|
| 383 | + 'poNumber' => getpaid_limit_length($invoice->get_number(), 25), |
|
| 384 | 384 | 'customer' => array( |
| 385 | - 'id' => getpaid_limit_length( $invoice->get_user_id(), 25 ), |
|
| 386 | - 'email' => getpaid_limit_length( $invoice->get_email(), 25 ), |
|
| 385 | + 'id' => getpaid_limit_length($invoice->get_user_id(), 25), |
|
| 386 | + 'email' => getpaid_limit_length($invoice->get_email(), 25), |
|
| 387 | 387 | ), |
| 388 | 388 | 'customerIP' => $invoice->get_ip(), |
| 389 | 389 | ) |
| 390 | 390 | ) |
| 391 | 391 | ); |
| 392 | 392 | |
| 393 | - if ( 0 == $invoice->get_total_tax() ) { |
|
| 394 | - unset( $args['createTransactionRequest']['transactionRequest']['tax'] ); |
|
| 393 | + if (0 == $invoice->get_total_tax()) { |
|
| 394 | + unset($args['createTransactionRequest']['transactionRequest']['tax']); |
|
| 395 | 395 | } |
| 396 | 396 | |
| 397 | - return $this->post( apply_filters( 'getpaid_authorizenet_charge_customer_payment_profile_args', $args, $invoice ), $invoice ); |
|
| 397 | + return $this->post(apply_filters('getpaid_authorizenet_charge_customer_payment_profile_args', $args, $invoice), $invoice); |
|
| 398 | 398 | |
| 399 | 399 | } |
| 400 | 400 | |
@@ -404,29 +404,29 @@ discard block |
||
| 404 | 404 | * @param stdClass $result Api response. |
| 405 | 405 | * @param WPInv_Invoice $invoice Invoice. |
| 406 | 406 | */ |
| 407 | - public function process_charge_response( $result, $invoice ) { |
|
| 407 | + public function process_charge_response($result, $invoice) { |
|
| 408 | 408 | |
| 409 | 409 | wpinv_clear_errors(); |
| 410 | 410 | $response_code = (int) $result->transactionResponse->responseCode; |
| 411 | 411 | |
| 412 | 412 | // Succeeded. |
| 413 | - if ( 1 == $response_code || 4 == $response_code ) { |
|
| 413 | + if (1 == $response_code || 4 == $response_code) { |
|
| 414 | 414 | |
| 415 | 415 | // Maybe set a transaction id. |
| 416 | - if ( ! empty( $result->transactionResponse->transId ) ) { |
|
| 417 | - $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
| 416 | + if (!empty($result->transactionResponse->transId)) { |
|
| 417 | + $invoice->set_transaction_id($result->transactionResponse->transId); |
|
| 418 | 418 | } |
| 419 | 419 | |
| 420 | - $invoice->add_note( sprintf( __( 'Authentication code: %s (%s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
| 420 | + $invoice->add_note(sprintf(__('Authentication code: %s (%s).', 'invoicing'), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber), false, false, true); |
|
| 421 | 421 | |
| 422 | - if ( 1 == $response_code ) { |
|
| 422 | + if (1 == $response_code) { |
|
| 423 | 423 | return $invoice->mark_paid(); |
| 424 | 424 | } |
| 425 | 425 | |
| 426 | - $invoice->set_status( 'wpi-onhold' ); |
|
| 426 | + $invoice->set_status('wpi-onhold'); |
|
| 427 | 427 | $invoice->add_note( |
| 428 | 428 | sprintf( |
| 429 | - __( 'Held for review: %s', 'invoicing' ), |
|
| 429 | + __('Held for review: %s', 'invoicing'), |
|
| 430 | 430 | $result->transactionResponse->messages->message[0]->description |
| 431 | 431 | ) |
| 432 | 432 | ); |
@@ -435,11 +435,11 @@ discard block |
||
| 435 | 435 | |
| 436 | 436 | } |
| 437 | 437 | |
| 438 | - wpinv_set_error( 'card_declined', __( 'Credit card declined.', 'invoicing' ) ); |
|
| 438 | + wpinv_set_error('card_declined', __('Credit card declined.', 'invoicing')); |
|
| 439 | 439 | |
| 440 | - if ( ! empty( $result->transactionResponse->errors ) ) { |
|
| 440 | + if (!empty($result->transactionResponse->errors)) { |
|
| 441 | 441 | $errors = (object) $result->transactionResponse->errors; |
| 442 | - wpinv_set_error( $errors->error[0]->errorCode, esc_html( $errors->error[0]->errorText ) ); |
|
| 442 | + wpinv_set_error($errors->error[0]->errorCode, esc_html($errors->error[0]->errorText)); |
|
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | } |
@@ -451,10 +451,10 @@ discard block |
||
| 451 | 451 | * @param array $card Card details. |
| 452 | 452 | * @return array |
| 453 | 453 | */ |
| 454 | - public function get_payment_information( $card ) { |
|
| 454 | + public function get_payment_information($card) { |
|
| 455 | 455 | return array( |
| 456 | 456 | |
| 457 | - 'creditCard' => array ( |
|
| 457 | + 'creditCard' => array( |
|
| 458 | 458 | 'cardNumber' => $card['cc_number'], |
| 459 | 459 | 'expirationDate' => $card['cc_expire_year'] . '-' . $card['cc_expire_month'], |
| 460 | 460 | 'cardCode' => $card['cc_cvv2'], |
@@ -470,8 +470,8 @@ discard block |
||
| 470 | 470 | * @param WPInv_Invoice $invoice Invoice. |
| 471 | 471 | * @return string |
| 472 | 472 | */ |
| 473 | - public function get_customer_profile_meta_name( $invoice ) { |
|
| 474 | - return $this->is_sandbox( $invoice ) ? 'getpaid_authorizenet_sandbox_customer_profile_id' : 'getpaid_authorizenet_customer_profile_id'; |
|
| 473 | + public function get_customer_profile_meta_name($invoice) { |
|
| 474 | + return $this->is_sandbox($invoice) ? 'getpaid_authorizenet_sandbox_customer_profile_id' : 'getpaid_authorizenet_customer_profile_id'; |
|
| 475 | 475 | } |
| 476 | 476 | |
| 477 | 477 | /** |
@@ -482,34 +482,34 @@ discard block |
||
| 482 | 482 | * @param WPInv_Invoice $invoice |
| 483 | 483 | * @return WP_Error|string The payment profile id |
| 484 | 484 | */ |
| 485 | - public function validate_submission_data( $submission_data, $invoice ) { |
|
| 485 | + public function validate_submission_data($submission_data, $invoice) { |
|
| 486 | 486 | |
| 487 | 487 | // Validate authentication details. |
| 488 | 488 | $auth = $this->get_auth_params(); |
| 489 | 489 | |
| 490 | - if ( empty( $auth['name'] ) || empty( $auth['transactionKey'] ) ) { |
|
| 491 | - return new WP_Error( 'invalid_settings', __( 'Please set-up your login id and transaction key before using this gateway.', 'invoicing') ); |
|
| 490 | + if (empty($auth['name']) || empty($auth['transactionKey'])) { |
|
| 491 | + return new WP_Error('invalid_settings', __('Please set-up your login id and transaction key before using this gateway.', 'invoicing')); |
|
| 492 | 492 | } |
| 493 | 493 | |
| 494 | 494 | // Validate the payment method. |
| 495 | - if ( empty( $submission_data['getpaid-authorizenet-payment-method'] ) ) { |
|
| 496 | - return new WP_Error( 'invalid_payment_method', __( 'Please select a different payment method or add a new card.', 'invoicing') ); |
|
| 495 | + if (empty($submission_data['getpaid-authorizenet-payment-method'])) { |
|
| 496 | + return new WP_Error('invalid_payment_method', __('Please select a different payment method or add a new card.', 'invoicing')); |
|
| 497 | 497 | } |
| 498 | 498 | |
| 499 | 499 | // Are we adding a new payment method? |
| 500 | - if ( 'new' != $submission_data['getpaid-authorizenet-payment-method'] ) { |
|
| 500 | + if ('new' != $submission_data['getpaid-authorizenet-payment-method']) { |
|
| 501 | 501 | return $submission_data['getpaid-authorizenet-payment-method']; |
| 502 | 502 | } |
| 503 | 503 | |
| 504 | 504 | // Retrieve the customer profile id. |
| 505 | - $profile_id = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
| 505 | + $profile_id = get_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), true); |
|
| 506 | 506 | |
| 507 | 507 | // Create payment method. |
| 508 | - if ( empty( $profile_id ) ) { |
|
| 509 | - return $this->create_customer_profile( $invoice, $submission_data, ! empty( $submission_data['getpaid-authorizenet-new-payment-method'] ) ); |
|
| 508 | + if (empty($profile_id)) { |
|
| 509 | + return $this->create_customer_profile($invoice, $submission_data, !empty($submission_data['getpaid-authorizenet-new-payment-method'])); |
|
| 510 | 510 | } |
| 511 | 511 | |
| 512 | - return $this->create_customer_payment_profile( $profile_id, $invoice, $submission_data, ! empty( $submission_data['getpaid-authorizenet-new-payment-method'] ) ); |
|
| 512 | + return $this->create_customer_payment_profile($profile_id, $invoice, $submission_data, !empty($submission_data['getpaid-authorizenet-new-payment-method'])); |
|
| 513 | 513 | |
| 514 | 514 | } |
| 515 | 515 | |
@@ -520,32 +520,32 @@ discard block |
||
| 520 | 520 | * @param WPInv_Invoice $invoice Invoice. |
| 521 | 521 | * @return array |
| 522 | 522 | */ |
| 523 | - public function get_line_items( $invoice ) { |
|
| 523 | + public function get_line_items($invoice) { |
|
| 524 | 524 | $items = array(); |
| 525 | 525 | |
| 526 | - foreach ( $invoice->get_items() as $item ) { |
|
| 526 | + foreach ($invoice->get_items() as $item) { |
|
| 527 | 527 | |
| 528 | 528 | $amount = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
| 529 | 529 | $items[] = array( |
| 530 | - 'itemId' => getpaid_limit_length( $item->get_id(), 31 ), |
|
| 531 | - 'name' => getpaid_limit_length( $item->get_raw_name(), 31 ), |
|
| 532 | - 'description' => getpaid_limit_length( $item->get_description(), 255 ), |
|
| 533 | - 'quantity' => (string) ( $invoice->get_template() == 'amount' ? 1 : $item->get_quantity() ), |
|
| 530 | + 'itemId' => getpaid_limit_length($item->get_id(), 31), |
|
| 531 | + 'name' => getpaid_limit_length($item->get_raw_name(), 31), |
|
| 532 | + 'description' => getpaid_limit_length($item->get_description(), 255), |
|
| 533 | + 'quantity' => (string) ($invoice->get_template() == 'amount' ? 1 : $item->get_quantity()), |
|
| 534 | 534 | 'unitPrice' => (float) $amount, |
| 535 | 535 | 'taxable' => wpinv_use_taxes() && $invoice->is_taxable() && 'tax-exempt' != $item->get_vat_rule(), |
| 536 | 536 | ); |
| 537 | 537 | |
| 538 | 538 | } |
| 539 | 539 | |
| 540 | - foreach ( $invoice->get_fees() as $fee_name => $fee ) { |
|
| 540 | + foreach ($invoice->get_fees() as $fee_name => $fee) { |
|
| 541 | 541 | |
| 542 | - $amount = $invoice->is_renewal() ? $fee['recurring_fee'] : $fee['initial_fee']; |
|
| 542 | + $amount = $invoice->is_renewal() ? $fee['recurring_fee'] : $fee['initial_fee']; |
|
| 543 | 543 | |
| 544 | - if ( $amount > 0 ) { |
|
| 544 | + if ($amount > 0) { |
|
| 545 | 545 | $items[] = array( |
| 546 | - 'itemId' => getpaid_limit_length( $fee_name, 31 ), |
|
| 547 | - 'name' => getpaid_limit_length( $fee_name, 31 ), |
|
| 548 | - 'description' => getpaid_limit_length( $fee_name, 255 ), |
|
| 546 | + 'itemId' => getpaid_limit_length($fee_name, 31), |
|
| 547 | + 'name' => getpaid_limit_length($fee_name, 31), |
|
| 548 | + 'description' => getpaid_limit_length($fee_name, 255), |
|
| 549 | 549 | 'quantity' => '1', |
| 550 | 550 | 'unitPrice' => (float) $amount, |
| 551 | 551 | 'taxable' => false, |
@@ -566,36 +566,36 @@ discard block |
||
| 566 | 566 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
| 567 | 567 | * @return array |
| 568 | 568 | */ |
| 569 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 569 | + public function process_payment($invoice, $submission_data, $submission) { |
|
| 570 | 570 | |
| 571 | 571 | // Validate the submitted data. |
| 572 | - $payment_profile_id = $this->validate_submission_data( $submission_data, $invoice ); |
|
| 572 | + $payment_profile_id = $this->validate_submission_data($submission_data, $invoice); |
|
| 573 | 573 | |
| 574 | 574 | // Do we have an error? |
| 575 | - if ( is_wp_error( $payment_profile_id ) ) { |
|
| 576 | - wpinv_set_error( $payment_profile_id->get_error_code(), $payment_profile_id->get_error_message() ); |
|
| 577 | - wpinv_send_back_to_checkout( $invoice ); |
|
| 575 | + if (is_wp_error($payment_profile_id)) { |
|
| 576 | + wpinv_set_error($payment_profile_id->get_error_code(), $payment_profile_id->get_error_message()); |
|
| 577 | + wpinv_send_back_to_checkout($invoice); |
|
| 578 | 578 | } |
| 579 | 579 | |
| 580 | 580 | // Save the payment method to the order. |
| 581 | - update_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', $payment_profile_id ); |
|
| 581 | + update_post_meta($invoice->get_id(), 'getpaid_authorizenet_profile_id', $payment_profile_id); |
|
| 582 | 582 | |
| 583 | 583 | // Check if this is a subscription or not. |
| 584 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 585 | - if ( ! empty( $subscriptions ) ) { |
|
| 586 | - $this->process_subscription( $invoice, $subscriptions ); |
|
| 584 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
| 585 | + if (!empty($subscriptions)) { |
|
| 586 | + $this->process_subscription($invoice, $subscriptions); |
|
| 587 | 587 | } |
| 588 | 588 | |
| 589 | 589 | // If it is free, send to the success page. |
| 590 | - if ( ! $invoice->needs_payment() ) { |
|
| 590 | + if (!$invoice->needs_payment()) { |
|
| 591 | 591 | $invoice->mark_paid(); |
| 592 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
| 592 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
| 593 | 593 | } |
| 594 | 594 | |
| 595 | 595 | // Charge the payment profile. |
| 596 | - $this->process_initial_payment( $invoice ); |
|
| 596 | + $this->process_initial_payment($invoice); |
|
| 597 | 597 | |
| 598 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
| 598 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
| 599 | 599 | |
| 600 | 600 | exit; |
| 601 | 601 | |
@@ -606,23 +606,23 @@ discard block |
||
| 606 | 606 | * |
| 607 | 607 | * @param WPInv_Invoice $invoice Invoice. |
| 608 | 608 | */ |
| 609 | - protected function process_initial_payment( $invoice ) { |
|
| 609 | + protected function process_initial_payment($invoice) { |
|
| 610 | 610 | |
| 611 | - $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
| 612 | - $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
| 613 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
| 611 | + $payment_profile_id = get_post_meta($invoice->get_id(), 'getpaid_authorizenet_profile_id', true); |
|
| 612 | + $customer_profile = get_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), true); |
|
| 613 | + $result = $this->charge_customer_payment_profile($customer_profile, $payment_profile_id, $invoice); |
|
| 614 | 614 | |
| 615 | 615 | // Do we have an error? |
| 616 | - if ( is_wp_error( $result ) ) { |
|
| 617 | - wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
| 618 | - wpinv_send_back_to_checkout( $invoice ); |
|
| 616 | + if (is_wp_error($result)) { |
|
| 617 | + wpinv_set_error($result->get_error_code(), $result->get_error_message()); |
|
| 618 | + wpinv_send_back_to_checkout($invoice); |
|
| 619 | 619 | } |
| 620 | 620 | |
| 621 | 621 | // Process the response. |
| 622 | - $this->process_charge_response( $result, $invoice ); |
|
| 622 | + $this->process_charge_response($result, $invoice); |
|
| 623 | 623 | |
| 624 | - if ( wpinv_get_errors() ) { |
|
| 625 | - wpinv_send_back_to_checkout( $invoice ); |
|
| 624 | + if (wpinv_get_errors()) { |
|
| 625 | + wpinv_send_back_to_checkout($invoice); |
|
| 626 | 626 | } |
| 627 | 627 | |
| 628 | 628 | } |
@@ -633,30 +633,30 @@ discard block |
||
| 633 | 633 | * @param WPInv_Invoice $invoice Invoice. |
| 634 | 634 | * @param WPInv_Subscription[]|WPInv_Subscription $subscriptions Subscriptions. |
| 635 | 635 | */ |
| 636 | - public function process_subscription( $invoice, $subscriptions ) { |
|
| 636 | + public function process_subscription($invoice, $subscriptions) { |
|
| 637 | 637 | |
| 638 | 638 | // Check if there is an initial amount to charge. |
| 639 | - if ( (float) $invoice->get_total() > 0 ) { |
|
| 640 | - $this->process_initial_payment( $invoice ); |
|
| 639 | + if ((float) $invoice->get_total() > 0) { |
|
| 640 | + $this->process_initial_payment($invoice); |
|
| 641 | 641 | } |
| 642 | 642 | |
| 643 | 643 | // Activate the subscriptions. |
| 644 | - $subscriptions = is_array( $subscriptions ) ? $subscriptions : array( $subscriptions ); |
|
| 644 | + $subscriptions = is_array($subscriptions) ? $subscriptions : array($subscriptions); |
|
| 645 | 645 | |
| 646 | - foreach ( $subscriptions as $subscription ) { |
|
| 647 | - if ( $subscription->exists() ) { |
|
| 648 | - $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
|
| 649 | - $expiry = date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ); |
|
| 646 | + foreach ($subscriptions as $subscription) { |
|
| 647 | + if ($subscription->exists()) { |
|
| 648 | + $duration = strtotime($subscription->get_expiration()) - strtotime($subscription->get_date_created()); |
|
| 649 | + $expiry = date('Y-m-d H:i:s', (current_time('timestamp') + $duration)); |
|
| 650 | 650 | |
| 651 | - $subscription->set_next_renewal_date( $expiry ); |
|
| 652 | - $subscription->set_date_created( current_time( 'mysql' ) ); |
|
| 653 | - $subscription->set_profile_id( $invoice->generate_key( 'authnet_sub_' . $invoice->get_id() . '_' . $subscription->get_id() ) ); |
|
| 651 | + $subscription->set_next_renewal_date($expiry); |
|
| 652 | + $subscription->set_date_created(current_time('mysql')); |
|
| 653 | + $subscription->set_profile_id($invoice->generate_key('authnet_sub_' . $invoice->get_id() . '_' . $subscription->get_id())); |
|
| 654 | 654 | $subscription->activate(); |
| 655 | 655 | } |
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | // Redirect to the success page. |
| 659 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
| 659 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
| 660 | 660 | |
| 661 | 661 | } |
| 662 | 662 | |
@@ -667,20 +667,20 @@ discard block |
||
| 667 | 667 | * @param bool $should_expire |
| 668 | 668 | * @param WPInv_Subscription $subscription |
| 669 | 669 | */ |
| 670 | - public function maybe_renew_subscription( $should_expire, $subscription ) { |
|
| 670 | + public function maybe_renew_subscription($should_expire, $subscription) { |
|
| 671 | 671 | |
| 672 | 672 | // Ensure its our subscription && it's active. |
| 673 | - if ( $this->id != $subscription->get_gateway() || ! $subscription->has_status( 'active trialling' ) ) { |
|
| 673 | + if ($this->id != $subscription->get_gateway() || !$subscription->has_status('active trialling')) { |
|
| 674 | 674 | return $should_expire; |
| 675 | 675 | } |
| 676 | 676 | |
| 677 | 677 | // If this is the last renewal, complete the subscription. |
| 678 | - if ( $subscription->is_last_renewal() ) { |
|
| 678 | + if ($subscription->is_last_renewal()) { |
|
| 679 | 679 | $subscription->complete(); |
| 680 | 680 | return false; |
| 681 | 681 | } |
| 682 | 682 | |
| 683 | - $this->renew_subscription( $subscription ); |
|
| 683 | + $this->renew_subscription($subscription); |
|
| 684 | 684 | |
| 685 | 685 | return false; |
| 686 | 686 | |
@@ -691,28 +691,28 @@ discard block |
||
| 691 | 691 | * |
| 692 | 692 | * @param WPInv_Subscription $subscription |
| 693 | 693 | */ |
| 694 | - public function renew_subscription( $subscription ) { |
|
| 694 | + public function renew_subscription($subscription) { |
|
| 695 | 695 | |
| 696 | 696 | // Generate the renewal invoice. |
| 697 | 697 | $new_invoice = $subscription->create_payment(); |
| 698 | 698 | $old_invoice = $subscription->get_parent_payment(); |
| 699 | 699 | |
| 700 | - if ( empty( $new_invoice ) ) { |
|
| 701 | - $old_invoice->add_note( __( 'Error generating a renewal invoice.', 'invoicing' ), false, false, false ); |
|
| 700 | + if (empty($new_invoice)) { |
|
| 701 | + $old_invoice->add_note(__('Error generating a renewal invoice.', 'invoicing'), false, false, false); |
|
| 702 | 702 | $subscription->failing(); |
| 703 | 703 | return; |
| 704 | 704 | } |
| 705 | 705 | |
| 706 | 706 | // Charge the payment method. |
| 707 | - $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
| 708 | - $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
| 709 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
| 707 | + $payment_profile_id = get_post_meta($old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true); |
|
| 708 | + $customer_profile = get_user_meta($old_invoice->get_user_id(), $this->get_customer_profile_meta_name($old_invoice), true); |
|
| 709 | + $result = $this->charge_customer_payment_profile($customer_profile, $payment_profile_id, $new_invoice); |
|
| 710 | 710 | |
| 711 | 711 | // Do we have an error? |
| 712 | - if ( is_wp_error( $result ) ) { |
|
| 712 | + if (is_wp_error($result)) { |
|
| 713 | 713 | |
| 714 | 714 | $old_invoice->add_note( |
| 715 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
| 715 | + sprintf(__('Error renewing subscription : ( %s ).', 'invoicing'), $result->get_error_message()), |
|
| 716 | 716 | true, |
| 717 | 717 | false, |
| 718 | 718 | true |
@@ -723,12 +723,12 @@ discard block |
||
| 723 | 723 | } |
| 724 | 724 | |
| 725 | 725 | // Process the response. |
| 726 | - $this->process_charge_response( $result, $new_invoice ); |
|
| 726 | + $this->process_charge_response($result, $new_invoice); |
|
| 727 | 727 | |
| 728 | - if ( wpinv_get_errors() ) { |
|
| 728 | + if (wpinv_get_errors()) { |
|
| 729 | 729 | |
| 730 | 730 | $old_invoice->add_note( |
| 731 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
| 731 | + sprintf(__('Error renewing subscription : ( %s ).', 'invoicing'), getpaid_get_errors_html()), |
|
| 732 | 732 | true, |
| 733 | 733 | false, |
| 734 | 734 | true |
@@ -738,7 +738,7 @@ discard block |
||
| 738 | 738 | |
| 739 | 739 | } |
| 740 | 740 | |
| 741 | - $subscription->add_payment( array(), $new_invoice ); |
|
| 741 | + $subscription->add_payment(array(), $new_invoice); |
|
| 742 | 742 | $subscription->renew(); |
| 743 | 743 | } |
| 744 | 744 | |
@@ -749,34 +749,34 @@ discard block |
||
| 749 | 749 | * @param GetPaid_Form_Item[] $items |
| 750 | 750 | * @return WPInv_Invoice |
| 751 | 751 | */ |
| 752 | - public function process_addons( $invoice, $items ) { |
|
| 752 | + public function process_addons($invoice, $items) { |
|
| 753 | 753 | |
| 754 | 754 | global $getpaid_authorize_addons; |
| 755 | 755 | |
| 756 | 756 | $getpaid_authorize_addons = array(); |
| 757 | - foreach ( $items as $item ) { |
|
| 757 | + foreach ($items as $item) { |
|
| 758 | 758 | |
| 759 | - if ( is_null( $invoice->get_item( $item->get_id() ) ) && ! is_wp_error( $invoice->add_item( $item ) ) ) { |
|
| 759 | + if (is_null($invoice->get_item($item->get_id())) && !is_wp_error($invoice->add_item($item))) { |
|
| 760 | 760 | $getpaid_authorize_addons[] = $item; |
| 761 | 761 | } |
| 762 | 762 | |
| 763 | 763 | } |
| 764 | 764 | |
| 765 | - if ( empty( $getpaid_authorize_addons ) ) { |
|
| 765 | + if (empty($getpaid_authorize_addons)) { |
|
| 766 | 766 | return; |
| 767 | 767 | } |
| 768 | 768 | |
| 769 | 769 | $invoice->recalculate_total(); |
| 770 | 770 | |
| 771 | - $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
| 772 | - $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
| 771 | + $payment_profile_id = get_post_meta($invoice->get_id(), 'getpaid_authorizenet_profile_id', true); |
|
| 772 | + $customer_profile = get_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), true); |
|
| 773 | 773 | |
| 774 | - add_filter( 'getpaid_authorizenet_charge_customer_payment_profile_args', array( $this, 'filter_addons_request' ), 10, 2 ); |
|
| 775 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
| 776 | - remove_filter( 'getpaid_authorizenet_charge_customer_payment_profile_args', array( $this, 'filter_addons_request' ) ); |
|
| 774 | + add_filter('getpaid_authorizenet_charge_customer_payment_profile_args', array($this, 'filter_addons_request'), 10, 2); |
|
| 775 | + $result = $this->charge_customer_payment_profile($customer_profile, $payment_profile_id, $invoice); |
|
| 776 | + remove_filter('getpaid_authorizenet_charge_customer_payment_profile_args', array($this, 'filter_addons_request')); |
|
| 777 | 777 | |
| 778 | - if ( is_wp_error( $result ) ) { |
|
| 779 | - wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
| 778 | + if (is_wp_error($result)) { |
|
| 779 | + wpinv_set_error($result->get_error_code(), $result->get_error_message()); |
|
| 780 | 780 | return; |
| 781 | 781 | } |
| 782 | 782 | |
@@ -789,19 +789,19 @@ discard block |
||
| 789 | 789 | * @param array $args |
| 790 | 790 | * @return array |
| 791 | 791 | */ |
| 792 | - public function filter_addons_request( $args ) { |
|
| 792 | + public function filter_addons_request($args) { |
|
| 793 | 793 | |
| 794 | 794 | global $getpaid_authorize_addons; |
| 795 | 795 | $total = 0; |
| 796 | 796 | |
| 797 | - foreach ( $getpaid_authorize_addons as $addon ) { |
|
| 797 | + foreach ($getpaid_authorize_addons as $addon) { |
|
| 798 | 798 | $total += $addon->get_sub_total(); |
| 799 | 799 | } |
| 800 | 800 | |
| 801 | 801 | $args['createTransactionRequest']['transactionRequest']['amount'] = $total; |
| 802 | 802 | |
| 803 | - if ( isset( $args['createTransactionRequest']['transactionRequest']['tax'] ) ) { |
|
| 804 | - unset( $args['createTransactionRequest']['transactionRequest']['tax'] ); |
|
| 803 | + if (isset($args['createTransactionRequest']['transactionRequest']['tax'])) { |
|
| 804 | + unset($args['createTransactionRequest']['transactionRequest']['tax']); |
|
| 805 | 805 | } |
| 806 | 806 | |
| 807 | 807 | return $args; |
@@ -814,7 +814,7 @@ discard block |
||
| 814 | 814 | public function sandbox_notice() { |
| 815 | 815 | |
| 816 | 816 | return sprintf( |
| 817 | - __( 'SANDBOX ENABLED. You can use sandbox testing details only. See the %sAuthorize.NET Sandbox Testing Guide%s for more details.', 'invoicing' ), |
|
| 817 | + __('SANDBOX ENABLED. You can use sandbox testing details only. See the %sAuthorize.NET Sandbox Testing Guide%s for more details.', 'invoicing'), |
|
| 818 | 818 | '<a href="https://developer.authorize.net/hello_world/testing_guide.html">', |
| 819 | 819 | '</a>' |
| 820 | 820 | ); |
@@ -826,42 +826,42 @@ discard block |
||
| 826 | 826 | * |
| 827 | 827 | * @param array $admin_settings |
| 828 | 828 | */ |
| 829 | - public function admin_settings( $admin_settings ) { |
|
| 829 | + public function admin_settings($admin_settings) { |
|
| 830 | 830 | |
| 831 | 831 | $currencies = sprintf( |
| 832 | - __( 'Supported Currencies: %s', 'invoicing' ), |
|
| 833 | - implode( ', ', $this->currencies ) |
|
| 832 | + __('Supported Currencies: %s', 'invoicing'), |
|
| 833 | + implode(', ', $this->currencies) |
|
| 834 | 834 | ); |
| 835 | 835 | |
| 836 | 836 | $admin_settings['authorizenet_active']['desc'] .= " ($currencies)"; |
| 837 | - $admin_settings['authorizenet_desc']['std'] = __( 'Pay securely using your credit or debit card.', 'invoicing' ); |
|
| 837 | + $admin_settings['authorizenet_desc']['std'] = __('Pay securely using your credit or debit card.', 'invoicing'); |
|
| 838 | 838 | |
| 839 | 839 | $admin_settings['authorizenet_login_id'] = array( |
| 840 | 840 | 'type' => 'text', |
| 841 | 841 | 'id' => 'authorizenet_login_id', |
| 842 | - 'name' => __( 'API Login ID', 'invoicing' ), |
|
| 843 | - 'desc' => '<a href="https://support.authorize.net/s/article/How-do-I-obtain-my-API-Login-ID-and-Transaction-Key"><em>' . __( 'How do I obtain my API Login ID and Transaction Key?', 'invoicing' ) . '</em></a>', |
|
| 842 | + 'name' => __('API Login ID', 'invoicing'), |
|
| 843 | + 'desc' => '<a href="https://support.authorize.net/s/article/How-do-I-obtain-my-API-Login-ID-and-Transaction-Key"><em>' . __('How do I obtain my API Login ID and Transaction Key?', 'invoicing') . '</em></a>', |
|
| 844 | 844 | ); |
| 845 | 845 | |
| 846 | 846 | $admin_settings['authorizenet_transaction_key'] = array( |
| 847 | 847 | 'type' => 'text', |
| 848 | 848 | 'id' => 'authorizenet_transaction_key', |
| 849 | - 'name' => __( 'Transaction Key', 'invoicing' ), |
|
| 849 | + 'name' => __('Transaction Key', 'invoicing'), |
|
| 850 | 850 | ); |
| 851 | 851 | |
| 852 | 852 | $admin_settings['authorizenet_signature_key'] = array( |
| 853 | 853 | 'type' => 'text', |
| 854 | 854 | 'id' => 'authorizenet_signature_key', |
| 855 | - 'name' => __( 'Signature Key', 'invoicing' ), |
|
| 856 | - 'desc' => '<a href="https://support.authorize.net/s/article/What-is-a-Signature-Key"><em>' . __( 'Learn more.', 'invoicing' ) . '</em></a>', |
|
| 855 | + 'name' => __('Signature Key', 'invoicing'), |
|
| 856 | + 'desc' => '<a href="https://support.authorize.net/s/article/What-is-a-Signature-Key"><em>' . __('Learn more.', 'invoicing') . '</em></a>', |
|
| 857 | 857 | ); |
| 858 | 858 | |
| 859 | 859 | $admin_settings['authorizenet_ipn_url'] = array( |
| 860 | 860 | 'type' => 'ipn_url', |
| 861 | 861 | 'id' => 'authorizenet_ipn_url', |
| 862 | - 'name' => __( 'Webhook URL', 'invoicing' ), |
|
| 862 | + 'name' => __('Webhook URL', 'invoicing'), |
|
| 863 | 863 | 'std' => $this->notify_url, |
| 864 | - 'desc' => __( 'Create a new webhook using this URL as the endpoint URL and set it to receive all payment events.', 'invoicing' ) . ' <a href="https://support.authorize.net/s/article/How-do-I-add-edit-Webhook-notification-end-points"><em>' . __( 'Learn more.', 'invoicing' ) . '</em></a>', |
|
| 864 | + 'desc' => __('Create a new webhook using this URL as the endpoint URL and set it to receive all payment events.', 'invoicing') . ' <a href="https://support.authorize.net/s/article/How-do-I-add-edit-Webhook-notification-end-points"><em>' . __('Learn more.', 'invoicing') . '</em></a>', |
|
| 865 | 865 | 'custom' => 'authorizenet', |
| 866 | 866 | 'readonly' => true, |
| 867 | 867 | ); |