@@ -15,31 +15,31 @@ discard block |
||
| 15 | 15 | abstract class GetPaid_Authorize_Net_Legacy_Gateway extends GetPaid_Payment_Gateway { |
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | - * Class constructor. |
|
| 19 | - */ |
|
| 20 | - public function __construct() { |
|
| 18 | + * Class constructor. |
|
| 19 | + */ |
|
| 20 | + public function __construct() { |
|
| 21 | 21 | parent::__construct(); |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | - * Returns the API URL. |
|
| 26 | - * |
|
| 27 | - * |
|
| 28 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 29 | - * @return string |
|
| 30 | - */ |
|
| 31 | - public function get_api_url( $invoice ) { |
|
| 25 | + * Returns the API URL. |
|
| 26 | + * |
|
| 27 | + * |
|
| 28 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 29 | + * @return string |
|
| 30 | + */ |
|
| 31 | + public function get_api_url( $invoice ) { |
|
| 32 | 32 | return $this->is_sandbox( $invoice ) ? 'https://apitest.authorize.net/xml/v1/request.api' : 'https://api.authorize.net/xml/v1/request.api'; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | - * Communicates with authorize.net |
|
| 37 | - * |
|
| 38 | - * |
|
| 39 | - * @param array $post Data to post. |
|
| 36 | + * Communicates with authorize.net |
|
| 37 | + * |
|
| 38 | + * |
|
| 39 | + * @param array $post Data to post. |
|
| 40 | 40 | * @param WPInv_Invoice $invoice Invoice. |
| 41 | - * @return stdClass|WP_Error |
|
| 42 | - */ |
|
| 41 | + * @return stdClass|WP_Error |
|
| 42 | + */ |
|
| 43 | 43 | public function post( $post, $invoice ){ |
| 44 | 44 | |
| 45 | 45 | $url = $this->get_api_url( $invoice ); |
@@ -89,12 +89,12 @@ discard block |
||
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | - * Returns the API authentication params. |
|
| 93 | - * |
|
| 94 | - * |
|
| 95 | - * @return array |
|
| 96 | - */ |
|
| 97 | - public function get_auth_params() { |
|
| 92 | + * Returns the API authentication params. |
|
| 93 | + * |
|
| 94 | + * |
|
| 95 | + * @return array |
|
| 96 | + */ |
|
| 97 | + public function get_auth_params() { |
|
| 98 | 98 | |
| 99 | 99 | return array( |
| 100 | 100 | 'name' => $this->get_option( 'login_id' ), |
@@ -104,13 +104,13 @@ discard block |
||
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
| 107 | - * Cancels a subscription remotely |
|
| 108 | - * |
|
| 109 | - * |
|
| 110 | - * @param WPInv_Subscription $subscription Subscription. |
|
| 107 | + * Cancels a subscription remotely |
|
| 108 | + * |
|
| 109 | + * |
|
| 110 | + * @param WPInv_Subscription $subscription Subscription. |
|
| 111 | 111 | * @param WPInv_Invoice $invoice Invoice. |
| 112 | - */ |
|
| 113 | - public function cancel_subscription( $subscription, $invoice ) { |
|
| 112 | + */ |
|
| 113 | + public function cancel_subscription( $subscription, $invoice ) { |
|
| 114 | 114 | |
| 115 | 115 | // Backwards compatibility. New version do not use authorize.net subscriptions. |
| 116 | 116 | $this->post( |
@@ -126,17 +126,17 @@ discard block |
||
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
| 129 | - * Processes ipns. |
|
| 130 | - * |
|
| 131 | - * @return void |
|
| 132 | - */ |
|
| 133 | - public function verify_ipn() { |
|
| 129 | + * Processes ipns. |
|
| 130 | + * |
|
| 131 | + * @return void |
|
| 132 | + */ |
|
| 133 | + public function verify_ipn() { |
|
| 134 | 134 | |
| 135 | 135 | $this->maybe_process_old_ipn(); |
| 136 | 136 | |
| 137 | 137 | // Validate the IPN. |
| 138 | 138 | if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
| 139 | - wp_die( 'Authorize.NET IPN Request Failure', 'Authorize.NET IPN', array( 'response' => 200 ) ); |
|
| 139 | + wp_die( 'Authorize.NET IPN Request Failure', 'Authorize.NET IPN', array( 'response' => 200 ) ); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | // Event type. |
@@ -175,24 +175,24 @@ discard block |
||
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
| 178 | - * Validates IPN invoices. |
|
| 179 | - * |
|
| 178 | + * Validates IPN invoices. |
|
| 179 | + * |
|
| 180 | 180 | * @param WPInv_Invoice $invoice |
| 181 | 181 | * @param object $payload |
| 182 | - * @return void |
|
| 183 | - */ |
|
| 184 | - public function validate_ipn_invoice( $invoice, $payload ) { |
|
| 182 | + * @return void |
|
| 183 | + */ |
|
| 184 | + public function validate_ipn_invoice( $invoice, $payload ) { |
|
| 185 | 185 | if ( ! $invoice->exists() || $payload->id != $invoice->get_transaction_id() ) { |
| 186 | 186 | exit; |
| 187 | 187 | } |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | 190 | /** |
| 191 | - * Process subscriptio IPNS. |
|
| 192 | - * |
|
| 193 | - * @return void |
|
| 194 | - */ |
|
| 195 | - public function maybe_process_old_ipn() { |
|
| 191 | + * Process subscriptio IPNS. |
|
| 192 | + * |
|
| 193 | + * @return void |
|
| 194 | + */ |
|
| 195 | + public function maybe_process_old_ipn() { |
|
| 196 | 196 | |
| 197 | 197 | $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
| 198 | 198 | |
@@ -234,11 +234,11 @@ discard block |
||
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | /** |
| 237 | - * Validates the old IPN signature. |
|
| 237 | + * Validates the old IPN signature. |
|
| 238 | 238 | * |
| 239 | 239 | * @param array $posted |
| 240 | - */ |
|
| 241 | - public function validate_old_ipn_signature( $posted ) { |
|
| 240 | + */ |
|
| 241 | + public function validate_old_ipn_signature( $posted ) { |
|
| 242 | 242 | |
| 243 | 243 | $signature = $this->get_option( 'signature_key' ); |
| 244 | 244 | if ( ! empty( $signature ) ) { |
@@ -257,9 +257,9 @@ discard block |
||
| 257 | 257 | } |
| 258 | 258 | |
| 259 | 259 | /** |
| 260 | - * Check Authorize.NET IPN validity. |
|
| 261 | - */ |
|
| 262 | - public function validate_ipn() { |
|
| 260 | + * Check Authorize.NET IPN validity. |
|
| 261 | + */ |
|
| 262 | + public function validate_ipn() { |
|
| 263 | 263 | |
| 264 | 264 | wpinv_error_log( 'Validating Authorize.NET IPN response' ); |
| 265 | 265 | |
@@ -12,58 +12,58 @@ |
||
| 12 | 12 | $label = empty( $label ) ? '' : wp_kses_post( $label ); |
| 13 | 13 | $label_class = sanitize_key( preg_replace( '/[^A-Za-z0-9_-]/', '-', $label ) ); |
| 14 | 14 | if ( ! empty( $required ) ) { |
| 15 | - $label .= "<span class='text-danger'> *</span>"; |
|
| 15 | + $label .= "<span class='text-danger'> *</span>"; |
|
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | $disable_dates = array(); |
| 19 | 19 | |
| 20 | 20 | if ( ! empty( $disabled_dates ) ) { |
| 21 | - $disabled_dates = preg_replace( '/\s+/', '', $disabled_dates ); |
|
| 22 | - $disabled_dates = str_ireplace( 'today', current_time( 'Y-m-d' ), $disabled_dates ); |
|
| 23 | - $disabled_dates = array_filter( explode( ',', $disabled_dates ) ); |
|
| 21 | + $disabled_dates = preg_replace( '/\s+/', '', $disabled_dates ); |
|
| 22 | + $disabled_dates = str_ireplace( 'today', current_time( 'Y-m-d' ), $disabled_dates ); |
|
| 23 | + $disabled_dates = array_filter( explode( ',', $disabled_dates ) ); |
|
| 24 | 24 | |
| 25 | - foreach ( $disabled_dates as $disabled_date ) { |
|
| 25 | + foreach ( $disabled_dates as $disabled_date ) { |
|
| 26 | 26 | |
| 27 | - $disabled_date = trim( $disabled_date ); |
|
| 27 | + $disabled_date = trim( $disabled_date ); |
|
| 28 | 28 | |
| 29 | - if ( false === strpos( $disabled_date, '|' ) ) { |
|
| 30 | - $disable_dates[] = $disabled_date; |
|
| 31 | - continue; |
|
| 32 | - } |
|
| 29 | + if ( false === strpos( $disabled_date, '|' ) ) { |
|
| 30 | + $disable_dates[] = $disabled_date; |
|
| 31 | + continue; |
|
| 32 | + } |
|
| 33 | 33 | |
| 34 | - $disabled_date = explode( '|', $disabled_date ); |
|
| 35 | - $disable_dates[] = array( |
|
| 36 | - 'from' => trim( $disabled_date[0] ), |
|
| 37 | - 'to' => trim( $disabled_date[1] ), |
|
| 38 | - ); |
|
| 34 | + $disabled_date = explode( '|', $disabled_date ); |
|
| 35 | + $disable_dates[] = array( |
|
| 36 | + 'from' => trim( $disabled_date[0] ), |
|
| 37 | + 'to' => trim( $disabled_date[1] ), |
|
| 38 | + ); |
|
| 39 | 39 | |
| 40 | - } |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | $options = array( |
| 45 | - 'data-default-date' => empty( 'default_date' ) ? false : $default_date, |
|
| 46 | - 'data-min-date' => empty( 'min_date' ) ? false : $min_date, |
|
| 47 | - 'data-max-date' => empty( 'max_date' ) ? false : $max_date, |
|
| 48 | - 'data-mode' => empty( 'mode' ) ? 'single' : $mode, |
|
| 49 | - 'data-alt-format' => get_option( 'date_format', 'F j, Y' ), |
|
| 50 | - 'data-date-format' => 'Y-m-d', |
|
| 51 | - 'data-alt-input' => 'true', |
|
| 52 | - 'data-disable_alt' => empty( $disabled_dates ) ? false : wp_json_encode( $disable_dates ), |
|
| 53 | - 'data-disable_days_alt' => empty( $disable_days ) ? false : wp_json_encode( wp_parse_id_list( $disable_days ) ), |
|
| 45 | + 'data-default-date' => empty( 'default_date' ) ? false : $default_date, |
|
| 46 | + 'data-min-date' => empty( 'min_date' ) ? false : $min_date, |
|
| 47 | + 'data-max-date' => empty( 'max_date' ) ? false : $max_date, |
|
| 48 | + 'data-mode' => empty( 'mode' ) ? 'single' : $mode, |
|
| 49 | + 'data-alt-format' => get_option( 'date_format', 'F j, Y' ), |
|
| 50 | + 'data-date-format' => 'Y-m-d', |
|
| 51 | + 'data-alt-input' => 'true', |
|
| 52 | + 'data-disable_alt' => empty( $disabled_dates ) ? false : wp_json_encode( $disable_dates ), |
|
| 53 | + 'data-disable_days_alt' => empty( $disable_days ) ? false : wp_json_encode( wp_parse_id_list( $disable_days ) ), |
|
| 54 | 54 | ); |
| 55 | 55 | |
| 56 | 56 | echo aui()->input( |
| 57 | - array( |
|
| 58 | - 'name' => esc_attr( $id ), |
|
| 59 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 60 | - 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 61 | - 'required' => ! empty( $required ), |
|
| 62 | - 'label' => $label, |
|
| 63 | - 'label_type' => 'vertical', |
|
| 64 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 65 | - 'type' => 'datepicker', |
|
| 66 | - 'class' => $label_class . ' getpaid-init-flatpickr flatpickr-input', |
|
| 67 | - 'extra_attributes' => array_filter( apply_filters( 'getpaid_date_field_attributes', $options ) ), |
|
| 68 | - ) |
|
| 57 | + array( |
|
| 58 | + 'name' => esc_attr( $id ), |
|
| 59 | + 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
| 60 | + 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 61 | + 'required' => ! empty( $required ), |
|
| 62 | + 'label' => $label, |
|
| 63 | + 'label_type' => 'vertical', |
|
| 64 | + 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 65 | + 'type' => 'datepicker', |
|
| 66 | + 'class' => $label_class . ' getpaid-init-flatpickr flatpickr-input', |
|
| 67 | + 'extra_attributes' => array_filter( apply_filters( 'getpaid_date_field_attributes', $options ) ), |
|
| 68 | + ) |
|
| 69 | 69 | ); |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 8 | - exit; |
|
| 8 | + exit; |
|
| 9 | 9 | } |
| 10 | 10 | |
| 11 | 11 | /** |
@@ -15,544 +15,544 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | class GetPaid_Invoice_Data_Store extends GetPaid_Data_Store_WP { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Data stored in meta keys, but not considered "meta" for a discount. |
|
| 20 | - * |
|
| 21 | - * @since 1.0.19 |
|
| 22 | - * @var array |
|
| 23 | - */ |
|
| 24 | - protected $internal_meta_keys = array( |
|
| 25 | - '_wpinv_subscr_profile_id', |
|
| 26 | - '_wpinv_subscription_id', |
|
| 27 | - '_wpinv_taxes', |
|
| 28 | - '_wpinv_fees', |
|
| 29 | - '_wpinv_discounts', |
|
| 30 | - '_wpinv_submission_id', |
|
| 31 | - '_wpinv_payment_form', |
|
| 32 | - '_wpinv_is_viewed', |
|
| 33 | - '_wpinv_phone', |
|
| 34 | - '_wpinv_company_id', |
|
| 35 | - 'wpinv_shipping', |
|
| 36 | - 'wpinv_email_cc', |
|
| 37 | - 'wpinv_template', |
|
| 38 | - 'wpinv_created_via' |
|
| 39 | - ); |
|
| 40 | - |
|
| 41 | - /** |
|
| 42 | - * A map of meta keys to data props. |
|
| 43 | - * |
|
| 44 | - * @since 1.0.19 |
|
| 45 | - * |
|
| 46 | - * @var array |
|
| 47 | - */ |
|
| 48 | - protected $meta_key_to_props = array( |
|
| 49 | - '_wpinv_subscr_profile_id' => 'remote_subscription_id', |
|
| 50 | - '_wpinv_subscription_id' => 'subscription_id', |
|
| 51 | - '_wpinv_taxes' => 'taxes', |
|
| 52 | - '_wpinv_fees' => 'fees', |
|
| 53 | - '_wpinv_discounts' => 'discounts', |
|
| 54 | - '_wpinv_submission_id' => 'submission_id', |
|
| 55 | - '_wpinv_payment_form' => 'payment_form', |
|
| 56 | - '_wpinv_is_viewed' => 'is_viewed', |
|
| 57 | - 'wpinv_email_cc' => 'email_cc', |
|
| 58 | - 'wpinv_template' => 'template', |
|
| 59 | - 'wpinv_created_via' => 'created_via', |
|
| 60 | - '_wpinv_phone' => 'phone', |
|
| 61 | - '_wpinv_company_id' => 'company_id', |
|
| 62 | - 'wpinv_shipping' => 'shipping', |
|
| 63 | - ); |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * A map of database fields to data props. |
|
| 67 | - * |
|
| 68 | - * @since 1.0.19 |
|
| 69 | - * |
|
| 70 | - * @var array |
|
| 71 | - */ |
|
| 72 | - protected $database_fields_to_props = array( |
|
| 73 | - 'post_id' => 'id', |
|
| 74 | - 'number' => 'number', |
|
| 75 | - 'currency' => 'currency', |
|
| 76 | - 'key' => 'key', |
|
| 77 | - 'type' => 'type', |
|
| 78 | - 'mode' => 'mode', |
|
| 79 | - 'user_ip' => 'user_ip', |
|
| 80 | - 'first_name' => 'first_name', |
|
| 81 | - 'last_name' => 'last_name', |
|
| 82 | - 'address' => 'address', |
|
| 83 | - 'city' => 'city', |
|
| 84 | - 'state' => 'state', |
|
| 85 | - 'country' => 'country', |
|
| 86 | - 'zip' => 'zip', |
|
| 87 | - 'zip' => 'zip', |
|
| 88 | - 'adddress_confirmed' => 'address_confirmed', |
|
| 89 | - 'gateway' => 'gateway', |
|
| 90 | - 'transaction_id' => 'transaction_id', |
|
| 91 | - 'currency' => 'currency', |
|
| 92 | - 'subtotal' => 'subtotal', |
|
| 93 | - 'tax' => 'total_tax', |
|
| 94 | - 'fees_total' => 'total_fees', |
|
| 95 | - 'discount' => 'total_discount', |
|
| 96 | - 'total' => 'total', |
|
| 97 | - 'discount_code' => 'discount_code', |
|
| 98 | - 'disable_taxes' => 'disable_taxes', |
|
| 99 | - 'due_date' => 'due_date', |
|
| 100 | - 'completed_date' => 'completed_date', |
|
| 101 | - 'company' => 'company', |
|
| 102 | - 'vat_number' => 'vat_number', |
|
| 103 | - 'vat_rate' => 'vat_rate', |
|
| 104 | - ); |
|
| 105 | - |
|
| 106 | - /* |
|
| 18 | + /** |
|
| 19 | + * Data stored in meta keys, but not considered "meta" for a discount. |
|
| 20 | + * |
|
| 21 | + * @since 1.0.19 |
|
| 22 | + * @var array |
|
| 23 | + */ |
|
| 24 | + protected $internal_meta_keys = array( |
|
| 25 | + '_wpinv_subscr_profile_id', |
|
| 26 | + '_wpinv_subscription_id', |
|
| 27 | + '_wpinv_taxes', |
|
| 28 | + '_wpinv_fees', |
|
| 29 | + '_wpinv_discounts', |
|
| 30 | + '_wpinv_submission_id', |
|
| 31 | + '_wpinv_payment_form', |
|
| 32 | + '_wpinv_is_viewed', |
|
| 33 | + '_wpinv_phone', |
|
| 34 | + '_wpinv_company_id', |
|
| 35 | + 'wpinv_shipping', |
|
| 36 | + 'wpinv_email_cc', |
|
| 37 | + 'wpinv_template', |
|
| 38 | + 'wpinv_created_via' |
|
| 39 | + ); |
|
| 40 | + |
|
| 41 | + /** |
|
| 42 | + * A map of meta keys to data props. |
|
| 43 | + * |
|
| 44 | + * @since 1.0.19 |
|
| 45 | + * |
|
| 46 | + * @var array |
|
| 47 | + */ |
|
| 48 | + protected $meta_key_to_props = array( |
|
| 49 | + '_wpinv_subscr_profile_id' => 'remote_subscription_id', |
|
| 50 | + '_wpinv_subscription_id' => 'subscription_id', |
|
| 51 | + '_wpinv_taxes' => 'taxes', |
|
| 52 | + '_wpinv_fees' => 'fees', |
|
| 53 | + '_wpinv_discounts' => 'discounts', |
|
| 54 | + '_wpinv_submission_id' => 'submission_id', |
|
| 55 | + '_wpinv_payment_form' => 'payment_form', |
|
| 56 | + '_wpinv_is_viewed' => 'is_viewed', |
|
| 57 | + 'wpinv_email_cc' => 'email_cc', |
|
| 58 | + 'wpinv_template' => 'template', |
|
| 59 | + 'wpinv_created_via' => 'created_via', |
|
| 60 | + '_wpinv_phone' => 'phone', |
|
| 61 | + '_wpinv_company_id' => 'company_id', |
|
| 62 | + 'wpinv_shipping' => 'shipping', |
|
| 63 | + ); |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * A map of database fields to data props. |
|
| 67 | + * |
|
| 68 | + * @since 1.0.19 |
|
| 69 | + * |
|
| 70 | + * @var array |
|
| 71 | + */ |
|
| 72 | + protected $database_fields_to_props = array( |
|
| 73 | + 'post_id' => 'id', |
|
| 74 | + 'number' => 'number', |
|
| 75 | + 'currency' => 'currency', |
|
| 76 | + 'key' => 'key', |
|
| 77 | + 'type' => 'type', |
|
| 78 | + 'mode' => 'mode', |
|
| 79 | + 'user_ip' => 'user_ip', |
|
| 80 | + 'first_name' => 'first_name', |
|
| 81 | + 'last_name' => 'last_name', |
|
| 82 | + 'address' => 'address', |
|
| 83 | + 'city' => 'city', |
|
| 84 | + 'state' => 'state', |
|
| 85 | + 'country' => 'country', |
|
| 86 | + 'zip' => 'zip', |
|
| 87 | + 'zip' => 'zip', |
|
| 88 | + 'adddress_confirmed' => 'address_confirmed', |
|
| 89 | + 'gateway' => 'gateway', |
|
| 90 | + 'transaction_id' => 'transaction_id', |
|
| 91 | + 'currency' => 'currency', |
|
| 92 | + 'subtotal' => 'subtotal', |
|
| 93 | + 'tax' => 'total_tax', |
|
| 94 | + 'fees_total' => 'total_fees', |
|
| 95 | + 'discount' => 'total_discount', |
|
| 96 | + 'total' => 'total', |
|
| 97 | + 'discount_code' => 'discount_code', |
|
| 98 | + 'disable_taxes' => 'disable_taxes', |
|
| 99 | + 'due_date' => 'due_date', |
|
| 100 | + 'completed_date' => 'completed_date', |
|
| 101 | + 'company' => 'company', |
|
| 102 | + 'vat_number' => 'vat_number', |
|
| 103 | + 'vat_rate' => 'vat_rate', |
|
| 104 | + ); |
|
| 105 | + |
|
| 106 | + /* |
|
| 107 | 107 | |-------------------------------------------------------------------------- |
| 108 | 108 | | CRUD Methods |
| 109 | 109 | |-------------------------------------------------------------------------- |
| 110 | 110 | */ |
| 111 | 111 | |
| 112 | - /** |
|
| 113 | - * Method to create a new invoice in the database. |
|
| 114 | - * |
|
| 115 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 116 | - */ |
|
| 117 | - public function create( &$invoice ) { |
|
| 118 | - $invoice->set_version( WPINV_VERSION ); |
|
| 119 | - $invoice->set_date_created( current_time('mysql') ); |
|
| 120 | - |
|
| 121 | - // Create a new post. |
|
| 122 | - $id = wp_insert_post( |
|
| 123 | - apply_filters( |
|
| 124 | - 'getpaid_new_invoice_data', |
|
| 125 | - array( |
|
| 126 | - 'post_date' => $invoice->get_date_created( 'edit' ), |
|
| 127 | - 'post_type' => $invoice->get_post_type( 'edit' ), |
|
| 128 | - 'post_status' => $this->get_post_status( $invoice ), |
|
| 129 | - 'ping_status' => 'closed', |
|
| 130 | - 'post_author' => $invoice->get_user_id( 'edit' ), |
|
| 131 | - 'post_title' => $invoice->get_title( 'edit' ), |
|
| 132 | - 'post_excerpt' => $invoice->get_description( 'edit' ), |
|
| 133 | - 'post_parent' => $invoice->get_parent_id( 'edit' ), |
|
| 134 | - ) |
|
| 135 | - ), |
|
| 136 | - true |
|
| 137 | - ); |
|
| 138 | - |
|
| 139 | - if ( $id && ! is_wp_error( $id ) ) { |
|
| 140 | - |
|
| 141 | - // Update the new id and regenerate a title. |
|
| 142 | - $invoice->set_id( $id ); |
|
| 143 | - |
|
| 144 | - $invoice->maybe_set_number(); |
|
| 145 | - |
|
| 146 | - wp_update_post( |
|
| 147 | - array( |
|
| 148 | - 'ID' => $invoice->get_id(), |
|
| 149 | - 'post_title' => $invoice->get_number( 'edit' ), |
|
| 150 | - 'post_name' => $invoice->get_path( 'edit' ) |
|
| 151 | - ) |
|
| 152 | - ); |
|
| 153 | - |
|
| 154 | - // Save special fields and items. |
|
| 155 | - $this->save_special_fields( $invoice ); |
|
| 156 | - $this->save_items( $invoice ); |
|
| 157 | - |
|
| 158 | - // Update meta data. |
|
| 159 | - $this->update_post_meta( $invoice ); |
|
| 160 | - $invoice->save_meta_data(); |
|
| 161 | - |
|
| 162 | - // Apply changes. |
|
| 163 | - $invoice->apply_changes(); |
|
| 164 | - $this->clear_caches( $invoice ); |
|
| 165 | - |
|
| 166 | - // Fires after a new invoice is created. |
|
| 167 | - do_action( 'getpaid_new_invoice', $invoice ); |
|
| 168 | - return true; |
|
| 169 | - } |
|
| 170 | - |
|
| 171 | - if ( is_wp_error( $id ) ) { |
|
| 172 | - $invoice->last_error = $id->get_error_message(); |
|
| 173 | - } |
|
| 174 | - |
|
| 175 | - return false; |
|
| 176 | - } |
|
| 177 | - |
|
| 178 | - /** |
|
| 179 | - * Method to read an invoice from the database. |
|
| 180 | - * |
|
| 181 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 182 | - * |
|
| 183 | - */ |
|
| 184 | - public function read( &$invoice ) { |
|
| 185 | - |
|
| 186 | - $invoice->set_defaults(); |
|
| 187 | - $invoice_object = get_post( $invoice->get_id() ); |
|
| 188 | - |
|
| 189 | - if ( ! $invoice->get_id() || ! $invoice_object || ! getpaid_is_invoice_post_type( $invoice_object->post_type ) ) { |
|
| 190 | - $invoice->last_error = __( 'Invalid invoice.', 'invoicing' ); |
|
| 191 | - $invoice->set_id( 0 ); |
|
| 192 | - return false; |
|
| 193 | - } |
|
| 194 | - |
|
| 195 | - $invoice->set_props( |
|
| 196 | - array( |
|
| 197 | - 'date_created' => 0 < $invoice_object->post_date ? $invoice_object->post_date : null, |
|
| 198 | - 'date_modified' => 0 < $invoice_object->post_modified ? $invoice_object->post_modified : null, |
|
| 199 | - 'status' => $invoice_object->post_status, |
|
| 200 | - 'author' => $invoice_object->post_author, |
|
| 201 | - 'description' => $invoice_object->post_excerpt, |
|
| 202 | - 'parent_id' => $invoice_object->post_parent, |
|
| 203 | - 'name' => $invoice_object->post_title, |
|
| 204 | - 'path' => $invoice_object->post_name, |
|
| 205 | - 'post_type' => $invoice_object->post_type, |
|
| 206 | - ) |
|
| 207 | - ); |
|
| 208 | - |
|
| 209 | - $invoice->set_type( $invoice_object->post_type ); |
|
| 210 | - |
|
| 211 | - $this->read_object_data( $invoice, $invoice_object ); |
|
| 212 | - $this->add_special_fields( $invoice ); |
|
| 213 | - $this->add_items( $invoice ); |
|
| 214 | - $invoice->read_meta_data(); |
|
| 215 | - $invoice->set_object_read( true ); |
|
| 216 | - do_action( 'getpaid_read_invoice', $invoice ); |
|
| 217 | - |
|
| 218 | - } |
|
| 219 | - |
|
| 220 | - /** |
|
| 221 | - * Method to update an invoice in the database. |
|
| 222 | - * |
|
| 223 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 224 | - */ |
|
| 225 | - public function update( &$invoice ) { |
|
| 226 | - $invoice->save_meta_data(); |
|
| 227 | - $invoice->set_version( WPINV_VERSION ); |
|
| 228 | - |
|
| 229 | - if ( null === $invoice->get_date_created( 'edit' ) ) { |
|
| 230 | - $invoice->set_date_created( current_time('mysql') ); |
|
| 231 | - } |
|
| 232 | - |
|
| 233 | - // Ensure both the key and number are set. |
|
| 234 | - $invoice->get_path(); |
|
| 235 | - |
|
| 236 | - // Grab the current status so we can compare. |
|
| 237 | - $previous_status = get_post_status( $invoice->get_id() ); |
|
| 238 | - |
|
| 239 | - $changes = $invoice->get_changes(); |
|
| 240 | - |
|
| 241 | - // Only update the post when the post data changes. |
|
| 242 | - if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'name', 'author', 'description', 'parent_id', 'post_excerpt', 'path' ), array_keys( $changes ) ) ) { |
|
| 243 | - $post_data = array( |
|
| 244 | - 'post_date' => $invoice->get_date_created( 'edit' ), |
|
| 245 | - 'post_date_gmt' => $invoice->get_date_created_gmt( 'edit' ), |
|
| 246 | - 'post_status' => $invoice->get_status( 'edit' ), |
|
| 247 | - 'post_title' => $invoice->get_name( 'edit' ), |
|
| 248 | - 'post_author' => $invoice->get_user_id( 'edit' ), |
|
| 249 | - 'post_modified' => $invoice->get_date_modified( 'edit' ), |
|
| 250 | - 'post_excerpt' => $invoice->get_description( 'edit' ), |
|
| 251 | - 'post_parent' => $invoice->get_parent_id( 'edit' ), |
|
| 252 | - 'post_name' => $invoice->get_path( 'edit' ), |
|
| 253 | - 'post_type' => $invoice->get_post_type( 'edit' ), |
|
| 254 | - ); |
|
| 255 | - |
|
| 256 | - /** |
|
| 257 | - * When updating this object, to prevent infinite loops, use $wpdb |
|
| 258 | - * to update data, since wp_update_post spawns more calls to the |
|
| 259 | - * save_post action. |
|
| 260 | - * |
|
| 261 | - * This ensures hooks are fired by either WP itself (admin screen save), |
|
| 262 | - * or an update purely from CRUD. |
|
| 263 | - */ |
|
| 264 | - if ( doing_action( 'save_post' ) ) { |
|
| 265 | - $GLOBALS['wpdb']->update( $GLOBALS['wpdb']->posts, $post_data, array( 'ID' => $invoice->get_id() ) ); |
|
| 266 | - clean_post_cache( $invoice->get_id() ); |
|
| 267 | - } else { |
|
| 268 | - wp_update_post( array_merge( array( 'ID' => $invoice->get_id() ), $post_data ) ); |
|
| 269 | - } |
|
| 270 | - $invoice->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook. |
|
| 271 | - } |
|
| 272 | - |
|
| 273 | - // Update meta data. |
|
| 274 | - $this->update_post_meta( $invoice ); |
|
| 275 | - |
|
| 276 | - // Save special fields and items. |
|
| 277 | - $this->save_special_fields( $invoice ); |
|
| 278 | - $this->save_items( $invoice ); |
|
| 279 | - |
|
| 280 | - // Apply the changes. |
|
| 281 | - $invoice->apply_changes(); |
|
| 282 | - |
|
| 283 | - // Clear caches. |
|
| 284 | - $this->clear_caches( $invoice ); |
|
| 285 | - |
|
| 286 | - // Fire a hook depending on the status - this should be considered a creation if it was previously draft status. |
|
| 287 | - $new_status = $invoice->get_status( 'edit' ); |
|
| 288 | - |
|
| 289 | - if ( $new_status !== $previous_status && in_array( $previous_status, array( 'new', 'auto-draft', 'draft' ), true ) ) { |
|
| 290 | - do_action( 'getpaid_new_invoice', $invoice ); |
|
| 291 | - } else { |
|
| 292 | - do_action( 'getpaid_update_invoice', $invoice ); |
|
| 293 | - } |
|
| 294 | - |
|
| 295 | - } |
|
| 296 | - |
|
| 297 | - /* |
|
| 112 | + /** |
|
| 113 | + * Method to create a new invoice in the database. |
|
| 114 | + * |
|
| 115 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 116 | + */ |
|
| 117 | + public function create( &$invoice ) { |
|
| 118 | + $invoice->set_version( WPINV_VERSION ); |
|
| 119 | + $invoice->set_date_created( current_time('mysql') ); |
|
| 120 | + |
|
| 121 | + // Create a new post. |
|
| 122 | + $id = wp_insert_post( |
|
| 123 | + apply_filters( |
|
| 124 | + 'getpaid_new_invoice_data', |
|
| 125 | + array( |
|
| 126 | + 'post_date' => $invoice->get_date_created( 'edit' ), |
|
| 127 | + 'post_type' => $invoice->get_post_type( 'edit' ), |
|
| 128 | + 'post_status' => $this->get_post_status( $invoice ), |
|
| 129 | + 'ping_status' => 'closed', |
|
| 130 | + 'post_author' => $invoice->get_user_id( 'edit' ), |
|
| 131 | + 'post_title' => $invoice->get_title( 'edit' ), |
|
| 132 | + 'post_excerpt' => $invoice->get_description( 'edit' ), |
|
| 133 | + 'post_parent' => $invoice->get_parent_id( 'edit' ), |
|
| 134 | + ) |
|
| 135 | + ), |
|
| 136 | + true |
|
| 137 | + ); |
|
| 138 | + |
|
| 139 | + if ( $id && ! is_wp_error( $id ) ) { |
|
| 140 | + |
|
| 141 | + // Update the new id and regenerate a title. |
|
| 142 | + $invoice->set_id( $id ); |
|
| 143 | + |
|
| 144 | + $invoice->maybe_set_number(); |
|
| 145 | + |
|
| 146 | + wp_update_post( |
|
| 147 | + array( |
|
| 148 | + 'ID' => $invoice->get_id(), |
|
| 149 | + 'post_title' => $invoice->get_number( 'edit' ), |
|
| 150 | + 'post_name' => $invoice->get_path( 'edit' ) |
|
| 151 | + ) |
|
| 152 | + ); |
|
| 153 | + |
|
| 154 | + // Save special fields and items. |
|
| 155 | + $this->save_special_fields( $invoice ); |
|
| 156 | + $this->save_items( $invoice ); |
|
| 157 | + |
|
| 158 | + // Update meta data. |
|
| 159 | + $this->update_post_meta( $invoice ); |
|
| 160 | + $invoice->save_meta_data(); |
|
| 161 | + |
|
| 162 | + // Apply changes. |
|
| 163 | + $invoice->apply_changes(); |
|
| 164 | + $this->clear_caches( $invoice ); |
|
| 165 | + |
|
| 166 | + // Fires after a new invoice is created. |
|
| 167 | + do_action( 'getpaid_new_invoice', $invoice ); |
|
| 168 | + return true; |
|
| 169 | + } |
|
| 170 | + |
|
| 171 | + if ( is_wp_error( $id ) ) { |
|
| 172 | + $invoice->last_error = $id->get_error_message(); |
|
| 173 | + } |
|
| 174 | + |
|
| 175 | + return false; |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + /** |
|
| 179 | + * Method to read an invoice from the database. |
|
| 180 | + * |
|
| 181 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 182 | + * |
|
| 183 | + */ |
|
| 184 | + public function read( &$invoice ) { |
|
| 185 | + |
|
| 186 | + $invoice->set_defaults(); |
|
| 187 | + $invoice_object = get_post( $invoice->get_id() ); |
|
| 188 | + |
|
| 189 | + if ( ! $invoice->get_id() || ! $invoice_object || ! getpaid_is_invoice_post_type( $invoice_object->post_type ) ) { |
|
| 190 | + $invoice->last_error = __( 'Invalid invoice.', 'invoicing' ); |
|
| 191 | + $invoice->set_id( 0 ); |
|
| 192 | + return false; |
|
| 193 | + } |
|
| 194 | + |
|
| 195 | + $invoice->set_props( |
|
| 196 | + array( |
|
| 197 | + 'date_created' => 0 < $invoice_object->post_date ? $invoice_object->post_date : null, |
|
| 198 | + 'date_modified' => 0 < $invoice_object->post_modified ? $invoice_object->post_modified : null, |
|
| 199 | + 'status' => $invoice_object->post_status, |
|
| 200 | + 'author' => $invoice_object->post_author, |
|
| 201 | + 'description' => $invoice_object->post_excerpt, |
|
| 202 | + 'parent_id' => $invoice_object->post_parent, |
|
| 203 | + 'name' => $invoice_object->post_title, |
|
| 204 | + 'path' => $invoice_object->post_name, |
|
| 205 | + 'post_type' => $invoice_object->post_type, |
|
| 206 | + ) |
|
| 207 | + ); |
|
| 208 | + |
|
| 209 | + $invoice->set_type( $invoice_object->post_type ); |
|
| 210 | + |
|
| 211 | + $this->read_object_data( $invoice, $invoice_object ); |
|
| 212 | + $this->add_special_fields( $invoice ); |
|
| 213 | + $this->add_items( $invoice ); |
|
| 214 | + $invoice->read_meta_data(); |
|
| 215 | + $invoice->set_object_read( true ); |
|
| 216 | + do_action( 'getpaid_read_invoice', $invoice ); |
|
| 217 | + |
|
| 218 | + } |
|
| 219 | + |
|
| 220 | + /** |
|
| 221 | + * Method to update an invoice in the database. |
|
| 222 | + * |
|
| 223 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 224 | + */ |
|
| 225 | + public function update( &$invoice ) { |
|
| 226 | + $invoice->save_meta_data(); |
|
| 227 | + $invoice->set_version( WPINV_VERSION ); |
|
| 228 | + |
|
| 229 | + if ( null === $invoice->get_date_created( 'edit' ) ) { |
|
| 230 | + $invoice->set_date_created( current_time('mysql') ); |
|
| 231 | + } |
|
| 232 | + |
|
| 233 | + // Ensure both the key and number are set. |
|
| 234 | + $invoice->get_path(); |
|
| 235 | + |
|
| 236 | + // Grab the current status so we can compare. |
|
| 237 | + $previous_status = get_post_status( $invoice->get_id() ); |
|
| 238 | + |
|
| 239 | + $changes = $invoice->get_changes(); |
|
| 240 | + |
|
| 241 | + // Only update the post when the post data changes. |
|
| 242 | + if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'name', 'author', 'description', 'parent_id', 'post_excerpt', 'path' ), array_keys( $changes ) ) ) { |
|
| 243 | + $post_data = array( |
|
| 244 | + 'post_date' => $invoice->get_date_created( 'edit' ), |
|
| 245 | + 'post_date_gmt' => $invoice->get_date_created_gmt( 'edit' ), |
|
| 246 | + 'post_status' => $invoice->get_status( 'edit' ), |
|
| 247 | + 'post_title' => $invoice->get_name( 'edit' ), |
|
| 248 | + 'post_author' => $invoice->get_user_id( 'edit' ), |
|
| 249 | + 'post_modified' => $invoice->get_date_modified( 'edit' ), |
|
| 250 | + 'post_excerpt' => $invoice->get_description( 'edit' ), |
|
| 251 | + 'post_parent' => $invoice->get_parent_id( 'edit' ), |
|
| 252 | + 'post_name' => $invoice->get_path( 'edit' ), |
|
| 253 | + 'post_type' => $invoice->get_post_type( 'edit' ), |
|
| 254 | + ); |
|
| 255 | + |
|
| 256 | + /** |
|
| 257 | + * When updating this object, to prevent infinite loops, use $wpdb |
|
| 258 | + * to update data, since wp_update_post spawns more calls to the |
|
| 259 | + * save_post action. |
|
| 260 | + * |
|
| 261 | + * This ensures hooks are fired by either WP itself (admin screen save), |
|
| 262 | + * or an update purely from CRUD. |
|
| 263 | + */ |
|
| 264 | + if ( doing_action( 'save_post' ) ) { |
|
| 265 | + $GLOBALS['wpdb']->update( $GLOBALS['wpdb']->posts, $post_data, array( 'ID' => $invoice->get_id() ) ); |
|
| 266 | + clean_post_cache( $invoice->get_id() ); |
|
| 267 | + } else { |
|
| 268 | + wp_update_post( array_merge( array( 'ID' => $invoice->get_id() ), $post_data ) ); |
|
| 269 | + } |
|
| 270 | + $invoice->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook. |
|
| 271 | + } |
|
| 272 | + |
|
| 273 | + // Update meta data. |
|
| 274 | + $this->update_post_meta( $invoice ); |
|
| 275 | + |
|
| 276 | + // Save special fields and items. |
|
| 277 | + $this->save_special_fields( $invoice ); |
|
| 278 | + $this->save_items( $invoice ); |
|
| 279 | + |
|
| 280 | + // Apply the changes. |
|
| 281 | + $invoice->apply_changes(); |
|
| 282 | + |
|
| 283 | + // Clear caches. |
|
| 284 | + $this->clear_caches( $invoice ); |
|
| 285 | + |
|
| 286 | + // Fire a hook depending on the status - this should be considered a creation if it was previously draft status. |
|
| 287 | + $new_status = $invoice->get_status( 'edit' ); |
|
| 288 | + |
|
| 289 | + if ( $new_status !== $previous_status && in_array( $previous_status, array( 'new', 'auto-draft', 'draft' ), true ) ) { |
|
| 290 | + do_action( 'getpaid_new_invoice', $invoice ); |
|
| 291 | + } else { |
|
| 292 | + do_action( 'getpaid_update_invoice', $invoice ); |
|
| 293 | + } |
|
| 294 | + |
|
| 295 | + } |
|
| 296 | + |
|
| 297 | + /* |
|
| 298 | 298 | |-------------------------------------------------------------------------- |
| 299 | 299 | | Additional Methods |
| 300 | 300 | |-------------------------------------------------------------------------- |
| 301 | 301 | */ |
| 302 | 302 | |
| 303 | - /** |
|
| 303 | + /** |
|
| 304 | 304 | * Retrieves special fields and adds to the invoice. |
| 305 | - * |
|
| 306 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 305 | + * |
|
| 306 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 307 | 307 | */ |
| 308 | 308 | public function add_special_fields( &$invoice ) { |
| 309 | - global $wpdb; |
|
| 309 | + global $wpdb; |
|
| 310 | 310 | |
| 311 | - // Maybe retrieve from the cache. |
|
| 312 | - $data = wp_cache_get( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 311 | + // Maybe retrieve from the cache. |
|
| 312 | + $data = wp_cache_get( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 313 | 313 | |
| 314 | - // If not found, retrieve from the db. |
|
| 315 | - if ( false === $data ) { |
|
| 316 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 314 | + // If not found, retrieve from the db. |
|
| 315 | + if ( false === $data ) { |
|
| 316 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 317 | 317 | |
| 318 | - $data = $wpdb->get_row( |
|
| 319 | - $wpdb->prepare( "SELECT * FROM $table WHERE `post_id`=%d LIMIT 1", $invoice->get_id() ), |
|
| 320 | - ARRAY_A |
|
| 321 | - ); |
|
| 318 | + $data = $wpdb->get_row( |
|
| 319 | + $wpdb->prepare( "SELECT * FROM $table WHERE `post_id`=%d LIMIT 1", $invoice->get_id() ), |
|
| 320 | + ARRAY_A |
|
| 321 | + ); |
|
| 322 | 322 | |
| 323 | - // Update the cache with our data |
|
| 324 | - wp_cache_set( $invoice->get_id(), $data, 'getpaid_invoice_special_fields' ); |
|
| 323 | + // Update the cache with our data |
|
| 324 | + wp_cache_set( $invoice->get_id(), $data, 'getpaid_invoice_special_fields' ); |
|
| 325 | 325 | |
| 326 | - } |
|
| 326 | + } |
|
| 327 | 327 | |
| 328 | - // Abort if the data does not exist. |
|
| 329 | - if ( empty( $data ) ) { |
|
| 330 | - $invoice->set_object_read( true ); |
|
| 331 | - $invoice->set_props( wpinv_get_user_address( $invoice->get_user_id() ) ); |
|
| 332 | - return; |
|
| 333 | - } |
|
| 328 | + // Abort if the data does not exist. |
|
| 329 | + if ( empty( $data ) ) { |
|
| 330 | + $invoice->set_object_read( true ); |
|
| 331 | + $invoice->set_props( wpinv_get_user_address( $invoice->get_user_id() ) ); |
|
| 332 | + return; |
|
| 333 | + } |
|
| 334 | 334 | |
| 335 | - $props = array(); |
|
| 335 | + $props = array(); |
|
| 336 | 336 | |
| 337 | - foreach ( $this->database_fields_to_props as $db_field => $prop ) { |
|
| 337 | + foreach ( $this->database_fields_to_props as $db_field => $prop ) { |
|
| 338 | 338 | |
| 339 | - if ( $db_field == 'post_id' ) { |
|
| 340 | - continue; |
|
| 341 | - } |
|
| 342 | - |
|
| 343 | - $props[ $prop ] = $data[ $db_field ]; |
|
| 344 | - } |
|
| 345 | - |
|
| 346 | - $invoice->set_props( $props ); |
|
| 347 | - |
|
| 348 | - } |
|
| 349 | - |
|
| 350 | - /** |
|
| 351 | - * Gets a list of special fields that need updated based on change state |
|
| 352 | - * or if they are present in the database or not. |
|
| 353 | - * |
|
| 354 | - * @param WPInv_Invoice $invoice The Invoice object. |
|
| 355 | - * @return array A mapping of field keys => prop names, filtered by ones that should be updated. |
|
| 356 | - */ |
|
| 357 | - protected function get_special_fields_to_update( $invoice ) { |
|
| 358 | - $fields_to_update = array(); |
|
| 359 | - $changed_props = $invoice->get_changes(); |
|
| 360 | - |
|
| 361 | - // Props should be updated if they are a part of the $changed array or don't exist yet. |
|
| 362 | - foreach ( $this->database_fields_to_props as $database_field => $prop ) { |
|
| 363 | - if ( array_key_exists( $prop, $changed_props ) ) { |
|
| 364 | - $fields_to_update[ $database_field ] = $prop; |
|
| 365 | - } |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - return $fields_to_update; |
|
| 369 | - } |
|
| 370 | - |
|
| 371 | - /** |
|
| 372 | - * Helper method that updates all the database fields for an invoice based on it's settings in the WPInv_Invoice class. |
|
| 373 | - * |
|
| 374 | - * @param WPInv_Invoice $invoice WPInv_Invoice object. |
|
| 375 | - * @since 1.0.19 |
|
| 376 | - */ |
|
| 377 | - protected function update_special_fields( &$invoice ) { |
|
| 378 | - global $wpdb; |
|
| 379 | - |
|
| 380 | - $updated_props = array(); |
|
| 381 | - $fields_to_update = $this->get_special_fields_to_update( $invoice ); |
|
| 382 | - |
|
| 383 | - foreach ( $fields_to_update as $database_field => $prop ) { |
|
| 384 | - $value = $invoice->{"get_$prop"}( 'edit' ); |
|
| 385 | - $value = is_string( $value ) ? wp_slash( $value ) : $value; |
|
| 386 | - $value = is_bool( $value ) ? ( int ) $value : $value; |
|
| 387 | - $updated_props[ $database_field ] = maybe_serialize( $value ); |
|
| 388 | - } |
|
| 389 | - |
|
| 390 | - if ( ! empty( $updated_props ) ) { |
|
| 391 | - |
|
| 392 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 393 | - $wpdb->update( $table, $updated_props, array( 'post_id' => $invoice->get_id() ) ); |
|
| 394 | - wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 395 | - do_action( "getpaid_invoice_update_database_fields", $invoice, $updated_props ); |
|
| 396 | - |
|
| 397 | - } |
|
| 398 | - |
|
| 399 | - } |
|
| 400 | - |
|
| 401 | - /** |
|
| 402 | - * Helper method that inserts special fields to the database. |
|
| 403 | - * |
|
| 404 | - * @param WPInv_Invoice $invoice WPInv_Invoice object. |
|
| 405 | - * @since 1.0.19 |
|
| 406 | - */ |
|
| 407 | - protected function insert_special_fields( &$invoice ) { |
|
| 408 | - global $wpdb; |
|
| 409 | - |
|
| 410 | - $updated_props = array(); |
|
| 411 | - |
|
| 412 | - foreach ( $this->database_fields_to_props as $database_field => $prop ) { |
|
| 413 | - $value = $invoice->{"get_$prop"}( 'edit' ); |
|
| 414 | - $value = is_string( $value ) ? wp_slash( $value ) : $value; |
|
| 415 | - $value = is_bool( $value ) ? ( int ) $value : $value; |
|
| 416 | - $updated_props[ $database_field ] = maybe_serialize( $value ); |
|
| 417 | - } |
|
| 418 | - |
|
| 419 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 420 | - $wpdb->insert( $table, $updated_props ); |
|
| 421 | - wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 422 | - do_action( "getpaid_invoice_insert_database_fields", $invoice, $updated_props ); |
|
| 423 | - |
|
| 424 | - } |
|
| 425 | - |
|
| 426 | - /** |
|
| 339 | + if ( $db_field == 'post_id' ) { |
|
| 340 | + continue; |
|
| 341 | + } |
|
| 342 | + |
|
| 343 | + $props[ $prop ] = $data[ $db_field ]; |
|
| 344 | + } |
|
| 345 | + |
|
| 346 | + $invoice->set_props( $props ); |
|
| 347 | + |
|
| 348 | + } |
|
| 349 | + |
|
| 350 | + /** |
|
| 351 | + * Gets a list of special fields that need updated based on change state |
|
| 352 | + * or if they are present in the database or not. |
|
| 353 | + * |
|
| 354 | + * @param WPInv_Invoice $invoice The Invoice object. |
|
| 355 | + * @return array A mapping of field keys => prop names, filtered by ones that should be updated. |
|
| 356 | + */ |
|
| 357 | + protected function get_special_fields_to_update( $invoice ) { |
|
| 358 | + $fields_to_update = array(); |
|
| 359 | + $changed_props = $invoice->get_changes(); |
|
| 360 | + |
|
| 361 | + // Props should be updated if they are a part of the $changed array or don't exist yet. |
|
| 362 | + foreach ( $this->database_fields_to_props as $database_field => $prop ) { |
|
| 363 | + if ( array_key_exists( $prop, $changed_props ) ) { |
|
| 364 | + $fields_to_update[ $database_field ] = $prop; |
|
| 365 | + } |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + return $fields_to_update; |
|
| 369 | + } |
|
| 370 | + |
|
| 371 | + /** |
|
| 372 | + * Helper method that updates all the database fields for an invoice based on it's settings in the WPInv_Invoice class. |
|
| 373 | + * |
|
| 374 | + * @param WPInv_Invoice $invoice WPInv_Invoice object. |
|
| 375 | + * @since 1.0.19 |
|
| 376 | + */ |
|
| 377 | + protected function update_special_fields( &$invoice ) { |
|
| 378 | + global $wpdb; |
|
| 379 | + |
|
| 380 | + $updated_props = array(); |
|
| 381 | + $fields_to_update = $this->get_special_fields_to_update( $invoice ); |
|
| 382 | + |
|
| 383 | + foreach ( $fields_to_update as $database_field => $prop ) { |
|
| 384 | + $value = $invoice->{"get_$prop"}( 'edit' ); |
|
| 385 | + $value = is_string( $value ) ? wp_slash( $value ) : $value; |
|
| 386 | + $value = is_bool( $value ) ? ( int ) $value : $value; |
|
| 387 | + $updated_props[ $database_field ] = maybe_serialize( $value ); |
|
| 388 | + } |
|
| 389 | + |
|
| 390 | + if ( ! empty( $updated_props ) ) { |
|
| 391 | + |
|
| 392 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 393 | + $wpdb->update( $table, $updated_props, array( 'post_id' => $invoice->get_id() ) ); |
|
| 394 | + wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 395 | + do_action( "getpaid_invoice_update_database_fields", $invoice, $updated_props ); |
|
| 396 | + |
|
| 397 | + } |
|
| 398 | + |
|
| 399 | + } |
|
| 400 | + |
|
| 401 | + /** |
|
| 402 | + * Helper method that inserts special fields to the database. |
|
| 403 | + * |
|
| 404 | + * @param WPInv_Invoice $invoice WPInv_Invoice object. |
|
| 405 | + * @since 1.0.19 |
|
| 406 | + */ |
|
| 407 | + protected function insert_special_fields( &$invoice ) { |
|
| 408 | + global $wpdb; |
|
| 409 | + |
|
| 410 | + $updated_props = array(); |
|
| 411 | + |
|
| 412 | + foreach ( $this->database_fields_to_props as $database_field => $prop ) { |
|
| 413 | + $value = $invoice->{"get_$prop"}( 'edit' ); |
|
| 414 | + $value = is_string( $value ) ? wp_slash( $value ) : $value; |
|
| 415 | + $value = is_bool( $value ) ? ( int ) $value : $value; |
|
| 416 | + $updated_props[ $database_field ] = maybe_serialize( $value ); |
|
| 417 | + } |
|
| 418 | + |
|
| 419 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 420 | + $wpdb->insert( $table, $updated_props ); |
|
| 421 | + wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 422 | + do_action( "getpaid_invoice_insert_database_fields", $invoice, $updated_props ); |
|
| 423 | + |
|
| 424 | + } |
|
| 425 | + |
|
| 426 | + /** |
|
| 427 | 427 | * Saves all special fields. |
| 428 | - * |
|
| 429 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 428 | + * |
|
| 429 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 430 | 430 | */ |
| 431 | 431 | public function save_special_fields( & $invoice ) { |
| 432 | - global $wpdb; |
|
| 432 | + global $wpdb; |
|
| 433 | 433 | |
| 434 | - // The invoices table. |
|
| 435 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 436 | - $id = (int) $invoice->get_id(); |
|
| 437 | - $invoice->maybe_set_key(); |
|
| 434 | + // The invoices table. |
|
| 435 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 436 | + $id = (int) $invoice->get_id(); |
|
| 437 | + $invoice->maybe_set_key(); |
|
| 438 | 438 | |
| 439 | - if ( $wpdb->get_var( "SELECT `post_id` FROM $table WHERE `post_id`= $id" ) ) { |
|
| 439 | + if ( $wpdb->get_var( "SELECT `post_id` FROM $table WHERE `post_id`= $id" ) ) { |
|
| 440 | 440 | |
| 441 | - $this->update_special_fields( $invoice ); |
|
| 441 | + $this->update_special_fields( $invoice ); |
|
| 442 | 442 | |
| 443 | - } else { |
|
| 443 | + } else { |
|
| 444 | 444 | |
| 445 | - $this->insert_special_fields( $invoice ); |
|
| 445 | + $this->insert_special_fields( $invoice ); |
|
| 446 | 446 | |
| 447 | - } |
|
| 447 | + } |
|
| 448 | 448 | |
| 449 | - } |
|
| 449 | + } |
|
| 450 | 450 | |
| 451 | - /** |
|
| 451 | + /** |
|
| 452 | 452 | * Set's up cart details. |
| 453 | - * |
|
| 454 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 453 | + * |
|
| 454 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 455 | 455 | */ |
| 456 | 456 | public function add_items( &$invoice ) { |
| 457 | - global $wpdb; |
|
| 457 | + global $wpdb; |
|
| 458 | 458 | |
| 459 | - // Maybe retrieve from the cache. |
|
| 460 | - $items = wp_cache_get( $invoice->get_id(), 'getpaid_invoice_cart_details' ); |
|
| 459 | + // Maybe retrieve from the cache. |
|
| 460 | + $items = wp_cache_get( $invoice->get_id(), 'getpaid_invoice_cart_details' ); |
|
| 461 | 461 | |
| 462 | - // If not found, retrieve from the db. |
|
| 463 | - if ( false === $items ) { |
|
| 464 | - $table = $wpdb->prefix . 'getpaid_invoice_items'; |
|
| 462 | + // If not found, retrieve from the db. |
|
| 463 | + if ( false === $items ) { |
|
| 464 | + $table = $wpdb->prefix . 'getpaid_invoice_items'; |
|
| 465 | 465 | |
| 466 | - $items = $wpdb->get_results( |
|
| 467 | - $wpdb->prepare( "SELECT * FROM $table WHERE `post_id`=%d", $invoice->get_id() ) |
|
| 468 | - ); |
|
| 466 | + $items = $wpdb->get_results( |
|
| 467 | + $wpdb->prepare( "SELECT * FROM $table WHERE `post_id`=%d", $invoice->get_id() ) |
|
| 468 | + ); |
|
| 469 | 469 | |
| 470 | - // Update the cache with our data |
|
| 471 | - wp_cache_set( $invoice->get_id(), $items, 'getpaid_invoice_cart_details' ); |
|
| 470 | + // Update the cache with our data |
|
| 471 | + wp_cache_set( $invoice->get_id(), $items, 'getpaid_invoice_cart_details' ); |
|
| 472 | 472 | |
| 473 | - } |
|
| 473 | + } |
|
| 474 | 474 | |
| 475 | - // Abort if no items found. |
|
| 475 | + // Abort if no items found. |
|
| 476 | 476 | if ( empty( $items ) ) { |
| 477 | 477 | return; |
| 478 | - } |
|
| 479 | - |
|
| 480 | - $_items = array(); |
|
| 481 | - foreach ( $items as $item_data ) { |
|
| 482 | - $item = new GetPaid_Form_Item( $item_data->item_id ); |
|
| 483 | - |
|
| 484 | - // Set item data. |
|
| 485 | - $item->item_tax = wpinv_sanitize_amount( $item_data->tax ); |
|
| 486 | - $item->item_discount = wpinv_sanitize_amount( $item_data->discount ); |
|
| 487 | - $item->set_name( $item_data->item_name ); |
|
| 488 | - $item->set_description( $item_data->item_description ); |
|
| 489 | - $item->set_price( $item_data->item_price ); |
|
| 490 | - $item->set_quantity( $item_data->quantity ); |
|
| 491 | - $item->set_item_meta( $item_data->meta ); |
|
| 492 | - $_items[] = $item; |
|
| 493 | - } |
|
| 494 | - |
|
| 495 | - $invoice->set_items( $_items ); |
|
| 496 | - } |
|
| 497 | - |
|
| 498 | - /** |
|
| 478 | + } |
|
| 479 | + |
|
| 480 | + $_items = array(); |
|
| 481 | + foreach ( $items as $item_data ) { |
|
| 482 | + $item = new GetPaid_Form_Item( $item_data->item_id ); |
|
| 483 | + |
|
| 484 | + // Set item data. |
|
| 485 | + $item->item_tax = wpinv_sanitize_amount( $item_data->tax ); |
|
| 486 | + $item->item_discount = wpinv_sanitize_amount( $item_data->discount ); |
|
| 487 | + $item->set_name( $item_data->item_name ); |
|
| 488 | + $item->set_description( $item_data->item_description ); |
|
| 489 | + $item->set_price( $item_data->item_price ); |
|
| 490 | + $item->set_quantity( $item_data->quantity ); |
|
| 491 | + $item->set_item_meta( $item_data->meta ); |
|
| 492 | + $_items[] = $item; |
|
| 493 | + } |
|
| 494 | + |
|
| 495 | + $invoice->set_items( $_items ); |
|
| 496 | + } |
|
| 497 | + |
|
| 498 | + /** |
|
| 499 | 499 | * Saves cart details. |
| 500 | - * |
|
| 501 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 500 | + * |
|
| 501 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 502 | 502 | */ |
| 503 | 503 | public function save_items( $invoice ) { |
| 504 | 504 | |
| 505 | - // Delete previously existing items. |
|
| 506 | - $this->delete_items( $invoice ); |
|
| 505 | + // Delete previously existing items. |
|
| 506 | + $this->delete_items( $invoice ); |
|
| 507 | 507 | |
| 508 | - $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoice_items'; |
|
| 508 | + $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoice_items'; |
|
| 509 | 509 | |
| 510 | - foreach ( $invoice->get_cart_details() as $item_data ) { |
|
| 511 | - $item_data = array_map( 'maybe_serialize', $item_data ); |
|
| 512 | - $GLOBALS['wpdb']->insert( $table, $item_data ); |
|
| 513 | - } |
|
| 510 | + foreach ( $invoice->get_cart_details() as $item_data ) { |
|
| 511 | + $item_data = array_map( 'maybe_serialize', $item_data ); |
|
| 512 | + $GLOBALS['wpdb']->insert( $table, $item_data ); |
|
| 513 | + } |
|
| 514 | 514 | |
| 515 | - wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_cart_details' ); |
|
| 516 | - do_action( "getpaid_invoice_save_items", $invoice ); |
|
| 515 | + wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_cart_details' ); |
|
| 516 | + do_action( "getpaid_invoice_save_items", $invoice ); |
|
| 517 | 517 | |
| 518 | - } |
|
| 518 | + } |
|
| 519 | 519 | |
| 520 | - /** |
|
| 520 | + /** |
|
| 521 | 521 | * Deletes an invoice's cart details from the database. |
| 522 | - * |
|
| 523 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 522 | + * |
|
| 523 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 524 | 524 | */ |
| 525 | 525 | public function delete_items( $invoice ) { |
| 526 | - $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoice_items'; |
|
| 527 | - return $GLOBALS['wpdb']->delete( $table, array( 'post_id' => $invoice->get_id() ) ); |
|
| 528 | - } |
|
| 526 | + $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoice_items'; |
|
| 527 | + return $GLOBALS['wpdb']->delete( $table, array( 'post_id' => $invoice->get_id() ) ); |
|
| 528 | + } |
|
| 529 | 529 | |
| 530 | - /** |
|
| 530 | + /** |
|
| 531 | 531 | * Deletes an invoice's special fields from the database. |
| 532 | - * |
|
| 533 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 532 | + * |
|
| 533 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 534 | 534 | */ |
| 535 | 535 | public function delete_special_fields( $invoice ) { |
| 536 | - $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoices'; |
|
| 537 | - return $GLOBALS['wpdb']->delete( $table, array( 'post_id' => $invoice->get_id() ) ); |
|
| 538 | - } |
|
| 536 | + $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoices'; |
|
| 537 | + return $GLOBALS['wpdb']->delete( $table, array( 'post_id' => $invoice->get_id() ) ); |
|
| 538 | + } |
|
| 539 | 539 | |
| 540 | - /** |
|
| 541 | - * Get the status to save to the post object. |
|
| 542 | - * |
|
| 543 | - * |
|
| 544 | - * @since 1.0.19 |
|
| 545 | - * @param WPInv_Invoice $object GetPaid_Data object. |
|
| 546 | - * @return string |
|
| 547 | - */ |
|
| 548 | - protected function get_post_status( $object ) { |
|
| 549 | - $object_status = $object->get_status( 'edit' ); |
|
| 550 | - |
|
| 551 | - if ( ! $object_status ) { |
|
| 552 | - $object_status = $object->get_default_status(); |
|
| 553 | - } |
|
| 554 | - |
|
| 555 | - return $object_status; |
|
| 556 | - } |
|
| 540 | + /** |
|
| 541 | + * Get the status to save to the post object. |
|
| 542 | + * |
|
| 543 | + * |
|
| 544 | + * @since 1.0.19 |
|
| 545 | + * @param WPInv_Invoice $object GetPaid_Data object. |
|
| 546 | + * @return string |
|
| 547 | + */ |
|
| 548 | + protected function get_post_status( $object ) { |
|
| 549 | + $object_status = $object->get_status( 'edit' ); |
|
| 550 | + |
|
| 551 | + if ( ! $object_status ) { |
|
| 552 | + $object_status = $object->get_default_status(); |
|
| 553 | + } |
|
| 554 | + |
|
| 555 | + return $object_status; |
|
| 556 | + } |
|
| 557 | 557 | |
| 558 | 558 | } |
@@ -12,184 +12,184 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Checkout { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var GetPaid_Payment_Form_Submission |
|
| 17 | - */ |
|
| 18 | - protected $payment_form_submission; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * Class constructor. |
|
| 22 | - * |
|
| 23 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 24 | - */ |
|
| 25 | - public function __construct( $submission ) { |
|
| 26 | - $this->payment_form_submission = $submission; |
|
| 27 | - } |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Processes the checkout. |
|
| 31 | - * |
|
| 32 | - */ |
|
| 33 | - public function process_checkout() { |
|
| 34 | - |
|
| 35 | - // Validate the submission. |
|
| 36 | - $this->validate_submission(); |
|
| 37 | - |
|
| 38 | - // Prepare the invoice. |
|
| 39 | - $items = $this->get_submission_items(); |
|
| 40 | - $invoice = $this->get_submission_invoice(); |
|
| 41 | - $invoice = $this->process_submission_invoice( $invoice, $items ); |
|
| 42 | - $prepared = $this->prepare_submission_data_for_saving(); |
|
| 43 | - |
|
| 44 | - $this->prepare_billing_info( $invoice ); |
|
| 45 | - |
|
| 46 | - $shipping = $this->prepare_shipping_info( $invoice ); |
|
| 47 | - |
|
| 48 | - // Save the invoice. |
|
| 49 | - $invoice->set_is_viewed( true ); |
|
| 50 | - $invoice->recalculate_total(); |
|
| 15 | + /** |
|
| 16 | + * @var GetPaid_Payment_Form_Submission |
|
| 17 | + */ |
|
| 18 | + protected $payment_form_submission; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * Class constructor. |
|
| 22 | + * |
|
| 23 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 24 | + */ |
|
| 25 | + public function __construct( $submission ) { |
|
| 26 | + $this->payment_form_submission = $submission; |
|
| 27 | + } |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Processes the checkout. |
|
| 31 | + * |
|
| 32 | + */ |
|
| 33 | + public function process_checkout() { |
|
| 34 | + |
|
| 35 | + // Validate the submission. |
|
| 36 | + $this->validate_submission(); |
|
| 37 | + |
|
| 38 | + // Prepare the invoice. |
|
| 39 | + $items = $this->get_submission_items(); |
|
| 40 | + $invoice = $this->get_submission_invoice(); |
|
| 41 | + $invoice = $this->process_submission_invoice( $invoice, $items ); |
|
| 42 | + $prepared = $this->prepare_submission_data_for_saving(); |
|
| 43 | + |
|
| 44 | + $this->prepare_billing_info( $invoice ); |
|
| 45 | + |
|
| 46 | + $shipping = $this->prepare_shipping_info( $invoice ); |
|
| 47 | + |
|
| 48 | + // Save the invoice. |
|
| 49 | + $invoice->set_is_viewed( true ); |
|
| 50 | + $invoice->recalculate_total(); |
|
| 51 | 51 | $invoice->save(); |
| 52 | 52 | |
| 53 | - do_action( 'getpaid_checkout_invoice_updated', $invoice ); |
|
| 53 | + do_action( 'getpaid_checkout_invoice_updated', $invoice ); |
|
| 54 | 54 | |
| 55 | - // Send to the gateway. |
|
| 56 | - $this->post_process_submission( $invoice, $prepared, $shipping ); |
|
| 57 | - } |
|
| 55 | + // Send to the gateway. |
|
| 56 | + $this->post_process_submission( $invoice, $prepared, $shipping ); |
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | - /** |
|
| 60 | - * Validates the submission. |
|
| 61 | - * |
|
| 62 | - */ |
|
| 63 | - protected function validate_submission() { |
|
| 59 | + /** |
|
| 60 | + * Validates the submission. |
|
| 61 | + * |
|
| 62 | + */ |
|
| 63 | + protected function validate_submission() { |
|
| 64 | 64 | |
| 65 | - $submission = $this->payment_form_submission; |
|
| 66 | - $data = $submission->get_data(); |
|
| 65 | + $submission = $this->payment_form_submission; |
|
| 66 | + $data = $submission->get_data(); |
|
| 67 | 67 | |
| 68 | - // Do we have an error? |
|
| 68 | + // Do we have an error? |
|
| 69 | 69 | if ( ! empty( $submission->last_error ) ) { |
| 70 | - wp_send_json_error( $submission->last_error ); |
|
| 70 | + wp_send_json_error( $submission->last_error ); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - // We need a billing email. |
|
| 73 | + // We need a billing email. |
|
| 74 | 74 | if ( ! $submission->has_billing_email() ) { |
| 75 | 75 | wp_send_json_error( __( 'Provide a valid billing email.', 'invoicing' ) ); |
| 76 | - } |
|
| 76 | + } |
|
| 77 | 77 | |
| 78 | - // Non-recurring gateways should not be allowed to process recurring invoices. |
|
| 79 | - if ( $submission->should_collect_payment_details() && $submission->has_recurring && ! wpinv_gateway_support_subscription( $data['wpi-gateway'] ) ) { |
|
| 80 | - wp_send_json_error( __( 'The selected payment gateway does not support subscription payments.', 'invoicing' ) ); |
|
| 81 | - } |
|
| 78 | + // Non-recurring gateways should not be allowed to process recurring invoices. |
|
| 79 | + if ( $submission->should_collect_payment_details() && $submission->has_recurring && ! wpinv_gateway_support_subscription( $data['wpi-gateway'] ) ) { |
|
| 80 | + wp_send_json_error( __( 'The selected payment gateway does not support subscription payments.', 'invoicing' ) ); |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - // Ensure the gateway is active. |
|
| 84 | - if ( $submission->should_collect_payment_details() && ! wpinv_is_gateway_active( $data['wpi-gateway'] ) ) { |
|
| 85 | - wp_send_json_error( __( 'The selected payment gateway is not active', 'invoicing' ) ); |
|
| 86 | - } |
|
| 83 | + // Ensure the gateway is active. |
|
| 84 | + if ( $submission->should_collect_payment_details() && ! wpinv_is_gateway_active( $data['wpi-gateway'] ) ) { |
|
| 85 | + wp_send_json_error( __( 'The selected payment gateway is not active', 'invoicing' ) ); |
|
| 86 | + } |
|
| 87 | 87 | |
| 88 | - // Clear any existing errors. |
|
| 89 | - wpinv_clear_errors(); |
|
| 88 | + // Clear any existing errors. |
|
| 89 | + wpinv_clear_errors(); |
|
| 90 | 90 | |
| 91 | - // Allow themes and plugins to hook to errors |
|
| 92 | - do_action( 'getpaid_checkout_error_checks', $submission ); |
|
| 91 | + // Allow themes and plugins to hook to errors |
|
| 92 | + do_action( 'getpaid_checkout_error_checks', $submission ); |
|
| 93 | 93 | |
| 94 | - // Do we have any errors? |
|
| 94 | + // Do we have any errors? |
|
| 95 | 95 | if ( wpinv_get_errors() ) { |
| 96 | 96 | wp_send_json_error( getpaid_get_errors_html() ); |
| 97 | - } |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - } |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | - /** |
|
| 102 | - * Retrieves submission items. |
|
| 103 | - * |
|
| 104 | - * @return GetPaid_Form_Item[] |
|
| 105 | - */ |
|
| 106 | - protected function get_submission_items() { |
|
| 101 | + /** |
|
| 102 | + * Retrieves submission items. |
|
| 103 | + * |
|
| 104 | + * @return GetPaid_Form_Item[] |
|
| 105 | + */ |
|
| 106 | + protected function get_submission_items() { |
|
| 107 | 107 | |
| 108 | - $items = $this->payment_form_submission->get_items(); |
|
| 108 | + $items = $this->payment_form_submission->get_items(); |
|
| 109 | 109 | |
| 110 | 110 | // Ensure that we have items. |
| 111 | 111 | if ( empty( $items ) && ! $this->payment_form_submission->has_fees() ) { |
| 112 | 112 | wp_send_json_error( __( 'Please provide at least one item or amount.', 'invoicing' ) ); |
| 113 | - } |
|
| 114 | - |
|
| 115 | - return $items; |
|
| 116 | - } |
|
| 117 | - |
|
| 118 | - /** |
|
| 119 | - * Retrieves submission invoice. |
|
| 120 | - * |
|
| 121 | - * @return WPInv_Invoice |
|
| 122 | - */ |
|
| 123 | - protected function get_submission_invoice() { |
|
| 124 | - $submission = $this->payment_form_submission; |
|
| 125 | - |
|
| 126 | - if ( ! $submission->has_invoice() ) { |
|
| 127 | - $invoice = new WPInv_Invoice(); |
|
| 128 | - $invoice->set_created_via( 'payment_form' ); |
|
| 129 | - return $invoice; |
|
| 130 | 113 | } |
| 131 | 114 | |
| 132 | - $invoice = $submission->get_invoice(); |
|
| 115 | + return $items; |
|
| 116 | + } |
|
| 117 | + |
|
| 118 | + /** |
|
| 119 | + * Retrieves submission invoice. |
|
| 120 | + * |
|
| 121 | + * @return WPInv_Invoice |
|
| 122 | + */ |
|
| 123 | + protected function get_submission_invoice() { |
|
| 124 | + $submission = $this->payment_form_submission; |
|
| 125 | + |
|
| 126 | + if ( ! $submission->has_invoice() ) { |
|
| 127 | + $invoice = new WPInv_Invoice(); |
|
| 128 | + $invoice->set_created_via( 'payment_form' ); |
|
| 129 | + return $invoice; |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + $invoice = $submission->get_invoice(); |
|
| 133 | 133 | |
| 134 | - // Make sure that it is neither paid or refunded. |
|
| 135 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
| 136 | - wp_send_json_error( __( 'This invoice has already been paid for.', 'invoicing' ) ); |
|
| 137 | - } |
|
| 134 | + // Make sure that it is neither paid or refunded. |
|
| 135 | + if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
| 136 | + wp_send_json_error( __( 'This invoice has already been paid for.', 'invoicing' ) ); |
|
| 137 | + } |
|
| 138 | 138 | |
| 139 | - return $invoice; |
|
| 140 | - } |
|
| 139 | + return $invoice; |
|
| 140 | + } |
|
| 141 | 141 | |
| 142 | - /** |
|
| 143 | - * Processes the submission invoice. |
|
| 144 | - * |
|
| 145 | - * @param WPInv_Invoice $invoice |
|
| 146 | - * @param GetPaid_Form_Item[] $items |
|
| 147 | - * @return WPInv_Invoice |
|
| 148 | - */ |
|
| 149 | - protected function process_submission_invoice( $invoice, $items ) { |
|
| 142 | + /** |
|
| 143 | + * Processes the submission invoice. |
|
| 144 | + * |
|
| 145 | + * @param WPInv_Invoice $invoice |
|
| 146 | + * @param GetPaid_Form_Item[] $items |
|
| 147 | + * @return WPInv_Invoice |
|
| 148 | + */ |
|
| 149 | + protected function process_submission_invoice( $invoice, $items ) { |
|
| 150 | 150 | |
| 151 | - $submission = $this->payment_form_submission; |
|
| 151 | + $submission = $this->payment_form_submission; |
|
| 152 | 152 | |
| 153 | - // Set-up the invoice details. |
|
| 154 | - $invoice->set_email( sanitize_email( $submission->get_billing_email() ) ); |
|
| 155 | - $invoice->set_user_id( $this->get_submission_customer() ); |
|
| 156 | - $invoice->set_payment_form( absint( $submission->get_payment_form()->get_id() ) ); |
|
| 153 | + // Set-up the invoice details. |
|
| 154 | + $invoice->set_email( sanitize_email( $submission->get_billing_email() ) ); |
|
| 155 | + $invoice->set_user_id( $this->get_submission_customer() ); |
|
| 156 | + $invoice->set_payment_form( absint( $submission->get_payment_form()->get_id() ) ); |
|
| 157 | 157 | $invoice->set_items( $items ); |
| 158 | 158 | $invoice->set_fees( $submission->get_fees() ); |
| 159 | 159 | $invoice->set_taxes( $submission->get_taxes() ); |
| 160 | - $invoice->set_discounts( $submission->get_discounts() ); |
|
| 161 | - $invoice->set_gateway( $submission->get_field( 'wpi-gateway' ) ); |
|
| 162 | - $invoice->set_currency( $submission->get_currency() ); |
|
| 160 | + $invoice->set_discounts( $submission->get_discounts() ); |
|
| 161 | + $invoice->set_gateway( $submission->get_field( 'wpi-gateway' ) ); |
|
| 162 | + $invoice->set_currency( $submission->get_currency() ); |
|
| 163 | 163 | |
| 164 | - if ( $submission->has_shipping() ) { |
|
| 165 | - $invoice->set_shipping( $submission->get_shipping() ); |
|
| 166 | - } |
|
| 164 | + if ( $submission->has_shipping() ) { |
|
| 165 | + $invoice->set_shipping( $submission->get_shipping() ); |
|
| 166 | + } |
|
| 167 | 167 | |
| 168 | - $address_confirmed = $submission->get_field( 'confirm-address' ); |
|
| 169 | - $invoice->set_address_confirmed( ! empty( $address_confirmed ) ); |
|
| 168 | + $address_confirmed = $submission->get_field( 'confirm-address' ); |
|
| 169 | + $invoice->set_address_confirmed( ! empty( $address_confirmed ) ); |
|
| 170 | 170 | |
| 171 | - if ( $submission->has_discount_code() ) { |
|
| 171 | + if ( $submission->has_discount_code() ) { |
|
| 172 | 172 | $invoice->set_discount_code( $submission->get_discount_code() ); |
| 173 | - } |
|
| 174 | - |
|
| 175 | - getpaid_maybe_add_default_address( $invoice ); |
|
| 176 | - return $invoice; |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - /** |
|
| 180 | - * Retrieves the submission's customer. |
|
| 181 | - * |
|
| 182 | - * @return int The customer id. |
|
| 183 | - */ |
|
| 184 | - protected function get_submission_customer() { |
|
| 185 | - $submission = $this->payment_form_submission; |
|
| 186 | - |
|
| 187 | - // If this is an existing invoice... |
|
| 188 | - if ( $submission->has_invoice() ) { |
|
| 189 | - return $submission->get_invoice()->get_user_id(); |
|
| 190 | - } |
|
| 191 | - |
|
| 192 | - // (Maybe) create the user. |
|
| 173 | + } |
|
| 174 | + |
|
| 175 | + getpaid_maybe_add_default_address( $invoice ); |
|
| 176 | + return $invoice; |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + /** |
|
| 180 | + * Retrieves the submission's customer. |
|
| 181 | + * |
|
| 182 | + * @return int The customer id. |
|
| 183 | + */ |
|
| 184 | + protected function get_submission_customer() { |
|
| 185 | + $submission = $this->payment_form_submission; |
|
| 186 | + |
|
| 187 | + // If this is an existing invoice... |
|
| 188 | + if ( $submission->has_invoice() ) { |
|
| 189 | + return $submission->get_invoice()->get_user_id(); |
|
| 190 | + } |
|
| 191 | + |
|
| 192 | + // (Maybe) create the user. |
|
| 193 | 193 | $user = get_current_user_id(); |
| 194 | 194 | |
| 195 | 195 | if ( empty( $user ) ) { |
@@ -199,11 +199,11 @@ discard block |
||
| 199 | 199 | if ( empty( $user ) ) { |
| 200 | 200 | $user = wpinv_create_user( $submission->get_billing_email() ); |
| 201 | 201 | |
| 202 | - // (Maybe) send new user notification. |
|
| 203 | - $should_send_notification = wpinv_get_option( 'disable_new_user_emails' ); |
|
| 204 | - if ( ! empty( $user ) && is_numeric( $user ) && apply_filters( 'getpaid_send_new_user_notification', empty( $should_send_notification ), $user ) ) { |
|
| 205 | - wp_send_new_user_notifications( $user, 'user' ); |
|
| 206 | - } |
|
| 202 | + // (Maybe) send new user notification. |
|
| 203 | + $should_send_notification = wpinv_get_option( 'disable_new_user_emails' ); |
|
| 204 | + if ( ! empty( $user ) && is_numeric( $user ) && apply_filters( 'getpaid_send_new_user_notification', empty( $should_send_notification ), $user ) ) { |
|
| 205 | + wp_send_new_user_notifications( $user, 'user' ); |
|
| 206 | + } |
|
| 207 | 207 | |
| 208 | 208 | } |
| 209 | 209 | |
@@ -213,49 +213,49 @@ discard block |
||
| 213 | 213 | |
| 214 | 214 | if ( is_numeric( $user ) ) { |
| 215 | 215 | return $user; |
| 216 | - } |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - return $user->ID; |
|
| 218 | + return $user->ID; |
|
| 219 | 219 | |
| 220 | - } |
|
| 220 | + } |
|
| 221 | 221 | |
| 222 | - /** |
|
| 222 | + /** |
|
| 223 | 223 | * Prepares submission data for saving to the database. |
| 224 | 224 | * |
| 225 | - * @return array |
|
| 225 | + * @return array |
|
| 226 | 226 | */ |
| 227 | 227 | public function prepare_submission_data_for_saving() { |
| 228 | 228 | |
| 229 | - $submission = $this->payment_form_submission; |
|
| 229 | + $submission = $this->payment_form_submission; |
|
| 230 | 230 | |
| 231 | - // Prepared submission details. |
|
| 231 | + // Prepared submission details. |
|
| 232 | 232 | $prepared = array( |
| 233 | - 'all' => array(), |
|
| 234 | - 'meta' => array(), |
|
| 235 | - ); |
|
| 233 | + 'all' => array(), |
|
| 234 | + 'meta' => array(), |
|
| 235 | + ); |
|
| 236 | 236 | |
| 237 | 237 | // Raw submission details. |
| 238 | - $data = $submission->get_data(); |
|
| 238 | + $data = $submission->get_data(); |
|
| 239 | 239 | |
| 240 | - // Loop through the submitted details. |
|
| 240 | + // Loop through the submitted details. |
|
| 241 | 241 | foreach ( $submission->get_payment_form()->get_elements() as $field ) { |
| 242 | 242 | |
| 243 | - // Skip premade fields. |
|
| 243 | + // Skip premade fields. |
|
| 244 | 244 | if ( ! empty( $field['premade'] ) ) { |
| 245 | 245 | continue; |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - // Ensure address is provided. |
|
| 249 | - if ( $field['type'] == 'address' ) { |
|
| 248 | + // Ensure address is provided. |
|
| 249 | + if ( $field['type'] == 'address' ) { |
|
| 250 | 250 | $address_type = isset( $field['address_type'] ) && 'shipping' === $field['address_type'] ? 'shipping' : 'billing'; |
| 251 | 251 | |
| 252 | - foreach ( $field['fields'] as $address_field ) { |
|
| 252 | + foreach ( $field['fields'] as $address_field ) { |
|
| 253 | 253 | |
| 254 | - if ( ! empty( $address_field['visible'] ) && ! empty( $address_field['required'] ) && '' === trim( $_POST[ $address_type ][ $address_field['name'] ] ) ) { |
|
| 255 | - wp_send_json_error( __( 'Please fill all required fields.', 'invoicing' ) ); |
|
| 256 | - } |
|
| 254 | + if ( ! empty( $address_field['visible'] ) && ! empty( $address_field['required'] ) && '' === trim( $_POST[ $address_type ][ $address_field['name'] ] ) ) { |
|
| 255 | + wp_send_json_error( __( 'Please fill all required fields.', 'invoicing' ) ); |
|
| 256 | + } |
|
| 257 | 257 | |
| 258 | - } |
|
| 258 | + } |
|
| 259 | 259 | |
| 260 | 260 | } |
| 261 | 261 | |
@@ -267,31 +267,31 @@ discard block |
||
| 267 | 267 | // Handle misc fields. |
| 268 | 268 | if ( isset( $data[ $field['id'] ] ) ) { |
| 269 | 269 | |
| 270 | - // Uploads. |
|
| 271 | - if ( $field['type'] == 'file_upload' ) { |
|
| 272 | - $max_file_num = empty( $field['max_file_num'] ) ? 1 : absint( $field['max_file_num'] ); |
|
| 270 | + // Uploads. |
|
| 271 | + if ( $field['type'] == 'file_upload' ) { |
|
| 272 | + $max_file_num = empty( $field['max_file_num'] ) ? 1 : absint( $field['max_file_num'] ); |
|
| 273 | 273 | |
| 274 | - if ( count( $data[ $field['id'] ] ) > $max_file_num ) { |
|
| 275 | - wp_send_json_error( __( 'Maximum number of allowed files exceeded.', 'invoicing' ) ); |
|
| 276 | - } |
|
| 274 | + if ( count( $data[ $field['id'] ] ) > $max_file_num ) { |
|
| 275 | + wp_send_json_error( __( 'Maximum number of allowed files exceeded.', 'invoicing' ) ); |
|
| 276 | + } |
|
| 277 | 277 | |
| 278 | - $value = array(); |
|
| 278 | + $value = array(); |
|
| 279 | 279 | |
| 280 | - foreach ( $data[ $field['id'] ] as $url => $name ) { |
|
| 281 | - $value[] = sprintf( |
|
| 282 | - '<a href="%s" target="_blank">%s</a>', |
|
| 283 | - esc_url_raw( $url ), |
|
| 284 | - esc_html( $name ) |
|
| 285 | - ); |
|
| 286 | - } |
|
| 280 | + foreach ( $data[ $field['id'] ] as $url => $name ) { |
|
| 281 | + $value[] = sprintf( |
|
| 282 | + '<a href="%s" target="_blank">%s</a>', |
|
| 283 | + esc_url_raw( $url ), |
|
| 284 | + esc_html( $name ) |
|
| 285 | + ); |
|
| 286 | + } |
|
| 287 | 287 | |
| 288 | - $value = implode( ' | ', $value ); |
|
| 288 | + $value = implode( ' | ', $value ); |
|
| 289 | 289 | |
| 290 | - } else if ( $field['type'] == 'checkbox' ) { |
|
| 291 | - $value = isset( $data[ $field['id'] ] ) ? __( 'Yes', 'invoicing' ) : __( 'No', 'invoicing' ); |
|
| 292 | - } else { |
|
| 293 | - $value = wp_kses_post( $data[ $field['id'] ] ); |
|
| 294 | - } |
|
| 290 | + } else if ( $field['type'] == 'checkbox' ) { |
|
| 291 | + $value = isset( $data[ $field['id'] ] ) ? __( 'Yes', 'invoicing' ) : __( 'No', 'invoicing' ); |
|
| 292 | + } else { |
|
| 293 | + $value = wp_kses_post( $data[ $field['id'] ] ); |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | 296 | $label = $field['id']; |
| 297 | 297 | |
@@ -299,190 +299,190 @@ discard block |
||
| 299 | 299 | $label = $field['label']; |
| 300 | 300 | } |
| 301 | 301 | |
| 302 | - if ( ! empty( $field['add_meta'] ) ) { |
|
| 303 | - $prepared['meta'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
| 304 | - } |
|
| 305 | - $prepared['all'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
| 302 | + if ( ! empty( $field['add_meta'] ) ) { |
|
| 303 | + $prepared['meta'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
| 304 | + } |
|
| 305 | + $prepared['all'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
| 306 | 306 | |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | - } |
|
| 309 | + } |
|
| 310 | 310 | |
| 311 | - return $prepared; |
|
| 311 | + return $prepared; |
|
| 312 | 312 | |
| 313 | - } |
|
| 313 | + } |
|
| 314 | 314 | |
| 315 | - /** |
|
| 315 | + /** |
|
| 316 | 316 | * Retrieves address details. |
| 317 | 317 | * |
| 318 | - * @return array |
|
| 319 | - * @param WPInv_Invoice $invoice |
|
| 320 | - * @param string $type |
|
| 318 | + * @return array |
|
| 319 | + * @param WPInv_Invoice $invoice |
|
| 320 | + * @param string $type |
|
| 321 | 321 | */ |
| 322 | 322 | public function prepare_address_details( $invoice, $type = 'billing' ) { |
| 323 | 323 | |
| 324 | - $data = $this->payment_form_submission->get_data(); |
|
| 325 | - $type = sanitize_key( $type ); |
|
| 326 | - $address = array(); |
|
| 327 | - $prepared = array(); |
|
| 324 | + $data = $this->payment_form_submission->get_data(); |
|
| 325 | + $type = sanitize_key( $type ); |
|
| 326 | + $address = array(); |
|
| 327 | + $prepared = array(); |
|
| 328 | 328 | |
| 329 | - if ( ! empty( $data[ $type ] ) ) { |
|
| 330 | - $address = $data[ $type ]; |
|
| 331 | - } |
|
| 329 | + if ( ! empty( $data[ $type ] ) ) { |
|
| 330 | + $address = $data[ $type ]; |
|
| 331 | + } |
|
| 332 | 332 | |
| 333 | - // Clean address details. |
|
| 334 | - foreach ( $address as $key => $value ) { |
|
| 335 | - $key = sanitize_key( $key ); |
|
| 336 | - $key = str_replace( 'wpinv_', '', $key ); |
|
| 337 | - $value = wpinv_clean( $value ); |
|
| 338 | - $prepared[ $key] = apply_filters( "getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice ); |
|
| 339 | - } |
|
| 333 | + // Clean address details. |
|
| 334 | + foreach ( $address as $key => $value ) { |
|
| 335 | + $key = sanitize_key( $key ); |
|
| 336 | + $key = str_replace( 'wpinv_', '', $key ); |
|
| 337 | + $value = wpinv_clean( $value ); |
|
| 338 | + $prepared[ $key] = apply_filters( "getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice ); |
|
| 339 | + } |
|
| 340 | 340 | |
| 341 | - // Filter address details. |
|
| 342 | - $prepared = apply_filters( "getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice ); |
|
| 341 | + // Filter address details. |
|
| 342 | + $prepared = apply_filters( "getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice ); |
|
| 343 | 343 | |
| 344 | - // Remove non-whitelisted values. |
|
| 345 | - return array_filter( $prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY ); |
|
| 344 | + // Remove non-whitelisted values. |
|
| 345 | + return array_filter( $prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY ); |
|
| 346 | 346 | |
| 347 | - } |
|
| 347 | + } |
|
| 348 | 348 | |
| 349 | - /** |
|
| 349 | + /** |
|
| 350 | 350 | * Prepares the billing details. |
| 351 | 351 | * |
| 352 | - * @return array |
|
| 353 | - * @param WPInv_Invoice $invoice |
|
| 352 | + * @return array |
|
| 353 | + * @param WPInv_Invoice $invoice |
|
| 354 | 354 | */ |
| 355 | 355 | protected function prepare_billing_info( &$invoice ) { |
| 356 | 356 | |
| 357 | - $billing_address = $this->prepare_address_details( $invoice, 'billing' ); |
|
| 357 | + $billing_address = $this->prepare_address_details( $invoice, 'billing' ); |
|
| 358 | 358 | |
| 359 | - // Update the invoice with the billing details. |
|
| 360 | - $invoice->set_props( $billing_address ); |
|
| 359 | + // Update the invoice with the billing details. |
|
| 360 | + $invoice->set_props( $billing_address ); |
|
| 361 | 361 | |
| 362 | - } |
|
| 362 | + } |
|
| 363 | 363 | |
| 364 | - /** |
|
| 364 | + /** |
|
| 365 | 365 | * Prepares the shipping details. |
| 366 | 366 | * |
| 367 | - * @return array |
|
| 368 | - * @param WPInv_Invoice $invoice |
|
| 367 | + * @return array |
|
| 368 | + * @param WPInv_Invoice $invoice |
|
| 369 | 369 | */ |
| 370 | 370 | protected function prepare_shipping_info( $invoice ) { |
| 371 | 371 | |
| 372 | - $data = $this->payment_form_submission->get_data(); |
|
| 372 | + $data = $this->payment_form_submission->get_data(); |
|
| 373 | 373 | |
| 374 | - if ( empty( $data['same-shipping-address'] ) ) { |
|
| 375 | - return $this->prepare_address_details( $invoice, 'shipping' ); |
|
| 376 | - } |
|
| 374 | + if ( empty( $data['same-shipping-address'] ) ) { |
|
| 375 | + return $this->prepare_address_details( $invoice, 'shipping' ); |
|
| 376 | + } |
|
| 377 | 377 | |
| 378 | - return $this->prepare_address_details( $invoice, 'billing' ); |
|
| 378 | + return $this->prepare_address_details( $invoice, 'billing' ); |
|
| 379 | 379 | |
| 380 | - } |
|
| 380 | + } |
|
| 381 | 381 | |
| 382 | - /** |
|
| 383 | - * Confirms the submission is valid and send users to the gateway. |
|
| 384 | - * |
|
| 385 | - * @param WPInv_Invoice $invoice |
|
| 386 | - * @param array $prepared_payment_form_data |
|
| 387 | - * @param array $shipping |
|
| 388 | - */ |
|
| 389 | - protected function post_process_submission( $invoice, $prepared_payment_form_data, $shipping ) { |
|
| 382 | + /** |
|
| 383 | + * Confirms the submission is valid and send users to the gateway. |
|
| 384 | + * |
|
| 385 | + * @param WPInv_Invoice $invoice |
|
| 386 | + * @param array $prepared_payment_form_data |
|
| 387 | + * @param array $shipping |
|
| 388 | + */ |
|
| 389 | + protected function post_process_submission( $invoice, $prepared_payment_form_data, $shipping ) { |
|
| 390 | 390 | |
| 391 | - // Ensure the invoice exists. |
|
| 391 | + // Ensure the invoice exists. |
|
| 392 | 392 | if ( ! $invoice->exists() ) { |
| 393 | 393 | wp_send_json_error( __( 'An error occured while saving your invoice. Please try again.', 'invoicing' ) ); |
| 394 | 394 | } |
| 395 | 395 | |
| 396 | - // Save payment form data. |
|
| 397 | - $prepared_payment_form_data = apply_filters( 'getpaid_prepared_payment_form_data', $prepared_payment_form_data, $invoice ); |
|
| 396 | + // Save payment form data. |
|
| 397 | + $prepared_payment_form_data = apply_filters( 'getpaid_prepared_payment_form_data', $prepared_payment_form_data, $invoice ); |
|
| 398 | 398 | delete_post_meta( $invoice->get_id(), 'payment_form_data' ); |
| 399 | - delete_post_meta( $invoice->get_id(), 'additional_meta_data' ); |
|
| 400 | - if ( ! empty( $prepared_payment_form_data ) ) { |
|
| 399 | + delete_post_meta( $invoice->get_id(), 'additional_meta_data' ); |
|
| 400 | + if ( ! empty( $prepared_payment_form_data ) ) { |
|
| 401 | 401 | |
| 402 | - if ( ! empty( $prepared_payment_form_data['all'] ) ) { |
|
| 403 | - update_post_meta( $invoice->get_id(), 'payment_form_data', $prepared_payment_form_data['all'] ); |
|
| 404 | - } |
|
| 402 | + if ( ! empty( $prepared_payment_form_data['all'] ) ) { |
|
| 403 | + update_post_meta( $invoice->get_id(), 'payment_form_data', $prepared_payment_form_data['all'] ); |
|
| 404 | + } |
|
| 405 | 405 | |
| 406 | - if ( ! empty( $prepared_payment_form_data['meta'] ) ) { |
|
| 407 | - update_post_meta( $invoice->get_id(), 'additional_meta_data', $prepared_payment_form_data['meta'] ); |
|
| 408 | - } |
|
| 406 | + if ( ! empty( $prepared_payment_form_data['meta'] ) ) { |
|
| 407 | + update_post_meta( $invoice->get_id(), 'additional_meta_data', $prepared_payment_form_data['meta'] ); |
|
| 408 | + } |
|
| 409 | 409 | |
| 410 | - } |
|
| 410 | + } |
|
| 411 | 411 | |
| 412 | - // Save payment form data. |
|
| 413 | - $shipping = apply_filters( 'getpaid_checkout_shipping_details', $shipping, $this->payment_form_submission ); |
|
| 412 | + // Save payment form data. |
|
| 413 | + $shipping = apply_filters( 'getpaid_checkout_shipping_details', $shipping, $this->payment_form_submission ); |
|
| 414 | 414 | if ( ! empty( $shipping ) ) { |
| 415 | 415 | update_post_meta( $invoice->get_id(), 'shipping_address', $shipping ); |
| 416 | - } |
|
| 416 | + } |
|
| 417 | 417 | |
| 418 | - // Backwards compatibility. |
|
| 418 | + // Backwards compatibility. |
|
| 419 | 419 | add_filter( 'wp_redirect', array( $this, 'send_redirect_response' ) ); |
| 420 | 420 | |
| 421 | - $this->process_payment( $invoice ); |
|
| 421 | + $this->process_payment( $invoice ); |
|
| 422 | 422 | |
| 423 | 423 | // If we are here, there was an error. |
| 424 | - wpinv_send_back_to_checkout( $invoice ); |
|
| 424 | + wpinv_send_back_to_checkout( $invoice ); |
|
| 425 | 425 | |
| 426 | - } |
|
| 426 | + } |
|
| 427 | 427 | |
| 428 | - /** |
|
| 429 | - * Processes the actual payment. |
|
| 430 | - * |
|
| 431 | - * @param WPInv_Invoice $invoice |
|
| 432 | - */ |
|
| 433 | - protected function process_payment( $invoice ) { |
|
| 428 | + /** |
|
| 429 | + * Processes the actual payment. |
|
| 430 | + * |
|
| 431 | + * @param WPInv_Invoice $invoice |
|
| 432 | + */ |
|
| 433 | + protected function process_payment( $invoice ) { |
|
| 434 | 434 | |
| 435 | - // Clear any checkout errors. |
|
| 436 | - wpinv_clear_errors(); |
|
| 435 | + // Clear any checkout errors. |
|
| 436 | + wpinv_clear_errors(); |
|
| 437 | 437 | |
| 438 | - // No need to send free invoices to the gateway. |
|
| 439 | - if ( $invoice->is_free() ) { |
|
| 440 | - $this->process_free_payment( $invoice ); |
|
| 441 | - } |
|
| 438 | + // No need to send free invoices to the gateway. |
|
| 439 | + if ( $invoice->is_free() ) { |
|
| 440 | + $this->process_free_payment( $invoice ); |
|
| 441 | + } |
|
| 442 | 442 | |
| 443 | - $submission = $this->payment_form_submission; |
|
| 443 | + $submission = $this->payment_form_submission; |
|
| 444 | 444 | |
| 445 | - // Fires before sending to the gateway. |
|
| 446 | - do_action( 'getpaid_checkout_before_gateway', $invoice, $submission ); |
|
| 445 | + // Fires before sending to the gateway. |
|
| 446 | + do_action( 'getpaid_checkout_before_gateway', $invoice, $submission ); |
|
| 447 | 447 | |
| 448 | - // Allow the sumission data to be modified before it is sent to the gateway. |
|
| 449 | - $submission_data = $submission->get_data(); |
|
| 450 | - $submission_gateway = apply_filters( 'getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice ); |
|
| 451 | - $submission_data = apply_filters( 'getpaid_gateway_submission_data', $submission_data, $submission, $invoice ); |
|
| 448 | + // Allow the sumission data to be modified before it is sent to the gateway. |
|
| 449 | + $submission_data = $submission->get_data(); |
|
| 450 | + $submission_gateway = apply_filters( 'getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice ); |
|
| 451 | + $submission_data = apply_filters( 'getpaid_gateway_submission_data', $submission_data, $submission, $invoice ); |
|
| 452 | 452 | |
| 453 | - // Validate the currency. |
|
| 454 | - if ( ! apply_filters( "getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency() ) ) { |
|
| 455 | - wpinv_set_error( 'invalid_currency', __( 'The chosen payment gateway does not support this currency', 'invoicing' ) ); |
|
| 456 | - } |
|
| 453 | + // Validate the currency. |
|
| 454 | + if ( ! apply_filters( "getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency() ) ) { |
|
| 455 | + wpinv_set_error( 'invalid_currency', __( 'The chosen payment gateway does not support this currency', 'invoicing' ) ); |
|
| 456 | + } |
|
| 457 | 457 | |
| 458 | - // Check to see if we have any errors. |
|
| 459 | - if ( wpinv_get_errors() ) { |
|
| 460 | - wpinv_send_back_to_checkout( $invoice ); |
|
| 461 | - } |
|
| 458 | + // Check to see if we have any errors. |
|
| 459 | + if ( wpinv_get_errors() ) { |
|
| 460 | + wpinv_send_back_to_checkout( $invoice ); |
|
| 461 | + } |
|
| 462 | 462 | |
| 463 | - // Send info to the gateway for payment processing |
|
| 464 | - do_action( "getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission ); |
|
| 463 | + // Send info to the gateway for payment processing |
|
| 464 | + do_action( "getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission ); |
|
| 465 | 465 | |
| 466 | - // Backwards compatibility. |
|
| 467 | - wpinv_send_to_gateway( $submission_gateway, $invoice ); |
|
| 466 | + // Backwards compatibility. |
|
| 467 | + wpinv_send_to_gateway( $submission_gateway, $invoice ); |
|
| 468 | 468 | |
| 469 | - } |
|
| 469 | + } |
|
| 470 | 470 | |
| 471 | - /** |
|
| 472 | - * Marks the invoice as paid in case the checkout is free. |
|
| 473 | - * |
|
| 474 | - * @param WPInv_Invoice $invoice |
|
| 475 | - */ |
|
| 476 | - protected function process_free_payment( $invoice ) { |
|
| 471 | + /** |
|
| 472 | + * Marks the invoice as paid in case the checkout is free. |
|
| 473 | + * |
|
| 474 | + * @param WPInv_Invoice $invoice |
|
| 475 | + */ |
|
| 476 | + protected function process_free_payment( $invoice ) { |
|
| 477 | 477 | |
| 478 | - $invoice->set_gateway( 'none' ); |
|
| 479 | - $invoice->add_note( __( "This is a free invoice and won't be sent to the payment gateway", 'invoicing' ), false, false, true ); |
|
| 480 | - $invoice->mark_paid(); |
|
| 481 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
| 478 | + $invoice->set_gateway( 'none' ); |
|
| 479 | + $invoice->add_note( __( "This is a free invoice and won't be sent to the payment gateway", 'invoicing' ), false, false, true ); |
|
| 480 | + $invoice->mark_paid(); |
|
| 481 | + wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
| 482 | 482 | |
| 483 | - } |
|
| 483 | + } |
|
| 484 | 484 | |
| 485 | - /** |
|
| 485 | + /** |
|
| 486 | 486 | * Sends a redrect response to payment details. |
| 487 | 487 | * |
| 488 | 488 | */ |
@@ -12,474 +12,474 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Paypal_Gateway_IPN_Handler { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Payment method id. |
|
| 17 | - * |
|
| 18 | - * @var string |
|
| 19 | - */ |
|
| 20 | - protected $id = 'paypal'; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Payment method object. |
|
| 24 | - * |
|
| 25 | - * @var GetPaid_Paypal_Gateway |
|
| 26 | - */ |
|
| 27 | - protected $gateway; |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Class constructor. |
|
| 31 | - * |
|
| 32 | - * @param GetPaid_Paypal_Gateway $gateway |
|
| 33 | - */ |
|
| 34 | - public function __construct( $gateway ) { |
|
| 35 | - $this->gateway = $gateway; |
|
| 36 | - $this->verify_ipn(); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - /** |
|
| 40 | - * Processes ipns and marks payments as complete. |
|
| 41 | - * |
|
| 42 | - * @return void |
|
| 43 | - */ |
|
| 44 | - public function verify_ipn() { |
|
| 45 | - |
|
| 46 | - wpinv_error_log( 'GetPaid PayPal IPN Handler', false ); |
|
| 47 | - |
|
| 48 | - // Validate the IPN. |
|
| 49 | - if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
|
| 50 | - wp_die( 'PayPal IPN Request Failure', 500 ); |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - // Process the IPN. |
|
| 54 | - $posted = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 55 | - $invoice = $this->get_ipn_invoice( $posted ); |
|
| 56 | - |
|
| 57 | - // Abort if it was not paid by our gateway. |
|
| 58 | - if ( $this->id != $invoice->get_gateway() ) { |
|
| 59 | - wpinv_error_log( 'Aborting, Invoice was not paid via PayPal', false ); |
|
| 60 | - wp_die( 'Invoice not paid via PayPal', 200 ); |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - $posted['payment_status'] = isset( $posted['payment_status'] ) ? sanitize_key( strtolower( $posted['payment_status'] ) ) : ''; |
|
| 64 | - $posted['txn_type'] = sanitize_key( strtolower( $posted['txn_type'] ) ); |
|
| 65 | - |
|
| 66 | - wpinv_error_log( 'Payment status:' . $posted['payment_status'], false ); |
|
| 67 | - wpinv_error_log( 'IPN Type:' . $posted['txn_type'], false ); |
|
| 68 | - |
|
| 69 | - if ( method_exists( $this, 'ipn_txn_' . $posted['txn_type'] ) ) { |
|
| 70 | - call_user_func( array( $this, 'ipn_txn_' . $posted['txn_type'] ), $invoice, $posted ); |
|
| 71 | - wpinv_error_log( 'Done processing IPN', false ); |
|
| 72 | - wp_die( 'Processed', 200 ); |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - wpinv_error_log( 'Aborting, Unsupported IPN type:' . $posted['txn_type'], false ); |
|
| 76 | - wp_die( 'Unsupported IPN type', 200 ); |
|
| 77 | - |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * Retrieves IPN Invoice. |
|
| 82 | - * |
|
| 83 | - * @param array $posted |
|
| 84 | - * @return WPInv_Invoice |
|
| 85 | - */ |
|
| 86 | - protected function get_ipn_invoice( $posted ) { |
|
| 87 | - |
|
| 88 | - wpinv_error_log( 'Retrieving PayPal IPN Response Invoice', false ); |
|
| 89 | - |
|
| 90 | - if ( ! empty( $posted['custom'] ) ) { |
|
| 91 | - $invoice = new WPInv_Invoice( $posted['custom'] ); |
|
| 92 | - |
|
| 93 | - if ( $invoice->exists() ) { |
|
| 94 | - wpinv_error_log( 'Found invoice #' . $invoice->get_number(), false ); |
|
| 95 | - return $invoice; |
|
| 96 | - } |
|
| 97 | - |
|
| 98 | - } |
|
| 99 | - |
|
| 100 | - wpinv_error_log( 'Could not retrieve the associated invoice.', false ); |
|
| 101 | - wp_die( 'Could not retrieve the associated invoice.', 200 ); |
|
| 102 | - } |
|
| 103 | - |
|
| 104 | - /** |
|
| 105 | - * Check PayPal IPN validity. |
|
| 106 | - */ |
|
| 107 | - protected function validate_ipn() { |
|
| 108 | - |
|
| 109 | - wpinv_error_log( 'Validating PayPal IPN response', false ); |
|
| 110 | - |
|
| 111 | - // Retrieve the associated invoice. |
|
| 112 | - $posted = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 113 | - $invoice = $this->get_ipn_invoice( $posted ); |
|
| 114 | - |
|
| 115 | - if ( $this->gateway->is_sandbox( $invoice ) ) { |
|
| 116 | - wpinv_error_log( $posted, 'Invoice was processed in sandbox hence logging the posted data', false ); |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - // Validate the IPN. |
|
| 120 | - $posted['cmd'] = '_notify-validate'; |
|
| 121 | - |
|
| 122 | - // Send back post vars to paypal. |
|
| 123 | - $params = array( |
|
| 124 | - 'body' => $posted, |
|
| 125 | - 'timeout' => 60, |
|
| 126 | - 'httpversion' => '1.1', |
|
| 127 | - 'compress' => false, |
|
| 128 | - 'decompress' => false, |
|
| 129 | - 'user-agent' => 'GetPaid/' . WPINV_VERSION, |
|
| 130 | - ); |
|
| 131 | - |
|
| 132 | - // Post back to get a response. |
|
| 133 | - $response = wp_safe_remote_post( $this->gateway->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
| 134 | - |
|
| 135 | - // Check to see if the request was valid. |
|
| 136 | - if ( ! is_wp_error( $response ) && $response['response']['code'] < 300 && strstr( $response['body'], 'VERIFIED' ) ) { |
|
| 137 | - wpinv_error_log( 'Received valid response from PayPal IPN: ' . $response['body'], false ); |
|
| 138 | - return true; |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - if ( is_wp_error( $response ) ) { |
|
| 142 | - wpinv_error_log( $response->get_error_message(), 'Received invalid response from PayPal IPN' ); |
|
| 143 | - return false; |
|
| 144 | - } |
|
| 15 | + /** |
|
| 16 | + * Payment method id. |
|
| 17 | + * |
|
| 18 | + * @var string |
|
| 19 | + */ |
|
| 20 | + protected $id = 'paypal'; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Payment method object. |
|
| 24 | + * |
|
| 25 | + * @var GetPaid_Paypal_Gateway |
|
| 26 | + */ |
|
| 27 | + protected $gateway; |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Class constructor. |
|
| 31 | + * |
|
| 32 | + * @param GetPaid_Paypal_Gateway $gateway |
|
| 33 | + */ |
|
| 34 | + public function __construct( $gateway ) { |
|
| 35 | + $this->gateway = $gateway; |
|
| 36 | + $this->verify_ipn(); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + /** |
|
| 40 | + * Processes ipns and marks payments as complete. |
|
| 41 | + * |
|
| 42 | + * @return void |
|
| 43 | + */ |
|
| 44 | + public function verify_ipn() { |
|
| 45 | + |
|
| 46 | + wpinv_error_log( 'GetPaid PayPal IPN Handler', false ); |
|
| 47 | + |
|
| 48 | + // Validate the IPN. |
|
| 49 | + if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
|
| 50 | + wp_die( 'PayPal IPN Request Failure', 500 ); |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + // Process the IPN. |
|
| 54 | + $posted = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 55 | + $invoice = $this->get_ipn_invoice( $posted ); |
|
| 56 | + |
|
| 57 | + // Abort if it was not paid by our gateway. |
|
| 58 | + if ( $this->id != $invoice->get_gateway() ) { |
|
| 59 | + wpinv_error_log( 'Aborting, Invoice was not paid via PayPal', false ); |
|
| 60 | + wp_die( 'Invoice not paid via PayPal', 200 ); |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + $posted['payment_status'] = isset( $posted['payment_status'] ) ? sanitize_key( strtolower( $posted['payment_status'] ) ) : ''; |
|
| 64 | + $posted['txn_type'] = sanitize_key( strtolower( $posted['txn_type'] ) ); |
|
| 65 | + |
|
| 66 | + wpinv_error_log( 'Payment status:' . $posted['payment_status'], false ); |
|
| 67 | + wpinv_error_log( 'IPN Type:' . $posted['txn_type'], false ); |
|
| 68 | + |
|
| 69 | + if ( method_exists( $this, 'ipn_txn_' . $posted['txn_type'] ) ) { |
|
| 70 | + call_user_func( array( $this, 'ipn_txn_' . $posted['txn_type'] ), $invoice, $posted ); |
|
| 71 | + wpinv_error_log( 'Done processing IPN', false ); |
|
| 72 | + wp_die( 'Processed', 200 ); |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + wpinv_error_log( 'Aborting, Unsupported IPN type:' . $posted['txn_type'], false ); |
|
| 76 | + wp_die( 'Unsupported IPN type', 200 ); |
|
| 77 | + |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * Retrieves IPN Invoice. |
|
| 82 | + * |
|
| 83 | + * @param array $posted |
|
| 84 | + * @return WPInv_Invoice |
|
| 85 | + */ |
|
| 86 | + protected function get_ipn_invoice( $posted ) { |
|
| 87 | + |
|
| 88 | + wpinv_error_log( 'Retrieving PayPal IPN Response Invoice', false ); |
|
| 89 | + |
|
| 90 | + if ( ! empty( $posted['custom'] ) ) { |
|
| 91 | + $invoice = new WPInv_Invoice( $posted['custom'] ); |
|
| 92 | + |
|
| 93 | + if ( $invoice->exists() ) { |
|
| 94 | + wpinv_error_log( 'Found invoice #' . $invoice->get_number(), false ); |
|
| 95 | + return $invoice; |
|
| 96 | + } |
|
| 97 | + |
|
| 98 | + } |
|
| 99 | + |
|
| 100 | + wpinv_error_log( 'Could not retrieve the associated invoice.', false ); |
|
| 101 | + wp_die( 'Could not retrieve the associated invoice.', 200 ); |
|
| 102 | + } |
|
| 103 | + |
|
| 104 | + /** |
|
| 105 | + * Check PayPal IPN validity. |
|
| 106 | + */ |
|
| 107 | + protected function validate_ipn() { |
|
| 108 | + |
|
| 109 | + wpinv_error_log( 'Validating PayPal IPN response', false ); |
|
| 110 | + |
|
| 111 | + // Retrieve the associated invoice. |
|
| 112 | + $posted = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 113 | + $invoice = $this->get_ipn_invoice( $posted ); |
|
| 114 | + |
|
| 115 | + if ( $this->gateway->is_sandbox( $invoice ) ) { |
|
| 116 | + wpinv_error_log( $posted, 'Invoice was processed in sandbox hence logging the posted data', false ); |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + // Validate the IPN. |
|
| 120 | + $posted['cmd'] = '_notify-validate'; |
|
| 121 | + |
|
| 122 | + // Send back post vars to paypal. |
|
| 123 | + $params = array( |
|
| 124 | + 'body' => $posted, |
|
| 125 | + 'timeout' => 60, |
|
| 126 | + 'httpversion' => '1.1', |
|
| 127 | + 'compress' => false, |
|
| 128 | + 'decompress' => false, |
|
| 129 | + 'user-agent' => 'GetPaid/' . WPINV_VERSION, |
|
| 130 | + ); |
|
| 131 | + |
|
| 132 | + // Post back to get a response. |
|
| 133 | + $response = wp_safe_remote_post( $this->gateway->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
| 134 | + |
|
| 135 | + // Check to see if the request was valid. |
|
| 136 | + if ( ! is_wp_error( $response ) && $response['response']['code'] < 300 && strstr( $response['body'], 'VERIFIED' ) ) { |
|
| 137 | + wpinv_error_log( 'Received valid response from PayPal IPN: ' . $response['body'], false ); |
|
| 138 | + return true; |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + if ( is_wp_error( $response ) ) { |
|
| 142 | + wpinv_error_log( $response->get_error_message(), 'Received invalid response from PayPal IPN' ); |
|
| 143 | + return false; |
|
| 144 | + } |
|
| 145 | 145 | |
| 146 | - wpinv_error_log( $response['body'], 'Received invalid response from PayPal IPN' ); |
|
| 147 | - return false; |
|
| 148 | - |
|
| 149 | - } |
|
| 146 | + wpinv_error_log( $response['body'], 'Received invalid response from PayPal IPN' ); |
|
| 147 | + return false; |
|
| 148 | + |
|
| 149 | + } |
|
| 150 | 150 | |
| 151 | - /** |
|
| 152 | - * Check currency from IPN matches the invoice. |
|
| 153 | - * |
|
| 154 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 155 | - * @param string $currency currency to validate. |
|
| 156 | - */ |
|
| 157 | - protected function validate_ipn_currency( $invoice, $currency ) { |
|
| 151 | + /** |
|
| 152 | + * Check currency from IPN matches the invoice. |
|
| 153 | + * |
|
| 154 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 155 | + * @param string $currency currency to validate. |
|
| 156 | + */ |
|
| 157 | + protected function validate_ipn_currency( $invoice, $currency ) { |
|
| 158 | 158 | |
| 159 | - if ( strtolower( $invoice->get_currency() ) !== strtolower( $currency ) ) { |
|
| 159 | + if ( strtolower( $invoice->get_currency() ) !== strtolower( $currency ) ) { |
|
| 160 | 160 | |
| 161 | - /* translators: %s: currency code. */ |
|
| 162 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal currencies do not match (code %s).', 'invoicing' ), $currency ) ); |
|
| 161 | + /* translators: %s: currency code. */ |
|
| 162 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal currencies do not match (code %s).', 'invoicing' ), $currency ) ); |
|
| 163 | 163 | |
| 164 | - wpinv_error_log( "Currencies do not match: {$currency} instead of {$invoice->get_currency()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 165 | - } |
|
| 164 | + wpinv_error_log( "Currencies do not match: {$currency} instead of {$invoice->get_currency()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 165 | + } |
|
| 166 | 166 | |
| 167 | - wpinv_error_log( $currency, 'Validated IPN Currency', false ); |
|
| 168 | - } |
|
| 167 | + wpinv_error_log( $currency, 'Validated IPN Currency', false ); |
|
| 168 | + } |
|
| 169 | 169 | |
| 170 | - /** |
|
| 171 | - * Check payment amount from IPN matches the invoice. |
|
| 172 | - * |
|
| 173 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 174 | - * @param float $amount amount to validate. |
|
| 175 | - */ |
|
| 176 | - protected function validate_ipn_amount( $invoice, $amount ) { |
|
| 177 | - if ( number_format( $invoice->get_total(), 2, '.', '' ) !== number_format( $amount, 2, '.', '' ) ) { |
|
| 170 | + /** |
|
| 171 | + * Check payment amount from IPN matches the invoice. |
|
| 172 | + * |
|
| 173 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 174 | + * @param float $amount amount to validate. |
|
| 175 | + */ |
|
| 176 | + protected function validate_ipn_amount( $invoice, $amount ) { |
|
| 177 | + if ( number_format( $invoice->get_total(), 2, '.', '' ) !== number_format( $amount, 2, '.', '' ) ) { |
|
| 178 | 178 | |
| 179 | - /* translators: %s: Amount. */ |
|
| 180 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal amounts do not match (gross %s).', 'invoicing' ), $amount ) ); |
|
| 179 | + /* translators: %s: Amount. */ |
|
| 180 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal amounts do not match (gross %s).', 'invoicing' ), $amount ) ); |
|
| 181 | 181 | |
| 182 | - wpinv_error_log( "Amounts do not match: {$amount} instead of {$invoice->get_total()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 183 | - } |
|
| 182 | + wpinv_error_log( "Amounts do not match: {$amount} instead of {$invoice->get_total()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 183 | + } |
|
| 184 | 184 | |
| 185 | - wpinv_error_log( $amount, 'Validated IPN Amount', false ); |
|
| 186 | - } |
|
| 185 | + wpinv_error_log( $amount, 'Validated IPN Amount', false ); |
|
| 186 | + } |
|
| 187 | 187 | |
| 188 | - /** |
|
| 189 | - * Verify receiver email from PayPal. |
|
| 190 | - * |
|
| 191 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 192 | - * @param string $receiver_email Email to validate. |
|
| 193 | - */ |
|
| 194 | - protected function validate_ipn_receiver_email( $invoice, $receiver_email ) { |
|
| 195 | - $paypal_email = wpinv_get_option( 'paypal_email' ); |
|
| 188 | + /** |
|
| 189 | + * Verify receiver email from PayPal. |
|
| 190 | + * |
|
| 191 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 192 | + * @param string $receiver_email Email to validate. |
|
| 193 | + */ |
|
| 194 | + protected function validate_ipn_receiver_email( $invoice, $receiver_email ) { |
|
| 195 | + $paypal_email = wpinv_get_option( 'paypal_email' ); |
|
| 196 | 196 | |
| 197 | - if ( strcasecmp( trim( $receiver_email ), trim( $paypal_email ) ) !== 0 ) { |
|
| 198 | - wpinv_record_gateway_error( 'IPN Error', "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}" ); |
|
| 197 | + if ( strcasecmp( trim( $receiver_email ), trim( $paypal_email ) ) !== 0 ) { |
|
| 198 | + wpinv_record_gateway_error( 'IPN Error', "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}" ); |
|
| 199 | 199 | |
| 200 | - /* translators: %s: email address . */ |
|
| 201 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal IPN response from a different email address (%s).', 'invoicing' ), $receiver_email ) ); |
|
| 200 | + /* translators: %s: email address . */ |
|
| 201 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal IPN response from a different email address (%s).', 'invoicing' ), $receiver_email ) ); |
|
| 202 | 202 | |
| 203 | - return wpinv_error_log( "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 204 | - } |
|
| 203 | + return wpinv_error_log( "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 204 | + } |
|
| 205 | 205 | |
| 206 | - wpinv_error_log( 'Validated PayPal Email', false ); |
|
| 207 | - } |
|
| 206 | + wpinv_error_log( 'Validated PayPal Email', false ); |
|
| 207 | + } |
|
| 208 | 208 | |
| 209 | - /** |
|
| 210 | - * Handles one time payments. |
|
| 211 | - * |
|
| 212 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 213 | - * @param array $posted Posted data. |
|
| 214 | - */ |
|
| 215 | - protected function ipn_txn_web_accept( $invoice, $posted ) { |
|
| 209 | + /** |
|
| 210 | + * Handles one time payments. |
|
| 211 | + * |
|
| 212 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 213 | + * @param array $posted Posted data. |
|
| 214 | + */ |
|
| 215 | + protected function ipn_txn_web_accept( $invoice, $posted ) { |
|
| 216 | 216 | |
| 217 | - // Collect payment details |
|
| 218 | - $payment_status = strtolower( $posted['payment_status'] ); |
|
| 219 | - $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 217 | + // Collect payment details |
|
| 218 | + $payment_status = strtolower( $posted['payment_status'] ); |
|
| 219 | + $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 220 | 220 | |
| 221 | - $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 222 | - $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 221 | + $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 222 | + $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 223 | 223 | |
| 224 | - // Update the transaction id. |
|
| 225 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 226 | - $invoice->set_transaction_id( wpinv_clean( $posted['txn_id'] ) ); |
|
| 227 | - $invoice->save(); |
|
| 228 | - } |
|
| 224 | + // Update the transaction id. |
|
| 225 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 226 | + $invoice->set_transaction_id( wpinv_clean( $posted['txn_id'] ) ); |
|
| 227 | + $invoice->save(); |
|
| 228 | + } |
|
| 229 | 229 | |
| 230 | - $invoice->add_system_note( __( 'Processing invoice IPN', 'invoicing' ) ); |
|
| 230 | + $invoice->add_system_note( __( 'Processing invoice IPN', 'invoicing' ) ); |
|
| 231 | 231 | |
| 232 | - // Process a refund. |
|
| 233 | - if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) { |
|
| 232 | + // Process a refund. |
|
| 233 | + if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) { |
|
| 234 | 234 | |
| 235 | - update_post_meta( $invoice->get_id(), 'refunded_remotely', 1 ); |
|
| 235 | + update_post_meta( $invoice->get_id(), 'refunded_remotely', 1 ); |
|
| 236 | 236 | |
| 237 | - if ( ! $invoice->is_refunded() ) { |
|
| 238 | - $invoice->update_status( 'wpi-refunded', $posted['reason_code'] ); |
|
| 239 | - } |
|
| 237 | + if ( ! $invoice->is_refunded() ) { |
|
| 238 | + $invoice->update_status( 'wpi-refunded', $posted['reason_code'] ); |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | - return wpinv_error_log( $posted['reason_code'], false ); |
|
| 242 | - } |
|
| 241 | + return wpinv_error_log( $posted['reason_code'], false ); |
|
| 242 | + } |
|
| 243 | 243 | |
| 244 | - // Process payments. |
|
| 245 | - if ( $payment_status == 'completed' ) { |
|
| 244 | + // Process payments. |
|
| 245 | + if ( $payment_status == 'completed' ) { |
|
| 246 | 246 | |
| 247 | - if ( $invoice->is_paid() && 'wpi_processing' != $invoice->get_status() ) { |
|
| 248 | - return wpinv_error_log( 'Aborting, Invoice #' . $invoice->get_number() . ' is already paid.', false ); |
|
| 249 | - } |
|
| 247 | + if ( $invoice->is_paid() && 'wpi_processing' != $invoice->get_status() ) { |
|
| 248 | + return wpinv_error_log( 'Aborting, Invoice #' . $invoice->get_number() . ' is already paid.', false ); |
|
| 249 | + } |
|
| 250 | 250 | |
| 251 | - $this->validate_ipn_amount( $invoice, $posted['mc_gross'] ); |
|
| 251 | + $this->validate_ipn_amount( $invoice, $posted['mc_gross'] ); |
|
| 252 | 252 | |
| 253 | - $note = ''; |
|
| 253 | + $note = ''; |
|
| 254 | 254 | |
| 255 | - if ( ! empty( $posted['mc_fee'] ) ) { |
|
| 256 | - $note = sprintf( __( 'PayPal Transaction Fee %s.', 'invoicing' ), sanitize_text_field( $posted['mc_fee'] ) ); |
|
| 257 | - } |
|
| 255 | + if ( ! empty( $posted['mc_fee'] ) ) { |
|
| 256 | + $note = sprintf( __( 'PayPal Transaction Fee %s.', 'invoicing' ), sanitize_text_field( $posted['mc_fee'] ) ); |
|
| 257 | + } |
|
| 258 | 258 | |
| 259 | - if ( ! empty( $posted['payer_status'] ) ) { |
|
| 260 | - $note = ' ' . sprintf( __( 'Buyer status %s.', 'invoicing' ), sanitize_text_field( $posted['payer_status'] ) ); |
|
| 261 | - } |
|
| 259 | + if ( ! empty( $posted['payer_status'] ) ) { |
|
| 260 | + $note = ' ' . sprintf( __( 'Buyer status %s.', 'invoicing' ), sanitize_text_field( $posted['payer_status'] ) ); |
|
| 261 | + } |
|
| 262 | 262 | |
| 263 | - $invoice->mark_paid( ( ! empty( $posted['txn_id'] ) ? sanitize_text_field( $posted['txn_id'] ) : '' ), trim( $note ) ); |
|
| 264 | - return wpinv_error_log( 'Invoice marked as paid.', false ); |
|
| 263 | + $invoice->mark_paid( ( ! empty( $posted['txn_id'] ) ? sanitize_text_field( $posted['txn_id'] ) : '' ), trim( $note ) ); |
|
| 264 | + return wpinv_error_log( 'Invoice marked as paid.', false ); |
|
| 265 | 265 | |
| 266 | - } |
|
| 266 | + } |
|
| 267 | 267 | |
| 268 | - // Pending payments. |
|
| 269 | - if ( $payment_status == 'pending' ) { |
|
| 268 | + // Pending payments. |
|
| 269 | + if ( $payment_status == 'pending' ) { |
|
| 270 | 270 | |
| 271 | - /* translators: %s: pending reason. */ |
|
| 272 | - $invoice->update_status( 'wpi-onhold', sprintf( __( 'Payment pending (%s).', 'invoicing' ), $posted['pending_reason'] ) ); |
|
| 271 | + /* translators: %s: pending reason. */ |
|
| 272 | + $invoice->update_status( 'wpi-onhold', sprintf( __( 'Payment pending (%s).', 'invoicing' ), $posted['pending_reason'] ) ); |
|
| 273 | 273 | |
| 274 | - return wpinv_error_log( 'Invoice marked as "payment held".', false ); |
|
| 275 | - } |
|
| 274 | + return wpinv_error_log( 'Invoice marked as "payment held".', false ); |
|
| 275 | + } |
|
| 276 | 276 | |
| 277 | - /* translators: %s: payment status. */ |
|
| 278 | - $invoice->update_status( 'wpi-failed', sprintf( __( 'Payment %s via IPN.', 'invoicing' ), sanitize_text_field( $posted['payment_status'] ) ) ); |
|
| 277 | + /* translators: %s: payment status. */ |
|
| 278 | + $invoice->update_status( 'wpi-failed', sprintf( __( 'Payment %s via IPN.', 'invoicing' ), sanitize_text_field( $posted['payment_status'] ) ) ); |
|
| 279 | 279 | |
| 280 | - } |
|
| 280 | + } |
|
| 281 | 281 | |
| 282 | - /** |
|
| 283 | - * Handles one time payments. |
|
| 284 | - * |
|
| 285 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 286 | - * @param array $posted Posted data. |
|
| 287 | - */ |
|
| 288 | - protected function ipn_txn_cart( $invoice, $posted ) { |
|
| 289 | - $this->ipn_txn_web_accept( $invoice, $posted ); |
|
| 290 | - } |
|
| 282 | + /** |
|
| 283 | + * Handles one time payments. |
|
| 284 | + * |
|
| 285 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 286 | + * @param array $posted Posted data. |
|
| 287 | + */ |
|
| 288 | + protected function ipn_txn_cart( $invoice, $posted ) { |
|
| 289 | + $this->ipn_txn_web_accept( $invoice, $posted ); |
|
| 290 | + } |
|
| 291 | 291 | |
| 292 | - /** |
|
| 293 | - * Handles subscription sign ups. |
|
| 294 | - * |
|
| 295 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 296 | - * @param array $posted Posted data. |
|
| 297 | - */ |
|
| 298 | - protected function ipn_txn_subscr_signup( $invoice, $posted ) { |
|
| 292 | + /** |
|
| 293 | + * Handles subscription sign ups. |
|
| 294 | + * |
|
| 295 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 296 | + * @param array $posted Posted data. |
|
| 297 | + */ |
|
| 298 | + protected function ipn_txn_subscr_signup( $invoice, $posted ) { |
|
| 299 | 299 | |
| 300 | - wpinv_error_log( 'Processing subscription signup', false ); |
|
| 300 | + wpinv_error_log( 'Processing subscription signup', false ); |
|
| 301 | 301 | |
| 302 | - // Make sure the invoice has a subscription. |
|
| 303 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 302 | + // Make sure the invoice has a subscription. |
|
| 303 | + $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 304 | 304 | |
| 305 | - if ( empty( $subscription ) ) { |
|
| 306 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 307 | - } |
|
| 305 | + if ( empty( $subscription ) ) { |
|
| 306 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 307 | + } |
|
| 308 | 308 | |
| 309 | - wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 309 | + wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 310 | 310 | |
| 311 | - // Validate the IPN. |
|
| 312 | - $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 313 | - $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 314 | - $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 311 | + // Validate the IPN. |
|
| 312 | + $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 313 | + $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 314 | + $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 315 | 315 | |
| 316 | - // Activate the subscription. |
|
| 317 | - $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
|
| 318 | - $subscription->set_date_created( current_time( 'mysql' ) ); |
|
| 319 | - $subscription->set_expiration( date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ) ); |
|
| 320 | - $subscription->set_profile_id( sanitize_text_field( $posted['subscr_id'] ) ); |
|
| 321 | - $subscription->activate(); |
|
| 316 | + // Activate the subscription. |
|
| 317 | + $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
|
| 318 | + $subscription->set_date_created( current_time( 'mysql' ) ); |
|
| 319 | + $subscription->set_expiration( date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ) ); |
|
| 320 | + $subscription->set_profile_id( sanitize_text_field( $posted['subscr_id'] ) ); |
|
| 321 | + $subscription->activate(); |
|
| 322 | 322 | |
| 323 | - // Set the transaction id. |
|
| 324 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 325 | - $invoice->add_note( sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ) , $posted['txn_id'] ), false, false, true ); |
|
| 326 | - $invoice->set_transaction_id( $posted['txn_id'] ); |
|
| 327 | - } |
|
| 323 | + // Set the transaction id. |
|
| 324 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 325 | + $invoice->add_note( sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ) , $posted['txn_id'] ), false, false, true ); |
|
| 326 | + $invoice->set_transaction_id( $posted['txn_id'] ); |
|
| 327 | + } |
|
| 328 | 328 | |
| 329 | - // Update the payment status. |
|
| 330 | - $invoice->mark_paid(); |
|
| 329 | + // Update the payment status. |
|
| 330 | + $invoice->mark_paid(); |
|
| 331 | 331 | |
| 332 | - $invoice->add_note( sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ) , $posted['subscr_id'] ), false, false, true ); |
|
| 332 | + $invoice->add_note( sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ) , $posted['subscr_id'] ), false, false, true ); |
|
| 333 | 333 | |
| 334 | - wpinv_error_log( 'Subscription started.', false ); |
|
| 335 | - } |
|
| 334 | + wpinv_error_log( 'Subscription started.', false ); |
|
| 335 | + } |
|
| 336 | 336 | |
| 337 | - /** |
|
| 338 | - * Handles subscription renewals. |
|
| 339 | - * |
|
| 340 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 341 | - * @param array $posted Posted data. |
|
| 342 | - */ |
|
| 343 | - protected function ipn_txn_subscr_payment( $invoice, $posted ) { |
|
| 337 | + /** |
|
| 338 | + * Handles subscription renewals. |
|
| 339 | + * |
|
| 340 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 341 | + * @param array $posted Posted data. |
|
| 342 | + */ |
|
| 343 | + protected function ipn_txn_subscr_payment( $invoice, $posted ) { |
|
| 344 | 344 | |
| 345 | - // Make sure the invoice has a subscription. |
|
| 346 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 345 | + // Make sure the invoice has a subscription. |
|
| 346 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 347 | 347 | |
| 348 | - if ( empty( $subscription ) ) { |
|
| 349 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 350 | - } |
|
| 348 | + if ( empty( $subscription ) ) { |
|
| 349 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 352 | + wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 353 | 353 | |
| 354 | - // PayPal sends a subscr_payment for the first payment too. |
|
| 355 | - $date_completed = getpaid_format_date( $invoice->get_date_completed() ); |
|
| 356 | - $date_created = getpaid_format_date( $invoice->get_date_created() ); |
|
| 357 | - $today_date = getpaid_format_date( current_time( 'mysql' ) ); |
|
| 358 | - $payment_date = getpaid_format_date( $posted['payment_date'] ); |
|
| 359 | - $subscribe_date = getpaid_format_date( $subscription->get_date_created() ); |
|
| 360 | - $dates = array_filter( compact( 'date_completed', 'date_created', 'subscribe_date' ) ); |
|
| 354 | + // PayPal sends a subscr_payment for the first payment too. |
|
| 355 | + $date_completed = getpaid_format_date( $invoice->get_date_completed() ); |
|
| 356 | + $date_created = getpaid_format_date( $invoice->get_date_created() ); |
|
| 357 | + $today_date = getpaid_format_date( current_time( 'mysql' ) ); |
|
| 358 | + $payment_date = getpaid_format_date( $posted['payment_date'] ); |
|
| 359 | + $subscribe_date = getpaid_format_date( $subscription->get_date_created() ); |
|
| 360 | + $dates = array_filter( compact( 'date_completed', 'date_created', 'subscribe_date' ) ); |
|
| 361 | 361 | |
| 362 | - foreach( $dates as $date ) { |
|
| 362 | + foreach( $dates as $date ) { |
|
| 363 | 363 | |
| 364 | - if ( $date !== $today_date && $date !== $payment_date ) { |
|
| 365 | - continue; |
|
| 366 | - } |
|
| 364 | + if ( $date !== $today_date && $date !== $payment_date ) { |
|
| 365 | + continue; |
|
| 366 | + } |
|
| 367 | 367 | |
| 368 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 369 | - $invoice->set_transaction_id( sanitize_text_field( $posted['txn_id'] ) ); |
|
| 370 | - $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ) , sanitize_text_field( $posted['txn_id'] ) ), false, false, true ); |
|
| 371 | - } |
|
| 368 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 369 | + $invoice->set_transaction_id( sanitize_text_field( $posted['txn_id'] ) ); |
|
| 370 | + $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ) , sanitize_text_field( $posted['txn_id'] ) ), false, false, true ); |
|
| 371 | + } |
|
| 372 | 372 | |
| 373 | - return $invoice->mark_paid(); |
|
| 374 | - |
|
| 375 | - } |
|
| 373 | + return $invoice->mark_paid(); |
|
| 374 | + |
|
| 375 | + } |
|
| 376 | 376 | |
| 377 | - wpinv_error_log( 'Processing subscription renewal payment for the invoice ' . $invoice->get_id(), false ); |
|
| 378 | - |
|
| 379 | - // Abort if the payment is already recorded. |
|
| 380 | - if ( wpinv_get_id_by_transaction_id( $posted['txn_id'] ) ) { |
|
| 381 | - return wpinv_error_log( 'Aborting, Transaction ' . $posted['txn_id'] .' has already been processed', false ); |
|
| 382 | - } |
|
| 383 | - |
|
| 384 | - $args = array( |
|
| 385 | - 'transaction_id' => $posted['txn_id'], |
|
| 386 | - 'gateway' => $this->id, |
|
| 387 | - ); |
|
| 388 | - |
|
| 389 | - $invoice = wpinv_get_invoice( $subscription->add_payment( $args ) ); |
|
| 377 | + wpinv_error_log( 'Processing subscription renewal payment for the invoice ' . $invoice->get_id(), false ); |
|
| 378 | + |
|
| 379 | + // Abort if the payment is already recorded. |
|
| 380 | + if ( wpinv_get_id_by_transaction_id( $posted['txn_id'] ) ) { |
|
| 381 | + return wpinv_error_log( 'Aborting, Transaction ' . $posted['txn_id'] .' has already been processed', false ); |
|
| 382 | + } |
|
| 383 | + |
|
| 384 | + $args = array( |
|
| 385 | + 'transaction_id' => $posted['txn_id'], |
|
| 386 | + 'gateway' => $this->id, |
|
| 387 | + ); |
|
| 388 | + |
|
| 389 | + $invoice = wpinv_get_invoice( $subscription->add_payment( $args ) ); |
|
| 390 | 390 | |
| 391 | - if ( empty( $invoice ) ) { |
|
| 392 | - return; |
|
| 393 | - } |
|
| 391 | + if ( empty( $invoice ) ) { |
|
| 392 | + return; |
|
| 393 | + } |
|
| 394 | 394 | |
| 395 | - $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ) , $posted['txn_id'] ), false, false, true ); |
|
| 396 | - $invoice->add_note( wp_sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ) , $posted['subscr_id'] ), false, false, true ); |
|
| 395 | + $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ) , $posted['txn_id'] ), false, false, true ); |
|
| 396 | + $invoice->add_note( wp_sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ) , $posted['subscr_id'] ), false, false, true ); |
|
| 397 | 397 | |
| 398 | - $subscription->renew(); |
|
| 399 | - wpinv_error_log( 'Subscription renewed.', false ); |
|
| 398 | + $subscription->renew(); |
|
| 399 | + wpinv_error_log( 'Subscription renewed.', false ); |
|
| 400 | 400 | |
| 401 | - } |
|
| 401 | + } |
|
| 402 | 402 | |
| 403 | - /** |
|
| 404 | - * Handles subscription cancelations. |
|
| 405 | - * |
|
| 406 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 407 | - */ |
|
| 408 | - protected function ipn_txn_subscr_cancel( $invoice ) { |
|
| 403 | + /** |
|
| 404 | + * Handles subscription cancelations. |
|
| 405 | + * |
|
| 406 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 407 | + */ |
|
| 408 | + protected function ipn_txn_subscr_cancel( $invoice ) { |
|
| 409 | 409 | |
| 410 | - // Make sure the invoice has a subscription. |
|
| 411 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 412 | - |
|
| 413 | - if ( empty( $subscription ) ) { |
|
| 414 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false); |
|
| 415 | - } |
|
| 416 | - |
|
| 417 | - wpinv_error_log( 'Processing subscription cancellation for the invoice ' . $invoice->get_id(), false ); |
|
| 418 | - $subscription->cancel(); |
|
| 419 | - wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 410 | + // Make sure the invoice has a subscription. |
|
| 411 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 412 | + |
|
| 413 | + if ( empty( $subscription ) ) { |
|
| 414 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false); |
|
| 415 | + } |
|
| 416 | + |
|
| 417 | + wpinv_error_log( 'Processing subscription cancellation for the invoice ' . $invoice->get_id(), false ); |
|
| 418 | + $subscription->cancel(); |
|
| 419 | + wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 420 | 420 | |
| 421 | - } |
|
| 421 | + } |
|
| 422 | 422 | |
| 423 | - /** |
|
| 424 | - * Handles subscription completions. |
|
| 425 | - * |
|
| 426 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 427 | - * @param array $posted Posted data. |
|
| 428 | - */ |
|
| 429 | - protected function ipn_txn_subscr_eot( $invoice ) { |
|
| 423 | + /** |
|
| 424 | + * Handles subscription completions. |
|
| 425 | + * |
|
| 426 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 427 | + * @param array $posted Posted data. |
|
| 428 | + */ |
|
| 429 | + protected function ipn_txn_subscr_eot( $invoice ) { |
|
| 430 | 430 | |
| 431 | - // Make sure the invoice has a subscription. |
|
| 432 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 431 | + // Make sure the invoice has a subscription. |
|
| 432 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 433 | 433 | |
| 434 | - if ( empty( $subscription ) ) { |
|
| 435 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 436 | - } |
|
| 434 | + if ( empty( $subscription ) ) { |
|
| 435 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 436 | + } |
|
| 437 | 437 | |
| 438 | - wpinv_error_log( 'Processing subscription end of life for the invoice ' . $invoice->get_id(), false ); |
|
| 439 | - $subscription->complete(); |
|
| 440 | - wpinv_error_log( 'Subscription completed.', false ); |
|
| 438 | + wpinv_error_log( 'Processing subscription end of life for the invoice ' . $invoice->get_id(), false ); |
|
| 439 | + $subscription->complete(); |
|
| 440 | + wpinv_error_log( 'Subscription completed.', false ); |
|
| 441 | 441 | |
| 442 | - } |
|
| 442 | + } |
|
| 443 | 443 | |
| 444 | - /** |
|
| 445 | - * Handles subscription fails. |
|
| 446 | - * |
|
| 447 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 448 | - * @param array $posted Posted data. |
|
| 449 | - */ |
|
| 450 | - protected function ipn_txn_subscr_failed( $invoice ) { |
|
| 444 | + /** |
|
| 445 | + * Handles subscription fails. |
|
| 446 | + * |
|
| 447 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 448 | + * @param array $posted Posted data. |
|
| 449 | + */ |
|
| 450 | + protected function ipn_txn_subscr_failed( $invoice ) { |
|
| 451 | 451 | |
| 452 | - // Make sure the invoice has a subscription. |
|
| 453 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 452 | + // Make sure the invoice has a subscription. |
|
| 453 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 454 | 454 | |
| 455 | - if ( empty( $subscription ) ) { |
|
| 456 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 457 | - } |
|
| 455 | + if ( empty( $subscription ) ) { |
|
| 456 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 457 | + } |
|
| 458 | 458 | |
| 459 | - wpinv_error_log( 'Processing subscription payment failure for the invoice ' . $invoice->get_id(), false ); |
|
| 460 | - $subscription->failing(); |
|
| 461 | - wpinv_error_log( 'Subscription marked as failing.', false ); |
|
| 459 | + wpinv_error_log( 'Processing subscription payment failure for the invoice ' . $invoice->get_id(), false ); |
|
| 460 | + $subscription->failing(); |
|
| 461 | + wpinv_error_log( 'Subscription marked as failing.', false ); |
|
| 462 | 462 | |
| 463 | - } |
|
| 463 | + } |
|
| 464 | 464 | |
| 465 | - /** |
|
| 466 | - * Handles subscription suspensions. |
|
| 467 | - * |
|
| 468 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 469 | - * @param array $posted Posted data. |
|
| 470 | - */ |
|
| 471 | - protected function ipn_txn_recurring_payment_suspended_due_to_max_failed_payment( $invoice ) { |
|
| 465 | + /** |
|
| 466 | + * Handles subscription suspensions. |
|
| 467 | + * |
|
| 468 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 469 | + * @param array $posted Posted data. |
|
| 470 | + */ |
|
| 471 | + protected function ipn_txn_recurring_payment_suspended_due_to_max_failed_payment( $invoice ) { |
|
| 472 | 472 | |
| 473 | - // Make sure the invoice has a subscription. |
|
| 474 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 473 | + // Make sure the invoice has a subscription. |
|
| 474 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 475 | 475 | |
| 476 | - if ( empty( $subscription ) ) { |
|
| 477 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 478 | - } |
|
| 479 | - |
|
| 480 | - wpinv_error_log( 'Processing subscription cancellation due to max failed payment for the invoice ' . $invoice->get_id(), false ); |
|
| 481 | - $subscription->cancel(); |
|
| 482 | - wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 483 | - } |
|
| 476 | + if ( empty( $subscription ) ) { |
|
| 477 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 478 | + } |
|
| 479 | + |
|
| 480 | + wpinv_error_log( 'Processing subscription cancellation due to max failed payment for the invoice ' . $invoice->get_id(), false ); |
|
| 481 | + $subscription->cancel(); |
|
| 482 | + wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 483 | + } |
|
| 484 | 484 | |
| 485 | 485 | } |
@@ -12,47 +12,47 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Reports_Export { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Displays the reports tab. |
|
| 17 | - * |
|
| 18 | - */ |
|
| 19 | - public function display() { |
|
| 20 | - |
|
| 21 | - echo "<div class='row mt-4' style='max-width: 920px;' >"; |
|
| 22 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 23 | - $this->display_post_type_export( $post_type ); |
|
| 24 | - } |
|
| 25 | - $this->display_subscription_export(); |
|
| 26 | - echo "</div>"; |
|
| 27 | - |
|
| 28 | - } |
|
| 29 | - |
|
| 30 | - /** |
|
| 31 | - * Retrieves the download url. |
|
| 32 | - * |
|
| 33 | - */ |
|
| 34 | - public function get_download_url( $post_type ) { |
|
| 35 | - |
|
| 36 | - return wp_nonce_url( |
|
| 37 | - add_query_arg( |
|
| 38 | - array( |
|
| 39 | - 'getpaid-admin-action' => 'export_invoices', |
|
| 40 | - 'post_type' => urlencode( $post_type ), |
|
| 41 | - ) |
|
| 42 | - ), |
|
| 43 | - 'getpaid-nonce', |
|
| 44 | - 'getpaid-nonce' |
|
| 45 | - ); |
|
| 46 | - |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - /** |
|
| 50 | - * Displays a single post type export card. |
|
| 51 | - * |
|
| 52 | - */ |
|
| 53 | - public function display_post_type_export( $post_type ) { |
|
| 54 | - |
|
| 55 | - ?> |
|
| 15 | + /** |
|
| 16 | + * Displays the reports tab. |
|
| 17 | + * |
|
| 18 | + */ |
|
| 19 | + public function display() { |
|
| 20 | + |
|
| 21 | + echo "<div class='row mt-4' style='max-width: 920px;' >"; |
|
| 22 | + foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 23 | + $this->display_post_type_export( $post_type ); |
|
| 24 | + } |
|
| 25 | + $this->display_subscription_export(); |
|
| 26 | + echo "</div>"; |
|
| 27 | + |
|
| 28 | + } |
|
| 29 | + |
|
| 30 | + /** |
|
| 31 | + * Retrieves the download url. |
|
| 32 | + * |
|
| 33 | + */ |
|
| 34 | + public function get_download_url( $post_type ) { |
|
| 35 | + |
|
| 36 | + return wp_nonce_url( |
|
| 37 | + add_query_arg( |
|
| 38 | + array( |
|
| 39 | + 'getpaid-admin-action' => 'export_invoices', |
|
| 40 | + 'post_type' => urlencode( $post_type ), |
|
| 41 | + ) |
|
| 42 | + ), |
|
| 43 | + 'getpaid-nonce', |
|
| 44 | + 'getpaid-nonce' |
|
| 45 | + ); |
|
| 46 | + |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + /** |
|
| 50 | + * Displays a single post type export card. |
|
| 51 | + * |
|
| 52 | + */ |
|
| 53 | + public function display_post_type_export( $post_type ) { |
|
| 54 | + |
|
| 55 | + ?> |
|
| 56 | 56 | |
| 57 | 57 | <div class="col-12 col-md-6"> |
| 58 | 58 | <div class="card m-0 p-0" style="max-width:100%"> |
@@ -60,11 +60,11 @@ discard block |
||
| 60 | 60 | <div class="card-header"> |
| 61 | 61 | <strong> |
| 62 | 62 | <?php |
| 63 | - printf( |
|
| 64 | - __( 'Export %s', 'invoicing' ), |
|
| 65 | - sanitize_text_field( getpaid_get_post_type_label( $post_type ) ) |
|
| 66 | - ); |
|
| 67 | - ?> |
|
| 63 | + printf( |
|
| 64 | + __( 'Export %s', 'invoicing' ), |
|
| 65 | + sanitize_text_field( getpaid_get_post_type_label( $post_type ) ) |
|
| 66 | + ); |
|
| 67 | + ?> |
|
| 68 | 68 | </strong> |
| 69 | 69 | </div> |
| 70 | 70 | |
@@ -73,12 +73,12 @@ discard block |
||
| 73 | 73 | <form method="post" action="<?php echo esc_url( $this->get_download_url( $post_type ) ); ?>"> |
| 74 | 74 | |
| 75 | 75 | <?php |
| 76 | - $this->display_markup( $this->generate_from_date( $post_type ) ); |
|
| 77 | - $this->display_markup( $this->generate_to_date( $post_type ) ); |
|
| 78 | - $this->display_markup( $this->generate_post_status_select( $post_type ) ); |
|
| 79 | - $this->display_markup( $this->generate_file_type_select( $post_type ) ); |
|
| 80 | - submit_button( __( 'Download', 'invoicing' ) ); |
|
| 81 | - ?> |
|
| 76 | + $this->display_markup( $this->generate_from_date( $post_type ) ); |
|
| 77 | + $this->display_markup( $this->generate_to_date( $post_type ) ); |
|
| 78 | + $this->display_markup( $this->generate_post_status_select( $post_type ) ); |
|
| 79 | + $this->display_markup( $this->generate_file_type_select( $post_type ) ); |
|
| 80 | + submit_button( __( 'Download', 'invoicing' ) ); |
|
| 81 | + ?> |
|
| 82 | 82 | |
| 83 | 83 | </form> |
| 84 | 84 | |
@@ -89,122 +89,122 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | <?php |
| 91 | 91 | |
| 92 | - } |
|
| 93 | - |
|
| 94 | - /** |
|
| 95 | - * Generates the from date input field. |
|
| 96 | - * |
|
| 97 | - */ |
|
| 98 | - public function generate_from_date( $post_type ) { |
|
| 99 | - |
|
| 100 | - return aui()->input( |
|
| 101 | - array( |
|
| 102 | - 'name' => 'from_date', |
|
| 103 | - 'id' => esc_attr( "$post_type-from_date" ), |
|
| 104 | - 'placeholder'=> 'yy-mm-dd', |
|
| 105 | - 'label' => __( 'From Date', 'invoicing' ), |
|
| 106 | - 'label_type' => 'vertical', |
|
| 107 | - 'label_class' => 'd-block', |
|
| 108 | - 'type' => 'datepicker', |
|
| 109 | - ) |
|
| 110 | - ); |
|
| 111 | - |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - /** |
|
| 115 | - * Generates the to date input field. |
|
| 116 | - * |
|
| 117 | - */ |
|
| 118 | - public function generate_to_date( $post_type ) { |
|
| 119 | - |
|
| 120 | - return aui()->input( |
|
| 121 | - array( |
|
| 122 | - 'name' => 'to_date', |
|
| 123 | - 'id' => esc_attr( "$post_type-to_date" ), |
|
| 124 | - 'placeholder'=> 'yy-mm-dd', |
|
| 125 | - 'label' => __( 'To Date', 'invoicing' ), |
|
| 126 | - 'label_type' => 'vertical', |
|
| 127 | - 'label_class' => 'd-block', |
|
| 128 | - 'type' => 'datepicker', |
|
| 129 | - ) |
|
| 130 | - ); |
|
| 131 | - |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - /** |
|
| 135 | - * Generates the to post status select field. |
|
| 136 | - * |
|
| 137 | - */ |
|
| 138 | - public function generate_post_status_select( $post_type ) { |
|
| 139 | - |
|
| 140 | - if ( 'subscriptions' === $post_type ) { |
|
| 141 | - $options = getpaid_get_subscription_statuses(); |
|
| 142 | - } else { |
|
| 143 | - $options = wpinv_get_invoice_statuses( true, false, $post_type ); |
|
| 144 | - } |
|
| 145 | - |
|
| 146 | - return aui()->select( |
|
| 147 | - array( |
|
| 148 | - 'name' => 'status', |
|
| 149 | - 'id' => esc_attr( "$post_type-status" ), |
|
| 150 | - 'placeholder' => __( 'All Statuses', 'invoicing' ), |
|
| 151 | - 'label' => __( 'Status', 'invoicing' ), |
|
| 152 | - 'label_type' => 'vertical', |
|
| 153 | - 'label_class' => 'd-block', |
|
| 154 | - 'options' => $options, |
|
| 155 | - ) |
|
| 156 | - ); |
|
| 157 | - |
|
| 158 | - } |
|
| 159 | - |
|
| 160 | - /** |
|
| 161 | - * Generates the to file type select field. |
|
| 162 | - * |
|
| 163 | - */ |
|
| 164 | - public function generate_file_type_select( $post_type ) { |
|
| 165 | - |
|
| 166 | - return aui()->select( |
|
| 167 | - array( |
|
| 168 | - 'name' => 'file_type', |
|
| 169 | - 'id' => esc_attr( "$post_type-file_type" ), |
|
| 170 | - 'placeholder' => __( 'Select File Type', 'invoicing' ), |
|
| 171 | - 'label' => __( 'Export File', 'invoicing' ), |
|
| 172 | - 'label_type' => 'vertical', |
|
| 173 | - 'label_class' => 'd-block', |
|
| 174 | - 'options' => array( |
|
| 175 | - 'csv' => __( 'CSV', 'invoicing' ), |
|
| 176 | - 'xml' => __( 'XML', 'invoicing' ), |
|
| 177 | - 'json' => __( 'JSON', 'invoicing' ), |
|
| 178 | - ), |
|
| 179 | - ) |
|
| 180 | - ); |
|
| 181 | - |
|
| 182 | - } |
|
| 183 | - |
|
| 184 | - /** |
|
| 185 | - * Displays a field's markup. |
|
| 186 | - * |
|
| 187 | - */ |
|
| 188 | - public function display_markup( $markup ) { |
|
| 189 | - |
|
| 190 | - echo str_replace( |
|
| 191 | - array( |
|
| 192 | - 'form-control', |
|
| 193 | - 'custom-select' |
|
| 194 | - ), |
|
| 195 | - 'regular-text', |
|
| 196 | - $markup |
|
| 197 | - ); |
|
| 198 | - |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - /** |
|
| 202 | - * Displays a subscription export card. |
|
| 203 | - * |
|
| 204 | - */ |
|
| 205 | - public function display_subscription_export() { |
|
| 206 | - |
|
| 207 | - ?> |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + /** |
|
| 95 | + * Generates the from date input field. |
|
| 96 | + * |
|
| 97 | + */ |
|
| 98 | + public function generate_from_date( $post_type ) { |
|
| 99 | + |
|
| 100 | + return aui()->input( |
|
| 101 | + array( |
|
| 102 | + 'name' => 'from_date', |
|
| 103 | + 'id' => esc_attr( "$post_type-from_date" ), |
|
| 104 | + 'placeholder'=> 'yy-mm-dd', |
|
| 105 | + 'label' => __( 'From Date', 'invoicing' ), |
|
| 106 | + 'label_type' => 'vertical', |
|
| 107 | + 'label_class' => 'd-block', |
|
| 108 | + 'type' => 'datepicker', |
|
| 109 | + ) |
|
| 110 | + ); |
|
| 111 | + |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + /** |
|
| 115 | + * Generates the to date input field. |
|
| 116 | + * |
|
| 117 | + */ |
|
| 118 | + public function generate_to_date( $post_type ) { |
|
| 119 | + |
|
| 120 | + return aui()->input( |
|
| 121 | + array( |
|
| 122 | + 'name' => 'to_date', |
|
| 123 | + 'id' => esc_attr( "$post_type-to_date" ), |
|
| 124 | + 'placeholder'=> 'yy-mm-dd', |
|
| 125 | + 'label' => __( 'To Date', 'invoicing' ), |
|
| 126 | + 'label_type' => 'vertical', |
|
| 127 | + 'label_class' => 'd-block', |
|
| 128 | + 'type' => 'datepicker', |
|
| 129 | + ) |
|
| 130 | + ); |
|
| 131 | + |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + /** |
|
| 135 | + * Generates the to post status select field. |
|
| 136 | + * |
|
| 137 | + */ |
|
| 138 | + public function generate_post_status_select( $post_type ) { |
|
| 139 | + |
|
| 140 | + if ( 'subscriptions' === $post_type ) { |
|
| 141 | + $options = getpaid_get_subscription_statuses(); |
|
| 142 | + } else { |
|
| 143 | + $options = wpinv_get_invoice_statuses( true, false, $post_type ); |
|
| 144 | + } |
|
| 145 | + |
|
| 146 | + return aui()->select( |
|
| 147 | + array( |
|
| 148 | + 'name' => 'status', |
|
| 149 | + 'id' => esc_attr( "$post_type-status" ), |
|
| 150 | + 'placeholder' => __( 'All Statuses', 'invoicing' ), |
|
| 151 | + 'label' => __( 'Status', 'invoicing' ), |
|
| 152 | + 'label_type' => 'vertical', |
|
| 153 | + 'label_class' => 'd-block', |
|
| 154 | + 'options' => $options, |
|
| 155 | + ) |
|
| 156 | + ); |
|
| 157 | + |
|
| 158 | + } |
|
| 159 | + |
|
| 160 | + /** |
|
| 161 | + * Generates the to file type select field. |
|
| 162 | + * |
|
| 163 | + */ |
|
| 164 | + public function generate_file_type_select( $post_type ) { |
|
| 165 | + |
|
| 166 | + return aui()->select( |
|
| 167 | + array( |
|
| 168 | + 'name' => 'file_type', |
|
| 169 | + 'id' => esc_attr( "$post_type-file_type" ), |
|
| 170 | + 'placeholder' => __( 'Select File Type', 'invoicing' ), |
|
| 171 | + 'label' => __( 'Export File', 'invoicing' ), |
|
| 172 | + 'label_type' => 'vertical', |
|
| 173 | + 'label_class' => 'd-block', |
|
| 174 | + 'options' => array( |
|
| 175 | + 'csv' => __( 'CSV', 'invoicing' ), |
|
| 176 | + 'xml' => __( 'XML', 'invoicing' ), |
|
| 177 | + 'json' => __( 'JSON', 'invoicing' ), |
|
| 178 | + ), |
|
| 179 | + ) |
|
| 180 | + ); |
|
| 181 | + |
|
| 182 | + } |
|
| 183 | + |
|
| 184 | + /** |
|
| 185 | + * Displays a field's markup. |
|
| 186 | + * |
|
| 187 | + */ |
|
| 188 | + public function display_markup( $markup ) { |
|
| 189 | + |
|
| 190 | + echo str_replace( |
|
| 191 | + array( |
|
| 192 | + 'form-control', |
|
| 193 | + 'custom-select' |
|
| 194 | + ), |
|
| 195 | + 'regular-text', |
|
| 196 | + $markup |
|
| 197 | + ); |
|
| 198 | + |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + /** |
|
| 202 | + * Displays a subscription export card. |
|
| 203 | + * |
|
| 204 | + */ |
|
| 205 | + public function display_subscription_export() { |
|
| 206 | + |
|
| 207 | + ?> |
|
| 208 | 208 | |
| 209 | 209 | <div class="col-12 col-md-6"> |
| 210 | 210 | <div class="card m-0 p-0" style="max-width:100%"> |
@@ -220,12 +220,12 @@ discard block |
||
| 220 | 220 | <form method="post" action="<?php echo esc_url( $this->get_download_url( 'subscriptions' ) ); ?>"> |
| 221 | 221 | |
| 222 | 222 | <?php |
| 223 | - $this->display_markup( $this->generate_from_date( 'subscriptions' ) ); |
|
| 224 | - $this->display_markup( $this->generate_to_date( 'subscriptions' ) ); |
|
| 225 | - $this->display_markup( $this->generate_post_status_select( 'subscriptions' ) ); |
|
| 226 | - $this->display_markup( $this->generate_file_type_select( 'subscriptions' ) ); |
|
| 227 | - submit_button( __( 'Download', 'invoicing' ) ); |
|
| 228 | - ?> |
|
| 223 | + $this->display_markup( $this->generate_from_date( 'subscriptions' ) ); |
|
| 224 | + $this->display_markup( $this->generate_to_date( 'subscriptions' ) ); |
|
| 225 | + $this->display_markup( $this->generate_post_status_select( 'subscriptions' ) ); |
|
| 226 | + $this->display_markup( $this->generate_file_type_select( 'subscriptions' ) ); |
|
| 227 | + submit_button( __( 'Download', 'invoicing' ) ); |
|
| 228 | + ?> |
|
| 229 | 229 | |
| 230 | 230 | </form> |
| 231 | 231 | |
@@ -236,6 +236,6 @@ discard block |
||
| 236 | 236 | |
| 237 | 237 | <?php |
| 238 | 238 | |
| 239 | - } |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | 241 | } |
@@ -12,177 +12,177 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Subscription_Exporter extends GetPaid_Graph_Downloader { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Retrieves subscription query args. |
|
| 17 | - * |
|
| 18 | - * @param array $args Args to search for. |
|
| 19 | - * @return array |
|
| 20 | - */ |
|
| 21 | - public function get_subscription_query_args( $args ) { |
|
| 22 | - |
|
| 23 | - $query_args = array( |
|
| 24 | - 'status' => 'all', |
|
| 25 | - 'number' => -1, |
|
| 26 | - 'count_total' => false, |
|
| 27 | - 'fields' => 'all', |
|
| 28 | - ); |
|
| 29 | - |
|
| 30 | - if ( ! empty( $args['status'] ) && in_array( $args['status'], array_keys( getpaid_get_subscription_statuses() ), true ) ) { |
|
| 31 | - $query_args['status'] = wpinv_clean( wpinv_parse_list( $args['status'] ) ); |
|
| 32 | - } |
|
| 33 | - |
|
| 34 | - $date_query = array(); |
|
| 35 | - if ( ! empty( $args['to_date'] ) ) { |
|
| 36 | - $date_query['before'] = wpinv_clean( $args['to_date'] ); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - if ( ! empty( $args['from_date'] ) ) { |
|
| 40 | - $date_query['after'] = wpinv_clean( $args['from_date'] ); |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - if ( ! empty( $date_query ) ) { |
|
| 44 | - $date_query['inclusive'] = true; |
|
| 45 | - $query_args['date_created_query'] = array( $date_query ); |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - return $query_args; |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - /** |
|
| 52 | - * Retrieves subscriptions. |
|
| 53 | - * |
|
| 54 | - * @param array $query_args GetPaid_Subscriptions_Query args. |
|
| 55 | - * @return WPInv_Subscription[] |
|
| 56 | - */ |
|
| 57 | - public function get_subscriptions( $query_args ) { |
|
| 58 | - |
|
| 59 | - // Get subscriptions. |
|
| 60 | - $subscriptions = new GetPaid_Subscriptions_Query( $query_args ); |
|
| 61 | - |
|
| 62 | - // Prepare the results. |
|
| 63 | - return $subscriptions->get_results(); |
|
| 64 | - |
|
| 65 | - } |
|
| 66 | - |
|
| 67 | - /** |
|
| 68 | - * Handles the actual download. |
|
| 69 | - * |
|
| 70 | - */ |
|
| 71 | - public function export( $post_type, $args ) { |
|
| 72 | - |
|
| 73 | - $subscriptions = $this->get_subscriptions( $this->get_subscription_query_args( $args ) ); |
|
| 74 | - $stream = $this->prepare_output(); |
|
| 75 | - $headers = $this->get_export_fields(); |
|
| 76 | - $file_type = $this->prepare_file_type( 'subscriptions' ); |
|
| 77 | - |
|
| 78 | - if ( 'csv' == $file_type ) { |
|
| 79 | - $this->download_csv( $subscriptions, $stream, $headers ); |
|
| 80 | - } else if( 'xml' == $file_type ) { |
|
| 81 | - $this->download_xml( $subscriptions, $stream, $headers ); |
|
| 82 | - } else { |
|
| 83 | - $this->download_json( $subscriptions, $stream, $headers ); |
|
| 84 | - } |
|
| 85 | - |
|
| 86 | - fclose( $stream ); |
|
| 87 | - exit; |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Prepares a single subscription for download. |
|
| 92 | - * |
|
| 93 | - * @param WPInv_Subscription $subscription The subscription to prepare.. |
|
| 94 | - * @param array $fields The fields to stream. |
|
| 95 | - * @since 1.0.19 |
|
| 96 | - * @return array |
|
| 97 | - */ |
|
| 98 | - public function prepare_row( $subscription, $fields ) { |
|
| 99 | - |
|
| 100 | - $prepared = array(); |
|
| 101 | - $amount_fields = $this->get_amount_fields(); |
|
| 102 | - $invoice = $subscription->get_parent_payment(); |
|
| 103 | - |
|
| 104 | - foreach ( $fields as $field ) { |
|
| 105 | - |
|
| 106 | - $value = ''; |
|
| 107 | - $method = "get_$field"; |
|
| 108 | - |
|
| 109 | - if ( 0 === stripos( $field, 'customer' ) || 'currency' === $field ) { |
|
| 110 | - |
|
| 111 | - if ( method_exists( $invoice, $method ) ) { |
|
| 112 | - $value = $invoice->$method(); |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - } else if ( method_exists( $subscription, $method ) ) { |
|
| 116 | - $value = $subscription->$method(); |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - if ( in_array( $field, $amount_fields ) ) { |
|
| 120 | - $value = wpinv_round_amount( wpinv_sanitize_amount( $value ) ); |
|
| 121 | - } |
|
| 122 | - |
|
| 123 | - $prepared[ $field ] = wpinv_clean( $value ); |
|
| 124 | - |
|
| 125 | - } |
|
| 126 | - |
|
| 127 | - return $prepared; |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - /** |
|
| 131 | - * Retrieves export fields. |
|
| 132 | - * |
|
| 133 | - * @since 1.0.19 |
|
| 134 | - * @return array |
|
| 135 | - */ |
|
| 136 | - public function get_export_fields() { |
|
| 137 | - |
|
| 138 | - $fields = array( |
|
| 139 | - 'id', |
|
| 140 | - 'currency', |
|
| 141 | - 'initial_amount', |
|
| 142 | - 'recurring_amount', |
|
| 143 | - 'trial_period', |
|
| 144 | - 'frequency', |
|
| 145 | - 'period', |
|
| 146 | - 'bill_times', |
|
| 147 | - 'parent_payment_id', |
|
| 148 | - 'profile_id', |
|
| 149 | - 'product_id', |
|
| 150 | - 'status', |
|
| 151 | - 'date_created', |
|
| 152 | - 'date_expires', |
|
| 153 | - |
|
| 154 | - 'customer_id', |
|
| 155 | - 'customer_first_name', |
|
| 156 | - 'customer_last_name', |
|
| 157 | - 'customer_phone', |
|
| 158 | - 'customer_email', |
|
| 159 | - 'customer_country', |
|
| 160 | - 'customer_city', |
|
| 161 | - 'customer_state', |
|
| 162 | - 'customer_zip', |
|
| 163 | - 'customer_company', |
|
| 164 | - 'customer_vat_number', |
|
| 165 | - 'customer_address', |
|
| 166 | - |
|
| 167 | - ); |
|
| 168 | - |
|
| 169 | - return apply_filters( 'getpaid_subscription_exporter_get_fields', $fields ); |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - /** |
|
| 173 | - * Retrieves amount fields. |
|
| 174 | - * |
|
| 175 | - * @since 1.0.19 |
|
| 176 | - * @return array |
|
| 177 | - */ |
|
| 178 | - public function get_amount_fields() { |
|
| 179 | - |
|
| 180 | - $fields = array( |
|
| 181 | - 'initial_amount', |
|
| 182 | - 'recurring_amount' |
|
| 183 | - ); |
|
| 184 | - |
|
| 185 | - return apply_filters( 'getpaid_subscription_exporter_get_amount_fields', $fields ); |
|
| 186 | - } |
|
| 15 | + /** |
|
| 16 | + * Retrieves subscription query args. |
|
| 17 | + * |
|
| 18 | + * @param array $args Args to search for. |
|
| 19 | + * @return array |
|
| 20 | + */ |
|
| 21 | + public function get_subscription_query_args( $args ) { |
|
| 22 | + |
|
| 23 | + $query_args = array( |
|
| 24 | + 'status' => 'all', |
|
| 25 | + 'number' => -1, |
|
| 26 | + 'count_total' => false, |
|
| 27 | + 'fields' => 'all', |
|
| 28 | + ); |
|
| 29 | + |
|
| 30 | + if ( ! empty( $args['status'] ) && in_array( $args['status'], array_keys( getpaid_get_subscription_statuses() ), true ) ) { |
|
| 31 | + $query_args['status'] = wpinv_clean( wpinv_parse_list( $args['status'] ) ); |
|
| 32 | + } |
|
| 33 | + |
|
| 34 | + $date_query = array(); |
|
| 35 | + if ( ! empty( $args['to_date'] ) ) { |
|
| 36 | + $date_query['before'] = wpinv_clean( $args['to_date'] ); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + if ( ! empty( $args['from_date'] ) ) { |
|
| 40 | + $date_query['after'] = wpinv_clean( $args['from_date'] ); |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + if ( ! empty( $date_query ) ) { |
|
| 44 | + $date_query['inclusive'] = true; |
|
| 45 | + $query_args['date_created_query'] = array( $date_query ); |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + return $query_args; |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + /** |
|
| 52 | + * Retrieves subscriptions. |
|
| 53 | + * |
|
| 54 | + * @param array $query_args GetPaid_Subscriptions_Query args. |
|
| 55 | + * @return WPInv_Subscription[] |
|
| 56 | + */ |
|
| 57 | + public function get_subscriptions( $query_args ) { |
|
| 58 | + |
|
| 59 | + // Get subscriptions. |
|
| 60 | + $subscriptions = new GetPaid_Subscriptions_Query( $query_args ); |
|
| 61 | + |
|
| 62 | + // Prepare the results. |
|
| 63 | + return $subscriptions->get_results(); |
|
| 64 | + |
|
| 65 | + } |
|
| 66 | + |
|
| 67 | + /** |
|
| 68 | + * Handles the actual download. |
|
| 69 | + * |
|
| 70 | + */ |
|
| 71 | + public function export( $post_type, $args ) { |
|
| 72 | + |
|
| 73 | + $subscriptions = $this->get_subscriptions( $this->get_subscription_query_args( $args ) ); |
|
| 74 | + $stream = $this->prepare_output(); |
|
| 75 | + $headers = $this->get_export_fields(); |
|
| 76 | + $file_type = $this->prepare_file_type( 'subscriptions' ); |
|
| 77 | + |
|
| 78 | + if ( 'csv' == $file_type ) { |
|
| 79 | + $this->download_csv( $subscriptions, $stream, $headers ); |
|
| 80 | + } else if( 'xml' == $file_type ) { |
|
| 81 | + $this->download_xml( $subscriptions, $stream, $headers ); |
|
| 82 | + } else { |
|
| 83 | + $this->download_json( $subscriptions, $stream, $headers ); |
|
| 84 | + } |
|
| 85 | + |
|
| 86 | + fclose( $stream ); |
|
| 87 | + exit; |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Prepares a single subscription for download. |
|
| 92 | + * |
|
| 93 | + * @param WPInv_Subscription $subscription The subscription to prepare.. |
|
| 94 | + * @param array $fields The fields to stream. |
|
| 95 | + * @since 1.0.19 |
|
| 96 | + * @return array |
|
| 97 | + */ |
|
| 98 | + public function prepare_row( $subscription, $fields ) { |
|
| 99 | + |
|
| 100 | + $prepared = array(); |
|
| 101 | + $amount_fields = $this->get_amount_fields(); |
|
| 102 | + $invoice = $subscription->get_parent_payment(); |
|
| 103 | + |
|
| 104 | + foreach ( $fields as $field ) { |
|
| 105 | + |
|
| 106 | + $value = ''; |
|
| 107 | + $method = "get_$field"; |
|
| 108 | + |
|
| 109 | + if ( 0 === stripos( $field, 'customer' ) || 'currency' === $field ) { |
|
| 110 | + |
|
| 111 | + if ( method_exists( $invoice, $method ) ) { |
|
| 112 | + $value = $invoice->$method(); |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + } else if ( method_exists( $subscription, $method ) ) { |
|
| 116 | + $value = $subscription->$method(); |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + if ( in_array( $field, $amount_fields ) ) { |
|
| 120 | + $value = wpinv_round_amount( wpinv_sanitize_amount( $value ) ); |
|
| 121 | + } |
|
| 122 | + |
|
| 123 | + $prepared[ $field ] = wpinv_clean( $value ); |
|
| 124 | + |
|
| 125 | + } |
|
| 126 | + |
|
| 127 | + return $prepared; |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + /** |
|
| 131 | + * Retrieves export fields. |
|
| 132 | + * |
|
| 133 | + * @since 1.0.19 |
|
| 134 | + * @return array |
|
| 135 | + */ |
|
| 136 | + public function get_export_fields() { |
|
| 137 | + |
|
| 138 | + $fields = array( |
|
| 139 | + 'id', |
|
| 140 | + 'currency', |
|
| 141 | + 'initial_amount', |
|
| 142 | + 'recurring_amount', |
|
| 143 | + 'trial_period', |
|
| 144 | + 'frequency', |
|
| 145 | + 'period', |
|
| 146 | + 'bill_times', |
|
| 147 | + 'parent_payment_id', |
|
| 148 | + 'profile_id', |
|
| 149 | + 'product_id', |
|
| 150 | + 'status', |
|
| 151 | + 'date_created', |
|
| 152 | + 'date_expires', |
|
| 153 | + |
|
| 154 | + 'customer_id', |
|
| 155 | + 'customer_first_name', |
|
| 156 | + 'customer_last_name', |
|
| 157 | + 'customer_phone', |
|
| 158 | + 'customer_email', |
|
| 159 | + 'customer_country', |
|
| 160 | + 'customer_city', |
|
| 161 | + 'customer_state', |
|
| 162 | + 'customer_zip', |
|
| 163 | + 'customer_company', |
|
| 164 | + 'customer_vat_number', |
|
| 165 | + 'customer_address', |
|
| 166 | + |
|
| 167 | + ); |
|
| 168 | + |
|
| 169 | + return apply_filters( 'getpaid_subscription_exporter_get_fields', $fields ); |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + /** |
|
| 173 | + * Retrieves amount fields. |
|
| 174 | + * |
|
| 175 | + * @since 1.0.19 |
|
| 176 | + * @return array |
|
| 177 | + */ |
|
| 178 | + public function get_amount_fields() { |
|
| 179 | + |
|
| 180 | + $fields = array( |
|
| 181 | + 'initial_amount', |
|
| 182 | + 'recurring_amount' |
|
| 183 | + ); |
|
| 184 | + |
|
| 185 | + return apply_filters( 'getpaid_subscription_exporter_get_amount_fields', $fields ); |
|
| 186 | + } |
|
| 187 | 187 | |
| 188 | 188 | } |
@@ -12,265 +12,265 @@ |
||
| 12 | 12 | |
| 13 | 13 | return array( |
| 14 | 14 | |
| 15 | - array( |
|
| 16 | - 'country' => 'AT', // Austria |
|
| 17 | - 'state' => '', |
|
| 18 | - 'global' => true, |
|
| 19 | - 'rate' => 20, |
|
| 20 | - 'reduced_rate' => 13, |
|
| 21 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 22 | - ), |
|
| 23 | - |
|
| 24 | - array( |
|
| 25 | - 'country' => 'BE', // Belgium |
|
| 26 | - 'state' => '', |
|
| 27 | - 'global' => true, |
|
| 28 | - 'rate' => 21, |
|
| 29 | - 'reduced_rate' => 12, |
|
| 30 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 31 | - ), |
|
| 32 | - |
|
| 33 | - array( |
|
| 34 | - 'country' => 'BG', // Bulgaria |
|
| 35 | - 'state' => '', |
|
| 36 | - 'global' => true, |
|
| 37 | - 'rate' => 20, |
|
| 38 | - 'reduced_rate' => 9, |
|
| 39 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 40 | - ), |
|
| 41 | - |
|
| 42 | - array( |
|
| 43 | - 'country' => 'HR', // Croatia |
|
| 44 | - 'state' => '', |
|
| 45 | - 'global' => true, |
|
| 46 | - 'rate' => 25, |
|
| 47 | - 'reduced_rate' => 13, |
|
| 48 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 49 | - ), |
|
| 50 | - |
|
| 51 | - array( |
|
| 52 | - 'country' => 'CY', // Cyprus |
|
| 53 | - 'state' => '', |
|
| 54 | - 'global' => true, |
|
| 55 | - 'rate' => 19, |
|
| 56 | - 'reduced_rate' => 9, |
|
| 57 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 58 | - ), |
|
| 59 | - |
|
| 60 | - array( |
|
| 61 | - 'country' => 'CZ', // Czech Republic |
|
| 62 | - 'state' => '', |
|
| 63 | - 'global' => true, |
|
| 64 | - 'rate' => 21, |
|
| 65 | - 'reduced_rate' => 15, |
|
| 66 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 67 | - ), |
|
| 68 | - |
|
| 69 | - array( |
|
| 70 | - 'country' => 'DK', // Denmark |
|
| 71 | - 'state' => '', |
|
| 72 | - 'global' => true, |
|
| 73 | - 'rate' => 25, |
|
| 74 | - 'reduced_rate' => 0, |
|
| 75 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 76 | - ), |
|
| 77 | - |
|
| 78 | - array( |
|
| 79 | - 'country' => 'EE', // Estonia |
|
| 80 | - 'state' => '', |
|
| 81 | - 'global' => true, |
|
| 82 | - 'rate' => 20, |
|
| 83 | - 'reduced_rate' => 9, |
|
| 84 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 85 | - ), |
|
| 86 | - |
|
| 87 | - array( |
|
| 88 | - 'country' => 'FI', // Finland |
|
| 89 | - 'state' => '', |
|
| 90 | - 'global' => true, |
|
| 91 | - 'rate' => 24, |
|
| 92 | - 'reduced_rate' => 14, |
|
| 93 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 94 | - ), |
|
| 95 | - |
|
| 96 | - array( |
|
| 97 | - 'country' => 'FR', // France |
|
| 98 | - 'state' => '', |
|
| 99 | - 'global' => true, |
|
| 100 | - 'rate' => 20, |
|
| 101 | - 'reduced_rate' => 5.5, |
|
| 102 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 103 | - ), |
|
| 104 | - |
|
| 105 | - array( |
|
| 106 | - 'country' => 'DE', // Germany |
|
| 107 | - 'state' => '', |
|
| 108 | - 'global' => true, |
|
| 109 | - 'rate' => 19, |
|
| 110 | - 'reduced_rate' => 7, |
|
| 111 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 112 | - ), |
|
| 113 | - |
|
| 114 | - array( |
|
| 115 | - 'country' => 'GR', // Greece |
|
| 116 | - 'state' => '', |
|
| 117 | - 'global' => true, |
|
| 118 | - 'rate' => 24, |
|
| 119 | - 'reduced_rate' => 13, |
|
| 120 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 121 | - ), |
|
| 122 | - |
|
| 123 | - array( |
|
| 124 | - 'country' => 'HU', // Hungary |
|
| 125 | - 'state' => '', |
|
| 126 | - 'global' => true, |
|
| 127 | - 'rate' => 27, |
|
| 128 | - 'reduced_rate' => 18, |
|
| 129 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 130 | - ), |
|
| 131 | - |
|
| 132 | - array( |
|
| 133 | - 'country' => 'IE', // Ireland |
|
| 134 | - 'state' => '', |
|
| 135 | - 'global' => true, |
|
| 136 | - 'rate' => 23, |
|
| 137 | - 'reduced_rate' => 13.5, |
|
| 138 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 139 | - ), |
|
| 140 | - |
|
| 141 | - array( |
|
| 142 | - 'country' => 'IT', // Italy |
|
| 143 | - 'state' => '', |
|
| 144 | - 'global' => true, |
|
| 145 | - 'rate' => 22, |
|
| 146 | - 'reduced_rate' => 10, |
|
| 147 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 148 | - ), |
|
| 149 | - |
|
| 150 | - array( |
|
| 151 | - 'country' => 'LV', // Latvia |
|
| 152 | - 'state' => '', |
|
| 153 | - 'global' => true, |
|
| 154 | - 'rate' => 21, |
|
| 155 | - 'reduced_rate' => 12, |
|
| 156 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 157 | - ), |
|
| 158 | - |
|
| 159 | - array( |
|
| 160 | - 'country' => 'LT', // Lithuania |
|
| 161 | - 'state' => '', |
|
| 162 | - 'global' => true, |
|
| 163 | - 'rate' => 21, |
|
| 164 | - 'reduced_rate' => 9, |
|
| 165 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 166 | - ), |
|
| 167 | - |
|
| 168 | - array( |
|
| 169 | - 'country' => 'LU', // Luxembourg |
|
| 170 | - 'state' => '', |
|
| 171 | - 'global' => true, |
|
| 172 | - 'rate' => 17, |
|
| 173 | - 'reduced_rate' => 14, |
|
| 174 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 175 | - ), |
|
| 176 | - |
|
| 177 | - array( |
|
| 178 | - 'country' => 'MT', // Malta |
|
| 179 | - 'state' => '', |
|
| 180 | - 'global' => true, |
|
| 181 | - 'rate' => 18, |
|
| 182 | - 'reduced_rate' => 7, |
|
| 183 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 184 | - ), |
|
| 185 | - |
|
| 186 | - array( |
|
| 187 | - 'country' => 'MC', // Monaco |
|
| 188 | - 'state' => '', |
|
| 189 | - 'global' => true, |
|
| 190 | - 'rate' => 20, |
|
| 191 | - 'reduced_rate' => 10, |
|
| 192 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 193 | - ), |
|
| 194 | - |
|
| 195 | - array( |
|
| 196 | - 'country' => 'NL', // Netherlands |
|
| 197 | - 'state' => '', |
|
| 198 | - 'global' => true, |
|
| 199 | - 'rate' => 21, |
|
| 200 | - 'reduced_rate' => 9, |
|
| 201 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 202 | - ), |
|
| 203 | - |
|
| 204 | - array( |
|
| 205 | - 'country' => 'PL', // Poland |
|
| 206 | - 'state' => '', |
|
| 207 | - 'global' => true, |
|
| 208 | - 'rate' => 23, |
|
| 209 | - 'reduced_rate' => 8, |
|
| 210 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 211 | - ), |
|
| 212 | - |
|
| 213 | - array( |
|
| 214 | - 'country' => 'PT', // Portugal |
|
| 215 | - 'state' => '', |
|
| 216 | - 'global' => true, |
|
| 217 | - 'rate' => 23, |
|
| 218 | - 'reduced_rate' => 13, |
|
| 219 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 220 | - ), |
|
| 221 | - |
|
| 222 | - array( |
|
| 223 | - 'country' => 'RO', // Romania |
|
| 224 | - 'state' => '', |
|
| 225 | - 'global' => true, |
|
| 226 | - 'rate' => 19, |
|
| 227 | - 'reduced_rate' => 9, |
|
| 228 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 229 | - ), |
|
| 230 | - |
|
| 231 | - array( |
|
| 232 | - 'country' => 'SK', // Slovakia |
|
| 233 | - 'state' => '', |
|
| 234 | - 'global' => true, |
|
| 235 | - 'rate' => 20, |
|
| 236 | - 'reduced_rate' => 10, |
|
| 237 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 238 | - ), |
|
| 239 | - |
|
| 240 | - array( |
|
| 241 | - 'country' => 'SI', // Slovenia |
|
| 242 | - 'state' => '', |
|
| 243 | - 'global' => true, |
|
| 244 | - 'rate' => 22, |
|
| 245 | - 'reduced_rate' => 9.5, |
|
| 246 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 247 | - ), |
|
| 248 | - |
|
| 249 | - array( |
|
| 250 | - 'country' => 'ES', // Spain |
|
| 251 | - 'state' => '', |
|
| 252 | - 'global' => true, |
|
| 253 | - 'rate' => 21, |
|
| 254 | - 'reduced_rate' => 10, |
|
| 255 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 256 | - ), |
|
| 257 | - |
|
| 258 | - array( |
|
| 259 | - 'country' => 'SE', // Sweden |
|
| 260 | - 'state' => '', |
|
| 261 | - 'global' => true, |
|
| 262 | - 'rate' => 25, |
|
| 263 | - 'reduced_rate' => 12, |
|
| 264 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 265 | - ), |
|
| 266 | - |
|
| 267 | - array( |
|
| 268 | - 'country' => 'GB', // UK |
|
| 269 | - 'state' => '', |
|
| 270 | - 'global' => true, |
|
| 271 | - 'rate' => 20, |
|
| 272 | - 'reduced_rate' => 5, |
|
| 273 | - 'name' => __( 'VAT', 'invoicing' ), |
|
| 274 | - ) |
|
| 15 | + array( |
|
| 16 | + 'country' => 'AT', // Austria |
|
| 17 | + 'state' => '', |
|
| 18 | + 'global' => true, |
|
| 19 | + 'rate' => 20, |
|
| 20 | + 'reduced_rate' => 13, |
|
| 21 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 22 | + ), |
|
| 23 | + |
|
| 24 | + array( |
|
| 25 | + 'country' => 'BE', // Belgium |
|
| 26 | + 'state' => '', |
|
| 27 | + 'global' => true, |
|
| 28 | + 'rate' => 21, |
|
| 29 | + 'reduced_rate' => 12, |
|
| 30 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 31 | + ), |
|
| 32 | + |
|
| 33 | + array( |
|
| 34 | + 'country' => 'BG', // Bulgaria |
|
| 35 | + 'state' => '', |
|
| 36 | + 'global' => true, |
|
| 37 | + 'rate' => 20, |
|
| 38 | + 'reduced_rate' => 9, |
|
| 39 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 40 | + ), |
|
| 41 | + |
|
| 42 | + array( |
|
| 43 | + 'country' => 'HR', // Croatia |
|
| 44 | + 'state' => '', |
|
| 45 | + 'global' => true, |
|
| 46 | + 'rate' => 25, |
|
| 47 | + 'reduced_rate' => 13, |
|
| 48 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 49 | + ), |
|
| 50 | + |
|
| 51 | + array( |
|
| 52 | + 'country' => 'CY', // Cyprus |
|
| 53 | + 'state' => '', |
|
| 54 | + 'global' => true, |
|
| 55 | + 'rate' => 19, |
|
| 56 | + 'reduced_rate' => 9, |
|
| 57 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 58 | + ), |
|
| 59 | + |
|
| 60 | + array( |
|
| 61 | + 'country' => 'CZ', // Czech Republic |
|
| 62 | + 'state' => '', |
|
| 63 | + 'global' => true, |
|
| 64 | + 'rate' => 21, |
|
| 65 | + 'reduced_rate' => 15, |
|
| 66 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 67 | + ), |
|
| 68 | + |
|
| 69 | + array( |
|
| 70 | + 'country' => 'DK', // Denmark |
|
| 71 | + 'state' => '', |
|
| 72 | + 'global' => true, |
|
| 73 | + 'rate' => 25, |
|
| 74 | + 'reduced_rate' => 0, |
|
| 75 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 76 | + ), |
|
| 77 | + |
|
| 78 | + array( |
|
| 79 | + 'country' => 'EE', // Estonia |
|
| 80 | + 'state' => '', |
|
| 81 | + 'global' => true, |
|
| 82 | + 'rate' => 20, |
|
| 83 | + 'reduced_rate' => 9, |
|
| 84 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 85 | + ), |
|
| 86 | + |
|
| 87 | + array( |
|
| 88 | + 'country' => 'FI', // Finland |
|
| 89 | + 'state' => '', |
|
| 90 | + 'global' => true, |
|
| 91 | + 'rate' => 24, |
|
| 92 | + 'reduced_rate' => 14, |
|
| 93 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 94 | + ), |
|
| 95 | + |
|
| 96 | + array( |
|
| 97 | + 'country' => 'FR', // France |
|
| 98 | + 'state' => '', |
|
| 99 | + 'global' => true, |
|
| 100 | + 'rate' => 20, |
|
| 101 | + 'reduced_rate' => 5.5, |
|
| 102 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 103 | + ), |
|
| 104 | + |
|
| 105 | + array( |
|
| 106 | + 'country' => 'DE', // Germany |
|
| 107 | + 'state' => '', |
|
| 108 | + 'global' => true, |
|
| 109 | + 'rate' => 19, |
|
| 110 | + 'reduced_rate' => 7, |
|
| 111 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 112 | + ), |
|
| 113 | + |
|
| 114 | + array( |
|
| 115 | + 'country' => 'GR', // Greece |
|
| 116 | + 'state' => '', |
|
| 117 | + 'global' => true, |
|
| 118 | + 'rate' => 24, |
|
| 119 | + 'reduced_rate' => 13, |
|
| 120 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 121 | + ), |
|
| 122 | + |
|
| 123 | + array( |
|
| 124 | + 'country' => 'HU', // Hungary |
|
| 125 | + 'state' => '', |
|
| 126 | + 'global' => true, |
|
| 127 | + 'rate' => 27, |
|
| 128 | + 'reduced_rate' => 18, |
|
| 129 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 130 | + ), |
|
| 131 | + |
|
| 132 | + array( |
|
| 133 | + 'country' => 'IE', // Ireland |
|
| 134 | + 'state' => '', |
|
| 135 | + 'global' => true, |
|
| 136 | + 'rate' => 23, |
|
| 137 | + 'reduced_rate' => 13.5, |
|
| 138 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 139 | + ), |
|
| 140 | + |
|
| 141 | + array( |
|
| 142 | + 'country' => 'IT', // Italy |
|
| 143 | + 'state' => '', |
|
| 144 | + 'global' => true, |
|
| 145 | + 'rate' => 22, |
|
| 146 | + 'reduced_rate' => 10, |
|
| 147 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 148 | + ), |
|
| 149 | + |
|
| 150 | + array( |
|
| 151 | + 'country' => 'LV', // Latvia |
|
| 152 | + 'state' => '', |
|
| 153 | + 'global' => true, |
|
| 154 | + 'rate' => 21, |
|
| 155 | + 'reduced_rate' => 12, |
|
| 156 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 157 | + ), |
|
| 158 | + |
|
| 159 | + array( |
|
| 160 | + 'country' => 'LT', // Lithuania |
|
| 161 | + 'state' => '', |
|
| 162 | + 'global' => true, |
|
| 163 | + 'rate' => 21, |
|
| 164 | + 'reduced_rate' => 9, |
|
| 165 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 166 | + ), |
|
| 167 | + |
|
| 168 | + array( |
|
| 169 | + 'country' => 'LU', // Luxembourg |
|
| 170 | + 'state' => '', |
|
| 171 | + 'global' => true, |
|
| 172 | + 'rate' => 17, |
|
| 173 | + 'reduced_rate' => 14, |
|
| 174 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 175 | + ), |
|
| 176 | + |
|
| 177 | + array( |
|
| 178 | + 'country' => 'MT', // Malta |
|
| 179 | + 'state' => '', |
|
| 180 | + 'global' => true, |
|
| 181 | + 'rate' => 18, |
|
| 182 | + 'reduced_rate' => 7, |
|
| 183 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 184 | + ), |
|
| 185 | + |
|
| 186 | + array( |
|
| 187 | + 'country' => 'MC', // Monaco |
|
| 188 | + 'state' => '', |
|
| 189 | + 'global' => true, |
|
| 190 | + 'rate' => 20, |
|
| 191 | + 'reduced_rate' => 10, |
|
| 192 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 193 | + ), |
|
| 194 | + |
|
| 195 | + array( |
|
| 196 | + 'country' => 'NL', // Netherlands |
|
| 197 | + 'state' => '', |
|
| 198 | + 'global' => true, |
|
| 199 | + 'rate' => 21, |
|
| 200 | + 'reduced_rate' => 9, |
|
| 201 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 202 | + ), |
|
| 203 | + |
|
| 204 | + array( |
|
| 205 | + 'country' => 'PL', // Poland |
|
| 206 | + 'state' => '', |
|
| 207 | + 'global' => true, |
|
| 208 | + 'rate' => 23, |
|
| 209 | + 'reduced_rate' => 8, |
|
| 210 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 211 | + ), |
|
| 212 | + |
|
| 213 | + array( |
|
| 214 | + 'country' => 'PT', // Portugal |
|
| 215 | + 'state' => '', |
|
| 216 | + 'global' => true, |
|
| 217 | + 'rate' => 23, |
|
| 218 | + 'reduced_rate' => 13, |
|
| 219 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 220 | + ), |
|
| 221 | + |
|
| 222 | + array( |
|
| 223 | + 'country' => 'RO', // Romania |
|
| 224 | + 'state' => '', |
|
| 225 | + 'global' => true, |
|
| 226 | + 'rate' => 19, |
|
| 227 | + 'reduced_rate' => 9, |
|
| 228 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 229 | + ), |
|
| 230 | + |
|
| 231 | + array( |
|
| 232 | + 'country' => 'SK', // Slovakia |
|
| 233 | + 'state' => '', |
|
| 234 | + 'global' => true, |
|
| 235 | + 'rate' => 20, |
|
| 236 | + 'reduced_rate' => 10, |
|
| 237 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 238 | + ), |
|
| 239 | + |
|
| 240 | + array( |
|
| 241 | + 'country' => 'SI', // Slovenia |
|
| 242 | + 'state' => '', |
|
| 243 | + 'global' => true, |
|
| 244 | + 'rate' => 22, |
|
| 245 | + 'reduced_rate' => 9.5, |
|
| 246 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 247 | + ), |
|
| 248 | + |
|
| 249 | + array( |
|
| 250 | + 'country' => 'ES', // Spain |
|
| 251 | + 'state' => '', |
|
| 252 | + 'global' => true, |
|
| 253 | + 'rate' => 21, |
|
| 254 | + 'reduced_rate' => 10, |
|
| 255 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 256 | + ), |
|
| 257 | + |
|
| 258 | + array( |
|
| 259 | + 'country' => 'SE', // Sweden |
|
| 260 | + 'state' => '', |
|
| 261 | + 'global' => true, |
|
| 262 | + 'rate' => 25, |
|
| 263 | + 'reduced_rate' => 12, |
|
| 264 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 265 | + ), |
|
| 266 | + |
|
| 267 | + array( |
|
| 268 | + 'country' => 'GB', // UK |
|
| 269 | + 'state' => '', |
|
| 270 | + 'global' => true, |
|
| 271 | + 'rate' => 20, |
|
| 272 | + 'reduced_rate' => 5, |
|
| 273 | + 'name' => __( 'VAT', 'invoicing' ), |
|
| 274 | + ) |
|
| 275 | 275 | |
| 276 | 276 | ); |
@@ -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( wp_unslash( $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( wp_unslash( $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 | } |