@@ -1,196 +1,196 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | function wpinv_is_subscription_payment( $invoice = '' ) { |
| 3 | - if ( empty( $invoice ) ) { |
|
| 4 | - return false; |
|
| 5 | - } |
|
| 3 | + if ( empty( $invoice ) ) { |
|
| 4 | + return false; |
|
| 5 | + } |
|
| 6 | 6 | |
| 7 | - if ( ! is_object( $invoice ) && is_scalar( $invoice ) ) { |
|
| 8 | - $invoice = wpinv_get_invoice( $invoice ); |
|
| 9 | - } |
|
| 7 | + if ( ! is_object( $invoice ) && is_scalar( $invoice ) ) { |
|
| 8 | + $invoice = wpinv_get_invoice( $invoice ); |
|
| 9 | + } |
|
| 10 | 10 | |
| 11 | - if ( empty( $invoice ) ) { |
|
| 12 | - return false; |
|
| 13 | - } |
|
| 11 | + if ( empty( $invoice ) ) { |
|
| 12 | + return false; |
|
| 13 | + } |
|
| 14 | 14 | |
| 15 | - if ( $invoice->is_renewal() ) { |
|
| 16 | - return true; |
|
| 17 | - } |
|
| 15 | + if ( $invoice->is_renewal() ) { |
|
| 16 | + return true; |
|
| 17 | + } |
|
| 18 | 18 | |
| 19 | - return false; |
|
| 19 | + return false; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | function wpinv_payment_link_transaction_id( $invoice = '' ) { |
| 23 | - if ( empty( $invoice ) ) { |
|
| 24 | - return false; |
|
| 25 | - } |
|
| 23 | + if ( empty( $invoice ) ) { |
|
| 24 | + return false; |
|
| 25 | + } |
|
| 26 | 26 | |
| 27 | - if ( ! is_object( $invoice ) && is_scalar( $invoice ) ) { |
|
| 28 | - $invoice = wpinv_get_invoice( $invoice ); |
|
| 29 | - } |
|
| 27 | + if ( ! is_object( $invoice ) && is_scalar( $invoice ) ) { |
|
| 28 | + $invoice = wpinv_get_invoice( $invoice ); |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | - if ( empty( $invoice ) ) { |
|
| 32 | - return false; |
|
| 33 | - } |
|
| 31 | + if ( empty( $invoice ) ) { |
|
| 32 | + return false; |
|
| 33 | + } |
|
| 34 | 34 | |
| 35 | - return apply_filters( 'wpinv_payment_details_transaction_id-' . $invoice->gateway, $invoice->get_transaction_id(), $invoice->ID, $invoice ); |
|
| 35 | + return apply_filters( 'wpinv_payment_details_transaction_id-' . $invoice->gateway, $invoice->get_transaction_id(), $invoice->ID, $invoice ); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | function wpinv_subscription_initial_payment_desc( $amount, $period, $interval, $trial_period = '', $trial_interval = 0 ) { |
| 39 | - $interval = (int)$interval > 0 ? (int)$interval : 1; |
|
| 40 | - |
|
| 41 | - if ( $trial_interval > 0 && ! empty( $trial_period ) ) { |
|
| 42 | - $amount = __( 'Free', 'invoicing' ); |
|
| 43 | - $interval = $trial_interval; |
|
| 44 | - $period = $trial_period; |
|
| 45 | - } |
|
| 46 | - |
|
| 47 | - $description = ''; |
|
| 48 | - switch ( $period ) { |
|
| 49 | - case 'D': |
|
| 50 | - case 'day': |
|
| 51 | - $description = wp_sprintf( _n( '%s for the first day.', '%1$s for the first %2$d days.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 52 | - break; |
|
| 53 | - case 'W': |
|
| 54 | - case 'week': |
|
| 55 | - $description = wp_sprintf( _n( '%s for the first week.', '%1$s for the first %2$d weeks.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 56 | - break; |
|
| 57 | - case 'M': |
|
| 58 | - case 'month': |
|
| 59 | - $description = wp_sprintf( _n( '%s for the first month.', '%1$s for the first %2$d months.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 60 | - break; |
|
| 61 | - case 'Y': |
|
| 62 | - case 'year': |
|
| 63 | - $description = wp_sprintf( _n( '%s for the first year.', '%1$s for the first %2$d years.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 64 | - break; |
|
| 65 | - } |
|
| 66 | - |
|
| 67 | - return apply_filters( 'wpinv_subscription_initial_payment_desc', $description, $amount, $period, $interval, $trial_period, $trial_interval ); |
|
| 39 | + $interval = (int)$interval > 0 ? (int)$interval : 1; |
|
| 40 | + |
|
| 41 | + if ( $trial_interval > 0 && ! empty( $trial_period ) ) { |
|
| 42 | + $amount = __( 'Free', 'invoicing' ); |
|
| 43 | + $interval = $trial_interval; |
|
| 44 | + $period = $trial_period; |
|
| 45 | + } |
|
| 46 | + |
|
| 47 | + $description = ''; |
|
| 48 | + switch ( $period ) { |
|
| 49 | + case 'D': |
|
| 50 | + case 'day': |
|
| 51 | + $description = wp_sprintf( _n( '%s for the first day.', '%1$s for the first %2$d days.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 52 | + break; |
|
| 53 | + case 'W': |
|
| 54 | + case 'week': |
|
| 55 | + $description = wp_sprintf( _n( '%s for the first week.', '%1$s for the first %2$d weeks.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 56 | + break; |
|
| 57 | + case 'M': |
|
| 58 | + case 'month': |
|
| 59 | + $description = wp_sprintf( _n( '%s for the first month.', '%1$s for the first %2$d months.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 60 | + break; |
|
| 61 | + case 'Y': |
|
| 62 | + case 'year': |
|
| 63 | + $description = wp_sprintf( _n( '%s for the first year.', '%1$s for the first %2$d years.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 64 | + break; |
|
| 65 | + } |
|
| 66 | + |
|
| 67 | + return apply_filters( 'wpinv_subscription_initial_payment_desc', $description, $amount, $period, $interval, $trial_period, $trial_interval ); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | function wpinv_subscription_recurring_payment_desc( $amount, $period, $interval, $bill_times = 0, $trial_period = '', $trial_interval = 0 ) { |
| 71 | - $interval = (int)$interval > 0 ? (int)$interval : 1; |
|
| 72 | - $bill_times = (int)$bill_times > 0 ? (int)$bill_times : 0; |
|
| 73 | - |
|
| 74 | - $description = ''; |
|
| 75 | - switch ( $period ) { |
|
| 76 | - case 'D': |
|
| 77 | - case 'day': |
|
| 78 | - if ( (int)$bill_times > 0 ) { |
|
| 79 | - if ( $interval > 1 ) { |
|
| 80 | - if ( $bill_times > 1 ) { |
|
| 81 | - $description = wp_sprintf( __( '%1$s for each %2$d days, for %3$d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
| 82 | - } else { |
|
| 83 | - $description = wp_sprintf( __( '%1$s for %2$d days.', 'invoicing' ), $amount, $interval ); |
|
| 84 | - } |
|
| 85 | - } else { |
|
| 86 | - $description = wp_sprintf( _n( '%s for one day.', '%1$s for each day, for %2$d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
| 87 | - } |
|
| 88 | - } else { |
|
| 89 | - $description = wp_sprintf( _n( '%s for each day.', '%1$s for each %2$d days.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 90 | - } |
|
| 91 | - break; |
|
| 92 | - case 'W': |
|
| 93 | - case 'week': |
|
| 94 | - if ( (int)$bill_times > 0 ) { |
|
| 95 | - if ( $interval > 1 ) { |
|
| 96 | - if ( $bill_times > 1 ) { |
|
| 97 | - $description = wp_sprintf( __( '%1$s for each %2$d weeks, for %3$d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
| 98 | - } else { |
|
| 99 | - $description = wp_sprintf( __( '%1$s for %2$d weeks.', 'invoicing' ), $amount, $interval ); |
|
| 100 | - } |
|
| 101 | - } else { |
|
| 102 | - $description = wp_sprintf( _n( '%s for one week.', '%1$s for each week, for %2$d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
| 103 | - } |
|
| 104 | - } else { |
|
| 105 | - $description = wp_sprintf( _n( '%s for each week.', '%1$s for each %2$d weeks.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 106 | - } |
|
| 107 | - break; |
|
| 108 | - case 'M': |
|
| 109 | - case 'month': |
|
| 110 | - if ( (int)$bill_times > 0 ) { |
|
| 111 | - if ( $interval > 1 ) { |
|
| 112 | - if ( $bill_times > 1 ) { |
|
| 113 | - $description = wp_sprintf( __( '%1$s for each %2$d months, for %3$d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
| 114 | - } else { |
|
| 115 | - $description = wp_sprintf( __( '%1$s for %2$d months.', 'invoicing' ), $amount, $interval ); |
|
| 116 | - } |
|
| 117 | - } else { |
|
| 118 | - $description = wp_sprintf( _n( '%s for one month.', '%1$s for each month, for %2$d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
| 119 | - } |
|
| 120 | - } else { |
|
| 121 | - $description = wp_sprintf( _n( '%s for each month.', '%1$s for each %2$d months.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 122 | - } |
|
| 123 | - break; |
|
| 124 | - case 'Y': |
|
| 125 | - case 'year': |
|
| 126 | - if ( (int)$bill_times > 0 ) { |
|
| 127 | - if ( $interval > 1 ) { |
|
| 128 | - if ( $bill_times > 1 ) { |
|
| 129 | - $description = wp_sprintf( __( '%1$s for each %2$d years, for %3$d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
| 130 | - } else { |
|
| 131 | - $description = wp_sprintf( __( '%1$s for %2$d years.', 'invoicing' ), $amount, $interval ); |
|
| 132 | - } |
|
| 133 | - } else { |
|
| 134 | - $description = wp_sprintf( _n( '%s for one year.', '%1$s for each year, for %2$d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
| 135 | - } |
|
| 136 | - } else { |
|
| 137 | - $description = wp_sprintf( _n( '%s for each year.', '%1$s for each %2$d years.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 138 | - } |
|
| 139 | - break; |
|
| 140 | - } |
|
| 141 | - |
|
| 142 | - return apply_filters( 'wpinv_subscription_recurring_payment_desc', $description, $amount, $period, $interval, $bill_times, $trial_period, $trial_interval ); |
|
| 71 | + $interval = (int)$interval > 0 ? (int)$interval : 1; |
|
| 72 | + $bill_times = (int)$bill_times > 0 ? (int)$bill_times : 0; |
|
| 73 | + |
|
| 74 | + $description = ''; |
|
| 75 | + switch ( $period ) { |
|
| 76 | + case 'D': |
|
| 77 | + case 'day': |
|
| 78 | + if ( (int)$bill_times > 0 ) { |
|
| 79 | + if ( $interval > 1 ) { |
|
| 80 | + if ( $bill_times > 1 ) { |
|
| 81 | + $description = wp_sprintf( __( '%1$s for each %2$d days, for %3$d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
| 82 | + } else { |
|
| 83 | + $description = wp_sprintf( __( '%1$s for %2$d days.', 'invoicing' ), $amount, $interval ); |
|
| 84 | + } |
|
| 85 | + } else { |
|
| 86 | + $description = wp_sprintf( _n( '%s for one day.', '%1$s for each day, for %2$d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
| 87 | + } |
|
| 88 | + } else { |
|
| 89 | + $description = wp_sprintf( _n( '%s for each day.', '%1$s for each %2$d days.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 90 | + } |
|
| 91 | + break; |
|
| 92 | + case 'W': |
|
| 93 | + case 'week': |
|
| 94 | + if ( (int)$bill_times > 0 ) { |
|
| 95 | + if ( $interval > 1 ) { |
|
| 96 | + if ( $bill_times > 1 ) { |
|
| 97 | + $description = wp_sprintf( __( '%1$s for each %2$d weeks, for %3$d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
| 98 | + } else { |
|
| 99 | + $description = wp_sprintf( __( '%1$s for %2$d weeks.', 'invoicing' ), $amount, $interval ); |
|
| 100 | + } |
|
| 101 | + } else { |
|
| 102 | + $description = wp_sprintf( _n( '%s for one week.', '%1$s for each week, for %2$d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
| 103 | + } |
|
| 104 | + } else { |
|
| 105 | + $description = wp_sprintf( _n( '%s for each week.', '%1$s for each %2$d weeks.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 106 | + } |
|
| 107 | + break; |
|
| 108 | + case 'M': |
|
| 109 | + case 'month': |
|
| 110 | + if ( (int)$bill_times > 0 ) { |
|
| 111 | + if ( $interval > 1 ) { |
|
| 112 | + if ( $bill_times > 1 ) { |
|
| 113 | + $description = wp_sprintf( __( '%1$s for each %2$d months, for %3$d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
| 114 | + } else { |
|
| 115 | + $description = wp_sprintf( __( '%1$s for %2$d months.', 'invoicing' ), $amount, $interval ); |
|
| 116 | + } |
|
| 117 | + } else { |
|
| 118 | + $description = wp_sprintf( _n( '%s for one month.', '%1$s for each month, for %2$d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
| 119 | + } |
|
| 120 | + } else { |
|
| 121 | + $description = wp_sprintf( _n( '%s for each month.', '%1$s for each %2$d months.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 122 | + } |
|
| 123 | + break; |
|
| 124 | + case 'Y': |
|
| 125 | + case 'year': |
|
| 126 | + if ( (int)$bill_times > 0 ) { |
|
| 127 | + if ( $interval > 1 ) { |
|
| 128 | + if ( $bill_times > 1 ) { |
|
| 129 | + $description = wp_sprintf( __( '%1$s for each %2$d years, for %3$d installments.', 'invoicing' ), $amount, $interval, $bill_times ); |
|
| 130 | + } else { |
|
| 131 | + $description = wp_sprintf( __( '%1$s for %2$d years.', 'invoicing' ), $amount, $interval ); |
|
| 132 | + } |
|
| 133 | + } else { |
|
| 134 | + $description = wp_sprintf( _n( '%s for one year.', '%1$s for each year, for %2$d installments.', $bill_times, 'invoicing' ), $amount, $bill_times ); |
|
| 135 | + } |
|
| 136 | + } else { |
|
| 137 | + $description = wp_sprintf( _n( '%s for each year.', '%1$s for each %2$d years.', $interval, 'invoicing' ), $amount, $interval ); |
|
| 138 | + } |
|
| 139 | + break; |
|
| 140 | + } |
|
| 141 | + |
|
| 142 | + return apply_filters( 'wpinv_subscription_recurring_payment_desc', $description, $amount, $period, $interval, $bill_times, $trial_period, $trial_interval ); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | function wpinv_subscription_payment_desc( $invoice ) { |
| 146 | - if ( empty( $invoice ) ) { |
|
| 147 | - return null; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - $description = ''; |
|
| 151 | - if ( $invoice->is_parent() && $item = $invoice->get_recurring( true ) ) { |
|
| 152 | - if ( $item->has_free_trial() ) { |
|
| 153 | - $trial_period = $item->get_trial_period(); |
|
| 154 | - $trial_interval = $item->get_trial_interval(); |
|
| 155 | - } else { |
|
| 156 | - $trial_period = ''; |
|
| 157 | - $trial_interval = 0; |
|
| 158 | - } |
|
| 159 | - |
|
| 160 | - $description = wpinv_get_billing_cycle( $invoice->get_total(), $invoice->get_recurring_details( 'total' ), $item->get_recurring_period(), $item->get_recurring_interval(), $item->get_recurring_limit(), $trial_period, $trial_interval, $invoice->get_currency() ); |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - return apply_filters( 'wpinv_subscription_payment_desc', $description, $invoice ); |
|
| 146 | + if ( empty( $invoice ) ) { |
|
| 147 | + return null; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + $description = ''; |
|
| 151 | + if ( $invoice->is_parent() && $item = $invoice->get_recurring( true ) ) { |
|
| 152 | + if ( $item->has_free_trial() ) { |
|
| 153 | + $trial_period = $item->get_trial_period(); |
|
| 154 | + $trial_interval = $item->get_trial_interval(); |
|
| 155 | + } else { |
|
| 156 | + $trial_period = ''; |
|
| 157 | + $trial_interval = 0; |
|
| 158 | + } |
|
| 159 | + |
|
| 160 | + $description = wpinv_get_billing_cycle( $invoice->get_total(), $invoice->get_recurring_details( 'total' ), $item->get_recurring_period(), $item->get_recurring_interval(), $item->get_recurring_limit(), $trial_period, $trial_interval, $invoice->get_currency() ); |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + return apply_filters( 'wpinv_subscription_payment_desc', $description, $invoice ); |
|
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | function wpinv_get_billing_cycle( $initial, $recurring, $period, $interval, $bill_times, $trial_period = '', $trial_interval = 0, $currency = '' ) { |
| 167 | - $initial_total = wpinv_round_amount( $initial ); |
|
| 168 | - $recurring_total = wpinv_round_amount( $recurring ); |
|
| 167 | + $initial_total = wpinv_round_amount( $initial ); |
|
| 168 | + $recurring_total = wpinv_round_amount( $recurring ); |
|
| 169 | 169 | |
| 170 | - if ( $trial_interval > 0 && ! empty( $trial_period ) ) { |
|
| 171 | - // Free trial |
|
| 172 | - } else { |
|
| 173 | - if ( $bill_times == 1 ) { |
|
| 174 | - $recurring_total = $initial_total; |
|
| 175 | - } elseif ( $bill_times > 1 && $initial_total != $recurring_total ) { |
|
| 176 | - $bill_times--; |
|
| 177 | - } |
|
| 178 | - } |
|
| 170 | + if ( $trial_interval > 0 && ! empty( $trial_period ) ) { |
|
| 171 | + // Free trial |
|
| 172 | + } else { |
|
| 173 | + if ( $bill_times == 1 ) { |
|
| 174 | + $recurring_total = $initial_total; |
|
| 175 | + } elseif ( $bill_times > 1 && $initial_total != $recurring_total ) { |
|
| 176 | + $bill_times--; |
|
| 177 | + } |
|
| 178 | + } |
|
| 179 | 179 | |
| 180 | - $initial_amount = wpinv_price( $initial_total, $currency ); |
|
| 181 | - $recurring_amount = wpinv_price( $recurring_total, $currency ); |
|
| 180 | + $initial_amount = wpinv_price( $initial_total, $currency ); |
|
| 181 | + $recurring_amount = wpinv_price( $recurring_total, $currency ); |
|
| 182 | 182 | |
| 183 | - $recurring = wpinv_subscription_recurring_payment_desc( $recurring_amount, $period, $interval, $bill_times, $trial_period, $trial_interval ); |
|
| 183 | + $recurring = wpinv_subscription_recurring_payment_desc( $recurring_amount, $period, $interval, $bill_times, $trial_period, $trial_interval ); |
|
| 184 | 184 | |
| 185 | - if ( $initial_total != $recurring_total ) { |
|
| 186 | - $initial = wpinv_subscription_initial_payment_desc( $initial_amount, $period, $interval, $trial_period, $trial_interval ); |
|
| 185 | + if ( $initial_total != $recurring_total ) { |
|
| 186 | + $initial = wpinv_subscription_initial_payment_desc( $initial_amount, $period, $interval, $trial_period, $trial_interval ); |
|
| 187 | 187 | |
| 188 | - $description = wp_sprintf( __( '%1$s Then %2$s', 'invoicing' ), $initial, $recurring ); |
|
| 189 | - } else { |
|
| 190 | - $description = $recurring; |
|
| 191 | - } |
|
| 188 | + $description = wp_sprintf( __( '%1$s Then %2$s', 'invoicing' ), $initial, $recurring ); |
|
| 189 | + } else { |
|
| 190 | + $description = $recurring; |
|
| 191 | + } |
|
| 192 | 192 | |
| 193 | - return apply_filters( 'wpinv_get_billing_cycle', $description, $initial, $recurring, $period, $interval, $bill_times, $trial_period, $trial_interval, $currency ); |
|
| 193 | + return apply_filters( 'wpinv_get_billing_cycle', $description, $initial, $recurring, $period, $interval, $bill_times, $trial_period, $trial_interval, $currency ); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | /** |
@@ -202,25 +202,25 @@ discard block |
||
| 202 | 202 | */ |
| 203 | 203 | function getpaid_get_card_name( $card_number ) { |
| 204 | 204 | |
| 205 | - // Known regexes. |
|
| 206 | - $regexes = array( |
|
| 207 | - '/^4/' => __( 'Visa', 'invoicing' ), |
|
| 208 | - '/^5[1-5]/' => __( 'Mastercard', 'invoicing' ), |
|
| 209 | - '/^3[47]/' => __( 'Amex', 'invoicing' ), |
|
| 210 | - '/^3(?:0[0-5]|[68])/' => __( 'Diners Club', 'invoicing' ), |
|
| 211 | - '/^6(?:011|5)/' => __( 'Discover', 'invoicing' ), |
|
| 212 | - '/^(?:2131|1800|35\d{3})/' => __( 'JCB', 'invoicing' ), |
|
| 213 | - ); |
|
| 214 | - |
|
| 215 | - // Confirm if one matches. |
|
| 216 | - foreach ( $regexes as $regex => $card ) { |
|
| 217 | - if ( preg_match( $regex, $card_number ) >= 1 ) { |
|
| 218 | - return $card; |
|
| 219 | - } |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - // None matched. |
|
| 223 | - return __( 'Card', 'invoicing' ); |
|
| 205 | + // Known regexes. |
|
| 206 | + $regexes = array( |
|
| 207 | + '/^4/' => __( 'Visa', 'invoicing' ), |
|
| 208 | + '/^5[1-5]/' => __( 'Mastercard', 'invoicing' ), |
|
| 209 | + '/^3[47]/' => __( 'Amex', 'invoicing' ), |
|
| 210 | + '/^3(?:0[0-5]|[68])/' => __( 'Diners Club', 'invoicing' ), |
|
| 211 | + '/^6(?:011|5)/' => __( 'Discover', 'invoicing' ), |
|
| 212 | + '/^(?:2131|1800|35\d{3})/' => __( 'JCB', 'invoicing' ), |
|
| 213 | + ); |
|
| 214 | + |
|
| 215 | + // Confirm if one matches. |
|
| 216 | + foreach ( $regexes as $regex => $card ) { |
|
| 217 | + if ( preg_match( $regex, $card_number ) >= 1 ) { |
|
| 218 | + return $card; |
|
| 219 | + } |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + // None matched. |
|
| 223 | + return __( 'Card', 'invoicing' ); |
|
| 224 | 224 | |
| 225 | 225 | } |
| 226 | 226 | |
@@ -230,24 +230,24 @@ discard block |
||
| 230 | 230 | * @param WPInv_Invoice|int|null $invoice |
| 231 | 231 | */ |
| 232 | 232 | function wpinv_send_back_to_checkout( $invoice = null ) { |
| 233 | - $response = array( 'success' => false ); |
|
| 234 | - $invoice = wpinv_get_invoice( $invoice ); |
|
| 235 | - |
|
| 236 | - // Was an invoice created? |
|
| 237 | - if ( ! empty( $invoice ) ) { |
|
| 238 | - $invoice = is_scalar( $invoice ) ? new WPInv_Invoice( $invoice ) : $invoice; |
|
| 239 | - $response['invoice'] = $invoice->get_id(); |
|
| 240 | - do_action( 'getpaid_checkout_invoice_exception', $invoice ); |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - // Do we have any errors? |
|
| 244 | - if ( wpinv_get_errors() ) { |
|
| 245 | - $response['data'] = getpaid_get_errors_html( true, false ); |
|
| 246 | - } else { |
|
| 247 | - $response['data'] = __( 'An error occured while processing your payment. Please try again.', 'invoicing' ); |
|
| 248 | - } |
|
| 249 | - |
|
| 250 | - wp_send_json( $response ); |
|
| 233 | + $response = array( 'success' => false ); |
|
| 234 | + $invoice = wpinv_get_invoice( $invoice ); |
|
| 235 | + |
|
| 236 | + // Was an invoice created? |
|
| 237 | + if ( ! empty( $invoice ) ) { |
|
| 238 | + $invoice = is_scalar( $invoice ) ? new WPInv_Invoice( $invoice ) : $invoice; |
|
| 239 | + $response['invoice'] = $invoice->get_id(); |
|
| 240 | + do_action( 'getpaid_checkout_invoice_exception', $invoice ); |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + // Do we have any errors? |
|
| 244 | + if ( wpinv_get_errors() ) { |
|
| 245 | + $response['data'] = getpaid_get_errors_html( true, false ); |
|
| 246 | + } else { |
|
| 247 | + $response['data'] = __( 'An error occured while processing your payment. Please try again.', 'invoicing' ); |
|
| 248 | + } |
|
| 249 | + |
|
| 250 | + wp_send_json( $response ); |
|
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | /** |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | * @return string |
| 257 | 257 | */ |
| 258 | 258 | function getpaid_get_recaptcha_site_key() { |
| 259 | - return apply_filters( 'getpaid_recaptcha_site_key', wpinv_get_option( 'recaptcha_site_key', '' ) ); |
|
| 259 | + return apply_filters( 'getpaid_recaptcha_site_key', wpinv_get_option( 'recaptcha_site_key', '' ) ); |
|
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | /** |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | * @return string |
| 266 | 266 | */ |
| 267 | 267 | function getpaid_get_recaptcha_secret_key() { |
| 268 | - return apply_filters( 'getpaid_recaptcha_secret_key', wpinv_get_option( 'recaptcha_secret_key', '' ) ); |
|
| 268 | + return apply_filters( 'getpaid_recaptcha_secret_key', wpinv_get_option( 'recaptcha_secret_key', '' ) ); |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /** |
@@ -274,7 +274,7 @@ discard block |
||
| 274 | 274 | * @return bool |
| 275 | 275 | */ |
| 276 | 276 | function getpaid_is_recaptcha_enabled() { |
| 277 | - return wpinv_get_option( 'enable_recaptcha', false ) && getpaid_get_recaptcha_site_key() && getpaid_get_recaptcha_secret_key(); |
|
| 277 | + return wpinv_get_option( 'enable_recaptcha', false ) && getpaid_get_recaptcha_site_key() && getpaid_get_recaptcha_secret_key(); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | /** |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | * @return string |
| 284 | 284 | */ |
| 285 | 285 | function getpaid_get_recaptcha_version() { |
| 286 | - return apply_filters( 'getpaid_recaptcha_version', wpinv_get_option( 'recaptcha_version', 'v2' ) ); |
|
| 286 | + return apply_filters( 'getpaid_recaptcha_version', wpinv_get_option( 'recaptcha_version', 'v2' ) ); |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | /** |
@@ -292,42 +292,42 @@ discard block |
||
| 292 | 292 | * @return array |
| 293 | 293 | */ |
| 294 | 294 | function getpaid_get_recaptcha_settings() { |
| 295 | - $settings = array( |
|
| 296 | - 'enabled' => getpaid_is_recaptcha_enabled(), |
|
| 297 | - 'version' => getpaid_get_recaptcha_version(), |
|
| 298 | - ); |
|
| 299 | - |
|
| 300 | - if ( ! getpaid_is_recaptcha_enabled() ) { |
|
| 301 | - return $settings; |
|
| 302 | - } |
|
| 303 | - |
|
| 304 | - $settings['sitekey'] = getpaid_get_recaptcha_site_key(); |
|
| 305 | - |
|
| 306 | - // Version 2 render params. |
|
| 307 | - if ( 'v2' === getpaid_get_recaptcha_version() ) { |
|
| 308 | - $settings['render_params'] = array( |
|
| 309 | - 'sitekey' => getpaid_get_recaptcha_site_key(), |
|
| 310 | - 'theme' => 'light', |
|
| 311 | - 'size' => 'normal', |
|
| 312 | - 'tabindex' => 0, |
|
| 313 | - ); |
|
| 314 | - } |
|
| 315 | - |
|
| 316 | - return apply_filters( 'getpaid_recaptcha_settings', $settings ); |
|
| 295 | + $settings = array( |
|
| 296 | + 'enabled' => getpaid_is_recaptcha_enabled(), |
|
| 297 | + 'version' => getpaid_get_recaptcha_version(), |
|
| 298 | + ); |
|
| 299 | + |
|
| 300 | + if ( ! getpaid_is_recaptcha_enabled() ) { |
|
| 301 | + return $settings; |
|
| 302 | + } |
|
| 303 | + |
|
| 304 | + $settings['sitekey'] = getpaid_get_recaptcha_site_key(); |
|
| 305 | + |
|
| 306 | + // Version 2 render params. |
|
| 307 | + if ( 'v2' === getpaid_get_recaptcha_version() ) { |
|
| 308 | + $settings['render_params'] = array( |
|
| 309 | + 'sitekey' => getpaid_get_recaptcha_site_key(), |
|
| 310 | + 'theme' => 'light', |
|
| 311 | + 'size' => 'normal', |
|
| 312 | + 'tabindex' => 0, |
|
| 313 | + ); |
|
| 314 | + } |
|
| 315 | + |
|
| 316 | + return apply_filters( 'getpaid_recaptcha_settings', $settings ); |
|
| 317 | 317 | } |
| 318 | 318 | |
| 319 | 319 | /** |
| 320 | 320 | * Displays reCAPTCHA before payment button. |
| 321 | 321 | */ |
| 322 | 322 | function getpaid_display_recaptcha_before_payment_button() { |
| 323 | - if ( ! getpaid_is_recaptcha_enabled() || 'v2' !== getpaid_get_recaptcha_version() ) { |
|
| 324 | - return; |
|
| 325 | - } |
|
| 326 | - |
|
| 327 | - printf( |
|
| 328 | - '<div class="getpaid-recaptcha-wrapper"><div class="g-recaptcha mw-100 overflow-hidden my-2" id="getpaid-recaptcha-%s"></div></div>', |
|
| 329 | - esc_attr( wp_unique_id() ) |
|
| 330 | - ); |
|
| 323 | + if ( ! getpaid_is_recaptcha_enabled() || 'v2' !== getpaid_get_recaptcha_version() ) { |
|
| 324 | + return; |
|
| 325 | + } |
|
| 326 | + |
|
| 327 | + printf( |
|
| 328 | + '<div class="getpaid-recaptcha-wrapper"><div class="g-recaptcha mw-100 overflow-hidden my-2" id="getpaid-recaptcha-%s"></div></div>', |
|
| 329 | + esc_attr( wp_unique_id() ) |
|
| 330 | + ); |
|
| 331 | 331 | } |
| 332 | 332 | add_action( 'getpaid_before_payment_form_pay_button', 'getpaid_display_recaptcha_before_payment_button' ); |
| 333 | 333 | |
@@ -338,43 +338,43 @@ discard block |
||
| 338 | 338 | */ |
| 339 | 339 | function getpaid_validate_recaptcha_response( $submission ) { |
| 340 | 340 | |
| 341 | - // Check if reCAPTCHA is enabled. |
|
| 342 | - if ( ! getpaid_is_recaptcha_enabled() ) { |
|
| 343 | - return; |
|
| 344 | - } |
|
| 345 | - |
|
| 346 | - $token = $submission->get_field( 'g-recaptcha-response' ); |
|
| 347 | - |
|
| 348 | - // Abort if no token was provided. |
|
| 349 | - if ( empty( $token ) ) { |
|
| 350 | - wp_send_json_error( 'v2' === getpaid_get_recaptcha_version() ? __( 'Please confirm that you are not a robot.', 'invoicing' ) : __( "Unable to verify that you're not a robot. Please try again.", 'invoicing' ) ); |
|
| 351 | - } |
|
| 352 | - |
|
| 353 | - $result = wp_remote_post( |
|
| 354 | - 'https://www.google.com/recaptcha/api/siteverify', |
|
| 355 | - array( |
|
| 356 | - 'body' => array( |
|
| 357 | - 'secret' => getpaid_get_recaptcha_secret_key(), |
|
| 358 | - 'response' => $token, |
|
| 359 | - ), |
|
| 360 | - ) |
|
| 361 | - ); |
|
| 362 | - |
|
| 363 | - // Site not reachable, give benefit of doubt. |
|
| 364 | - if ( is_wp_error( $result ) ) { |
|
| 365 | - return; |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - $result = json_decode( wp_remote_retrieve_body( $result ), true ); |
|
| 369 | - |
|
| 370 | - if ( empty( $result['success'] ) && ! in_array( 'missing-input-secret', $result['error-codes'], true ) && ! in_array( 'invalid-input-secret', $result['error-codes'], true ) ) { |
|
| 371 | - wp_send_json_error( __( "Unable to verify that you're not a robot. Please try again.", 'invoicing' ) ); |
|
| 372 | - } |
|
| 373 | - |
|
| 374 | - // For v3, check the score. |
|
| 375 | - $minimum_score = apply_filters( 'getpaid_recaptcha_minimum_score', 0.4 ); |
|
| 376 | - if ( 'v3' === getpaid_get_recaptcha_version() && ( empty( $result['score'] ) || $result['score'] < $minimum_score ) ) { |
|
| 377 | - wp_send_json_error( __( "Unable to verify that you're not a robot. Please try again.", 'invoicing' ) ); |
|
| 378 | - } |
|
| 341 | + // Check if reCAPTCHA is enabled. |
|
| 342 | + if ( ! getpaid_is_recaptcha_enabled() ) { |
|
| 343 | + return; |
|
| 344 | + } |
|
| 345 | + |
|
| 346 | + $token = $submission->get_field( 'g-recaptcha-response' ); |
|
| 347 | + |
|
| 348 | + // Abort if no token was provided. |
|
| 349 | + if ( empty( $token ) ) { |
|
| 350 | + wp_send_json_error( 'v2' === getpaid_get_recaptcha_version() ? __( 'Please confirm that you are not a robot.', 'invoicing' ) : __( "Unable to verify that you're not a robot. Please try again.", 'invoicing' ) ); |
|
| 351 | + } |
|
| 352 | + |
|
| 353 | + $result = wp_remote_post( |
|
| 354 | + 'https://www.google.com/recaptcha/api/siteverify', |
|
| 355 | + array( |
|
| 356 | + 'body' => array( |
|
| 357 | + 'secret' => getpaid_get_recaptcha_secret_key(), |
|
| 358 | + 'response' => $token, |
|
| 359 | + ), |
|
| 360 | + ) |
|
| 361 | + ); |
|
| 362 | + |
|
| 363 | + // Site not reachable, give benefit of doubt. |
|
| 364 | + if ( is_wp_error( $result ) ) { |
|
| 365 | + return; |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + $result = json_decode( wp_remote_retrieve_body( $result ), true ); |
|
| 369 | + |
|
| 370 | + if ( empty( $result['success'] ) && ! in_array( 'missing-input-secret', $result['error-codes'], true ) && ! in_array( 'invalid-input-secret', $result['error-codes'], true ) ) { |
|
| 371 | + wp_send_json_error( __( "Unable to verify that you're not a robot. Please try again.", 'invoicing' ) ); |
|
| 372 | + } |
|
| 373 | + |
|
| 374 | + // For v3, check the score. |
|
| 375 | + $minimum_score = apply_filters( 'getpaid_recaptcha_minimum_score', 0.4 ); |
|
| 376 | + if ( 'v3' === getpaid_get_recaptcha_version() && ( empty( $result['score'] ) || $result['score'] < $minimum_score ) ) { |
|
| 377 | + wp_send_json_error( __( "Unable to verify that you're not a robot. Please try again.", 'invoicing' ) ); |
|
| 378 | + } |
|
| 379 | 379 | } |
| 380 | 380 | add_action( 'getpaid_checkout_error_checks', 'getpaid_validate_recaptcha_response' ); |
@@ -1,103 +1,103 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | - exit; |
|
| 4 | + exit; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | if ( ! class_exists( 'AyeCode_Deactivation_Survey' ) ) { |
| 8 | 8 | |
| 9 | - class AyeCode_Deactivation_Survey { |
|
| 9 | + class AyeCode_Deactivation_Survey { |
|
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * AyeCode_Deactivation_Survey instance. |
|
| 13 | - * |
|
| 14 | - * @access private |
|
| 15 | - * @since 1.0.0 |
|
| 16 | - * @var AyeCode_Deactivation_Survey There can be only one! |
|
| 17 | - */ |
|
| 18 | - private static $instance = null; |
|
| 11 | + /** |
|
| 12 | + * AyeCode_Deactivation_Survey instance. |
|
| 13 | + * |
|
| 14 | + * @access private |
|
| 15 | + * @since 1.0.0 |
|
| 16 | + * @var AyeCode_Deactivation_Survey There can be only one! |
|
| 17 | + */ |
|
| 18 | + private static $instance = null; |
|
| 19 | 19 | |
| 20 | - public static $plugins; |
|
| 20 | + public static $plugins; |
|
| 21 | 21 | |
| 22 | - public $version = "1.0.6"; |
|
| 22 | + public $version = "1.0.6"; |
|
| 23 | 23 | |
| 24 | - public static function instance( $plugin = array() ) { |
|
| 25 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_Deactivation_Survey ) ) { |
|
| 26 | - self::$instance = new AyeCode_Deactivation_Survey; |
|
| 27 | - self::$plugins = array(); |
|
| 24 | + public static function instance( $plugin = array() ) { |
|
| 25 | + if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_Deactivation_Survey ) ) { |
|
| 26 | + self::$instance = new AyeCode_Deactivation_Survey; |
|
| 27 | + self::$plugins = array(); |
|
| 28 | 28 | |
| 29 | - add_action( 'admin_enqueue_scripts', array( self::$instance, 'scripts' ) ); |
|
| 29 | + add_action( 'admin_enqueue_scripts', array( self::$instance, 'scripts' ) ); |
|
| 30 | 30 | |
| 31 | - do_action( 'ayecode_deactivation_survey_loaded' ); |
|
| 32 | - } |
|
| 31 | + do_action( 'ayecode_deactivation_survey_loaded' ); |
|
| 32 | + } |
|
| 33 | 33 | |
| 34 | - if(!empty($plugin)){ |
|
| 35 | - self::$plugins[] = (object)$plugin; |
|
| 36 | - } |
|
| 34 | + if(!empty($plugin)){ |
|
| 35 | + self::$plugins[] = (object)$plugin; |
|
| 36 | + } |
|
| 37 | 37 | |
| 38 | - return self::$instance; |
|
| 39 | - } |
|
| 38 | + return self::$instance; |
|
| 39 | + } |
|
| 40 | 40 | |
| 41 | - public function scripts() { |
|
| 42 | - global $pagenow; |
|
| 41 | + public function scripts() { |
|
| 42 | + global $pagenow; |
|
| 43 | 43 | |
| 44 | - // Bail if we are not on the plugins page |
|
| 45 | - if ( $pagenow != "plugins.php" ) { |
|
| 46 | - return; |
|
| 47 | - } |
|
| 44 | + // Bail if we are not on the plugins page |
|
| 45 | + if ( $pagenow != "plugins.php" ) { |
|
| 46 | + return; |
|
| 47 | + } |
|
| 48 | 48 | |
| 49 | - // Enqueue scripts |
|
| 50 | - add_thickbox(); |
|
| 51 | - wp_enqueue_script('ayecode-deactivation-survey', plugin_dir_url(__FILE__) . 'ayecode-ds.js'); |
|
| 49 | + // Enqueue scripts |
|
| 50 | + add_thickbox(); |
|
| 51 | + wp_enqueue_script('ayecode-deactivation-survey', plugin_dir_url(__FILE__) . 'ayecode-ds.js'); |
|
| 52 | 52 | |
| 53 | - /* |
|
| 53 | + /* |
|
| 54 | 54 | * Localized strings. Strings can be localised by plugins using this class. |
| 55 | 55 | * We deliberately don't add textdomains here so that double textdomain warning is not given in theme review. |
| 56 | 56 | */ |
| 57 | - wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_strings', array( |
|
| 58 | - 'quick_feedback' => 'Quick Feedback', |
|
| 59 | - 'foreword' => 'If you would be kind enough, please tell us why you\'re deactivating?', |
|
| 60 | - 'better_plugins_name' => 'Please tell us which plugin?', |
|
| 61 | - 'please_tell_us' => 'Please tell us the reason so we can improve the plugin', |
|
| 62 | - 'do_not_attach_email' => 'Do not send my e-mail address with this feedback', |
|
| 63 | - 'brief_description' => 'Please give us any feedback that could help us improve', |
|
| 64 | - 'cancel' => 'Cancel', |
|
| 65 | - 'skip_and_deactivate' => 'Skip & Deactivate', |
|
| 66 | - 'submit_and_deactivate' => 'Submit & Deactivate', |
|
| 67 | - 'please_wait' => 'Please wait', |
|
| 68 | - 'get_support' => 'Get Support', |
|
| 69 | - 'documentation' => 'Documentation', |
|
| 70 | - 'thank_you' => 'Thank you!', |
|
| 71 | - )); |
|
| 72 | - |
|
| 73 | - // Plugins |
|
| 74 | - $plugins = apply_filters('ayecode_deactivation_survey_plugins', self::$plugins); |
|
| 75 | - |
|
| 76 | - // Reasons |
|
| 77 | - $defaultReasons = array( |
|
| 78 | - 'suddenly-stopped-working' => 'The plugin suddenly stopped working', |
|
| 79 | - 'plugin-broke-site' => 'The plugin broke my site', |
|
| 80 | - 'plugin-setup-difficult' => 'Too difficult to setup', |
|
| 81 | - 'plugin-design-difficult' => 'Too difficult to get the design i want', |
|
| 82 | - 'no-longer-needed' => 'I don\'t need this plugin any more', |
|
| 83 | - 'found-better-plugin' => 'I found a better plugin', |
|
| 84 | - 'temporary-deactivation' => 'It\'s a temporary deactivation, I\'m troubleshooting', |
|
| 85 | - 'other' => 'Other', |
|
| 86 | - ); |
|
| 87 | - |
|
| 88 | - foreach($plugins as $plugin) |
|
| 89 | - { |
|
| 90 | - $plugin->reasons = apply_filters('ayecode_deactivation_survey_reasons', $defaultReasons, $plugin); |
|
| 91 | - $plugin->url = home_url(); |
|
| 92 | - $plugin->activated = 0; |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - // Send plugin data |
|
| 96 | - wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_plugins', $plugins); |
|
| 97 | - |
|
| 98 | - } |
|
| 57 | + wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_strings', array( |
|
| 58 | + 'quick_feedback' => 'Quick Feedback', |
|
| 59 | + 'foreword' => 'If you would be kind enough, please tell us why you\'re deactivating?', |
|
| 60 | + 'better_plugins_name' => 'Please tell us which plugin?', |
|
| 61 | + 'please_tell_us' => 'Please tell us the reason so we can improve the plugin', |
|
| 62 | + 'do_not_attach_email' => 'Do not send my e-mail address with this feedback', |
|
| 63 | + 'brief_description' => 'Please give us any feedback that could help us improve', |
|
| 64 | + 'cancel' => 'Cancel', |
|
| 65 | + 'skip_and_deactivate' => 'Skip & Deactivate', |
|
| 66 | + 'submit_and_deactivate' => 'Submit & Deactivate', |
|
| 67 | + 'please_wait' => 'Please wait', |
|
| 68 | + 'get_support' => 'Get Support', |
|
| 69 | + 'documentation' => 'Documentation', |
|
| 70 | + 'thank_you' => 'Thank you!', |
|
| 71 | + )); |
|
| 72 | + |
|
| 73 | + // Plugins |
|
| 74 | + $plugins = apply_filters('ayecode_deactivation_survey_plugins', self::$plugins); |
|
| 75 | + |
|
| 76 | + // Reasons |
|
| 77 | + $defaultReasons = array( |
|
| 78 | + 'suddenly-stopped-working' => 'The plugin suddenly stopped working', |
|
| 79 | + 'plugin-broke-site' => 'The plugin broke my site', |
|
| 80 | + 'plugin-setup-difficult' => 'Too difficult to setup', |
|
| 81 | + 'plugin-design-difficult' => 'Too difficult to get the design i want', |
|
| 82 | + 'no-longer-needed' => 'I don\'t need this plugin any more', |
|
| 83 | + 'found-better-plugin' => 'I found a better plugin', |
|
| 84 | + 'temporary-deactivation' => 'It\'s a temporary deactivation, I\'m troubleshooting', |
|
| 85 | + 'other' => 'Other', |
|
| 86 | + ); |
|
| 87 | + |
|
| 88 | + foreach($plugins as $plugin) |
|
| 89 | + { |
|
| 90 | + $plugin->reasons = apply_filters('ayecode_deactivation_survey_reasons', $defaultReasons, $plugin); |
|
| 91 | + $plugin->url = home_url(); |
|
| 92 | + $plugin->activated = 0; |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + // Send plugin data |
|
| 96 | + wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_plugins', $plugins); |
|
| 97 | + |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | 100 | |
| 101 | - } |
|
| 101 | + } |
|
| 102 | 102 | |
| 103 | 103 | } |
| 104 | 104 | \ No newline at end of file |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | // And the optional invoice id. |
| 59 | 59 | if ( ! empty( $form->invoice ) ) { |
| 60 | - getpaid_hidden_field( 'invoice_id', $form->invoice->get_id() ); |
|
| 60 | + getpaid_hidden_field( 'invoice_id', $form->invoice->get_id() ); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // We also want to include the form id. |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | <?php |
| 77 | 77 | |
| 78 | 78 | foreach ( $form->get_elements() as $element ) { |
| 79 | - if ( isset( $element['type'] ) ) { |
|
| 79 | + if ( isset( $element['type'] ) ) { |
|
| 80 | 80 | $grid_class = getpaid_get_form_element_grid_class( $element ); |
| 81 | 81 | do_action( 'getpaid_payment_form_element_before', $element, $form ); |
| 82 | 82 | do_action( "getpaid_payment_form_element_before_{$element['type']}_template", $element, $form ); |
@@ -11,26 +11,26 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | // Totals rows. |
| 13 | 13 | $cart_totals = apply_filters( |
| 14 | - 'getpaid_payment_form_cart_table_totals', |
|
| 15 | - array( |
|
| 16 | - 'subtotal' => __( 'Subtotal', 'invoicing' ), |
|
| 17 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
| 18 | - 'fees' => __( 'Fee', 'invoicing' ), |
|
| 19 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
| 20 | - 'total' => __( 'Total', 'invoicing' ), |
|
| 21 | - ), |
|
| 22 | - $form |
|
| 14 | + 'getpaid_payment_form_cart_table_totals', |
|
| 15 | + array( |
|
| 16 | + 'subtotal' => __( 'Subtotal', 'invoicing' ), |
|
| 17 | + 'tax' => __( 'Tax', 'invoicing' ), |
|
| 18 | + 'fees' => __( 'Fee', 'invoicing' ), |
|
| 19 | + 'discount' => __( 'Discount', 'invoicing' ), |
|
| 20 | + 'total' => __( 'Total', 'invoicing' ), |
|
| 21 | + ), |
|
| 22 | + $form |
|
| 23 | 23 | ); |
| 24 | 24 | |
| 25 | 25 | $currency = $form->get_currency(); |
| 26 | 26 | $country = wpinv_get_default_country(); |
| 27 | 27 | |
| 28 | 28 | if ( ! empty( $form->invoice ) ) { |
| 29 | - $country = $form->invoice->get_country(); |
|
| 29 | + $country = $form->invoice->get_country(); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | if ( ! wpinv_use_taxes() && isset( $cart_totals['tax'] ) ) { |
| 33 | - unset( $cart_totals['tax'] ); |
|
| 33 | + unset( $cart_totals['tax'] ); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | do_action( 'getpaid_before_payment_form_cart_totals', $form, $cart_totals ); |
@@ -61,13 +61,13 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | <?php |
| 63 | 63 | |
| 64 | - // Total tax. |
|
| 65 | - if ( in_array( $key, array( 'tax', 'discount', 'subtotal', 'total', 'fees' ), true ) ) { |
|
| 66 | - wpinv_the_price( 0, $currency ); |
|
| 67 | - } |
|
| 64 | + // Total tax. |
|
| 65 | + if ( in_array( $key, array( 'tax', 'discount', 'subtotal', 'total', 'fees' ), true ) ) { |
|
| 66 | + wpinv_the_price( 0, $currency ); |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - do_action( "getpaid_payment_form_cart_totals_$key", $form ); |
|
| 70 | - ?> |
|
| 69 | + do_action( "getpaid_payment_form_cart_totals_$key", $form ); |
|
| 70 | + ?> |
|
| 71 | 71 | |
| 72 | 72 | </div> |
| 73 | 73 | |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | defined( 'ABSPATH' ) || exit; |
| 11 | 11 | |
| 12 | 12 | if ( empty( $fields ) ) { |
| 13 | - return; |
|
| 13 | + return; |
|
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | // A prefix for all ids (so that a form can be included in the same page multiple times). |
@@ -18,12 +18,12 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | // Prepare the user's country. |
| 20 | 20 | if ( ! empty( $form->invoice ) ) { |
| 21 | - $country = $form->invoice->get_country(); |
|
| 21 | + $country = $form->invoice->get_country(); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | if ( empty( $country ) ) { |
| 25 | - $country = empty( $country ) ? getpaid_get_ip_country() : $country; |
|
| 26 | - $country = empty( $country ) ? wpinv_get_default_country() : $country; |
|
| 25 | + $country = empty( $country ) ? getpaid_get_ip_country() : $country; |
|
| 26 | + $country = empty( $country ) ? wpinv_get_default_country() : $country; |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | // A prefix for all ids (so that a form can be included in the same page multiple times). |
@@ -55,10 +55,10 @@ discard block |
||
| 55 | 55 | <!-- Start Billing Address --> |
| 56 | 56 | <div class="getpaid-billing-address-wrapper"> |
| 57 | 57 | <?php |
| 58 | - $field_type = 'billing'; |
|
| 59 | - include plugin_dir_path( __FILE__ ) . 'address-fields.php'; |
|
| 60 | - do_action( 'getpaid_after_payment_form_billing_fields', $form ); |
|
| 61 | - ?> |
|
| 58 | + $field_type = 'billing'; |
|
| 59 | + include plugin_dir_path( __FILE__ ) . 'address-fields.php'; |
|
| 60 | + do_action( 'getpaid_after_payment_form_billing_fields', $form ); |
|
| 61 | + ?> |
|
| 62 | 62 | </div> |
| 63 | 63 | <!-- End Billing Address --> |
| 64 | 64 | |
@@ -70,21 +70,21 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | <?php |
| 72 | 72 | |
| 73 | - aui()->input( |
|
| 74 | - array( |
|
| 75 | - 'type' => 'checkbox', |
|
| 76 | - 'name' => 'same-shipping-address', |
|
| 77 | - 'id' => "shipping-toggle$uniqid", |
|
| 78 | - 'required' => false, |
|
| 79 | - 'label' => empty( $shipping_address_toggle ) ? esc_html__( 'Same billing & shipping address.', 'invoicing' ) : wp_kses_post( $shipping_address_toggle ), |
|
| 80 | - 'value' => 1, |
|
| 81 | - 'checked' => true, |
|
| 82 | - 'class' => 'w-auto', |
|
| 83 | - ), |
|
| 84 | - true |
|
| 85 | - ); |
|
| 73 | + aui()->input( |
|
| 74 | + array( |
|
| 75 | + 'type' => 'checkbox', |
|
| 76 | + 'name' => 'same-shipping-address', |
|
| 77 | + 'id' => "shipping-toggle$uniqid", |
|
| 78 | + 'required' => false, |
|
| 79 | + 'label' => empty( $shipping_address_toggle ) ? esc_html__( 'Same billing & shipping address.', 'invoicing' ) : wp_kses_post( $shipping_address_toggle ), |
|
| 80 | + 'value' => 1, |
|
| 81 | + 'checked' => true, |
|
| 82 | + 'class' => 'w-auto', |
|
| 83 | + ), |
|
| 84 | + true |
|
| 85 | + ); |
|
| 86 | 86 | |
| 87 | - ?> |
|
| 87 | + ?> |
|
| 88 | 88 | |
| 89 | 89 | |
| 90 | 90 | <!-- Start Shipping Address Title --> |
@@ -103,10 +103,10 @@ discard block |
||
| 103 | 103 | <!-- Start Shipping Address --> |
| 104 | 104 | <div class="getpaid-shipping-address-wrapper"> |
| 105 | 105 | <?php |
| 106 | - $field_type = 'shipping'; |
|
| 107 | - include plugin_dir_path( __FILE__ ) . 'address-fields.php'; |
|
| 108 | - do_action( 'getpaid_after_payment_form_shipping_fields', $form ); |
|
| 109 | - ?> |
|
| 106 | + $field_type = 'shipping'; |
|
| 107 | + include plugin_dir_path( __FILE__ ) . 'address-fields.php'; |
|
| 108 | + do_action( 'getpaid_after_payment_form_shipping_fields', $form ); |
|
| 109 | + ?> |
|
| 110 | 110 | </div> |
| 111 | 111 | <!-- End Shipping Address --> |
| 112 | 112 | |
@@ -15,105 +15,105 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | class GetPaid_Meta_Data implements JsonSerializable { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Current data for metadata |
|
| 20 | - * |
|
| 21 | - * @since 1.0.19 |
|
| 22 | - * @var array |
|
| 23 | - */ |
|
| 24 | - protected $current_data; |
|
| 18 | + /** |
|
| 19 | + * Current data for metadata |
|
| 20 | + * |
|
| 21 | + * @since 1.0.19 |
|
| 22 | + * @var array |
|
| 23 | + */ |
|
| 24 | + protected $current_data; |
|
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Metadata data |
|
| 28 | - * |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - protected $data; |
|
| 26 | + /** |
|
| 27 | + * Metadata data |
|
| 28 | + * |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + protected $data; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * Constructor. |
|
| 36 | - * |
|
| 37 | - * @param array $meta Data to wrap behind this function. |
|
| 38 | - */ |
|
| 39 | - public function __construct( $meta = array() ) { |
|
| 40 | - $this->current_data = $meta; |
|
| 41 | - $this->apply_changes(); |
|
| 42 | - } |
|
| 34 | + /** |
|
| 35 | + * Constructor. |
|
| 36 | + * |
|
| 37 | + * @param array $meta Data to wrap behind this function. |
|
| 38 | + */ |
|
| 39 | + public function __construct( $meta = array() ) { |
|
| 40 | + $this->current_data = $meta; |
|
| 41 | + $this->apply_changes(); |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * When converted to JSON. |
|
| 46 | - * |
|
| 47 | - * @return object|array |
|
| 48 | - */ |
|
| 49 | - #[\ReturnTypeWillChange] |
|
| 50 | - public function jsonSerialize() { |
|
| 51 | - return $this->get_data(); |
|
| 52 | - } |
|
| 44 | + /** |
|
| 45 | + * When converted to JSON. |
|
| 46 | + * |
|
| 47 | + * @return object|array |
|
| 48 | + */ |
|
| 49 | + #[\ReturnTypeWillChange] |
|
| 50 | + public function jsonSerialize() { |
|
| 51 | + return $this->get_data(); |
|
| 52 | + } |
|
| 53 | 53 | |
| 54 | - /** |
|
| 55 | - * Merge changes with data and clear. |
|
| 56 | - */ |
|
| 57 | - public function apply_changes() { |
|
| 58 | - $this->data = $this->current_data; |
|
| 59 | - } |
|
| 54 | + /** |
|
| 55 | + * Merge changes with data and clear. |
|
| 56 | + */ |
|
| 57 | + public function apply_changes() { |
|
| 58 | + $this->data = $this->current_data; |
|
| 59 | + } |
|
| 60 | 60 | |
| 61 | - /** |
|
| 62 | - * Creates or updates a property in the metadata object. |
|
| 63 | - * |
|
| 64 | - * @param string $key Key to set. |
|
| 65 | - * @param mixed $value Value to set. |
|
| 66 | - */ |
|
| 67 | - public function __set( $key, $value ) { |
|
| 68 | - $this->current_data[ $key ] = $value; |
|
| 69 | - } |
|
| 61 | + /** |
|
| 62 | + * Creates or updates a property in the metadata object. |
|
| 63 | + * |
|
| 64 | + * @param string $key Key to set. |
|
| 65 | + * @param mixed $value Value to set. |
|
| 66 | + */ |
|
| 67 | + public function __set( $key, $value ) { |
|
| 68 | + $this->current_data[ $key ] = $value; |
|
| 69 | + } |
|
| 70 | 70 | |
| 71 | - /** |
|
| 72 | - * Checks if a given key exists in our data. This is called internally |
|
| 73 | - * by `empty` and `isset`. |
|
| 74 | - * |
|
| 75 | - * @param string $key Key to check if set. |
|
| 76 | - * |
|
| 77 | - * @return bool |
|
| 78 | - */ |
|
| 79 | - public function __isset( $key ) { |
|
| 80 | - return array_key_exists( $key, $this->current_data ); |
|
| 81 | - } |
|
| 71 | + /** |
|
| 72 | + * Checks if a given key exists in our data. This is called internally |
|
| 73 | + * by `empty` and `isset`. |
|
| 74 | + * |
|
| 75 | + * @param string $key Key to check if set. |
|
| 76 | + * |
|
| 77 | + * @return bool |
|
| 78 | + */ |
|
| 79 | + public function __isset( $key ) { |
|
| 80 | + return array_key_exists( $key, $this->current_data ); |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - /** |
|
| 84 | - * Returns the value of any property. |
|
| 85 | - * |
|
| 86 | - * @param string $key Key to get. |
|
| 87 | - * @return mixed Property value or NULL if it does not exists |
|
| 88 | - */ |
|
| 89 | - public function __get( $key ) { |
|
| 90 | - if ( array_key_exists( $key, $this->current_data ) ) { |
|
| 91 | - return $this->current_data[ $key ]; |
|
| 92 | - } |
|
| 93 | - return null; |
|
| 94 | - } |
|
| 83 | + /** |
|
| 84 | + * Returns the value of any property. |
|
| 85 | + * |
|
| 86 | + * @param string $key Key to get. |
|
| 87 | + * @return mixed Property value or NULL if it does not exists |
|
| 88 | + */ |
|
| 89 | + public function __get( $key ) { |
|
| 90 | + if ( array_key_exists( $key, $this->current_data ) ) { |
|
| 91 | + return $this->current_data[ $key ]; |
|
| 92 | + } |
|
| 93 | + return null; |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | - /** |
|
| 97 | - * Return data changes only. |
|
| 98 | - * |
|
| 99 | - * @return array |
|
| 100 | - */ |
|
| 101 | - public function get_changes() { |
|
| 102 | - $changes = array(); |
|
| 103 | - foreach ( $this->current_data as $id => $value ) { |
|
| 104 | - if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
| 105 | - $changes[ $id ] = $value; |
|
| 106 | - } |
|
| 107 | - } |
|
| 108 | - return $changes; |
|
| 109 | - } |
|
| 96 | + /** |
|
| 97 | + * Return data changes only. |
|
| 98 | + * |
|
| 99 | + * @return array |
|
| 100 | + */ |
|
| 101 | + public function get_changes() { |
|
| 102 | + $changes = array(); |
|
| 103 | + foreach ( $this->current_data as $id => $value ) { |
|
| 104 | + if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
| 105 | + $changes[ $id ] = $value; |
|
| 106 | + } |
|
| 107 | + } |
|
| 108 | + return $changes; |
|
| 109 | + } |
|
| 110 | 110 | |
| 111 | - /** |
|
| 112 | - * Return all data as an array. |
|
| 113 | - * |
|
| 114 | - * @return array |
|
| 115 | - */ |
|
| 116 | - public function get_data() { |
|
| 117 | - return $this->data; |
|
| 118 | - } |
|
| 111 | + /** |
|
| 112 | + * Return all data as an array. |
|
| 113 | + * |
|
| 114 | + * @return array |
|
| 115 | + */ |
|
| 116 | + public function get_data() { |
|
| 117 | + return $this->data; |
|
| 118 | + } |
|
| 119 | 119 | } |
@@ -160,50 +160,50 @@ |
||
| 160 | 160 | */ |
| 161 | 161 | function getpaid_calculate_invoice_discount( $invoice, $discount ) { |
| 162 | 162 | |
| 163 | - $initial_discount = 0; |
|
| 164 | - $recurring_discount = 0; |
|
| 163 | + $initial_discount = 0; |
|
| 164 | + $recurring_discount = 0; |
|
| 165 | 165 | |
| 166 | - foreach ( $invoice->get_items() as $item ) { |
|
| 166 | + foreach ( $invoice->get_items() as $item ) { |
|
| 167 | 167 | |
| 168 | - // Abort if it is not valid for this item. |
|
| 169 | - if ( ! $discount->is_valid_for_items( array( $item->get_id() ) ) ) { |
|
| 170 | - continue; |
|
| 171 | - } |
|
| 168 | + // Abort if it is not valid for this item. |
|
| 169 | + if ( ! $discount->is_valid_for_items( array( $item->get_id() ) ) ) { |
|
| 170 | + continue; |
|
| 171 | + } |
|
| 172 | 172 | |
| 173 | - // Calculate the initial amount... |
|
| 174 | - $item_discount = $discount->get_discounted_amount( $item->get_sub_total() ); |
|
| 175 | - $recurring_item_discount = 0; |
|
| 173 | + // Calculate the initial amount... |
|
| 174 | + $item_discount = $discount->get_discounted_amount( $item->get_sub_total() ); |
|
| 175 | + $recurring_item_discount = 0; |
|
| 176 | 176 | |
| 177 | - // ... and maybe the recurring amount. |
|
| 178 | - if ( $item->is_recurring() && $discount->is_recurring() ) { |
|
| 179 | - $recurring_item_discount = $discount->get_discounted_amount( $item->get_recurring_sub_total() ); |
|
| 180 | - } |
|
| 177 | + // ... and maybe the recurring amount. |
|
| 178 | + if ( $item->is_recurring() && $discount->is_recurring() ) { |
|
| 179 | + $recurring_item_discount = $discount->get_discounted_amount( $item->get_recurring_sub_total() ); |
|
| 180 | + } |
|
| 181 | 181 | |
| 182 | - // Discount should not exceed discounted amount. |
|
| 183 | - if ( ! $discount->is_type( 'percent' ) ) { |
|
| 182 | + // Discount should not exceed discounted amount. |
|
| 183 | + if ( ! $discount->is_type( 'percent' ) ) { |
|
| 184 | 184 | |
| 185 | - if ( ( $initial_discount + $item_discount ) > $discount->get_amount() ) { |
|
| 186 | - $item_discount = $discount->get_amount() - $initial_discount; |
|
| 187 | - } |
|
| 185 | + if ( ( $initial_discount + $item_discount ) > $discount->get_amount() ) { |
|
| 186 | + $item_discount = $discount->get_amount() - $initial_discount; |
|
| 187 | + } |
|
| 188 | 188 | |
| 189 | - if ( ( $recurring_discount + $recurring_item_discount ) > $discount->get_amount() ) { |
|
| 190 | - $recurring_item_discount = $discount->get_amount() - $recurring_discount; |
|
| 191 | - } |
|
| 189 | + if ( ( $recurring_discount + $recurring_item_discount ) > $discount->get_amount() ) { |
|
| 190 | + $recurring_item_discount = $discount->get_amount() - $recurring_discount; |
|
| 191 | + } |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - $initial_discount += $item_discount; |
|
| 195 | - $recurring_discount += $recurring_item_discount; |
|
| 196 | - $item->item_discount = $item_discount; |
|
| 197 | - $item->recurring_item_discount = $recurring_item_discount; |
|
| 194 | + $initial_discount += $item_discount; |
|
| 195 | + $recurring_discount += $recurring_item_discount; |
|
| 196 | + $item->item_discount = $item_discount; |
|
| 197 | + $item->recurring_item_discount = $recurring_item_discount; |
|
| 198 | 198 | |
| 199 | - } |
|
| 199 | + } |
|
| 200 | 200 | |
| 201 | - return array( |
|
| 202 | - 'name' => 'discount_code', |
|
| 203 | - 'discount_code' => $discount->get_code(), |
|
| 204 | - 'initial_discount' => $initial_discount, |
|
| 205 | - 'recurring_discount' => $recurring_discount, |
|
| 206 | - ); |
|
| 201 | + return array( |
|
| 202 | + 'name' => 'discount_code', |
|
| 203 | + 'discount_code' => $discount->get_code(), |
|
| 204 | + 'initial_discount' => $initial_discount, |
|
| 205 | + 'recurring_discount' => $recurring_discount, |
|
| 206 | + ); |
|
| 207 | 207 | |
| 208 | 208 | } |
| 209 | 209 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | - exit; |
|
| 3 | + exit; |
|
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | /** |
@@ -10,55 +10,55 @@ discard block |
||
| 10 | 10 | class GetPaid_Payment_Form extends GetPaid_Data { |
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | - * Which data store to load. |
|
| 14 | - * |
|
| 15 | - * @var string |
|
| 16 | - */ |
|
| 13 | + * Which data store to load. |
|
| 14 | + * |
|
| 15 | + * @var string |
|
| 16 | + */ |
|
| 17 | 17 | protected $data_store_name = 'payment_form'; |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * This is the name of this object type. |
|
| 21 | - * |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 24 | - protected $object_type = 'payment_form'; |
|
| 20 | + * This is the name of this object type. |
|
| 21 | + * |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | + protected $object_type = 'payment_form'; |
|
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | - * Form Data array. This is the core form data exposed in APIs. |
|
| 28 | - * |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - protected $data = array( |
|
| 33 | - 'status' => 'draft', |
|
| 34 | - 'version' => '', |
|
| 35 | - 'date_created' => null, |
|
| 27 | + * Form Data array. This is the core form data exposed in APIs. |
|
| 28 | + * |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + protected $data = array( |
|
| 33 | + 'status' => 'draft', |
|
| 34 | + 'version' => '', |
|
| 35 | + 'date_created' => null, |
|
| 36 | 36 | 'date_modified' => null, |
| 37 | 37 | 'name' => '', |
| 38 | 38 | 'author' => 1, |
| 39 | 39 | 'elements' => null, |
| 40 | - 'items' => null, |
|
| 41 | - 'earned' => 0, |
|
| 42 | - 'refunded' => 0, |
|
| 43 | - 'cancelled' => 0, |
|
| 44 | - 'failed' => 0, |
|
| 45 | - ); |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Stores meta in cache for future reads. |
|
| 49 | - * |
|
| 50 | - * A group must be set to to enable caching. |
|
| 51 | - * |
|
| 52 | - * @var string |
|
| 53 | - */ |
|
| 54 | - protected $cache_group = 'getpaid_forms'; |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * Stores a reference to the invoice if the form is for an invoice.. |
|
| 58 | - * |
|
| 59 | - * @var WPInv_Invoice |
|
| 60 | - */ |
|
| 61 | - public $invoice = 0; |
|
| 40 | + 'items' => null, |
|
| 41 | + 'earned' => 0, |
|
| 42 | + 'refunded' => 0, |
|
| 43 | + 'cancelled' => 0, |
|
| 44 | + 'failed' => 0, |
|
| 45 | + ); |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Stores meta in cache for future reads. |
|
| 49 | + * |
|
| 50 | + * A group must be set to to enable caching. |
|
| 51 | + * |
|
| 52 | + * @var string |
|
| 53 | + */ |
|
| 54 | + protected $cache_group = 'getpaid_forms'; |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * Stores a reference to the invoice if the form is for an invoice.. |
|
| 58 | + * |
|
| 59 | + * @var WPInv_Invoice |
|
| 60 | + */ |
|
| 61 | + public $invoice = 0; |
|
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Stores a reference to the original WP_Post object |
@@ -68,35 +68,35 @@ discard block |
||
| 68 | 68 | protected $post = null; |
| 69 | 69 | |
| 70 | 70 | /** |
| 71 | - * Get the form if ID is passed, otherwise the form is new and empty. |
|
| 72 | - * |
|
| 73 | - * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
| 74 | - */ |
|
| 75 | - public function __construct( $form = 0 ) { |
|
| 76 | - parent::__construct( $form ); |
|
| 71 | + * Get the form if ID is passed, otherwise the form is new and empty. |
|
| 72 | + * |
|
| 73 | + * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
| 74 | + */ |
|
| 75 | + public function __construct( $form = 0 ) { |
|
| 76 | + parent::__construct( $form ); |
|
| 77 | 77 | |
| 78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
| 79 | - $this->set_id( $form ); |
|
| 80 | - } elseif ( $form instanceof self ) { |
|
| 78 | + if ( is_numeric( $form ) && $form > 0 ) { |
|
| 79 | + $this->set_id( $form ); |
|
| 80 | + } elseif ( $form instanceof self ) { |
|
| 81 | 81 | |
| 82 | - $this->set_id( $form->get_id() ); |
|
| 83 | - $this->invoice = $form->invoice; |
|
| 82 | + $this->set_id( $form->get_id() ); |
|
| 83 | + $this->invoice = $form->invoice; |
|
| 84 | 84 | |
| 85 | - } elseif ( ! empty( $form->ID ) ) { |
|
| 86 | - $this->set_id( $form->ID ); |
|
| 87 | - } else { |
|
| 88 | - $this->set_object_read( true ); |
|
| 89 | - } |
|
| 85 | + } elseif ( ! empty( $form->ID ) ) { |
|
| 86 | + $this->set_id( $form->ID ); |
|
| 87 | + } else { |
|
| 88 | + $this->set_object_read( true ); |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | 91 | // Load the datastore. |
| 92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 92 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 93 | 93 | |
| 94 | - if ( $this->get_id() > 0 ) { |
|
| 94 | + if ( $this->get_id() > 0 ) { |
|
| 95 | 95 | $this->post = get_post( $this->get_id() ); |
| 96 | - $this->data_store->read( $this ); |
|
| 96 | + $this->data_store->read( $this ); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - } |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | 101 | /* |
| 102 | 102 | |-------------------------------------------------------------------------- |
@@ -114,356 +114,356 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | - * Get plugin version when the form was created. |
|
| 118 | - * |
|
| 119 | - * @since 1.0.19 |
|
| 120 | - * @param string $context View or edit context. |
|
| 121 | - * @return string |
|
| 122 | - */ |
|
| 123 | - public function get_version( $context = 'view' ) { |
|
| 124 | - return $this->get_prop( 'version', $context ); |
|
| 117 | + * Get plugin version when the form was created. |
|
| 118 | + * |
|
| 119 | + * @since 1.0.19 |
|
| 120 | + * @param string $context View or edit context. |
|
| 121 | + * @return string |
|
| 122 | + */ |
|
| 123 | + public function get_version( $context = 'view' ) { |
|
| 124 | + return $this->get_prop( 'version', $context ); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
| 128 | - * Get date when the form was created. |
|
| 129 | - * |
|
| 130 | - * @since 1.0.19 |
|
| 131 | - * @param string $context View or edit context. |
|
| 132 | - * @return string |
|
| 133 | - */ |
|
| 134 | - public function get_date_created( $context = 'view' ) { |
|
| 135 | - return $this->get_prop( 'date_created', $context ); |
|
| 128 | + * Get date when the form was created. |
|
| 129 | + * |
|
| 130 | + * @since 1.0.19 |
|
| 131 | + * @param string $context View or edit context. |
|
| 132 | + * @return string |
|
| 133 | + */ |
|
| 134 | + public function get_date_created( $context = 'view' ) { |
|
| 135 | + return $this->get_prop( 'date_created', $context ); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
| 139 | - * Get GMT date when the form was created. |
|
| 140 | - * |
|
| 141 | - * @since 1.0.19 |
|
| 142 | - * @param string $context View or edit context. |
|
| 143 | - * @return string |
|
| 144 | - */ |
|
| 145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 139 | + * Get GMT date when the form was created. |
|
| 140 | + * |
|
| 141 | + * @since 1.0.19 |
|
| 142 | + * @param string $context View or edit context. |
|
| 143 | + * @return string |
|
| 144 | + */ |
|
| 145 | + public function get_date_created_gmt( $context = 'view' ) { |
|
| 146 | 146 | $date = $this->get_date_created( $context ); |
| 147 | 147 | |
| 148 | 148 | if ( $date ) { |
| 149 | 149 | $date = get_gmt_from_date( $date ); |
| 150 | 150 | } |
| 151 | - return $date; |
|
| 151 | + return $date; |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | - * Get date when the form was last modified. |
|
| 156 | - * |
|
| 157 | - * @since 1.0.19 |
|
| 158 | - * @param string $context View or edit context. |
|
| 159 | - * @return string |
|
| 160 | - */ |
|
| 161 | - public function get_date_modified( $context = 'view' ) { |
|
| 162 | - return $this->get_prop( 'date_modified', $context ); |
|
| 155 | + * Get date when the form was last modified. |
|
| 156 | + * |
|
| 157 | + * @since 1.0.19 |
|
| 158 | + * @param string $context View or edit context. |
|
| 159 | + * @return string |
|
| 160 | + */ |
|
| 161 | + public function get_date_modified( $context = 'view' ) { |
|
| 162 | + return $this->get_prop( 'date_modified', $context ); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
| 166 | - * Get GMT date when the form was last modified. |
|
| 167 | - * |
|
| 168 | - * @since 1.0.19 |
|
| 169 | - * @param string $context View or edit context. |
|
| 170 | - * @return string |
|
| 171 | - */ |
|
| 172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
| 166 | + * Get GMT date when the form was last modified. |
|
| 167 | + * |
|
| 168 | + * @since 1.0.19 |
|
| 169 | + * @param string $context View or edit context. |
|
| 170 | + * @return string |
|
| 171 | + */ |
|
| 172 | + public function get_date_modified_gmt( $context = 'view' ) { |
|
| 173 | 173 | $date = $this->get_date_modified( $context ); |
| 174 | 174 | |
| 175 | 175 | if ( $date ) { |
| 176 | 176 | $date = get_gmt_from_date( $date ); |
| 177 | 177 | } |
| 178 | - return $date; |
|
| 178 | + return $date; |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
| 182 | - * Get the form name. |
|
| 183 | - * |
|
| 184 | - * @since 1.0.19 |
|
| 185 | - * @param string $context View or edit context. |
|
| 186 | - * @return string |
|
| 187 | - */ |
|
| 188 | - public function get_name( $context = 'view' ) { |
|
| 189 | - return $this->get_prop( 'name', $context ); |
|
| 182 | + * Get the form name. |
|
| 183 | + * |
|
| 184 | + * @since 1.0.19 |
|
| 185 | + * @param string $context View or edit context. |
|
| 186 | + * @return string |
|
| 187 | + */ |
|
| 188 | + public function get_name( $context = 'view' ) { |
|
| 189 | + return $this->get_prop( 'name', $context ); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
| 193 | - * Alias of self::get_name(). |
|
| 194 | - * |
|
| 195 | - * @since 1.0.19 |
|
| 196 | - * @param string $context View or edit context. |
|
| 197 | - * @return string |
|
| 198 | - */ |
|
| 199 | - public function get_title( $context = 'view' ) { |
|
| 200 | - return $this->get_name( $context ); |
|
| 201 | - } |
|
| 193 | + * Alias of self::get_name(). |
|
| 194 | + * |
|
| 195 | + * @since 1.0.19 |
|
| 196 | + * @param string $context View or edit context. |
|
| 197 | + * @return string |
|
| 198 | + */ |
|
| 199 | + public function get_title( $context = 'view' ) { |
|
| 200 | + return $this->get_name( $context ); |
|
| 201 | + } |
|
| 202 | 202 | |
| 203 | 203 | /** |
| 204 | - * Get the owner of the form. |
|
| 205 | - * |
|
| 206 | - * @since 1.0.19 |
|
| 207 | - * @param string $context View or edit context. |
|
| 208 | - * @return int |
|
| 209 | - */ |
|
| 210 | - public function get_author( $context = 'view' ) { |
|
| 211 | - return (int) $this->get_prop( 'author', $context ); |
|
| 204 | + * Get the owner of the form. |
|
| 205 | + * |
|
| 206 | + * @since 1.0.19 |
|
| 207 | + * @param string $context View or edit context. |
|
| 208 | + * @return int |
|
| 209 | + */ |
|
| 210 | + public function get_author( $context = 'view' ) { |
|
| 211 | + return (int) $this->get_prop( 'author', $context ); |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | /** |
| 215 | - * Get the elements that make up the form. |
|
| 216 | - * |
|
| 217 | - * @since 1.0.19 |
|
| 218 | - * @param string $context View or edit context. |
|
| 219 | - * @return array |
|
| 220 | - */ |
|
| 221 | - public function get_elements( $context = 'view' ) { |
|
| 222 | - $elements = $this->get_prop( 'elements', $context ); |
|
| 215 | + * Get the elements that make up the form. |
|
| 216 | + * |
|
| 217 | + * @since 1.0.19 |
|
| 218 | + * @param string $context View or edit context. |
|
| 219 | + * @return array |
|
| 220 | + */ |
|
| 221 | + public function get_elements( $context = 'view' ) { |
|
| 222 | + $elements = $this->get_prop( 'elements', $context ); |
|
| 223 | 223 | |
| 224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
| 224 | + if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
| 225 | 225 | return wpinv_get_data( 'sample-payment-form' ); |
| 226 | - } |
|
| 226 | + } |
|
| 227 | 227 | |
| 228 | - // Ensure that all required elements exist. |
|
| 229 | - $_elements = array(); |
|
| 230 | - foreach ( $elements as $element ) { |
|
| 228 | + // Ensure that all required elements exist. |
|
| 229 | + $_elements = array(); |
|
| 230 | + foreach ( $elements as $element ) { |
|
| 231 | 231 | |
| 232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
| 232 | + if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
| 233 | 233 | |
| 234 | - $_elements[] = array( |
|
| 235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 236 | - 'id' => 'gtscicd', |
|
| 237 | - 'name' => 'gtscicd', |
|
| 238 | - 'type' => 'gateway_select', |
|
| 239 | - 'premade' => true, |
|
| 234 | + $_elements[] = array( |
|
| 235 | + 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 236 | + 'id' => 'gtscicd', |
|
| 237 | + 'name' => 'gtscicd', |
|
| 238 | + 'type' => 'gateway_select', |
|
| 239 | + 'premade' => true, |
|
| 240 | 240 | |
| 241 | - ); |
|
| 241 | + ); |
|
| 242 | 242 | |
| 243 | - } |
|
| 243 | + } |
|
| 244 | 244 | |
| 245 | - $_elements[] = $element; |
|
| 245 | + $_elements[] = $element; |
|
| 246 | 246 | |
| 247 | - } |
|
| 247 | + } |
|
| 248 | 248 | |
| 249 | 249 | return $_elements; |
| 250 | - } |
|
| 251 | - |
|
| 252 | - /** |
|
| 253 | - * Get the items sold via the form. |
|
| 254 | - * |
|
| 255 | - * @since 1.0.19 |
|
| 256 | - * @param string $context View or edit context. |
|
| 257 | - * @param string $return objects or arrays. |
|
| 258 | - * @return GetPaid_Form_Item[] |
|
| 259 | - */ |
|
| 260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
| 261 | - $items = $this->get_prop( 'items', $context ); |
|
| 262 | - |
|
| 263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + /** |
|
| 253 | + * Get the items sold via the form. |
|
| 254 | + * |
|
| 255 | + * @since 1.0.19 |
|
| 256 | + * @param string $context View or edit context. |
|
| 257 | + * @param string $return objects or arrays. |
|
| 258 | + * @return GetPaid_Form_Item[] |
|
| 259 | + */ |
|
| 260 | + public function get_items( $context = 'view', $return = 'objects' ) { |
|
| 261 | + $items = $this->get_prop( 'items', $context ); |
|
| 262 | + |
|
| 263 | + if ( empty( $items ) || ! is_array( $items ) ) { |
|
| 264 | 264 | $items = wpinv_get_data( 'sample-payment-form-items' ); |
| 265 | - } |
|
| 265 | + } |
|
| 266 | + |
|
| 267 | + // Convert the items. |
|
| 268 | + $prepared = array(); |
|
| 269 | + |
|
| 270 | + foreach ( $items as $key => $value ) { |
|
| 271 | + |
|
| 272 | + // Form items. |
|
| 273 | + if ( $value instanceof GetPaid_Form_Item ) { |
|
| 274 | + |
|
| 275 | + if ( $value->can_purchase() ) { |
|
| 276 | + $prepared[] = $value; |
|
| 277 | + } |
|
| 266 | 278 | |
| 267 | - // Convert the items. |
|
| 268 | - $prepared = array(); |
|
| 279 | + continue; |
|
| 269 | 280 | |
| 270 | - foreach ( $items as $key => $value ) { |
|
| 281 | + } |
|
| 271 | 282 | |
| 272 | - // Form items. |
|
| 273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
| 283 | + // $item_id => $quantity (buy buttons) |
|
| 284 | + if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
| 285 | + $item = new GetPaid_Form_Item( $key ); |
|
| 274 | 286 | |
| 275 | - if ( $value->can_purchase() ) { |
|
| 276 | - $prepared[] = $value; |
|
| 277 | - } |
|
| 287 | + if ( $item->can_purchase() ) { |
|
| 278 | 288 | |
| 279 | - continue; |
|
| 289 | + $value = (float) $value; |
|
| 290 | + $item->set_quantity( $value ); |
|
| 291 | + if ( 0 == $value ) { |
|
| 292 | + $item->set_quantity( 1 ); |
|
| 293 | + $item->set_allow_quantities( true ); |
|
| 294 | + } |
|
| 280 | 295 | |
| 281 | - } |
|
| 296 | + $prepared[] = $item; |
|
| 297 | + } |
|
| 282 | 298 | |
| 283 | - // $item_id => $quantity (buy buttons) |
|
| 284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
| 285 | - $item = new GetPaid_Form_Item( $key ); |
|
| 299 | + continue; |
|
| 300 | + } |
|
| 286 | 301 | |
| 287 | - if ( $item->can_purchase() ) { |
|
| 302 | + // Items saved via payment forms editor. |
|
| 303 | + if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 288 | 304 | |
| 289 | - $value = (float) $value; |
|
| 290 | - $item->set_quantity( $value ); |
|
| 291 | - if ( 0 == $value ) { |
|
| 292 | - $item->set_quantity( 1 ); |
|
| 293 | - $item->set_allow_quantities( true ); |
|
| 294 | - } |
|
| 305 | + $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 295 | 306 | |
| 296 | - $prepared[] = $item; |
|
| 297 | - } |
|
| 307 | + if ( ! $item->can_purchase() ) { |
|
| 308 | + continue; |
|
| 309 | + } |
|
| 298 | 310 | |
| 299 | - continue; |
|
| 300 | - } |
|
| 311 | + // Sub-total (Cart items). |
|
| 312 | + if ( isset( $value['subtotal'] ) ) { |
|
| 313 | + $item->set_price( $value['subtotal'] ); |
|
| 314 | + } |
|
| 301 | 315 | |
| 302 | - // Items saved via payment forms editor. |
|
| 303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 316 | + if ( isset( $value['quantity'] ) ) { |
|
| 317 | + $item->set_quantity( $value['quantity'] ); |
|
| 318 | + } |
|
| 304 | 319 | |
| 305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 320 | + if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | + $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 322 | + } |
|
| 306 | 323 | |
| 307 | - if ( ! $item->can_purchase() ) { |
|
| 308 | - continue; |
|
| 309 | - } |
|
| 324 | + if ( isset( $value['required'] ) ) { |
|
| 325 | + $item->set_is_required( $value['required'] ); |
|
| 326 | + } |
|
| 310 | 327 | |
| 311 | - // Sub-total (Cart items). |
|
| 312 | - if ( isset( $value['subtotal'] ) ) { |
|
| 313 | - $item->set_price( $value['subtotal'] ); |
|
| 314 | - } |
|
| 328 | + if ( isset( $value['description'] ) ) { |
|
| 329 | + $item->set_custom_description( $value['description'] ); |
|
| 330 | + } |
|
| 315 | 331 | |
| 316 | - if ( isset( $value['quantity'] ) ) { |
|
| 317 | - $item->set_quantity( $value['quantity'] ); |
|
| 318 | - } |
|
| 332 | + $prepared[] = $item; |
|
| 333 | + continue; |
|
| 319 | 334 | |
| 320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 322 | - } |
|
| 335 | + } |
|
| 323 | 336 | |
| 324 | - if ( isset( $value['required'] ) ) { |
|
| 325 | - $item->set_is_required( $value['required'] ); |
|
| 326 | - } |
|
| 337 | + // $item_id => array( 'price' => 10 ) (item variations) |
|
| 338 | + if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | + $item = new GetPaid_Form_Item( $key ); |
|
| 327 | 340 | |
| 328 | - if ( isset( $value['description'] ) ) { |
|
| 329 | - $item->set_custom_description( $value['description'] ); |
|
| 330 | - } |
|
| 341 | + if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | + $item->set_price( $value['price'] ); |
|
| 343 | + } |
|
| 331 | 344 | |
| 332 | - $prepared[] = $item; |
|
| 333 | - continue; |
|
| 345 | + if ( $item->can_purchase() ) { |
|
| 346 | + $prepared[] = $item; |
|
| 347 | + } |
|
| 334 | 348 | |
| 335 | - } |
|
| 336 | - |
|
| 337 | - // $item_id => array( 'price' => 10 ) (item variations) |
|
| 338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | - $item = new GetPaid_Form_Item( $key ); |
|
| 340 | - |
|
| 341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | - $item->set_price( $value['price'] ); |
|
| 343 | - } |
|
| 344 | - |
|
| 345 | - if ( $item->can_purchase() ) { |
|
| 346 | - $prepared[] = $item; |
|
| 347 | - } |
|
| 348 | - |
|
| 349 | - continue; |
|
| 350 | - } |
|
| 351 | - } |
|
| 352 | - |
|
| 353 | - if ( 'objects' == $return && 'view' == $context ) { |
|
| 354 | - return $prepared; |
|
| 355 | - } |
|
| 356 | - |
|
| 357 | - $items = array(); |
|
| 358 | - foreach ( $prepared as $item ) { |
|
| 359 | - $items[] = $item->prepare_data_for_use(); |
|
| 360 | - } |
|
| 361 | - |
|
| 362 | - return $items; |
|
| 363 | - } |
|
| 364 | - |
|
| 365 | - /** |
|
| 366 | - * Get a single item belonging to the form. |
|
| 367 | - * |
|
| 368 | - * @since 1.0.19 |
|
| 369 | - * @param int $item_id The item id to return. |
|
| 370 | - * @return GetPaid_Form_Item|bool |
|
| 371 | - */ |
|
| 372 | - public function get_item( $item_id ) { |
|
| 373 | - |
|
| 374 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 375 | - return false; |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - foreach ( $this->get_items() as $item ) { |
|
| 379 | - if ( $item->get_id() == (int) $item_id ) { |
|
| 380 | - return $item; |
|
| 381 | - } |
|
| 382 | - } |
|
| 383 | - |
|
| 384 | - return false; |
|
| 385 | - |
|
| 386 | - } |
|
| 387 | - |
|
| 388 | - /** |
|
| 389 | - * Gets a single element. |
|
| 390 | - * |
|
| 391 | - * @since 1.0.19 |
|
| 392 | - * @param string $element_type The element type to return. |
|
| 393 | - * @return array|bool |
|
| 394 | - */ |
|
| 395 | - public function get_element_type( $element_type ) { |
|
| 396 | - |
|
| 397 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 398 | - return false; |
|
| 399 | - } |
|
| 400 | - |
|
| 401 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 402 | - |
|
| 403 | - if ( $element['type'] === $element_type ) { |
|
| 404 | - return $element; |
|
| 405 | - } |
|
| 406 | - } |
|
| 407 | - |
|
| 408 | - return false; |
|
| 409 | - |
|
| 410 | - } |
|
| 411 | - |
|
| 412 | - /** |
|
| 413 | - * Get the total amount earned via this form. |
|
| 414 | - * |
|
| 415 | - * @since 1.0.19 |
|
| 416 | - * @param string $context View or edit context. |
|
| 417 | - * @return float |
|
| 418 | - */ |
|
| 419 | - public function get_earned( $context = 'view' ) { |
|
| 420 | - return $this->get_prop( 'earned', $context ); |
|
| 421 | - } |
|
| 422 | - |
|
| 423 | - /** |
|
| 424 | - * Get the total amount refunded via this form. |
|
| 425 | - * |
|
| 426 | - * @since 1.0.19 |
|
| 427 | - * @param string $context View or edit context. |
|
| 428 | - * @return float |
|
| 429 | - */ |
|
| 430 | - public function get_refunded( $context = 'view' ) { |
|
| 431 | - return $this->get_prop( 'refunded', $context ); |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - /** |
|
| 435 | - * Get the total amount cancelled via this form. |
|
| 436 | - * |
|
| 437 | - * @since 1.0.19 |
|
| 438 | - * @param string $context View or edit context. |
|
| 439 | - * @return float |
|
| 440 | - */ |
|
| 441 | - public function get_cancelled( $context = 'view' ) { |
|
| 442 | - return $this->get_prop( 'cancelled', $context ); |
|
| 443 | - } |
|
| 444 | - |
|
| 445 | - /** |
|
| 446 | - * Get the total amount failed via this form. |
|
| 447 | - * |
|
| 448 | - * @since 1.0.19 |
|
| 449 | - * @param string $context View or edit context. |
|
| 450 | - * @return float |
|
| 451 | - */ |
|
| 452 | - public function get_failed( $context = 'view' ) { |
|
| 453 | - return $this->get_prop( 'failed', $context ); |
|
| 454 | - } |
|
| 455 | - |
|
| 456 | - /** |
|
| 457 | - * Get the currency. |
|
| 458 | - * |
|
| 459 | - * @since 1.0.19 |
|
| 460 | - * @param string $context View or edit context. |
|
| 461 | - * @return string |
|
| 462 | - */ |
|
| 463 | - public function get_currency() { |
|
| 464 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 465 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 466 | - } |
|
| 349 | + continue; |
|
| 350 | + } |
|
| 351 | + } |
|
| 352 | + |
|
| 353 | + if ( 'objects' == $return && 'view' == $context ) { |
|
| 354 | + return $prepared; |
|
| 355 | + } |
|
| 356 | + |
|
| 357 | + $items = array(); |
|
| 358 | + foreach ( $prepared as $item ) { |
|
| 359 | + $items[] = $item->prepare_data_for_use(); |
|
| 360 | + } |
|
| 361 | + |
|
| 362 | + return $items; |
|
| 363 | + } |
|
| 364 | + |
|
| 365 | + /** |
|
| 366 | + * Get a single item belonging to the form. |
|
| 367 | + * |
|
| 368 | + * @since 1.0.19 |
|
| 369 | + * @param int $item_id The item id to return. |
|
| 370 | + * @return GetPaid_Form_Item|bool |
|
| 371 | + */ |
|
| 372 | + public function get_item( $item_id ) { |
|
| 373 | + |
|
| 374 | + if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 375 | + return false; |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + foreach ( $this->get_items() as $item ) { |
|
| 379 | + if ( $item->get_id() == (int) $item_id ) { |
|
| 380 | + return $item; |
|
| 381 | + } |
|
| 382 | + } |
|
| 383 | + |
|
| 384 | + return false; |
|
| 385 | + |
|
| 386 | + } |
|
| 387 | + |
|
| 388 | + /** |
|
| 389 | + * Gets a single element. |
|
| 390 | + * |
|
| 391 | + * @since 1.0.19 |
|
| 392 | + * @param string $element_type The element type to return. |
|
| 393 | + * @return array|bool |
|
| 394 | + */ |
|
| 395 | + public function get_element_type( $element_type ) { |
|
| 396 | + |
|
| 397 | + if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 398 | + return false; |
|
| 399 | + } |
|
| 400 | + |
|
| 401 | + foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 402 | + |
|
| 403 | + if ( $element['type'] === $element_type ) { |
|
| 404 | + return $element; |
|
| 405 | + } |
|
| 406 | + } |
|
| 407 | + |
|
| 408 | + return false; |
|
| 409 | + |
|
| 410 | + } |
|
| 411 | + |
|
| 412 | + /** |
|
| 413 | + * Get the total amount earned via this form. |
|
| 414 | + * |
|
| 415 | + * @since 1.0.19 |
|
| 416 | + * @param string $context View or edit context. |
|
| 417 | + * @return float |
|
| 418 | + */ |
|
| 419 | + public function get_earned( $context = 'view' ) { |
|
| 420 | + return $this->get_prop( 'earned', $context ); |
|
| 421 | + } |
|
| 422 | + |
|
| 423 | + /** |
|
| 424 | + * Get the total amount refunded via this form. |
|
| 425 | + * |
|
| 426 | + * @since 1.0.19 |
|
| 427 | + * @param string $context View or edit context. |
|
| 428 | + * @return float |
|
| 429 | + */ |
|
| 430 | + public function get_refunded( $context = 'view' ) { |
|
| 431 | + return $this->get_prop( 'refunded', $context ); |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + /** |
|
| 435 | + * Get the total amount cancelled via this form. |
|
| 436 | + * |
|
| 437 | + * @since 1.0.19 |
|
| 438 | + * @param string $context View or edit context. |
|
| 439 | + * @return float |
|
| 440 | + */ |
|
| 441 | + public function get_cancelled( $context = 'view' ) { |
|
| 442 | + return $this->get_prop( 'cancelled', $context ); |
|
| 443 | + } |
|
| 444 | + |
|
| 445 | + /** |
|
| 446 | + * Get the total amount failed via this form. |
|
| 447 | + * |
|
| 448 | + * @since 1.0.19 |
|
| 449 | + * @param string $context View or edit context. |
|
| 450 | + * @return float |
|
| 451 | + */ |
|
| 452 | + public function get_failed( $context = 'view' ) { |
|
| 453 | + return $this->get_prop( 'failed', $context ); |
|
| 454 | + } |
|
| 455 | + |
|
| 456 | + /** |
|
| 457 | + * Get the currency. |
|
| 458 | + * |
|
| 459 | + * @since 1.0.19 |
|
| 460 | + * @param string $context View or edit context. |
|
| 461 | + * @return string |
|
| 462 | + */ |
|
| 463 | + public function get_currency() { |
|
| 464 | + $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 465 | + return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 466 | + } |
|
| 467 | 467 | |
| 468 | 468 | /* |
| 469 | 469 | |-------------------------------------------------------------------------- |
@@ -476,22 +476,22 @@ discard block |
||
| 476 | 476 | */ |
| 477 | 477 | |
| 478 | 478 | /** |
| 479 | - * Set plugin version when the item was created. |
|
| 480 | - * |
|
| 481 | - * @since 1.0.19 |
|
| 482 | - */ |
|
| 483 | - public function set_version( $value ) { |
|
| 484 | - $this->set_prop( 'version', $value ); |
|
| 479 | + * Set plugin version when the item was created. |
|
| 480 | + * |
|
| 481 | + * @since 1.0.19 |
|
| 482 | + */ |
|
| 483 | + public function set_version( $value ) { |
|
| 484 | + $this->set_prop( 'version', $value ); |
|
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | /** |
| 488 | - * Set date when the item was created. |
|
| 489 | - * |
|
| 490 | - * @since 1.0.19 |
|
| 491 | - * @param string $value Value to set. |
|
| 488 | + * Set date when the item was created. |
|
| 489 | + * |
|
| 490 | + * @since 1.0.19 |
|
| 491 | + * @param string $value Value to set. |
|
| 492 | 492 | * @return bool Whether or not the date was set. |
| 493 | - */ |
|
| 494 | - public function set_date_created( $value ) { |
|
| 493 | + */ |
|
| 494 | + public function set_date_created( $value ) { |
|
| 495 | 495 | $date = strtotime( $value ); |
| 496 | 496 | |
| 497 | 497 | if ( $date ) { |
@@ -504,13 +504,13 @@ discard block |
||
| 504 | 504 | } |
| 505 | 505 | |
| 506 | 506 | /** |
| 507 | - * Set date when the item was last modified. |
|
| 508 | - * |
|
| 509 | - * @since 1.0.19 |
|
| 510 | - * @param string $value Value to set. |
|
| 507 | + * Set date when the item was last modified. |
|
| 508 | + * |
|
| 509 | + * @since 1.0.19 |
|
| 510 | + * @param string $value Value to set. |
|
| 511 | 511 | * @return bool Whether or not the date was set. |
| 512 | - */ |
|
| 513 | - public function set_date_modified( $value ) { |
|
| 512 | + */ |
|
| 513 | + public function set_date_modified( $value ) { |
|
| 514 | 514 | $date = strtotime( $value ); |
| 515 | 515 | |
| 516 | 516 | if ( $date ) { |
@@ -523,164 +523,164 @@ discard block |
||
| 523 | 523 | } |
| 524 | 524 | |
| 525 | 525 | /** |
| 526 | - * Set the item name. |
|
| 527 | - * |
|
| 528 | - * @since 1.0.19 |
|
| 529 | - * @param string $value New name. |
|
| 530 | - */ |
|
| 531 | - public function set_name( $value ) { |
|
| 532 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 533 | - } |
|
| 534 | - |
|
| 535 | - /** |
|
| 536 | - * Alias of self::set_name(). |
|
| 537 | - * |
|
| 538 | - * @since 1.0.19 |
|
| 539 | - * @param string $value New name. |
|
| 540 | - */ |
|
| 541 | - public function set_title( $value ) { |
|
| 542 | - $this->set_name( $value ); |
|
| 543 | - } |
|
| 544 | - |
|
| 545 | - /** |
|
| 546 | - * Set the owner of the item. |
|
| 547 | - * |
|
| 548 | - * @since 1.0.19 |
|
| 549 | - * @param int $value New author. |
|
| 550 | - */ |
|
| 551 | - public function set_author( $value ) { |
|
| 552 | - $this->set_prop( 'author', (int) $value ); |
|
| 553 | - } |
|
| 554 | - |
|
| 555 | - /** |
|
| 556 | - * Set the form elements. |
|
| 557 | - * |
|
| 558 | - * @since 1.0.19 |
|
| 559 | - * @sinve 2.3.4 Array values sanitized. |
|
| 560 | - * @param array $value Form elements. |
|
| 561 | - */ |
|
| 562 | - public function set_elements( $value ) { |
|
| 563 | - if ( is_array( $value ) ) { |
|
| 564 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 565 | - } |
|
| 566 | - } |
|
| 567 | - |
|
| 568 | - /** |
|
| 569 | - * Sanitize array values. |
|
| 570 | - * |
|
| 571 | - * @param $value |
|
| 572 | - * |
|
| 573 | - * @return mixed |
|
| 574 | - */ |
|
| 575 | - public function sanitize_array_values( $value ) { |
|
| 576 | - |
|
| 577 | - // sanitize |
|
| 578 | - if ( ! empty( $value ) ) { |
|
| 579 | - |
|
| 580 | - foreach ( $value as $key => $val_arr ) { |
|
| 581 | - |
|
| 582 | - if ( is_array( $val_arr ) ) { |
|
| 583 | - // check if we have sub array items. |
|
| 584 | - $sub_arr = array(); |
|
| 585 | - foreach ( $val_arr as $key2 => $val2 ) { |
|
| 586 | - if ( is_array( $val2 ) ) { |
|
| 587 | - $sub_arr[ $key2 ] = $this->sanitize_array_values( $val2 ); |
|
| 588 | - unset( $val_arr[ $key ][ $key2 ] ); |
|
| 589 | - } |
|
| 590 | - } |
|
| 591 | - |
|
| 592 | - // we allow some html in description so we sanitize it separately. |
|
| 593 | - $help_text = ! empty( $val_arr['description'] ) ? wp_kses_post( $val_arr['description'] ) : ''; |
|
| 594 | - |
|
| 595 | - // sanitize array elements |
|
| 596 | - $value[ $key ] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 597 | - |
|
| 598 | - // add back the description if set |
|
| 599 | - if ( isset( $val_arr['description'] ) ) { |
|
| 526 | + * Set the item name. |
|
| 527 | + * |
|
| 528 | + * @since 1.0.19 |
|
| 529 | + * @param string $value New name. |
|
| 530 | + */ |
|
| 531 | + public function set_name( $value ) { |
|
| 532 | + $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 533 | + } |
|
| 534 | + |
|
| 535 | + /** |
|
| 536 | + * Alias of self::set_name(). |
|
| 537 | + * |
|
| 538 | + * @since 1.0.19 |
|
| 539 | + * @param string $value New name. |
|
| 540 | + */ |
|
| 541 | + public function set_title( $value ) { |
|
| 542 | + $this->set_name( $value ); |
|
| 543 | + } |
|
| 544 | + |
|
| 545 | + /** |
|
| 546 | + * Set the owner of the item. |
|
| 547 | + * |
|
| 548 | + * @since 1.0.19 |
|
| 549 | + * @param int $value New author. |
|
| 550 | + */ |
|
| 551 | + public function set_author( $value ) { |
|
| 552 | + $this->set_prop( 'author', (int) $value ); |
|
| 553 | + } |
|
| 554 | + |
|
| 555 | + /** |
|
| 556 | + * Set the form elements. |
|
| 557 | + * |
|
| 558 | + * @since 1.0.19 |
|
| 559 | + * @sinve 2.3.4 Array values sanitized. |
|
| 560 | + * @param array $value Form elements. |
|
| 561 | + */ |
|
| 562 | + public function set_elements( $value ) { |
|
| 563 | + if ( is_array( $value ) ) { |
|
| 564 | + $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 565 | + } |
|
| 566 | + } |
|
| 567 | + |
|
| 568 | + /** |
|
| 569 | + * Sanitize array values. |
|
| 570 | + * |
|
| 571 | + * @param $value |
|
| 572 | + * |
|
| 573 | + * @return mixed |
|
| 574 | + */ |
|
| 575 | + public function sanitize_array_values( $value ) { |
|
| 576 | + |
|
| 577 | + // sanitize |
|
| 578 | + if ( ! empty( $value ) ) { |
|
| 579 | + |
|
| 580 | + foreach ( $value as $key => $val_arr ) { |
|
| 581 | + |
|
| 582 | + if ( is_array( $val_arr ) ) { |
|
| 583 | + // check if we have sub array items. |
|
| 584 | + $sub_arr = array(); |
|
| 585 | + foreach ( $val_arr as $key2 => $val2 ) { |
|
| 586 | + if ( is_array( $val2 ) ) { |
|
| 587 | + $sub_arr[ $key2 ] = $this->sanitize_array_values( $val2 ); |
|
| 588 | + unset( $val_arr[ $key ][ $key2 ] ); |
|
| 589 | + } |
|
| 590 | + } |
|
| 591 | + |
|
| 592 | + // we allow some html in description so we sanitize it separately. |
|
| 593 | + $help_text = ! empty( $val_arr['description'] ) ? wp_kses_post( $val_arr['description'] ) : ''; |
|
| 594 | + |
|
| 595 | + // sanitize array elements |
|
| 596 | + $value[ $key ] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 597 | + |
|
| 598 | + // add back the description if set |
|
| 599 | + if ( isset( $val_arr['description'] ) ) { |
|
| 600 | 600 | $value[ $key ]['description'] = $help_text;} |
| 601 | 601 | |
| 602 | - // add back sub array items after its been sanitized. |
|
| 603 | - if ( ! empty( $sub_arr ) ) { |
|
| 604 | - $value[ $key ] = array_merge( $value[ $key ], $sub_arr ); |
|
| 605 | - } |
|
| 606 | - } |
|
| 602 | + // add back sub array items after its been sanitized. |
|
| 603 | + if ( ! empty( $sub_arr ) ) { |
|
| 604 | + $value[ $key ] = array_merge( $value[ $key ], $sub_arr ); |
|
| 605 | + } |
|
| 606 | + } |
|
| 607 | 607 | } |
| 608 | 608 | } |
| 609 | 609 | |
| 610 | - return $value; |
|
| 611 | - } |
|
| 612 | - |
|
| 613 | - /** |
|
| 614 | - * Set the form items. |
|
| 615 | - * |
|
| 616 | - * @since 1.0.19 |
|
| 617 | - * @param array $value Form elements. |
|
| 618 | - */ |
|
| 619 | - public function set_items( $value ) { |
|
| 620 | - if ( is_array( $value ) ) { |
|
| 621 | - $this->set_prop( 'items', $value ); |
|
| 622 | - } |
|
| 623 | - } |
|
| 624 | - |
|
| 625 | - /** |
|
| 626 | - * Set the total amount earned via this form. |
|
| 627 | - * |
|
| 628 | - * @since 1.0.19 |
|
| 629 | - * @param float $value Amount earned. |
|
| 630 | - */ |
|
| 631 | - public function set_earned( $value ) { |
|
| 632 | - $value = max( (float) $value, 0 ); |
|
| 633 | - $this->set_prop( 'earned', $value ); |
|
| 634 | - } |
|
| 635 | - |
|
| 636 | - /** |
|
| 637 | - * Set the total amount refunded via this form. |
|
| 638 | - * |
|
| 639 | - * @since 1.0.19 |
|
| 640 | - * @param float $value Amount refunded. |
|
| 641 | - */ |
|
| 642 | - public function set_refunded( $value ) { |
|
| 643 | - $value = max( (float) $value, 0 ); |
|
| 644 | - $this->set_prop( 'refunded', $value ); |
|
| 645 | - } |
|
| 646 | - |
|
| 647 | - /** |
|
| 648 | - * Set the total amount cancelled via this form. |
|
| 649 | - * |
|
| 650 | - * @since 1.0.19 |
|
| 651 | - * @param float $value Amount cancelled. |
|
| 652 | - */ |
|
| 653 | - public function set_cancelled( $value ) { |
|
| 654 | - $value = max( (float) $value, 0 ); |
|
| 655 | - $this->set_prop( 'cancelled', $value ); |
|
| 656 | - } |
|
| 657 | - |
|
| 658 | - /** |
|
| 659 | - * Set the total amount failed via this form. |
|
| 660 | - * |
|
| 661 | - * @since 1.0.19 |
|
| 662 | - * @param float $value Amount cancelled. |
|
| 663 | - */ |
|
| 664 | - public function set_failed( $value ) { |
|
| 665 | - $value = max( (float) $value, 0 ); |
|
| 666 | - $this->set_prop( 'failed', $value ); |
|
| 667 | - } |
|
| 610 | + return $value; |
|
| 611 | + } |
|
| 612 | + |
|
| 613 | + /** |
|
| 614 | + * Set the form items. |
|
| 615 | + * |
|
| 616 | + * @since 1.0.19 |
|
| 617 | + * @param array $value Form elements. |
|
| 618 | + */ |
|
| 619 | + public function set_items( $value ) { |
|
| 620 | + if ( is_array( $value ) ) { |
|
| 621 | + $this->set_prop( 'items', $value ); |
|
| 622 | + } |
|
| 623 | + } |
|
| 624 | + |
|
| 625 | + /** |
|
| 626 | + * Set the total amount earned via this form. |
|
| 627 | + * |
|
| 628 | + * @since 1.0.19 |
|
| 629 | + * @param float $value Amount earned. |
|
| 630 | + */ |
|
| 631 | + public function set_earned( $value ) { |
|
| 632 | + $value = max( (float) $value, 0 ); |
|
| 633 | + $this->set_prop( 'earned', $value ); |
|
| 634 | + } |
|
| 635 | + |
|
| 636 | + /** |
|
| 637 | + * Set the total amount refunded via this form. |
|
| 638 | + * |
|
| 639 | + * @since 1.0.19 |
|
| 640 | + * @param float $value Amount refunded. |
|
| 641 | + */ |
|
| 642 | + public function set_refunded( $value ) { |
|
| 643 | + $value = max( (float) $value, 0 ); |
|
| 644 | + $this->set_prop( 'refunded', $value ); |
|
| 645 | + } |
|
| 646 | + |
|
| 647 | + /** |
|
| 648 | + * Set the total amount cancelled via this form. |
|
| 649 | + * |
|
| 650 | + * @since 1.0.19 |
|
| 651 | + * @param float $value Amount cancelled. |
|
| 652 | + */ |
|
| 653 | + public function set_cancelled( $value ) { |
|
| 654 | + $value = max( (float) $value, 0 ); |
|
| 655 | + $this->set_prop( 'cancelled', $value ); |
|
| 656 | + } |
|
| 657 | + |
|
| 658 | + /** |
|
| 659 | + * Set the total amount failed via this form. |
|
| 660 | + * |
|
| 661 | + * @since 1.0.19 |
|
| 662 | + * @param float $value Amount cancelled. |
|
| 663 | + */ |
|
| 664 | + public function set_failed( $value ) { |
|
| 665 | + $value = max( (float) $value, 0 ); |
|
| 666 | + $this->set_prop( 'failed', $value ); |
|
| 667 | + } |
|
| 668 | 668 | |
| 669 | 669 | /** |
| 670 | 670 | * Create an item. For backwards compatibilty. |
| 671 | 671 | * |
| 672 | 672 | * @deprecated |
| 673 | - * @return int item id |
|
| 673 | + * @return int item id |
|
| 674 | 674 | */ |
| 675 | 675 | public function create( $data = array() ) { |
| 676 | 676 | |
| 677 | - // Set the properties. |
|
| 678 | - if ( is_array( $data ) ) { |
|
| 679 | - $this->set_props( $data ); |
|
| 680 | - } |
|
| 677 | + // Set the properties. |
|
| 678 | + if ( is_array( $data ) ) { |
|
| 679 | + $this->set_props( $data ); |
|
| 680 | + } |
|
| 681 | 681 | |
| 682 | - // Save the item. |
|
| 683 | - return $this->save(); |
|
| 682 | + // Save the item. |
|
| 683 | + return $this->save(); |
|
| 684 | 684 | |
| 685 | 685 | } |
| 686 | 686 | |
@@ -688,7 +688,7 @@ discard block |
||
| 688 | 688 | * Updates an item. For backwards compatibilty. |
| 689 | 689 | * |
| 690 | 690 | * @deprecated |
| 691 | - * @return int item id |
|
| 691 | + * @return int item id |
|
| 692 | 692 | */ |
| 693 | 693 | public function update( $data = array() ) { |
| 694 | 694 | return $this->create( $data ); |
@@ -704,22 +704,22 @@ discard block |
||
| 704 | 704 | */ |
| 705 | 705 | |
| 706 | 706 | /** |
| 707 | - * Checks whether this is the default payment form. |
|
| 708 | - * |
|
| 709 | - * @since 1.0.19 |
|
| 710 | - * @return bool |
|
| 711 | - */ |
|
| 707 | + * Checks whether this is the default payment form. |
|
| 708 | + * |
|
| 709 | + * @since 1.0.19 |
|
| 710 | + * @return bool |
|
| 711 | + */ |
|
| 712 | 712 | public function is_default() { |
| 713 | 713 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
| 714 | 714 | return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
| 715 | - } |
|
| 715 | + } |
|
| 716 | 716 | |
| 717 | 717 | /** |
| 718 | - * Checks whether the form is active. |
|
| 719 | - * |
|
| 720 | - * @since 1.0.19 |
|
| 721 | - * @return bool |
|
| 722 | - */ |
|
| 718 | + * Checks whether the form is active. |
|
| 719 | + * |
|
| 720 | + * @since 1.0.19 |
|
| 721 | + * @return bool |
|
| 722 | + */ |
|
| 723 | 723 | public function is_active() { |
| 724 | 724 | $is_active = 0 !== (int) $this->get_id(); |
| 725 | 725 | |
@@ -728,81 +728,81 @@ discard block |
||
| 728 | 728 | } |
| 729 | 729 | |
| 730 | 730 | return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
| 731 | - } |
|
| 732 | - |
|
| 733 | - /** |
|
| 734 | - * Checks whether the form has a given item. |
|
| 735 | - * |
|
| 736 | - * @since 1.0.19 |
|
| 737 | - * @return bool |
|
| 738 | - */ |
|
| 731 | + } |
|
| 732 | + |
|
| 733 | + /** |
|
| 734 | + * Checks whether the form has a given item. |
|
| 735 | + * |
|
| 736 | + * @since 1.0.19 |
|
| 737 | + * @return bool |
|
| 738 | + */ |
|
| 739 | 739 | public function has_item( $item_id ) { |
| 740 | 740 | return false !== $this->get_item( $item_id ); |
| 741 | - } |
|
| 742 | - |
|
| 743 | - /** |
|
| 744 | - * Checks whether the form has a given element. |
|
| 745 | - * |
|
| 746 | - * @since 1.0.19 |
|
| 747 | - * @return bool |
|
| 748 | - */ |
|
| 741 | + } |
|
| 742 | + |
|
| 743 | + /** |
|
| 744 | + * Checks whether the form has a given element. |
|
| 745 | + * |
|
| 746 | + * @since 1.0.19 |
|
| 747 | + * @return bool |
|
| 748 | + */ |
|
| 749 | 749 | public function has_element_type( $element_type ) { |
| 750 | 750 | return false !== $this->get_element_type( $element_type ); |
| 751 | - } |
|
| 752 | - |
|
| 753 | - /** |
|
| 754 | - * Checks whether this form is recurring or not. |
|
| 755 | - * |
|
| 756 | - * @since 1.0.19 |
|
| 757 | - * @return bool |
|
| 758 | - */ |
|
| 751 | + } |
|
| 752 | + |
|
| 753 | + /** |
|
| 754 | + * Checks whether this form is recurring or not. |
|
| 755 | + * |
|
| 756 | + * @since 1.0.19 |
|
| 757 | + * @return bool |
|
| 758 | + */ |
|
| 759 | 759 | public function is_recurring() { |
| 760 | 760 | |
| 761 | - if ( ! empty( $this->invoice ) ) { |
|
| 762 | - return $this->invoice->is_recurring(); |
|
| 763 | - } |
|
| 761 | + if ( ! empty( $this->invoice ) ) { |
|
| 762 | + return $this->invoice->is_recurring(); |
|
| 763 | + } |
|
| 764 | 764 | |
| 765 | - foreach ( $this->get_items() as $item ) { |
|
| 765 | + foreach ( $this->get_items() as $item ) { |
|
| 766 | 766 | |
| 767 | - if ( $item->is_recurring() ) { |
|
| 768 | - return true; |
|
| 769 | - } |
|
| 767 | + if ( $item->is_recurring() ) { |
|
| 768 | + return true; |
|
| 769 | + } |
|
| 770 | 770 | } |
| 771 | 771 | |
| 772 | 772 | return false; |
| 773 | - } |
|
| 773 | + } |
|
| 774 | 774 | |
| 775 | - /** |
|
| 776 | - * Retrieves the form's html. |
|
| 777 | - * |
|
| 778 | - * @since 1.0.19 |
|
| 779 | - */ |
|
| 775 | + /** |
|
| 776 | + * Retrieves the form's html. |
|
| 777 | + * |
|
| 778 | + * @since 1.0.19 |
|
| 779 | + */ |
|
| 780 | 780 | public function get_html( $extra_markup = '' ) { |
| 781 | 781 | |
| 782 | - // Return the HTML. |
|
| 783 | - return wpinv_get_template_html( |
|
| 784 | - 'payment-forms/form.php', |
|
| 785 | - array( |
|
| 786 | - 'form' => $this, |
|
| 787 | - 'extra_markup' => $extra_markup, |
|
| 788 | - ) |
|
| 789 | - ); |
|
| 790 | - |
|
| 791 | - } |
|
| 792 | - |
|
| 793 | - /** |
|
| 794 | - * Displays the payment form. |
|
| 795 | - * |
|
| 796 | - * @since 1.0.19 |
|
| 797 | - */ |
|
| 782 | + // Return the HTML. |
|
| 783 | + return wpinv_get_template_html( |
|
| 784 | + 'payment-forms/form.php', |
|
| 785 | + array( |
|
| 786 | + 'form' => $this, |
|
| 787 | + 'extra_markup' => $extra_markup, |
|
| 788 | + ) |
|
| 789 | + ); |
|
| 790 | + |
|
| 791 | + } |
|
| 792 | + |
|
| 793 | + /** |
|
| 794 | + * Displays the payment form. |
|
| 795 | + * |
|
| 796 | + * @since 1.0.19 |
|
| 797 | + */ |
|
| 798 | 798 | public function display( $extra_markup = '' ) { |
| 799 | - wpinv_get_template( |
|
| 800 | - 'payment-forms/form.php', |
|
| 801 | - array( |
|
| 802 | - 'form' => $this, |
|
| 803 | - 'extra_markup' => $extra_markup, |
|
| 804 | - ) |
|
| 805 | - ); |
|
| 799 | + wpinv_get_template( |
|
| 800 | + 'payment-forms/form.php', |
|
| 801 | + array( |
|
| 802 | + 'form' => $this, |
|
| 803 | + 'extra_markup' => $extra_markup, |
|
| 804 | + ) |
|
| 805 | + ); |
|
| 806 | 806 | } |
| 807 | 807 | |
| 808 | 808 | } |
@@ -13,9 +13,9 @@ discard block |
||
| 13 | 13 | |
| 14 | 14 | |
| 15 | 15 | function wpinv_get_default_country() { |
| 16 | - $country = wpinv_get_option( 'default_country', 'UK' ); |
|
| 16 | + $country = wpinv_get_option( 'default_country', 'UK' ); |
|
| 17 | 17 | |
| 18 | - return apply_filters( 'wpinv_default_country', $country ); |
|
| 18 | + return apply_filters( 'wpinv_default_country', $country ); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | function wpinv_sanitize_country( $country ) { |
| 38 | 38 | |
| 39 | - // Enure the country is specified |
|
| 39 | + // Enure the country is specified |
|
| 40 | 40 | if ( empty( $country ) ) { |
| 41 | 41 | $country = wpinv_get_default_country(); |
| 42 | 42 | } |
@@ -66,9 +66,9 @@ discard block |
||
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | function wpinv_get_default_state() { |
| 69 | - $state = wpinv_get_option( 'default_state', '' ); |
|
| 69 | + $state = wpinv_get_option( 'default_state', '' ); |
|
| 70 | 70 | |
| 71 | - return apply_filters( 'wpinv_default_state', $state ); |
|
| 71 | + return apply_filters( 'wpinv_default_state', $state ); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | function wpinv_state_name( $state_code = '', $country_code = '' ) { |
@@ -299,11 +299,11 @@ discard block |
||
| 299 | 299 | |
| 300 | 300 | $country = wpinv_sanitize_country( $country ); |
| 301 | 301 | |
| 302 | - foreach ( wpinv_get_continents( 'countries' ) as $continent_code => $countries ) { |
|
| 303 | - if ( false !== array_search( $country, $countries, true ) ) { |
|
| 304 | - return $continent_code; |
|
| 305 | - } |
|
| 306 | - } |
|
| 302 | + foreach ( wpinv_get_continents( 'countries' ) as $continent_code => $countries ) { |
|
| 303 | + if ( false !== array_search( $country, $countries, true ) ) { |
|
| 304 | + return $continent_code; |
|
| 305 | + } |
|
| 306 | + } |
|
| 307 | 307 | |
| 308 | 308 | return ''; |
| 309 | 309 | |
@@ -595,31 +595,31 @@ discard block |
||
| 595 | 595 | } |
| 596 | 596 | |
| 597 | 597 | function wpinv_get_states_field() { |
| 598 | - if ( empty( $_POST['country'] ) ) { |
|
| 599 | - $_POST['country'] = wpinv_get_default_country(); |
|
| 600 | - } |
|
| 601 | - $states = wpinv_get_country_states( sanitize_text_field( $_POST['country'] ) ); |
|
| 598 | + if ( empty( $_POST['country'] ) ) { |
|
| 599 | + $_POST['country'] = wpinv_get_default_country(); |
|
| 600 | + } |
|
| 601 | + $states = wpinv_get_country_states( sanitize_text_field( $_POST['country'] ) ); |
|
| 602 | 602 | |
| 603 | - if ( ! empty( $states ) ) { |
|
| 604 | - $sanitized_field_name = sanitize_text_field( $_POST['field_name'] ); |
|
| 603 | + if ( ! empty( $states ) ) { |
|
| 604 | + $sanitized_field_name = sanitize_text_field( $_POST['field_name'] ); |
|
| 605 | 605 | |
| 606 | 606 | $class = isset( $_POST['class'] ) ? esc_attr( sanitize_text_field( $_POST['class'] ) ) : ''; |
| 607 | 607 | $class .= " $sanitized_field_name getpaid_js_field-state custom-select wpinv-select wpi_select2"; |
| 608 | 608 | |
| 609 | 609 | $args = array( |
| 610 | - 'name' => $sanitized_field_name, |
|
| 611 | - 'id' => $sanitized_field_name, |
|
| 612 | - 'class' => implode( ' ', array_unique( explode( ' ', $class ) ) ), |
|
| 613 | - 'options' => array_merge( array( '' => '' ), $states ), |
|
| 614 | - 'show_option_all' => false, |
|
| 615 | - 'show_option_none' => false, |
|
| 616 | - ); |
|
| 617 | - |
|
| 618 | - wpinv_html_select( $args ); |
|
| 619 | - |
|
| 620 | - } else { |
|
| 621 | - echo 'nostates'; |
|
| 622 | - } |
|
| 610 | + 'name' => $sanitized_field_name, |
|
| 611 | + 'id' => $sanitized_field_name, |
|
| 612 | + 'class' => implode( ' ', array_unique( explode( ' ', $class ) ) ), |
|
| 613 | + 'options' => array_merge( array( '' => '' ), $states ), |
|
| 614 | + 'show_option_all' => false, |
|
| 615 | + 'show_option_none' => false, |
|
| 616 | + ); |
|
| 617 | + |
|
| 618 | + wpinv_html_select( $args ); |
|
| 619 | + |
|
| 620 | + } else { |
|
| 621 | + echo 'nostates'; |
|
| 622 | + } |
|
| 623 | 623 | |
| 624 | 624 | } |
| 625 | 625 | |
@@ -638,47 +638,47 @@ discard block |
||
| 638 | 638 | */ |
| 639 | 639 | function wpinv_get_address_formats() { |
| 640 | 640 | |
| 641 | - return apply_filters( |
|
| 641 | + return apply_filters( |
|
| 642 | 642 | 'wpinv_localisation_address_formats', |
| 643 | - array( |
|
| 644 | - 'default' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}}\n{{zip}}\n{{country}}", |
|
| 645 | - 'AU' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}} {{zip}}\n{{country}}", |
|
| 646 | - 'AT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 647 | - 'BE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 648 | - 'CA' => "{{company}}\n{{name}}\n{{address}}\n{{city}} {{state_code}} {{zip}}\n{{country}}", |
|
| 649 | - 'CH' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 650 | - 'CL' => "{{company}}\n{{name}}\n{{address}}\n{{state}}\n{{zip}} {{city}}\n{{country}}", |
|
| 651 | - 'CN' => "{{country}} {{zip}}\n{{state}}, {{city}}, {{address}}\n{{company}}\n{{name}}", |
|
| 652 | - 'CZ' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 653 | - 'DE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 654 | - 'EE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 655 | - 'FI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 656 | - 'DK' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 657 | - 'FR' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city_upper}}\n{{country}}", |
|
| 658 | - 'HK' => "{{company}}\n{{first_name}} {{last_name_upper}}\n{{address}}\n{{city_upper}}\n{{state_upper}}\n{{country}}", |
|
| 659 | - 'HU' => "{{name}}\n{{company}}\n{{city}}\n{{address}}\n{{zip}}\n{{country}}", |
|
| 660 | - 'IN' => "{{company}}\n{{name}}\n{{address}}\n{{city}} {{zip}}\n{{state}}, {{country}}", |
|
| 661 | - 'IS' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 662 | - 'IT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}}\n{{city}}\n{{state_upper}}\n{{country}}", |
|
| 663 | - 'JP' => "{{zip}}\n{{state}} {{city}} {{address}}\n{{company}}\n{{last_name}} {{first_name}}\n{{country}}", |
|
| 664 | - 'TW' => "{{company}}\n{{last_name}} {{first_name}}\n{{address}}\n{{state}}, {{city}} {{zip}}\n{{country}}", |
|
| 665 | - 'LI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 666 | - 'NL' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 667 | - 'NZ' => "{{name}}\n{{company}}\n{{address}}\n{{city}} {{zip}}\n{{country}}", |
|
| 668 | - 'NO' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 669 | - 'PL' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 670 | - 'PT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 671 | - 'SK' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 672 | - 'RS' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 673 | - 'SI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 674 | - 'ES' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}}\n{{state}}\n{{country}}", |
|
| 675 | - 'SE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 676 | - 'TR' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}} {{state}}\n{{country}}", |
|
| 677 | - 'UG' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}}, {{country}}", |
|
| 678 | - 'US' => "{{name}}\n{{company}}\n{{address}}\n{{city}}, {{state_code}} {{zip}}\n{{country}}", |
|
| 679 | - 'VN' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{country}}", |
|
| 680 | - ) |
|
| 681 | - ); |
|
| 643 | + array( |
|
| 644 | + 'default' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}}\n{{zip}}\n{{country}}", |
|
| 645 | + 'AU' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}} {{zip}}\n{{country}}", |
|
| 646 | + 'AT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 647 | + 'BE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 648 | + 'CA' => "{{company}}\n{{name}}\n{{address}}\n{{city}} {{state_code}} {{zip}}\n{{country}}", |
|
| 649 | + 'CH' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 650 | + 'CL' => "{{company}}\n{{name}}\n{{address}}\n{{state}}\n{{zip}} {{city}}\n{{country}}", |
|
| 651 | + 'CN' => "{{country}} {{zip}}\n{{state}}, {{city}}, {{address}}\n{{company}}\n{{name}}", |
|
| 652 | + 'CZ' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 653 | + 'DE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 654 | + 'EE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 655 | + 'FI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 656 | + 'DK' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 657 | + 'FR' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city_upper}}\n{{country}}", |
|
| 658 | + 'HK' => "{{company}}\n{{first_name}} {{last_name_upper}}\n{{address}}\n{{city_upper}}\n{{state_upper}}\n{{country}}", |
|
| 659 | + 'HU' => "{{name}}\n{{company}}\n{{city}}\n{{address}}\n{{zip}}\n{{country}}", |
|
| 660 | + 'IN' => "{{company}}\n{{name}}\n{{address}}\n{{city}} {{zip}}\n{{state}}, {{country}}", |
|
| 661 | + 'IS' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 662 | + 'IT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}}\n{{city}}\n{{state_upper}}\n{{country}}", |
|
| 663 | + 'JP' => "{{zip}}\n{{state}} {{city}} {{address}}\n{{company}}\n{{last_name}} {{first_name}}\n{{country}}", |
|
| 664 | + 'TW' => "{{company}}\n{{last_name}} {{first_name}}\n{{address}}\n{{state}}, {{city}} {{zip}}\n{{country}}", |
|
| 665 | + 'LI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 666 | + 'NL' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 667 | + 'NZ' => "{{name}}\n{{company}}\n{{address}}\n{{city}} {{zip}}\n{{country}}", |
|
| 668 | + 'NO' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 669 | + 'PL' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 670 | + 'PT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 671 | + 'SK' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 672 | + 'RS' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 673 | + 'SI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 674 | + 'ES' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}}\n{{state}}\n{{country}}", |
|
| 675 | + 'SE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 676 | + 'TR' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}} {{state}}\n{{country}}", |
|
| 677 | + 'UG' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}}, {{country}}", |
|
| 678 | + 'US' => "{{name}}\n{{company}}\n{{address}}\n{{city}}, {{state_code}} {{zip}}\n{{country}}", |
|
| 679 | + 'VN' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{country}}", |
|
| 680 | + ) |
|
| 681 | + ); |
|
| 682 | 682 | } |
| 683 | 683 | |
| 684 | 684 | /** |
@@ -695,21 +695,21 @@ discard block |
||
| 695 | 695 | } |
| 696 | 696 | |
| 697 | 697 | // Get all formats. |
| 698 | - $formats = wpinv_get_address_formats(); |
|
| 698 | + $formats = wpinv_get_address_formats(); |
|
| 699 | 699 | |
| 700 | - // Get format for the specified country. |
|
| 701 | - $format = ( $country && isset( $formats[ $country ] ) ) ? $formats[ $country ] : $formats['default']; |
|
| 700 | + // Get format for the specified country. |
|
| 701 | + $format = ( $country && isset( $formats[ $country ] ) ) ? $formats[ $country ] : $formats['default']; |
|
| 702 | 702 | |
| 703 | 703 | /** |
| 704 | - * Filters the address format to use on Invoices. |
|
| 704 | + * Filters the address format to use on Invoices. |
|
| 705 | 705 | * |
| 706 | 706 | * New lines will be replaced by a `br` element. Double new lines will be replaced by a paragraph. HTML tags are allowed. |
| 707 | - * |
|
| 708 | - * @since 1.0.13 |
|
| 709 | - * |
|
| 710 | - * @param string $format The address format to use. |
|
| 707 | + * |
|
| 708 | + * @since 1.0.13 |
|
| 709 | + * |
|
| 710 | + * @param string $format The address format to use. |
|
| 711 | 711 | * @param string $country The country who's address format is being retrieved. |
| 712 | - */ |
|
| 712 | + */ |
|
| 713 | 713 | return apply_filters( 'wpinv_get_full_address_format', $format, $country ); |
| 714 | 714 | } |
| 715 | 715 | |
@@ -730,8 +730,8 @@ discard block |
||
| 730 | 730 | 'country' => '', |
| 731 | 731 | 'zip' => '', |
| 732 | 732 | 'first_name' => '', |
| 733 | - 'last_name' => '', |
|
| 734 | - 'company' => '', |
|
| 733 | + 'last_name' => '', |
|
| 734 | + 'company' => '', |
|
| 735 | 735 | ); |
| 736 | 736 | |
| 737 | 737 | $args = map_deep( wp_parse_args( array_filter( $billing_details ), $default_args ), 'trim' ); |
@@ -752,14 +752,14 @@ discard block |
||
| 752 | 752 | $args['country_code'] = $country; |
| 753 | 753 | |
| 754 | 754 | /** |
| 755 | - * Filters the address format replacements to use on Invoices. |
|
| 755 | + * Filters the address format replacements to use on Invoices. |
|
| 756 | + * |
|
| 757 | + * |
|
| 758 | + * @since 1.0.13 |
|
| 756 | 759 | * |
| 757 | - * |
|
| 758 | - * @since 1.0.13 |
|
| 759 | - * |
|
| 760 | - * @param array $replacements The address replacements to use. |
|
| 760 | + * @param array $replacements The address replacements to use. |
|
| 761 | 761 | * @param array $billing_details The billing details to use. |
| 762 | - */ |
|
| 762 | + */ |
|
| 763 | 763 | $replacements = apply_filters( 'wpinv_get_invoice_address_replacements', $args, $billing_details ); |
| 764 | 764 | |
| 765 | 765 | $return = array(); |
@@ -782,5 +782,5 @@ discard block |
||
| 782 | 782 | * @return string |
| 783 | 783 | */ |
| 784 | 784 | function wpinv_trim_formatted_address_line( $line ) { |
| 785 | - return trim( $line, ', ' ); |
|
| 785 | + return trim( $line, ', ' ); |
|
| 786 | 786 | } |