@@ -12,142 +12,142 @@ |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Daily_Maintenance { |
14 | 14 | |
15 | - /** |
|
16 | - * Class constructor. |
|
17 | - */ |
|
18 | - public function __construct() { |
|
19 | - |
|
20 | - // Clear deprecated events. |
|
21 | - add_action( 'wp', array( $this, 'maybe_clear_deprecated_events' ) ); |
|
22 | - |
|
23 | - // (Maybe) schedule a cron that runs daily. |
|
24 | - add_action( 'wp', array( $this, 'maybe_create_scheduled_event' ) ); |
|
25 | - |
|
26 | - // Fired everyday at 7 a.m (this might vary for sites with few visitors) |
|
27 | - add_action( 'getpaid_daily_maintenance', array( $this, 'log_cron_run' ) ); |
|
28 | - add_action( 'getpaid_daily_maintenance', array( $this, 'backwards_compat' ) ); |
|
29 | - add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_expire_subscriptions' ) ); |
|
30 | - add_action( 'getpaid_daily_maintenance', array( $this, 'check_renewing_subscriptions' ) ); |
|
31 | - add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_update_geoip_databases' ) ); |
|
32 | - |
|
33 | - } |
|
34 | - |
|
35 | - /** |
|
36 | - * Schedules a cron to run every day at 7 a.m |
|
37 | - * |
|
38 | - */ |
|
39 | - public function maybe_create_scheduled_event() { |
|
40 | - |
|
41 | - if ( ! wp_next_scheduled( 'getpaid_daily_maintenance' ) ) { |
|
42 | - $timestamp = strtotime( 'tomorrow 07:00:00', current_time( 'timestamp' ) ); |
|
43 | - wp_schedule_event( $timestamp, 'daily', 'getpaid_daily_maintenance' ); |
|
44 | - } |
|
45 | - |
|
46 | - } |
|
47 | - |
|
48 | - /** |
|
49 | - * Clears deprecated events. |
|
50 | - * |
|
51 | - */ |
|
52 | - public function maybe_clear_deprecated_events() { |
|
53 | - |
|
54 | - if ( ! get_option( 'wpinv_cleared_old_events' ) ) { |
|
55 | - wp_clear_scheduled_hook( 'wpinv_register_schedule_event_twicedaily' ); |
|
56 | - wp_clear_scheduled_hook( 'wpinv_register_schedule_event_daily' ); |
|
57 | - update_option( 'wpinv_cleared_old_events', 1 ); |
|
58 | - } |
|
59 | - |
|
60 | - } |
|
61 | - |
|
62 | - /** |
|
63 | - * Fires the old hook for backwards compatibility. |
|
64 | - * |
|
65 | - */ |
|
66 | - public function backwards_compat() { |
|
67 | - do_action( 'wpinv_register_schedule_event_daily' ); |
|
68 | - } |
|
69 | - |
|
70 | - /** |
|
71 | - * Checks for subscriptions that are scheduled to renew. |
|
72 | - * |
|
73 | - */ |
|
74 | - public function check_renewing_subscriptions() { |
|
75 | - |
|
76 | - // Fetch subscriptions that expire today. |
|
77 | - $args = array( |
|
78 | - 'number' => -1, |
|
79 | - 'count_total' => false, |
|
80 | - 'status' => 'trialling active', |
|
81 | - 'date_expires_query' => array( |
|
82 | - array( |
|
83 | - 'year' => gmdate( 'Y' ), |
|
84 | - 'month' => gmdate( 'n' ), |
|
85 | - 'day' => gmdate( 'j' ), |
|
86 | - 'compare' => '=', |
|
87 | - ), |
|
88 | - ), |
|
89 | - ); |
|
90 | - |
|
91 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
92 | - |
|
93 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
94 | - /** @var WPInv_Subscription $subscription */ |
|
95 | - if ( $subscription->is_last_renewal() ) { |
|
96 | - $subscription->complete(); |
|
97 | - } else { |
|
98 | - do_action( 'getpaid_should_renew_subscription', $subscription, $subscription->get_parent_invoice() ); |
|
99 | - } |
|
100 | - } |
|
101 | - } |
|
102 | - |
|
103 | - /** |
|
104 | - * Expires expired subscriptions. |
|
105 | - * |
|
106 | - */ |
|
107 | - public function maybe_expire_subscriptions() { |
|
108 | - |
|
109 | - // Fetch expired subscriptions (skips those that expire today). |
|
110 | - $args = array( |
|
111 | - 'number' => -1, |
|
112 | - 'count_total' => false, |
|
113 | - 'status' => 'trialling active failing cancelled', |
|
114 | - 'date_expires_query' => array( |
|
115 | - 'before' => 'yesterday', |
|
116 | - 'inclusive' => false, |
|
117 | - ), |
|
118 | - ); |
|
119 | - |
|
120 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
121 | - |
|
122 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
123 | - if ( apply_filters( 'getpaid_daily_maintenance_should_expire_subscription', false, $subscription ) ) { |
|
124 | - $subscription->set_status( 'expired' ); |
|
125 | - $subscription->save(); |
|
126 | - } |
|
127 | - } |
|
128 | - |
|
129 | - } |
|
130 | - |
|
131 | - /** |
|
132 | - * Logs cron runs. |
|
133 | - * |
|
134 | - */ |
|
135 | - public function log_cron_run() { |
|
136 | - wpinv_error_log( 'GetPaid Daily Cron', false ); |
|
137 | - } |
|
138 | - |
|
139 | - /** |
|
140 | - * Updates GeoIP databases. |
|
141 | - * |
|
142 | - */ |
|
143 | - public function maybe_update_geoip_databases() { |
|
144 | - $updated = get_transient( 'getpaid_updated_geoip_databases' ); |
|
145 | - |
|
146 | - if ( false === $updated ) { |
|
147 | - set_transient( 'getpaid_updated_geoip_databases', 1, 15 * DAY_IN_SECONDS ); |
|
148 | - do_action( 'getpaid_update_geoip_databases' ); |
|
149 | - } |
|
150 | - |
|
151 | - } |
|
15 | + /** |
|
16 | + * Class constructor. |
|
17 | + */ |
|
18 | + public function __construct() { |
|
19 | + |
|
20 | + // Clear deprecated events. |
|
21 | + add_action( 'wp', array( $this, 'maybe_clear_deprecated_events' ) ); |
|
22 | + |
|
23 | + // (Maybe) schedule a cron that runs daily. |
|
24 | + add_action( 'wp', array( $this, 'maybe_create_scheduled_event' ) ); |
|
25 | + |
|
26 | + // Fired everyday at 7 a.m (this might vary for sites with few visitors) |
|
27 | + add_action( 'getpaid_daily_maintenance', array( $this, 'log_cron_run' ) ); |
|
28 | + add_action( 'getpaid_daily_maintenance', array( $this, 'backwards_compat' ) ); |
|
29 | + add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_expire_subscriptions' ) ); |
|
30 | + add_action( 'getpaid_daily_maintenance', array( $this, 'check_renewing_subscriptions' ) ); |
|
31 | + add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_update_geoip_databases' ) ); |
|
32 | + |
|
33 | + } |
|
34 | + |
|
35 | + /** |
|
36 | + * Schedules a cron to run every day at 7 a.m |
|
37 | + * |
|
38 | + */ |
|
39 | + public function maybe_create_scheduled_event() { |
|
40 | + |
|
41 | + if ( ! wp_next_scheduled( 'getpaid_daily_maintenance' ) ) { |
|
42 | + $timestamp = strtotime( 'tomorrow 07:00:00', current_time( 'timestamp' ) ); |
|
43 | + wp_schedule_event( $timestamp, 'daily', 'getpaid_daily_maintenance' ); |
|
44 | + } |
|
45 | + |
|
46 | + } |
|
47 | + |
|
48 | + /** |
|
49 | + * Clears deprecated events. |
|
50 | + * |
|
51 | + */ |
|
52 | + public function maybe_clear_deprecated_events() { |
|
53 | + |
|
54 | + if ( ! get_option( 'wpinv_cleared_old_events' ) ) { |
|
55 | + wp_clear_scheduled_hook( 'wpinv_register_schedule_event_twicedaily' ); |
|
56 | + wp_clear_scheduled_hook( 'wpinv_register_schedule_event_daily' ); |
|
57 | + update_option( 'wpinv_cleared_old_events', 1 ); |
|
58 | + } |
|
59 | + |
|
60 | + } |
|
61 | + |
|
62 | + /** |
|
63 | + * Fires the old hook for backwards compatibility. |
|
64 | + * |
|
65 | + */ |
|
66 | + public function backwards_compat() { |
|
67 | + do_action( 'wpinv_register_schedule_event_daily' ); |
|
68 | + } |
|
69 | + |
|
70 | + /** |
|
71 | + * Checks for subscriptions that are scheduled to renew. |
|
72 | + * |
|
73 | + */ |
|
74 | + public function check_renewing_subscriptions() { |
|
75 | + |
|
76 | + // Fetch subscriptions that expire today. |
|
77 | + $args = array( |
|
78 | + 'number' => -1, |
|
79 | + 'count_total' => false, |
|
80 | + 'status' => 'trialling active', |
|
81 | + 'date_expires_query' => array( |
|
82 | + array( |
|
83 | + 'year' => gmdate( 'Y' ), |
|
84 | + 'month' => gmdate( 'n' ), |
|
85 | + 'day' => gmdate( 'j' ), |
|
86 | + 'compare' => '=', |
|
87 | + ), |
|
88 | + ), |
|
89 | + ); |
|
90 | + |
|
91 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
92 | + |
|
93 | + foreach ( $subscriptions->get_results() as $subscription ) { |
|
94 | + /** @var WPInv_Subscription $subscription */ |
|
95 | + if ( $subscription->is_last_renewal() ) { |
|
96 | + $subscription->complete(); |
|
97 | + } else { |
|
98 | + do_action( 'getpaid_should_renew_subscription', $subscription, $subscription->get_parent_invoice() ); |
|
99 | + } |
|
100 | + } |
|
101 | + } |
|
102 | + |
|
103 | + /** |
|
104 | + * Expires expired subscriptions. |
|
105 | + * |
|
106 | + */ |
|
107 | + public function maybe_expire_subscriptions() { |
|
108 | + |
|
109 | + // Fetch expired subscriptions (skips those that expire today). |
|
110 | + $args = array( |
|
111 | + 'number' => -1, |
|
112 | + 'count_total' => false, |
|
113 | + 'status' => 'trialling active failing cancelled', |
|
114 | + 'date_expires_query' => array( |
|
115 | + 'before' => 'yesterday', |
|
116 | + 'inclusive' => false, |
|
117 | + ), |
|
118 | + ); |
|
119 | + |
|
120 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
121 | + |
|
122 | + foreach ( $subscriptions->get_results() as $subscription ) { |
|
123 | + if ( apply_filters( 'getpaid_daily_maintenance_should_expire_subscription', false, $subscription ) ) { |
|
124 | + $subscription->set_status( 'expired' ); |
|
125 | + $subscription->save(); |
|
126 | + } |
|
127 | + } |
|
128 | + |
|
129 | + } |
|
130 | + |
|
131 | + /** |
|
132 | + * Logs cron runs. |
|
133 | + * |
|
134 | + */ |
|
135 | + public function log_cron_run() { |
|
136 | + wpinv_error_log( 'GetPaid Daily Cron', false ); |
|
137 | + } |
|
138 | + |
|
139 | + /** |
|
140 | + * Updates GeoIP databases. |
|
141 | + * |
|
142 | + */ |
|
143 | + public function maybe_update_geoip_databases() { |
|
144 | + $updated = get_transient( 'getpaid_updated_geoip_databases' ); |
|
145 | + |
|
146 | + if ( false === $updated ) { |
|
147 | + set_transient( 'getpaid_updated_geoip_databases', 1, 15 * DAY_IN_SECONDS ); |
|
148 | + do_action( 'getpaid_update_geoip_databases' ); |
|
149 | + } |
|
150 | + |
|
151 | + } |
|
152 | 152 | |
153 | 153 | } |
@@ -13,17 +13,17 @@ discard block |
||
13 | 13 | class GetPaid_Manual_Gateway extends GetPaid_Payment_Gateway { |
14 | 14 | |
15 | 15 | /** |
16 | - * Payment method id. |
|
17 | - * |
|
18 | - * @var string |
|
19 | - */ |
|
16 | + * Payment method id. |
|
17 | + * |
|
18 | + * @var string |
|
19 | + */ |
|
20 | 20 | public $id = 'manual'; |
21 | 21 | |
22 | 22 | /** |
23 | - * An array of features that this gateway supports. |
|
24 | - * |
|
25 | - * @var array |
|
26 | - */ |
|
23 | + * An array of features that this gateway supports. |
|
24 | + * |
|
25 | + * @var array |
|
26 | + */ |
|
27 | 27 | protected $supports = array( |
28 | 28 | 'subscription', |
29 | 29 | 'addons', |
@@ -34,16 +34,16 @@ discard block |
||
34 | 34 | ); |
35 | 35 | |
36 | 36 | /** |
37 | - * Payment method order. |
|
38 | - * |
|
39 | - * @var int |
|
40 | - */ |
|
41 | - public $order = 11; |
|
37 | + * Payment method order. |
|
38 | + * |
|
39 | + * @var int |
|
40 | + */ |
|
41 | + public $order = 11; |
|
42 | 42 | |
43 | 43 | /** |
44 | - * Class constructor. |
|
45 | - */ |
|
46 | - public function __construct() { |
|
44 | + * Class constructor. |
|
45 | + */ |
|
46 | + public function __construct() { |
|
47 | 47 | parent::__construct(); |
48 | 48 | |
49 | 49 | $this->title = __( 'Test Gateway', 'invoicing' ); |
@@ -53,15 +53,15 @@ discard block |
||
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
56 | - * Process Payment. |
|
57 | - * |
|
58 | - * |
|
59 | - * @param WPInv_Invoice $invoice Invoice. |
|
60 | - * @param array $submission_data Posted checkout fields. |
|
61 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
62 | - * @return array |
|
63 | - */ |
|
64 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
56 | + * Process Payment. |
|
57 | + * |
|
58 | + * |
|
59 | + * @param WPInv_Invoice $invoice Invoice. |
|
60 | + * @param array $submission_data Posted checkout fields. |
|
61 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
62 | + * @return array |
|
63 | + */ |
|
64 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
65 | 65 | |
66 | 66 | // Mark it as paid. |
67 | 67 | $invoice->mark_paid(); |
@@ -90,35 +90,35 @@ discard block |
||
90 | 90 | |
91 | 91 | } |
92 | 92 | |
93 | - /** |
|
94 | - * (Maybe) renews a manual subscription profile. |
|
95 | - * |
|
96 | - * |
|
97 | - * @param WPInv_Subscription $subscription |
|
98 | - */ |
|
99 | - public function maybe_renew_subscription( $subscription, $parent_invoice ) { |
|
100 | - // Ensure its our subscription && it's active. |
|
101 | - if ( ! empty( $parent_invoice ) && $this->id === $parent_invoice->get_gateway() && $subscription->has_status( 'active trialling' ) ) { |
|
102 | - // Renew the subscription. |
|
103 | - $subscription->add_payment( |
|
104 | - array( |
|
105 | - 'transaction_id' => $subscription->get_parent_payment()->generate_key(), |
|
106 | - 'gateway' => $this->id, |
|
107 | - ) |
|
108 | - ); |
|
109 | - |
|
110 | - $subscription->renew(); |
|
111 | - } |
|
112 | - } |
|
93 | + /** |
|
94 | + * (Maybe) renews a manual subscription profile. |
|
95 | + * |
|
96 | + * |
|
97 | + * @param WPInv_Subscription $subscription |
|
98 | + */ |
|
99 | + public function maybe_renew_subscription( $subscription, $parent_invoice ) { |
|
100 | + // Ensure its our subscription && it's active. |
|
101 | + if ( ! empty( $parent_invoice ) && $this->id === $parent_invoice->get_gateway() && $subscription->has_status( 'active trialling' ) ) { |
|
102 | + // Renew the subscription. |
|
103 | + $subscription->add_payment( |
|
104 | + array( |
|
105 | + 'transaction_id' => $subscription->get_parent_payment()->generate_key(), |
|
106 | + 'gateway' => $this->id, |
|
107 | + ) |
|
108 | + ); |
|
109 | + |
|
110 | + $subscription->renew(); |
|
111 | + } |
|
112 | + } |
|
113 | 113 | |
114 | 114 | /** |
115 | - * Processes invoice addons. |
|
116 | - * |
|
117 | - * @param WPInv_Invoice $invoice |
|
118 | - * @param GetPaid_Form_Item[] $items |
|
119 | - * @return WPInv_Invoice |
|
120 | - */ |
|
121 | - public function process_addons( $invoice, $items ) { |
|
115 | + * Processes invoice addons. |
|
116 | + * |
|
117 | + * @param WPInv_Invoice $invoice |
|
118 | + * @param GetPaid_Form_Item[] $items |
|
119 | + * @return WPInv_Invoice |
|
120 | + */ |
|
121 | + public function process_addons( $invoice, $items ) { |
|
122 | 122 | |
123 | 123 | foreach ( $items as $item ) { |
124 | 124 | $invoice->add_item( $item ); |
@@ -13,17 +13,17 @@ discard block |
||
13 | 13 | class GetPaid_Authorize_Net_Gateway extends GetPaid_Authorize_Net_Legacy_Gateway { |
14 | 14 | |
15 | 15 | /** |
16 | - * Payment method id. |
|
17 | - * |
|
18 | - * @var string |
|
19 | - */ |
|
16 | + * Payment method id. |
|
17 | + * |
|
18 | + * @var string |
|
19 | + */ |
|
20 | 20 | public $id = 'authorizenet'; |
21 | 21 | |
22 | 22 | /** |
23 | - * An array of features that this gateway supports. |
|
24 | - * |
|
25 | - * @var array |
|
26 | - */ |
|
23 | + * An array of features that this gateway supports. |
|
24 | + * |
|
25 | + * @var array |
|
26 | + */ |
|
27 | 27 | protected $supports = array( |
28 | 28 | 'subscription', |
29 | 29 | 'sandbox', |
@@ -36,44 +36,44 @@ discard block |
||
36 | 36 | ); |
37 | 37 | |
38 | 38 | /** |
39 | - * Payment method order. |
|
40 | - * |
|
41 | - * @var int |
|
42 | - */ |
|
39 | + * Payment method order. |
|
40 | + * |
|
41 | + * @var int |
|
42 | + */ |
|
43 | 43 | public $order = 4; |
44 | 44 | |
45 | 45 | /** |
46 | - * Endpoint for requests from Authorize.net. |
|
47 | - * |
|
48 | - * @var string |
|
49 | - */ |
|
50 | - protected $notify_url; |
|
51 | - |
|
52 | - /** |
|
53 | - * Endpoint for requests to Authorize.net. |
|
54 | - * |
|
55 | - * @var string |
|
56 | - */ |
|
46 | + * Endpoint for requests from Authorize.net. |
|
47 | + * |
|
48 | + * @var string |
|
49 | + */ |
|
50 | + protected $notify_url; |
|
51 | + |
|
52 | + /** |
|
53 | + * Endpoint for requests to Authorize.net. |
|
54 | + * |
|
55 | + * @var string |
|
56 | + */ |
|
57 | 57 | protected $endpoint; |
58 | 58 | |
59 | 59 | /** |
60 | - * Currencies this gateway is allowed for. |
|
61 | - * |
|
62 | - * @var array |
|
63 | - */ |
|
64 | - public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
60 | + * Currencies this gateway is allowed for. |
|
61 | + * |
|
62 | + * @var array |
|
63 | + */ |
|
64 | + public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
65 | 65 | |
66 | 66 | /** |
67 | - * URL to view a transaction. |
|
68 | - * |
|
69 | - * @var string |
|
70 | - */ |
|
67 | + * URL to view a transaction. |
|
68 | + * |
|
69 | + * @var string |
|
70 | + */ |
|
71 | 71 | public $view_transaction_url = 'https://{sandbox}authorize.net/ui/themes/sandbox/Transaction/TransactionReceipt.aspx?transid=%s'; |
72 | 72 | |
73 | 73 | /** |
74 | - * Class constructor. |
|
75 | - */ |
|
76 | - public function __construct() { |
|
74 | + * Class constructor. |
|
75 | + */ |
|
76 | + public function __construct() { |
|
77 | 77 | |
78 | 78 | $this->title = __( 'Credit Card / Debit Card', 'invoicing' ); |
79 | 79 | $this->method_title = __( 'Authorize.Net', 'invoicing' ); |
@@ -85,11 +85,11 @@ discard block |
||
85 | 85 | } |
86 | 86 | |
87 | 87 | /** |
88 | - * Displays the payment method select field. |
|
89 | - * |
|
90 | - * @param int $invoice_id 0 or invoice id. |
|
91 | - * @param GetPaid_Payment_Form $form Current payment form. |
|
92 | - */ |
|
88 | + * Displays the payment method select field. |
|
89 | + * |
|
90 | + * @param int $invoice_id 0 or invoice id. |
|
91 | + * @param GetPaid_Payment_Form $form Current payment form. |
|
92 | + */ |
|
93 | 93 | public function payment_fields( $invoice_id, $form ) { |
94 | 94 | |
95 | 95 | // Let the user select a payment method. |
@@ -100,16 +100,16 @@ discard block |
||
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
103 | - * Creates a customer profile. |
|
104 | - * |
|
105 | - * |
|
106 | - * @param WPInv_Invoice $invoice Invoice. |
|
103 | + * Creates a customer profile. |
|
104 | + * |
|
105 | + * |
|
106 | + * @param WPInv_Invoice $invoice Invoice. |
|
107 | 107 | * @param array $submission_data Posted checkout fields. |
108 | 108 | * @param bool $save Whether or not to save the payment as a token. |
109 | 109 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
110 | - * @return string|WP_Error Payment profile id. |
|
111 | - */ |
|
112 | - public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
110 | + * @return string|WP_Error Payment profile id. |
|
111 | + */ |
|
112 | + public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
113 | 113 | |
114 | 114 | // Remove non-digits from the number |
115 | 115 | $submission_data['authorizenet']['cc_number'] = preg_replace( '/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
@@ -191,14 +191,14 @@ discard block |
||
191 | 191 | } |
192 | 192 | |
193 | 193 | /** |
194 | - * Retrieves a customer profile. |
|
195 | - * |
|
196 | - * |
|
197 | - * @param string $profile_id profile id. |
|
198 | - * @return string|WP_Error Profile id. |
|
194 | + * Retrieves a customer profile. |
|
195 | + * |
|
196 | + * |
|
197 | + * @param string $profile_id profile id. |
|
198 | + * @return string|WP_Error Profile id. |
|
199 | 199 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile |
200 | - */ |
|
201 | - public function get_customer_profile( $profile_id ) { |
|
200 | + */ |
|
201 | + public function get_customer_profile( $profile_id ) { |
|
202 | 202 | |
203 | 203 | // Generate args. |
204 | 204 | $args = array( |
@@ -213,17 +213,17 @@ discard block |
||
213 | 213 | } |
214 | 214 | |
215 | 215 | /** |
216 | - * Creates a customer profile. |
|
217 | - * |
|
218 | - * |
|
216 | + * Creates a customer profile. |
|
217 | + * |
|
218 | + * |
|
219 | 219 | * @param string $profile_id profile id. |
220 | - * @param WPInv_Invoice $invoice Invoice. |
|
220 | + * @param WPInv_Invoice $invoice Invoice. |
|
221 | 221 | * @param array $submission_data Posted checkout fields. |
222 | 222 | * @param bool $save Whether or not to save the payment as a token. |
223 | 223 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
224 | - * @return string|WP_Error Profile id. |
|
225 | - */ |
|
226 | - public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
224 | + * @return string|WP_Error Profile id. |
|
225 | + */ |
|
226 | + public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
227 | 227 | |
228 | 228 | // Remove non-digits from the number |
229 | 229 | $submission_data['authorizenet']['cc_number'] = preg_replace( '/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
@@ -311,13 +311,13 @@ discard block |
||
311 | 311 | } |
312 | 312 | |
313 | 313 | /** |
314 | - * Retrieves payment details from cache. |
|
315 | - * |
|
316 | - * |
|
314 | + * Retrieves payment details from cache. |
|
315 | + * |
|
316 | + * |
|
317 | 317 | * @param array $payment_details. |
318 | - * @return array|false Profile id. |
|
319 | - */ |
|
320 | - public function retrieve_payment_profile_from_cache( $payment_details, $customer_profile, $invoice ) { |
|
318 | + * @return array|false Profile id. |
|
319 | + */ |
|
320 | + public function retrieve_payment_profile_from_cache( $payment_details, $customer_profile, $invoice ) { |
|
321 | 321 | |
322 | 322 | $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
323 | 323 | $payment_details = hash_hmac( 'sha256', json_encode( $payment_details ), SECURE_AUTH_KEY ); |
@@ -342,13 +342,13 @@ discard block |
||
342 | 342 | } |
343 | 343 | |
344 | 344 | /** |
345 | - * Securely adds payment details to cache. |
|
346 | - * |
|
347 | - * |
|
345 | + * Securely adds payment details to cache. |
|
346 | + * |
|
347 | + * |
|
348 | 348 | * @param array $payment_details. |
349 | 349 | * @param string $payment_profile_id. |
350 | - */ |
|
351 | - public function add_payment_profile_to_cache( $payment_details, $payment_profile_id ) { |
|
350 | + */ |
|
351 | + public function add_payment_profile_to_cache( $payment_details, $payment_profile_id ) { |
|
352 | 352 | |
353 | 353 | $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
354 | 354 | $cached_information = is_array( $cached_information ) ? $cached_information : array(); |
@@ -360,15 +360,15 @@ discard block |
||
360 | 360 | } |
361 | 361 | |
362 | 362 | /** |
363 | - * Retrieves a customer payment profile. |
|
364 | - * |
|
365 | - * |
|
366 | - * @param string $customer_profile_id customer profile id. |
|
363 | + * Retrieves a customer payment profile. |
|
364 | + * |
|
365 | + * |
|
366 | + * @param string $customer_profile_id customer profile id. |
|
367 | 367 | * @param string $payment_profile_id payment profile id. |
368 | - * @return string|WP_Error Profile id. |
|
368 | + * @return string|WP_Error Profile id. |
|
369 | 369 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-payment-profile |
370 | - */ |
|
371 | - public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
370 | + */ |
|
371 | + public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
372 | 372 | |
373 | 373 | // Generate args. |
374 | 374 | $args = array( |
@@ -384,15 +384,15 @@ discard block |
||
384 | 384 | } |
385 | 385 | |
386 | 386 | /** |
387 | - * Charges a customer payment profile. |
|
388 | - * |
|
387 | + * Charges a customer payment profile. |
|
388 | + * |
|
389 | 389 | * @param string $customer_profile_id customer profile id. |
390 | 390 | * @param string $payment_profile_id payment profile id. |
391 | - * @param WPInv_Invoice $invoice Invoice. |
|
391 | + * @param WPInv_Invoice $invoice Invoice. |
|
392 | 392 | * @link https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-customer-profile |
393 | - * @return WP_Error|object |
|
394 | - */ |
|
395 | - public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
393 | + * @return WP_Error|object |
|
394 | + */ |
|
395 | + public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
396 | 396 | |
397 | 397 | // Generate args. |
398 | 398 | $args = array( |
@@ -438,43 +438,43 @@ discard block |
||
438 | 438 | } |
439 | 439 | |
440 | 440 | /** |
441 | - * Processes a customer charge. |
|
442 | - * |
|
441 | + * Processes a customer charge. |
|
442 | + * |
|
443 | 443 | * @param stdClass $result Api response. |
444 | - * @param WPInv_Invoice $invoice Invoice. |
|
445 | - */ |
|
446 | - public function process_charge_response( $result, $invoice ) { |
|
444 | + * @param WPInv_Invoice $invoice Invoice. |
|
445 | + */ |
|
446 | + public function process_charge_response( $result, $invoice ) { |
|
447 | 447 | |
448 | 448 | wpinv_clear_errors(); |
449 | - $response_code = (int) $result->transactionResponse->responseCode; |
|
449 | + $response_code = (int) $result->transactionResponse->responseCode; |
|
450 | 450 | |
451 | 451 | $invoice->add_note( 'Transaction Response: ' . print_r( $result->transactionResponse, true ), false, false, true ); |
452 | 452 | |
453 | - // Succeeded. |
|
454 | - if ( 1 == $response_code || 4 == $response_code ) { |
|
453 | + // Succeeded. |
|
454 | + if ( 1 == $response_code || 4 == $response_code ) { |
|
455 | 455 | |
456 | - // Maybe set a transaction id. |
|
457 | - if ( ! empty( $result->transactionResponse->transId ) ) { |
|
458 | - $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
459 | - } |
|
456 | + // Maybe set a transaction id. |
|
457 | + if ( ! empty( $result->transactionResponse->transId ) ) { |
|
458 | + $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
459 | + } |
|
460 | 460 | |
461 | - $invoice->add_note( sprintf( __( 'Authentication code: %1$s (%2$s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
461 | + $invoice->add_note( sprintf( __( 'Authentication code: %1$s (%2$s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
462 | 462 | |
463 | - if ( 1 == $response_code ) { |
|
464 | - return $invoice->mark_paid(); |
|
465 | - } |
|
463 | + if ( 1 == $response_code ) { |
|
464 | + return $invoice->mark_paid(); |
|
465 | + } |
|
466 | 466 | |
467 | - $invoice->set_status( 'wpi-onhold' ); |
|
468 | - $invoice->add_note( |
|
467 | + $invoice->set_status( 'wpi-onhold' ); |
|
468 | + $invoice->add_note( |
|
469 | 469 | sprintf( |
470 | 470 | __( 'Held for review: %s', 'invoicing' ), |
471 | 471 | $result->transactionResponse->messages->message[0]->description |
472 | 472 | ) |
473 | - ); |
|
473 | + ); |
|
474 | 474 | |
475 | - return $invoice->save(); |
|
475 | + return $invoice->save(); |
|
476 | 476 | |
477 | - } |
|
477 | + } |
|
478 | 478 | |
479 | 479 | wpinv_set_error( 'card_declined' ); |
480 | 480 | |
@@ -486,13 +486,13 @@ discard block |
||
486 | 486 | } |
487 | 487 | |
488 | 488 | /** |
489 | - * Returns payment information. |
|
490 | - * |
|
491 | - * |
|
492 | - * @param array $card Card details. |
|
493 | - * @return array |
|
494 | - */ |
|
495 | - public function get_payment_information( $card ) { |
|
489 | + * Returns payment information. |
|
490 | + * |
|
491 | + * |
|
492 | + * @param array $card Card details. |
|
493 | + * @return array |
|
494 | + */ |
|
495 | + public function get_payment_information( $card ) { |
|
496 | 496 | return array( |
497 | 497 | |
498 | 498 | 'creditCard' => array( |
@@ -505,25 +505,25 @@ discard block |
||
505 | 505 | } |
506 | 506 | |
507 | 507 | /** |
508 | - * Returns the customer profile meta name. |
|
509 | - * |
|
510 | - * |
|
511 | - * @param WPInv_Invoice $invoice Invoice. |
|
512 | - * @return string |
|
513 | - */ |
|
514 | - public function get_customer_profile_meta_name( $invoice ) { |
|
508 | + * Returns the customer profile meta name. |
|
509 | + * |
|
510 | + * |
|
511 | + * @param WPInv_Invoice $invoice Invoice. |
|
512 | + * @return string |
|
513 | + */ |
|
514 | + public function get_customer_profile_meta_name( $invoice ) { |
|
515 | 515 | return $this->is_sandbox( $invoice ) ? 'getpaid_authorizenet_sandbox_customer_profile_id' : 'getpaid_authorizenet_customer_profile_id'; |
516 | 516 | } |
517 | 517 | |
518 | 518 | /** |
519 | - * Validates the submitted data. |
|
520 | - * |
|
521 | - * |
|
522 | - * @param array $submission_data Posted checkout fields. |
|
519 | + * Validates the submitted data. |
|
520 | + * |
|
521 | + * |
|
522 | + * @param array $submission_data Posted checkout fields. |
|
523 | 523 | * @param WPInv_Invoice $invoice |
524 | - * @return WP_Error|string The payment profile id |
|
525 | - */ |
|
526 | - public function validate_submission_data( $submission_data, $invoice ) { |
|
524 | + * @return WP_Error|string The payment profile id |
|
525 | + */ |
|
526 | + public function validate_submission_data( $submission_data, $invoice ) { |
|
527 | 527 | |
528 | 528 | // Validate authentication details. |
529 | 529 | $auth = $this->get_auth_params(); |
@@ -555,13 +555,13 @@ discard block |
||
555 | 555 | } |
556 | 556 | |
557 | 557 | /** |
558 | - * Returns invoice line items. |
|
559 | - * |
|
560 | - * |
|
561 | - * @param WPInv_Invoice $invoice Invoice. |
|
562 | - * @return array |
|
563 | - */ |
|
564 | - public function get_line_items( $invoice ) { |
|
558 | + * Returns invoice line items. |
|
559 | + * |
|
560 | + * |
|
561 | + * @param WPInv_Invoice $invoice Invoice. |
|
562 | + * @return array |
|
563 | + */ |
|
564 | + public function get_line_items( $invoice ) { |
|
565 | 565 | $items = array(); |
566 | 566 | |
567 | 567 | foreach ( $invoice->get_items() as $item ) { |
@@ -598,15 +598,15 @@ discard block |
||
598 | 598 | } |
599 | 599 | |
600 | 600 | /** |
601 | - * Process Payment. |
|
602 | - * |
|
603 | - * |
|
604 | - * @param WPInv_Invoice $invoice Invoice. |
|
605 | - * @param array $submission_data Posted checkout fields. |
|
606 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
607 | - * @return array |
|
608 | - */ |
|
609 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
601 | + * Process Payment. |
|
602 | + * |
|
603 | + * |
|
604 | + * @param WPInv_Invoice $invoice Invoice. |
|
605 | + * @param array $submission_data Posted checkout fields. |
|
606 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
607 | + * @return array |
|
608 | + */ |
|
609 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
610 | 610 | |
611 | 611 | // Validate the submitted data. |
612 | 612 | $payment_profile_id = $this->validate_submission_data( $submission_data, $invoice ); |
@@ -639,45 +639,45 @@ discard block |
||
639 | 639 | |
640 | 640 | exit; |
641 | 641 | |
642 | - } |
|
642 | + } |
|
643 | 643 | |
644 | - /** |
|
645 | - * Processes the initial payment. |
|
646 | - * |
|
644 | + /** |
|
645 | + * Processes the initial payment. |
|
646 | + * |
|
647 | 647 | * @param WPInv_Invoice $invoice Invoice. |
648 | - */ |
|
649 | - protected function process_initial_payment( $invoice ) { |
|
648 | + */ |
|
649 | + protected function process_initial_payment( $invoice ) { |
|
650 | 650 | |
651 | - $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
651 | + $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
652 | 652 | $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
653 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
653 | + $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
654 | 654 | |
655 | - // Do we have an error? |
|
656 | - if ( is_wp_error( $result ) ) { |
|
657 | - wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
658 | - wpinv_send_back_to_checkout( $invoice ); |
|
659 | - } |
|
655 | + // Do we have an error? |
|
656 | + if ( is_wp_error( $result ) ) { |
|
657 | + wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
658 | + wpinv_send_back_to_checkout( $invoice ); |
|
659 | + } |
|
660 | 660 | |
661 | - // Process the response. |
|
662 | - $this->process_charge_response( $result, $invoice ); |
|
661 | + // Process the response. |
|
662 | + $this->process_charge_response( $result, $invoice ); |
|
663 | 663 | |
664 | - if ( wpinv_get_errors() ) { |
|
665 | - wpinv_send_back_to_checkout( $invoice ); |
|
666 | - } |
|
664 | + if ( wpinv_get_errors() ) { |
|
665 | + wpinv_send_back_to_checkout( $invoice ); |
|
666 | + } |
|
667 | 667 | |
668 | - } |
|
668 | + } |
|
669 | 669 | |
670 | 670 | /** |
671 | - * Processes recurring payments. |
|
672 | - * |
|
671 | + * Processes recurring payments. |
|
672 | + * |
|
673 | 673 | * @param WPInv_Invoice $invoice Invoice. |
674 | 674 | * @param WPInv_Subscription[]|WPInv_Subscription $subscriptions Subscriptions. |
675 | - */ |
|
676 | - public function process_subscription( $invoice, $subscriptions ) { |
|
675 | + */ |
|
676 | + public function process_subscription( $invoice, $subscriptions ) { |
|
677 | 677 | |
678 | 678 | // Check if there is an initial amount to charge. |
679 | 679 | if ( (float) $invoice->get_total() > 0 ) { |
680 | - $this->process_initial_payment( $invoice ); |
|
680 | + $this->process_initial_payment( $invoice ); |
|
681 | 681 | } |
682 | 682 | |
683 | 683 | // Activate the subscriptions. |
@@ -695,34 +695,34 @@ discard block |
||
695 | 695 | } |
696 | 696 | } |
697 | 697 | |
698 | - // Redirect to the success page. |
|
698 | + // Redirect to the success page. |
|
699 | 699 | wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
700 | 700 | |
701 | 701 | } |
702 | 702 | |
703 | - /** |
|
704 | - * (Maybe) renews an authorize.net subscription profile. |
|
705 | - * |
|
706 | - * |
|
707 | - * @param WPInv_Subscription $subscription |
|
708 | - */ |
|
709 | - public function maybe_renew_subscription( $subscription, $parent_invoice ) { |
|
710 | - // Ensure its our subscription && it's active. |
|
711 | - if ( ! empty( $parent_invoice ) && $this->id === $parent_invoice->get_gateway() && $subscription->has_status( 'active trialling' ) ) { |
|
712 | - $this->renew_subscription( $subscription ); |
|
713 | - } |
|
714 | - } |
|
703 | + /** |
|
704 | + * (Maybe) renews an authorize.net subscription profile. |
|
705 | + * |
|
706 | + * |
|
707 | + * @param WPInv_Subscription $subscription |
|
708 | + */ |
|
709 | + public function maybe_renew_subscription( $subscription, $parent_invoice ) { |
|
710 | + // Ensure its our subscription && it's active. |
|
711 | + if ( ! empty( $parent_invoice ) && $this->id === $parent_invoice->get_gateway() && $subscription->has_status( 'active trialling' ) ) { |
|
712 | + $this->renew_subscription( $subscription ); |
|
713 | + } |
|
714 | + } |
|
715 | 715 | |
716 | 716 | /** |
717 | - * Renews a subscription. |
|
718 | - * |
|
717 | + * Renews a subscription. |
|
718 | + * |
|
719 | 719 | * @param WPInv_Subscription $subscription |
720 | - */ |
|
721 | - public function renew_subscription( $subscription ) { |
|
720 | + */ |
|
721 | + public function renew_subscription( $subscription ) { |
|
722 | 722 | |
723 | - // Generate the renewal invoice. |
|
724 | - $new_invoice = $subscription->create_payment(); |
|
725 | - $old_invoice = $subscription->get_parent_payment(); |
|
723 | + // Generate the renewal invoice. |
|
724 | + $new_invoice = $subscription->create_payment(); |
|
725 | + $old_invoice = $subscription->get_parent_payment(); |
|
726 | 726 | |
727 | 727 | if ( empty( $new_invoice ) ) { |
728 | 728 | $old_invoice->add_note( __( 'Error generating a renewal invoice.', 'invoicing' ), false, false, false ); |
@@ -731,37 +731,37 @@ discard block |
||
731 | 731 | } |
732 | 732 | |
733 | 733 | // Charge the payment method. |
734 | - $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
735 | - $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
736 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
737 | - |
|
738 | - // Do we have an error? |
|
739 | - if ( is_wp_error( $result ) ) { |
|
740 | - |
|
741 | - $old_invoice->add_note( |
|
742 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
743 | - true, |
|
744 | - false, |
|
745 | - true |
|
746 | - ); |
|
747 | - $subscription->failing(); |
|
748 | - return; |
|
749 | - |
|
750 | - } |
|
751 | - |
|
752 | - // Process the response. |
|
753 | - $this->process_charge_response( $result, $new_invoice ); |
|
754 | - |
|
755 | - if ( wpinv_get_errors() ) { |
|
756 | - |
|
757 | - $old_invoice->add_note( |
|
758 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
759 | - true, |
|
760 | - false, |
|
761 | - true |
|
762 | - ); |
|
763 | - $subscription->failing(); |
|
764 | - return; |
|
734 | + $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
735 | + $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
736 | + $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
737 | + |
|
738 | + // Do we have an error? |
|
739 | + if ( is_wp_error( $result ) ) { |
|
740 | + |
|
741 | + $old_invoice->add_note( |
|
742 | + sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
743 | + true, |
|
744 | + false, |
|
745 | + true |
|
746 | + ); |
|
747 | + $subscription->failing(); |
|
748 | + return; |
|
749 | + |
|
750 | + } |
|
751 | + |
|
752 | + // Process the response. |
|
753 | + $this->process_charge_response( $result, $new_invoice ); |
|
754 | + |
|
755 | + if ( wpinv_get_errors() ) { |
|
756 | + |
|
757 | + $old_invoice->add_note( |
|
758 | + sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
759 | + true, |
|
760 | + false, |
|
761 | + true |
|
762 | + ); |
|
763 | + $subscription->failing(); |
|
764 | + return; |
|
765 | 765 | |
766 | 766 | } |
767 | 767 | |
@@ -774,13 +774,13 @@ discard block |
||
774 | 774 | } |
775 | 775 | |
776 | 776 | /** |
777 | - * Processes invoice addons. |
|
778 | - * |
|
779 | - * @param WPInv_Invoice $invoice |
|
780 | - * @param GetPaid_Form_Item[] $items |
|
781 | - * @return WPInv_Invoice |
|
782 | - */ |
|
783 | - public function process_addons( $invoice, $items ) { |
|
777 | + * Processes invoice addons. |
|
778 | + * |
|
779 | + * @param WPInv_Invoice $invoice |
|
780 | + * @param GetPaid_Form_Item[] $items |
|
781 | + * @return WPInv_Invoice |
|
782 | + */ |
|
783 | + public function process_addons( $invoice, $items ) { |
|
784 | 784 | |
785 | 785 | global $getpaid_authorize_addons; |
786 | 786 | |
@@ -799,7 +799,7 @@ discard block |
||
799 | 799 | $invoice->recalculate_total(); |
800 | 800 | |
801 | 801 | $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
802 | - $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
802 | + $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
803 | 803 | |
804 | 804 | add_filter( 'getpaid_authorizenet_charge_customer_payment_profile_args', array( $this, 'filter_addons_request' ), 10, 2 ); |
805 | 805 | $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
@@ -814,11 +814,11 @@ discard block |
||
814 | 814 | } |
815 | 815 | |
816 | 816 | /** |
817 | - * Processes invoice addons. |
|
818 | - * |
|
817 | + * Processes invoice addons. |
|
818 | + * |
|
819 | 819 | * @param array $args |
820 | - * @return array |
|
821 | - */ |
|
820 | + * @return array |
|
821 | + */ |
|
822 | 822 | public function filter_addons_request( $args ) { |
823 | 823 | |
824 | 824 | global $getpaid_authorize_addons; |
@@ -852,11 +852,11 @@ discard block |
||
852 | 852 | } |
853 | 853 | |
854 | 854 | /** |
855 | - * Filters the gateway settings. |
|
856 | - * |
|
857 | - * @param array $admin_settings |
|
858 | - */ |
|
859 | - public function admin_settings( $admin_settings ) { |
|
855 | + * Filters the gateway settings. |
|
856 | + * |
|
857 | + * @param array $admin_settings |
|
858 | + */ |
|
859 | + public function admin_settings( $admin_settings ) { |
|
860 | 860 | |
861 | 861 | $currencies = sprintf( |
862 | 862 | __( 'Supported Currencies: %s', 'invoicing' ), |
@@ -896,7 +896,7 @@ discard block |
||
896 | 896 | 'readonly' => true, |
897 | 897 | ); |
898 | 898 | |
899 | - return $admin_settings; |
|
900 | - } |
|
899 | + return $admin_settings; |
|
900 | + } |
|
901 | 901 | |
902 | 902 | } |
@@ -26,71 +26,71 @@ discard block |
||
26 | 26 | |
27 | 27 | <?php |
28 | 28 | |
29 | - // Fires before printing a line item column. |
|
30 | - do_action( "getpaid_form_cart_item_before_$key", $item, $form ); |
|
29 | + // Fires before printing a line item column. |
|
30 | + do_action( "getpaid_form_cart_item_before_$key", $item, $form ); |
|
31 | 31 | |
32 | - // Item name. |
|
33 | - if ( 'name' === $key ) { |
|
32 | + // Item name. |
|
33 | + if ( 'name' === $key ) { |
|
34 | 34 | |
35 | 35 | |
36 | - ob_start(); |
|
36 | + ob_start(); |
|
37 | 37 | |
38 | - // Add an optional description. |
|
39 | - $description = $item->get_description(); |
|
38 | + // Add an optional description. |
|
39 | + $description = $item->get_description(); |
|
40 | 40 | |
41 | - if ( ! empty( $description ) ) { |
|
42 | - echo "<small class='form-text text-muted pr-2 m-0'>" . wp_kses_post( $description ) . '</small>'; |
|
43 | - } |
|
41 | + if ( ! empty( $description ) ) { |
|
42 | + echo "<small class='form-text text-muted pr-2 m-0'>" . wp_kses_post( $description ) . '</small>'; |
|
43 | + } |
|
44 | 44 | |
45 | - // Price help text. |
|
46 | - $description = getpaid_item_recurring_price_help_text( $item, $currency ); |
|
47 | - if ( $description ) { |
|
48 | - echo "<small class='getpaid-form-item-price-desc form-text text-muted font-italic pr-2 m-0'>" . wp_kses_post( $description ) . '</small>'; |
|
49 | - } |
|
45 | + // Price help text. |
|
46 | + $description = getpaid_item_recurring_price_help_text( $item, $currency ); |
|
47 | + if ( $description ) { |
|
48 | + echo "<small class='getpaid-form-item-price-desc form-text text-muted font-italic pr-2 m-0'>" . wp_kses_post( $description ) . '</small>'; |
|
49 | + } |
|
50 | 50 | |
51 | - do_action( 'getpaid_payment_form_cart_item_description', $item, $form ); |
|
51 | + do_action( 'getpaid_payment_form_cart_item_description', $item, $form ); |
|
52 | 52 | |
53 | - if ( wpinv_current_user_can_manage_invoicing() ) { |
|
53 | + if ( wpinv_current_user_can_manage_invoicing() ) { |
|
54 | 54 | |
55 | - edit_post_link( |
|
56 | - __( 'Edit this item.', 'invoicing' ), |
|
57 | - '<small class="form-text text-muted">', |
|
58 | - '</small>', |
|
59 | - $item->get_id(), |
|
60 | - 'text-danger' |
|
61 | - ); |
|
55 | + edit_post_link( |
|
56 | + __( 'Edit this item.', 'invoicing' ), |
|
57 | + '<small class="form-text text-muted">', |
|
58 | + '</small>', |
|
59 | + $item->get_id(), |
|
60 | + 'text-danger' |
|
61 | + ); |
|
62 | 62 | |
63 | - } |
|
63 | + } |
|
64 | 64 | |
65 | - $description = ob_get_clean(); |
|
65 | + $description = ob_get_clean(); |
|
66 | 66 | |
67 | - // Display the name. |
|
68 | - $tootip = empty( $description ) ? '' : ' <i class="fas fa-xs fa-info gp-tooltip d-sm-none text-muted"></i>'; |
|
67 | + // Display the name. |
|
68 | + $tootip = empty( $description ) ? '' : ' <i class="fas fa-xs fa-info gp-tooltip d-sm-none text-muted"></i>'; |
|
69 | 69 | |
70 | - $has_featured_image = has_post_thumbnail( $item->get_id() ); |
|
70 | + $has_featured_image = has_post_thumbnail( $item->get_id() ); |
|
71 | 71 | |
72 | - if ( $has_featured_image ) { |
|
73 | - echo '<div class="d-flex align-items-center getpaid-form-item-has-featured-image">'; |
|
74 | - echo '<div class="getpaid-form-item-image-container mr-2" style="width:85px;">'; |
|
75 | - echo get_the_post_thumbnail( $item->get_id(), array( 75, 75 ), array( 'class' => 'getpaid-form-item-image mb-0' ) ); |
|
76 | - echo '</div>'; |
|
77 | - echo '<div class="getpaid-form-item-name-container">'; |
|
78 | - } |
|
72 | + if ( $has_featured_image ) { |
|
73 | + echo '<div class="d-flex align-items-center getpaid-form-item-has-featured-image">'; |
|
74 | + echo '<div class="getpaid-form-item-image-container mr-2" style="width:85px;">'; |
|
75 | + echo get_the_post_thumbnail( $item->get_id(), array( 75, 75 ), array( 'class' => 'getpaid-form-item-image mb-0' ) ); |
|
76 | + echo '</div>'; |
|
77 | + echo '<div class="getpaid-form-item-name-container">'; |
|
78 | + } |
|
79 | 79 | |
80 | - echo '<div class="mb-1 font-weight-bold">' . esc_html( $item->get_name() ) . wp_kses_post( $tootip ) . '</div>'; |
|
80 | + echo '<div class="mb-1 font-weight-bold">' . esc_html( $item->get_name() ) . wp_kses_post( $tootip ) . '</div>'; |
|
81 | 81 | |
82 | - if ( ! empty( $description ) ) { |
|
83 | - printf( '<span class="d-none d-sm-block getpaid-item-desc">%s</span>', wp_kses_post( $description ) ); |
|
84 | - } |
|
82 | + if ( ! empty( $description ) ) { |
|
83 | + printf( '<span class="d-none d-sm-block getpaid-item-desc">%s</span>', wp_kses_post( $description ) ); |
|
84 | + } |
|
85 | 85 | |
86 | - if ( $item->allows_quantities() ) { |
|
87 | - printf( |
|
88 | - '<small class="d-sm-none text-muted form-text">%s</small>', |
|
89 | - sprintf( |
|
90 | - // translators: %s is the item quantity. |
|
91 | - esc_html__( 'Qty %s', 'invoicing' ), |
|
92 | - sprintf( |
|
93 | - '<input |
|
86 | + if ( $item->allows_quantities() ) { |
|
87 | + printf( |
|
88 | + '<small class="d-sm-none text-muted form-text">%s</small>', |
|
89 | + sprintf( |
|
90 | + // translators: %s is the item quantity. |
|
91 | + esc_html__( 'Qty %s', 'invoicing' ), |
|
92 | + sprintf( |
|
93 | + '<input |
|
94 | 94 | type="number" |
95 | 95 | step="0.01" |
96 | 96 | style="width: 48px;" |
@@ -99,62 +99,62 @@ discard block |
||
99 | 99 | min="1" |
100 | 100 | max="%s" |
101 | 101 | >', |
102 | - (float) $item->get_quantity() == 0 ? 1 : (float) $item->get_quantity(), |
|
103 | - floatval( null !== $max_qty ? $max_qty : 1000000000000 ) |
|
104 | - ) |
|
105 | - ) |
|
106 | - ); |
|
107 | - } else { |
|
108 | - printf( |
|
109 | - '<small class="d-sm-none text-muted form-text">%s</small>', |
|
110 | - sprintf( |
|
111 | - // translators: %s is the item quantity. |
|
112 | - esc_html__( 'Qty %s', 'invoicing' ), |
|
113 | - (float) $item->get_quantity() |
|
114 | - ) |
|
115 | - ); |
|
116 | - } |
|
117 | - |
|
118 | - if ( $has_featured_image ) { |
|
119 | - echo '</div>'; |
|
120 | - echo '</div>'; |
|
121 | - } |
|
122 | - } |
|
123 | - |
|
124 | - // Item price. |
|
125 | - if ( 'price' === $key ) { |
|
126 | - |
|
127 | - // Set the currency position. |
|
128 | - $position = wpinv_currency_position(); |
|
129 | - |
|
130 | - if ( 'left_space' === $position ) { |
|
131 | - $position = 'left'; |
|
132 | - } |
|
133 | - |
|
134 | - if ( 'right_space' === $position ) { |
|
135 | - $position = 'right'; |
|
136 | - } |
|
137 | - |
|
138 | - if ( $item->user_can_set_their_price() ) { |
|
139 | - $price = max( (float) $item->get_price(), (float) $item->get_minimum_price() ); |
|
140 | - $minimum = (float) $item->get_minimum_price(); |
|
141 | - $validate_minimum = ''; |
|
142 | - $class = ''; |
|
143 | - $data_minimum = ''; |
|
144 | - |
|
145 | - if ( $minimum > 0 ) { |
|
146 | - $validate_minimum = sprintf( |
|
147 | - // translators: %s is the minimum price. |
|
148 | - esc_attr__( 'The minimum allowed amount is %s', 'invoicing' ), |
|
149 | - wp_strip_all_tags( wpinv_price( $minimum, $currency ) ) |
|
150 | - ); |
|
151 | - |
|
152 | - $class = 'getpaid-validate-minimum-amount'; |
|
153 | - |
|
154 | - $data_minimum = "data-minimum-amount='" . esc_attr( getpaid_unstandardize_amount( $minimum ) ) . "'"; |
|
155 | - } |
|
156 | - |
|
157 | - ?> |
|
102 | + (float) $item->get_quantity() == 0 ? 1 : (float) $item->get_quantity(), |
|
103 | + floatval( null !== $max_qty ? $max_qty : 1000000000000 ) |
|
104 | + ) |
|
105 | + ) |
|
106 | + ); |
|
107 | + } else { |
|
108 | + printf( |
|
109 | + '<small class="d-sm-none text-muted form-text">%s</small>', |
|
110 | + sprintf( |
|
111 | + // translators: %s is the item quantity. |
|
112 | + esc_html__( 'Qty %s', 'invoicing' ), |
|
113 | + (float) $item->get_quantity() |
|
114 | + ) |
|
115 | + ); |
|
116 | + } |
|
117 | + |
|
118 | + if ( $has_featured_image ) { |
|
119 | + echo '</div>'; |
|
120 | + echo '</div>'; |
|
121 | + } |
|
122 | + } |
|
123 | + |
|
124 | + // Item price. |
|
125 | + if ( 'price' === $key ) { |
|
126 | + |
|
127 | + // Set the currency position. |
|
128 | + $position = wpinv_currency_position(); |
|
129 | + |
|
130 | + if ( 'left_space' === $position ) { |
|
131 | + $position = 'left'; |
|
132 | + } |
|
133 | + |
|
134 | + if ( 'right_space' === $position ) { |
|
135 | + $position = 'right'; |
|
136 | + } |
|
137 | + |
|
138 | + if ( $item->user_can_set_their_price() ) { |
|
139 | + $price = max( (float) $item->get_price(), (float) $item->get_minimum_price() ); |
|
140 | + $minimum = (float) $item->get_minimum_price(); |
|
141 | + $validate_minimum = ''; |
|
142 | + $class = ''; |
|
143 | + $data_minimum = ''; |
|
144 | + |
|
145 | + if ( $minimum > 0 ) { |
|
146 | + $validate_minimum = sprintf( |
|
147 | + // translators: %s is the minimum price. |
|
148 | + esc_attr__( 'The minimum allowed amount is %s', 'invoicing' ), |
|
149 | + wp_strip_all_tags( wpinv_price( $minimum, $currency ) ) |
|
150 | + ); |
|
151 | + |
|
152 | + $class = 'getpaid-validate-minimum-amount'; |
|
153 | + |
|
154 | + $data_minimum = "data-minimum-amount='" . esc_attr( getpaid_unstandardize_amount( $minimum ) ) . "'"; |
|
155 | + } |
|
156 | + |
|
157 | + ?> |
|
158 | 158 | <div class="input-group input-group-sm"> |
159 | 159 | <?php if ( 'left' === $position ) : ?> |
160 | 160 | <?php if ( empty( $GLOBALS['aui_bs5'] ) ) : ?> |
@@ -195,46 +195,46 @@ discard block |
||
195 | 195 | |
196 | 196 | <?php |
197 | 197 | |
198 | - } else { |
|
199 | - ?> |
|
198 | + } else { |
|
199 | + ?> |
|
200 | 200 | <span class="getpaid-items-<?php echo (int) $item->get_id(); ?>-view-price"> |
201 | 201 | <?php echo wp_kses_post( wpinv_price( $item->get_price(), $currency ) ); ?> |
202 | 202 | </span> |
203 | 203 | <input name='getpaid-items[<?php echo (int) $item->get_id(); ?>][price]' type='hidden' class='getpaid-item-price-input' value='<?php echo esc_attr( $item->get_price() ); ?>'> |
204 | 204 | <?php |
205 | - } |
|
205 | + } |
|
206 | 206 | |
207 | - printf( |
|
207 | + printf( |
|
208 | 208 | '<small class="d-sm-none text-muted form-text getpaid-mobile-item-subtotal">%s</small>', |
209 | - // translators: %s is the item subtotal. |
|
209 | + // translators: %s is the item subtotal. |
|
210 | 210 | sprintf( esc_html__( 'Subtotal: %s', 'invoicing' ), wp_kses_post( wpinv_price( $item->get_sub_total(), $currency ) ) ) |
211 | 211 | ); |
212 | - } |
|
212 | + } |
|
213 | 213 | |
214 | - // Item quantity. |
|
215 | - if ( 'quantity' === $key ) { |
|
214 | + // Item quantity. |
|
215 | + if ( 'quantity' === $key ) { |
|
216 | 216 | |
217 | - if ( $item->allows_quantities() ) { |
|
218 | - ?> |
|
217 | + if ( $item->allows_quantities() ) { |
|
218 | + ?> |
|
219 | 219 | <input name='getpaid-items[<?php echo (int) $item->get_id(); ?>][quantity]' type="number" step="any" style='width: 64px; line-height: 1; min-height: 35px;' class='getpaid-item-quantity-input p-1 align-middle font-weight-normal shadow-none m-0 rounded-0 text-center border' value='<?php echo (float) $item->get_quantity() == 0 ? 1 : (float) $item->get_quantity(); ?>' min='1' <?php echo null !== $max_qty ? 'max="' . (float) $max_qty . '"' : ''; ?> required> |
220 | 220 | <?php |
221 | - } else { |
|
222 | - ?> |
|
221 | + } else { |
|
222 | + ?> |
|
223 | 223 | <span class="getpaid-items-<?php echo (int) $item->get_id(); ?>-view-quantity"> |
224 | 224 | <?php echo (float) $item->get_quantity(); ?> |
225 | 225 | </span> |
226 | 226 | <input type='hidden' name='getpaid-items[<?php echo (int) $item->get_id(); ?>][quantity]' class='getpaid-item-quantity-input' value='<?php echo (float) $item->get_quantity(); ?>'> |
227 | 227 | <?php |
228 | - } |
|
228 | + } |
|
229 | 229 | } |
230 | 230 | |
231 | - // Item sub total. |
|
232 | - if ( 'subtotal' === $key ) { |
|
233 | - echo wp_kses_post( wpinv_price( $item->get_sub_total(), $currency ) ); |
|
234 | - } |
|
231 | + // Item sub total. |
|
232 | + if ( 'subtotal' === $key ) { |
|
233 | + echo wp_kses_post( wpinv_price( $item->get_sub_total(), $currency ) ); |
|
234 | + } |
|
235 | 235 | |
236 | - do_action( "getpaid_payment_form_cart_item_$key", $item, $form ); |
|
237 | - ?> |
|
236 | + do_action( "getpaid_payment_form_cart_item_$key", $item, $form ); |
|
237 | + ?> |
|
238 | 238 | |
239 | 239 | </div> |
240 | 240 |
@@ -18,63 +18,63 @@ |
||
18 | 18 | <?php foreach ( array_keys( $columns ) as $column ) : ?> |
19 | 19 | <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr( $column ); ?>"> |
20 | 20 | <?php |
21 | - // Fires before printing a line item column. |
|
22 | - do_action( "getpaid_email_line_item_before_$column", $item, $invoice ); |
|
21 | + // Fires before printing a line item column. |
|
22 | + do_action( "getpaid_email_line_item_before_$column", $item, $invoice ); |
|
23 | 23 | |
24 | - // Item name. |
|
25 | - if ( 'name' == $column ) { |
|
26 | - $has_featured_image = has_post_thumbnail( $item->get_id() ); |
|
24 | + // Item name. |
|
25 | + if ( 'name' == $column ) { |
|
26 | + $has_featured_image = has_post_thumbnail( $item->get_id() ); |
|
27 | 27 | |
28 | - if ( $has_featured_image ) { |
|
29 | - echo '<div class="getpaid-email-item-image-wrap" style="min-height:80px">'; |
|
30 | - echo '<div class="getpaid-email-image-wrap" style="display:inline-block;width:80px;height:80px;">'; |
|
31 | - echo get_the_post_thumbnail( $item->get_id(), array( 75, 75 ), array( 'class' => 'wpinv-email-item-image' ) ); |
|
32 | - echo '</div>'; |
|
33 | - echo '<div class="getpaid-email-item-name-wrap" style="display:inline-block;vertical-align:top;max-width:360px;">'; |
|
34 | - } |
|
28 | + if ( $has_featured_image ) { |
|
29 | + echo '<div class="getpaid-email-item-image-wrap" style="min-height:80px">'; |
|
30 | + echo '<div class="getpaid-email-image-wrap" style="display:inline-block;width:80px;height:80px;">'; |
|
31 | + echo get_the_post_thumbnail( $item->get_id(), array( 75, 75 ), array( 'class' => 'wpinv-email-item-image' ) ); |
|
32 | + echo '</div>'; |
|
33 | + echo '<div class="getpaid-email-item-name-wrap" style="display:inline-block;vertical-align:top;max-width:360px;">'; |
|
34 | + } |
|
35 | 35 | |
36 | - // Display the name. |
|
37 | - echo '<div class="wpinv_email_cart_item_title">' . esc_html( $item->get_name() ) . '</div>'; |
|
36 | + // Display the name. |
|
37 | + echo '<div class="wpinv_email_cart_item_title">' . esc_html( $item->get_name() ) . '</div>'; |
|
38 | 38 | |
39 | - // And an optional description. |
|
40 | - $description = $item->get_description(); |
|
39 | + // And an optional description. |
|
40 | + $description = $item->get_description(); |
|
41 | 41 | |
42 | - if ( ! empty( $description ) ) { |
|
43 | - echo "<p class='small'>" . wp_kses_post( $description ) . "</p>"; |
|
44 | - } |
|
42 | + if ( ! empty( $description ) ) { |
|
43 | + echo "<p class='small'>" . wp_kses_post( $description ) . "</p>"; |
|
44 | + } |
|
45 | 45 | |
46 | - if ( $has_featured_image ) { |
|
47 | - echo '</div>'; |
|
48 | - echo '</div>'; |
|
49 | - } |
|
50 | - } |
|
46 | + if ( $has_featured_image ) { |
|
47 | + echo '</div>'; |
|
48 | + echo '</div>'; |
|
49 | + } |
|
50 | + } |
|
51 | 51 | |
52 | - // Item price. |
|
53 | - if ( 'price' == $column ) { |
|
54 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
55 | - $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
|
56 | - wpinv_the_price( $price, $invoice->get_currency() ); |
|
57 | - } |
|
52 | + // Item price. |
|
53 | + if ( 'price' == $column ) { |
|
54 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
55 | + $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
|
56 | + wpinv_the_price( $price, $invoice->get_currency() ); |
|
57 | + } |
|
58 | 58 | |
59 | - // Item quantity. |
|
60 | - if ( 'quantity' == $column ) { |
|
61 | - echo (float) $item->get_quantity(); |
|
62 | - } |
|
59 | + // Item quantity. |
|
60 | + if ( 'quantity' == $column ) { |
|
61 | + echo (float) $item->get_quantity(); |
|
62 | + } |
|
63 | 63 | |
64 | - // Tax rate. |
|
65 | - if ( 'tax_rate' == $column ) { |
|
66 | - echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
67 | - } |
|
64 | + // Tax rate. |
|
65 | + if ( 'tax_rate' == $column ) { |
|
66 | + echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
67 | + } |
|
68 | 68 | |
69 | - // Item sub total. |
|
70 | - if ( 'subtotal' == $column ) { |
|
71 | - $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
|
72 | - wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
73 | - } |
|
69 | + // Item sub total. |
|
70 | + if ( 'subtotal' == $column ) { |
|
71 | + $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
|
72 | + wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
73 | + } |
|
74 | 74 | |
75 | - // Fires when printing a line item column. |
|
76 | - do_action( "getpaid_email_line_item_$column", $item, $invoice ); |
|
77 | - ?> |
|
75 | + // Fires when printing a line item column. |
|
76 | + do_action( "getpaid_email_line_item_$column", $item, $invoice ); |
|
77 | + ?> |
|
78 | 78 | </td> |
79 | 79 | <?php endforeach; ?> |
80 | 80 | </tr> |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | add_action( 'init', array( $this, 'register_erasers_exporters' ) ); |
30 | 30 | } |
31 | 31 | |
32 | - /** |
|
32 | + /** |
|
33 | 33 | * Initial registration of privacy erasers and exporters. |
34 | 34 | * |
35 | 35 | * Due to the use of translation functions, this should run only after plugins loaded. |
@@ -49,25 +49,25 @@ discard block |
||
49 | 49 | public function get_privacy_message() { |
50 | 50 | |
51 | 51 | $content = '<div class="wp-suggested-text">' . |
52 | - '<h2>' . __( 'Invoices and checkout', 'invoicing' ) . '</h2>' . |
|
53 | - '<p class="privacy-policy-tutorial">' . __( 'Example privacy texts.', 'invoicing' ) . '</p>' . |
|
54 | - '<p>' . __( 'We collect information about you during the checkout process on our site. This information may include, but is not limited to, your name, email address, phone number, address, IP and any other details that might be requested from you for the purpose of processing your payment and retaining your invoice details for legal reasons.', 'invoicing' ) . '</p>' . |
|
55 | - '<p>' . __( 'Handling this data also allows us to:', 'invoicing' ) . '</p>' . |
|
56 | - '<ul>' . |
|
57 | - '<li>' . __( '- Send you important account/invoice/service information.', 'invoicing' ) . '</li>' . |
|
58 | - '<li>' . __( '- Estimate taxes based on your location.', 'invoicing' ) . '</li>' . |
|
59 | - '<li>' . __( '- Respond to your queries or complaints.', 'invoicing' ) . '</li>' . |
|
60 | - '<li>' . __( '- Process payments and to prevent fraudulent transactions. We do this on the basis of our legitimate business interests.', 'invoicing' ) . '</li>' . |
|
61 | - '<li>' . __( '- Retain historical payment and invoice history. We do this on the basis of legal obligations.', 'invoicing' ) . '</li>' . |
|
62 | - '<li>' . __( '- Set up and administer your account, provide technical and/or customer support, and to verify your identity. We do this on the basis of our legitimate business interests.', 'invoicing' ) . '</li>' . |
|
63 | - '</ul>' . |
|
64 | - '<p>' . __( 'In addition to collecting information at checkout we may also use and store your contact details when manually creating invoices for require payments relating to prior contractual agreements or agreed terms.', 'invoicing' ) . '</p>' . |
|
65 | - '<h2>' . __( 'What we share with others', 'invoicing' ) . '</h2>' . |
|
66 | - '<p>' . __( 'We share information with third parties who help us provide our payment and invoicing services to you; for example --', 'invoicing' ) . '</p>' . |
|
67 | - '<p class="privacy-policy-tutorial">' . __( 'In this subsection you should list which third party payment processors you’re using to take payments since these may handle customer data. We’ve included PayPal as an example, but you should remove this if you’re not using PayPal.', 'invoicing' ) . '</p>' . |
|
68 | - '<p>' . __( 'We accept payments through PayPal. When processing payments, some of your data will be passed to PayPal, including information required to process or support the payment, such as the purchase total and billing information.', 'invoicing' ) . '</p>' . |
|
69 | - '<p>' . __( 'Please see the <a href="https://www.paypal.com/us/webapps/mpp/ua/privacy-full">PayPal Privacy Policy</a> for more details.', 'invoicing' ) . '</p>' . |
|
70 | - '</div>'; |
|
52 | + '<h2>' . __( 'Invoices and checkout', 'invoicing' ) . '</h2>' . |
|
53 | + '<p class="privacy-policy-tutorial">' . __( 'Example privacy texts.', 'invoicing' ) . '</p>' . |
|
54 | + '<p>' . __( 'We collect information about you during the checkout process on our site. This information may include, but is not limited to, your name, email address, phone number, address, IP and any other details that might be requested from you for the purpose of processing your payment and retaining your invoice details for legal reasons.', 'invoicing' ) . '</p>' . |
|
55 | + '<p>' . __( 'Handling this data also allows us to:', 'invoicing' ) . '</p>' . |
|
56 | + '<ul>' . |
|
57 | + '<li>' . __( '- Send you important account/invoice/service information.', 'invoicing' ) . '</li>' . |
|
58 | + '<li>' . __( '- Estimate taxes based on your location.', 'invoicing' ) . '</li>' . |
|
59 | + '<li>' . __( '- Respond to your queries or complaints.', 'invoicing' ) . '</li>' . |
|
60 | + '<li>' . __( '- Process payments and to prevent fraudulent transactions. We do this on the basis of our legitimate business interests.', 'invoicing' ) . '</li>' . |
|
61 | + '<li>' . __( '- Retain historical payment and invoice history. We do this on the basis of legal obligations.', 'invoicing' ) . '</li>' . |
|
62 | + '<li>' . __( '- Set up and administer your account, provide technical and/or customer support, and to verify your identity. We do this on the basis of our legitimate business interests.', 'invoicing' ) . '</li>' . |
|
63 | + '</ul>' . |
|
64 | + '<p>' . __( 'In addition to collecting information at checkout we may also use and store your contact details when manually creating invoices for require payments relating to prior contractual agreements or agreed terms.', 'invoicing' ) . '</p>' . |
|
65 | + '<h2>' . __( 'What we share with others', 'invoicing' ) . '</h2>' . |
|
66 | + '<p>' . __( 'We share information with third parties who help us provide our payment and invoicing services to you; for example --', 'invoicing' ) . '</p>' . |
|
67 | + '<p class="privacy-policy-tutorial">' . __( 'In this subsection you should list which third party payment processors you’re using to take payments since these may handle customer data. We’ve included PayPal as an example, but you should remove this if you’re not using PayPal.', 'invoicing' ) . '</p>' . |
|
68 | + '<p>' . __( 'We accept payments through PayPal. When processing payments, some of your data will be passed to PayPal, including information required to process or support the payment, such as the purchase total and billing information.', 'invoicing' ) . '</p>' . |
|
69 | + '<p>' . __( 'Please see the <a href="https://www.paypal.com/us/webapps/mpp/ua/privacy-full">PayPal Privacy Policy</a> for more details.', 'invoicing' ) . '</p>' . |
|
70 | + '</div>'; |
|
71 | 71 | |
72 | 72 | return apply_filters( 'wpinv_privacy_policy_content', $content ); |
73 | 73 | } |
@@ -12,492 +12,492 @@ |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Invoice_Notification_Emails { |
14 | 14 | |
15 | - /** |
|
16 | - * The array of invoice email actions. |
|
17 | - * |
|
18 | - * @param array |
|
19 | - */ |
|
20 | - public $invoice_actions; |
|
21 | - |
|
22 | - /** |
|
23 | - * Class constructor |
|
24 | - * |
|
25 | - */ |
|
26 | - public function __construct() { |
|
27 | - |
|
28 | - $this->invoice_actions = apply_filters( |
|
29 | - 'getpaid_notification_email_invoice_triggers', |
|
30 | - array( |
|
31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
32 | - 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
33 | - 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
34 | - 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
35 | - 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
36 | - 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
37 | - 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
38 | - 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
39 | - 'getpaid_new_customer_note' => 'user_note', |
|
40 | - 'getpaid_daily_maintenance' => 'overdue', |
|
41 | - ) |
|
42 | - ); |
|
43 | - |
|
44 | - add_action( 'init', array( $this, 'init_hooks' ) ); |
|
45 | - } |
|
46 | - |
|
47 | - /** |
|
48 | - * Registers email hooks. |
|
49 | - */ |
|
50 | - public function init_hooks() { |
|
51 | - |
|
52 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
53 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
54 | - |
|
55 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
56 | - $this->init_email_type_hook( $hook, $email_type ); |
|
57 | - } |
|
58 | - } |
|
59 | - |
|
60 | - /** |
|
61 | - * Registers an email hook for an invoice action. |
|
62 | - * |
|
63 | - * @param string $hook |
|
64 | - * @param string|array $email_type |
|
65 | - */ |
|
66 | - public function init_email_type_hook( $hook, $email_type ) { |
|
67 | - |
|
68 | - $email_type = wpinv_parse_list( $email_type ); |
|
69 | - |
|
70 | - foreach ( $email_type as $type ) { |
|
71 | - |
|
72 | - $email = new GetPaid_Notification_Email( $type ); |
|
73 | - |
|
74 | - // Abort if it is not active. |
|
75 | - if ( ! $email->is_active() ) { |
|
76 | - continue; |
|
77 | - } |
|
78 | - |
|
79 | - if ( method_exists( $this, $type ) ) { |
|
80 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
81 | - continue; |
|
82 | - } |
|
83 | - |
|
84 | - do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
85 | - } |
|
86 | - |
|
87 | - } |
|
88 | - |
|
89 | - /** |
|
90 | - * Filters invoice merge tags. |
|
91 | - * |
|
92 | - * @param array $merge_tags |
|
93 | - * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
94 | - */ |
|
95 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
96 | - |
|
97 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
98 | - return array_merge( |
|
99 | - $merge_tags, |
|
100 | - $this->get_invoice_merge_tags( $object ) |
|
101 | - ); |
|
102 | - } |
|
103 | - |
|
104 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
105 | - return array_merge( |
|
106 | - $merge_tags, |
|
107 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
108 | - ); |
|
109 | - } |
|
110 | - |
|
111 | - return $merge_tags; |
|
112 | - |
|
113 | - } |
|
114 | - |
|
115 | - /** |
|
116 | - * Generates invoice merge tags. |
|
117 | - * |
|
118 | - * @param WPInv_Invoice $invoice |
|
119 | - * @return array |
|
120 | - */ |
|
121 | - public function get_invoice_merge_tags( $invoice ) { |
|
122 | - |
|
123 | - // Abort if it does not exist. |
|
124 | - if ( ! $invoice->get_id() ) { |
|
125 | - return array(); |
|
126 | - } |
|
127 | - |
|
128 | - $due_date = $invoice->get_due_date(); |
|
129 | - $due_date = empty( $due_date ) ? time() + MINUTE_IN_SECONDS : strtotime( $due_date ) + ( (int) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); |
|
130 | - $merge_tags = array( |
|
131 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
132 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
133 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
134 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
135 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
136 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
137 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
138 | - '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
139 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
140 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
141 | - '{invoice_receipt_link}' => esc_url( $invoice->get_receipt_url() ), |
|
142 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
143 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
144 | - '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
145 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
146 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
147 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
148 | - '{is_was}' => $due_date < time() ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
149 | - ); |
|
150 | - |
|
151 | - $payment_form_data = $invoice->get_meta( 'payment_form_data', true ); |
|
152 | - |
|
153 | - if ( is_array( $payment_form_data ) ) { |
|
154 | - |
|
155 | - foreach ( $payment_form_data as $label => $value ) { |
|
156 | - |
|
157 | - $label = preg_replace( '/[^a-z0-9]+/', '_', strtolower( $label ) ); |
|
158 | - $value = is_array( $value ) ? implode( ', ', $value ) : $value; |
|
159 | - |
|
160 | - if ( is_scalar( $value ) ) { |
|
161 | - $merge_tags[ "{{$label}}" ] = wp_kses_post( $value ); |
|
162 | - } |
|
163 | - } |
|
164 | - } |
|
165 | - |
|
166 | - return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
167 | - } |
|
168 | - |
|
169 | - /** |
|
170 | - * Helper function to send an email. |
|
171 | - * |
|
172 | - * @param WPInv_Invoice $invoice |
|
173 | - * @param GetPaid_Notification_Email $email |
|
174 | - * @param string $type |
|
175 | - * @param string|array $recipients |
|
176 | - * @param array $extra_args Extra template args. |
|
177 | - */ |
|
178 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
179 | - |
|
180 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
181 | - |
|
182 | - $skip = $invoice->is_free() && wpinv_get_option( 'skip_email_free_invoice' ); |
|
183 | - if ( apply_filters( 'getpaid_skip_invoice_email', $skip, $type, $invoice ) ) { |
|
184 | - return; |
|
185 | - } |
|
186 | - |
|
187 | - $mailer = new GetPaid_Notification_Email_Sender(); |
|
188 | - $merge_tags = $email->get_merge_tags(); |
|
189 | - |
|
190 | - $result = $mailer->send( |
|
191 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
192 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
193 | - $email->get_content( $merge_tags, $extra_args ), |
|
194 | - $email->get_attachments() |
|
195 | - ); |
|
196 | - |
|
197 | - // Maybe send a copy to the admin. |
|
198 | - if ( $email->include_admin_bcc() ) { |
|
199 | - $mailer->send( |
|
200 | - wpinv_get_admin_email(), |
|
201 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
202 | - $email->get_content( $merge_tags ), |
|
203 | - $email->get_attachments() |
|
204 | - ); |
|
205 | - } |
|
206 | - |
|
207 | - if ( $result ) { |
|
208 | - $invoice->add_system_note( |
|
209 | - sprintf( |
|
210 | - // translators: %1 is the email type, %2 is the invoice recipient. |
|
211 | - __( 'Successfully sent %1$s notification email to %2$s.', 'invoicing' ), |
|
212 | - sanitize_key( $type ), |
|
213 | - $email->is_admin_email() ? __( 'admin', 'invoicing' ) : __( 'the customer', 'invoicing' ) |
|
214 | - ) |
|
215 | - ); |
|
216 | - } else { |
|
217 | - $invoice->add_system_note( |
|
218 | - sprintf( |
|
219 | - // translators: %1 is the email type, %2 is the invoice recipient. |
|
220 | - __( 'Failed sending %1$s notification email to %2$s.', 'invoicing' ), |
|
221 | - sanitize_key( $type ), |
|
222 | - $email->is_admin_email() ? __( 'admin', 'invoicing' ) : __( 'the customer', 'invoicing' ) |
|
223 | - ) |
|
224 | - ); |
|
225 | - } |
|
226 | - |
|
227 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
228 | - |
|
229 | - return $result; |
|
230 | - } |
|
231 | - |
|
232 | - /** |
|
233 | - * Also send emails to any cc users. |
|
234 | - * |
|
235 | - * @param array $recipients |
|
236 | - * @param GetPaid_Notification_Email $email |
|
237 | - */ |
|
238 | - public function filter_email_recipients( $recipients, $email ) { |
|
239 | - |
|
240 | - if ( ! $email->is_admin_email() ) { |
|
241 | - $cc = $email->object->get_email_cc(); |
|
242 | - $cc_2 = get_user_meta( $email->object->get_user_id(), '_wpinv_email_cc', true ); |
|
243 | - |
|
244 | - if ( ! empty( $cc ) ) { |
|
245 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
246 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
247 | - } |
|
248 | - |
|
249 | - if ( ! empty( $cc_2 ) ) { |
|
250 | - $cc_2 = array_map( 'sanitize_email', wpinv_parse_list( $cc_2 ) ); |
|
251 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc_2 ) ) ); |
|
252 | - } |
|
253 | - } |
|
254 | - |
|
255 | - return $recipients; |
|
256 | - |
|
257 | - } |
|
258 | - |
|
259 | - /** |
|
260 | - * Sends a new invoice notification. |
|
261 | - * |
|
262 | - * @param WPInv_Invoice $invoice |
|
263 | - */ |
|
264 | - public function new_invoice( $invoice ) { |
|
265 | - |
|
266 | - // Only send this email for invoices created via the admin page. |
|
267 | - if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
268 | - return; |
|
269 | - } |
|
270 | - |
|
271 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
272 | - $recipient = wpinv_get_admin_email(); |
|
273 | - |
|
274 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
275 | - |
|
276 | - } |
|
277 | - |
|
278 | - /** |
|
279 | - * Sends a cancelled invoice notification. |
|
280 | - * |
|
281 | - * @param WPInv_Invoice $invoice |
|
282 | - */ |
|
283 | - public function cancelled_invoice( $invoice ) { |
|
284 | - |
|
285 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
286 | - $recipient = $invoice->get_email(); |
|
287 | - |
|
288 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
289 | - } |
|
290 | - |
|
291 | - /** |
|
292 | - * Sends a failed invoice notification. |
|
293 | - * |
|
294 | - * @param WPInv_Invoice $invoice |
|
295 | - */ |
|
296 | - public function failed_invoice( $invoice ) { |
|
297 | - |
|
298 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
299 | - $recipient = wpinv_get_admin_email(); |
|
300 | - |
|
301 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
302 | - |
|
303 | - } |
|
304 | - |
|
305 | - /** |
|
306 | - * Sends a notification whenever an invoice is put on hold. |
|
307 | - * |
|
308 | - * @param WPInv_Invoice $invoice |
|
309 | - */ |
|
310 | - public function onhold_invoice( $invoice ) { |
|
311 | - |
|
312 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
313 | - $recipient = $invoice->get_email(); |
|
314 | - |
|
315 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
316 | - |
|
317 | - } |
|
318 | - |
|
319 | - /** |
|
320 | - * Sends a notification whenever an invoice is marked as processing payment. |
|
321 | - * |
|
322 | - * @param WPInv_Invoice $invoice |
|
323 | - */ |
|
324 | - public function processing_invoice( $invoice ) { |
|
325 | - |
|
326 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
327 | - $recipient = $invoice->get_email(); |
|
328 | - |
|
329 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
330 | - |
|
331 | - } |
|
332 | - |
|
333 | - /** |
|
334 | - * Sends a notification whenever an invoice is paid. |
|
335 | - * |
|
336 | - * @param WPInv_Invoice $invoice |
|
337 | - */ |
|
338 | - public function completed_invoice( $invoice ) { |
|
339 | - |
|
340 | - // (Maybe) abort if it is a renewal invoice. |
|
341 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
342 | - return; |
|
343 | - } |
|
344 | - |
|
345 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
346 | - $recipient = $invoice->get_email(); |
|
347 | - |
|
348 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
349 | - |
|
350 | - } |
|
15 | + /** |
|
16 | + * The array of invoice email actions. |
|
17 | + * |
|
18 | + * @param array |
|
19 | + */ |
|
20 | + public $invoice_actions; |
|
21 | + |
|
22 | + /** |
|
23 | + * Class constructor |
|
24 | + * |
|
25 | + */ |
|
26 | + public function __construct() { |
|
27 | + |
|
28 | + $this->invoice_actions = apply_filters( |
|
29 | + 'getpaid_notification_email_invoice_triggers', |
|
30 | + array( |
|
31 | + 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
32 | + 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
33 | + 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
34 | + 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
35 | + 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
36 | + 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
37 | + 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
38 | + 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
39 | + 'getpaid_new_customer_note' => 'user_note', |
|
40 | + 'getpaid_daily_maintenance' => 'overdue', |
|
41 | + ) |
|
42 | + ); |
|
43 | + |
|
44 | + add_action( 'init', array( $this, 'init_hooks' ) ); |
|
45 | + } |
|
46 | + |
|
47 | + /** |
|
48 | + * Registers email hooks. |
|
49 | + */ |
|
50 | + public function init_hooks() { |
|
51 | + |
|
52 | + add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
53 | + add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
54 | + |
|
55 | + foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
56 | + $this->init_email_type_hook( $hook, $email_type ); |
|
57 | + } |
|
58 | + } |
|
59 | + |
|
60 | + /** |
|
61 | + * Registers an email hook for an invoice action. |
|
62 | + * |
|
63 | + * @param string $hook |
|
64 | + * @param string|array $email_type |
|
65 | + */ |
|
66 | + public function init_email_type_hook( $hook, $email_type ) { |
|
67 | + |
|
68 | + $email_type = wpinv_parse_list( $email_type ); |
|
69 | + |
|
70 | + foreach ( $email_type as $type ) { |
|
71 | + |
|
72 | + $email = new GetPaid_Notification_Email( $type ); |
|
73 | + |
|
74 | + // Abort if it is not active. |
|
75 | + if ( ! $email->is_active() ) { |
|
76 | + continue; |
|
77 | + } |
|
78 | + |
|
79 | + if ( method_exists( $this, $type ) ) { |
|
80 | + add_action( $hook, array( $this, $type ), 100, 2 ); |
|
81 | + continue; |
|
82 | + } |
|
83 | + |
|
84 | + do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
85 | + } |
|
86 | + |
|
87 | + } |
|
88 | + |
|
89 | + /** |
|
90 | + * Filters invoice merge tags. |
|
91 | + * |
|
92 | + * @param array $merge_tags |
|
93 | + * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
94 | + */ |
|
95 | + public function invoice_merge_tags( $merge_tags, $object ) { |
|
96 | + |
|
97 | + if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
98 | + return array_merge( |
|
99 | + $merge_tags, |
|
100 | + $this->get_invoice_merge_tags( $object ) |
|
101 | + ); |
|
102 | + } |
|
103 | + |
|
104 | + if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
105 | + return array_merge( |
|
106 | + $merge_tags, |
|
107 | + $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
108 | + ); |
|
109 | + } |
|
110 | + |
|
111 | + return $merge_tags; |
|
112 | + |
|
113 | + } |
|
114 | + |
|
115 | + /** |
|
116 | + * Generates invoice merge tags. |
|
117 | + * |
|
118 | + * @param WPInv_Invoice $invoice |
|
119 | + * @return array |
|
120 | + */ |
|
121 | + public function get_invoice_merge_tags( $invoice ) { |
|
122 | + |
|
123 | + // Abort if it does not exist. |
|
124 | + if ( ! $invoice->get_id() ) { |
|
125 | + return array(); |
|
126 | + } |
|
127 | + |
|
128 | + $due_date = $invoice->get_due_date(); |
|
129 | + $due_date = empty( $due_date ) ? time() + MINUTE_IN_SECONDS : strtotime( $due_date ) + ( (int) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); |
|
130 | + $merge_tags = array( |
|
131 | + '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
132 | + '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
133 | + '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
134 | + '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
135 | + '{email}' => sanitize_email( $invoice->get_email() ), |
|
136 | + '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
137 | + '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
138 | + '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
139 | + '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
140 | + '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
141 | + '{invoice_receipt_link}' => esc_url( $invoice->get_receipt_url() ), |
|
142 | + '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
143 | + '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
144 | + '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
145 | + '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
146 | + '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
147 | + '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
148 | + '{is_was}' => $due_date < time() ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
149 | + ); |
|
150 | + |
|
151 | + $payment_form_data = $invoice->get_meta( 'payment_form_data', true ); |
|
152 | + |
|
153 | + if ( is_array( $payment_form_data ) ) { |
|
154 | + |
|
155 | + foreach ( $payment_form_data as $label => $value ) { |
|
156 | + |
|
157 | + $label = preg_replace( '/[^a-z0-9]+/', '_', strtolower( $label ) ); |
|
158 | + $value = is_array( $value ) ? implode( ', ', $value ) : $value; |
|
159 | + |
|
160 | + if ( is_scalar( $value ) ) { |
|
161 | + $merge_tags[ "{{$label}}" ] = wp_kses_post( $value ); |
|
162 | + } |
|
163 | + } |
|
164 | + } |
|
165 | + |
|
166 | + return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
167 | + } |
|
351 | 168 | |
352 | - /** |
|
353 | - * Sends a notification whenever an invoice is refunded. |
|
354 | - * |
|
355 | - * @param WPInv_Invoice $invoice |
|
356 | - */ |
|
357 | - public function refunded_invoice( $invoice ) { |
|
358 | - |
|
359 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
360 | - $recipient = $invoice->get_email(); |
|
361 | - |
|
362 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
363 | - |
|
364 | - } |
|
169 | + /** |
|
170 | + * Helper function to send an email. |
|
171 | + * |
|
172 | + * @param WPInv_Invoice $invoice |
|
173 | + * @param GetPaid_Notification_Email $email |
|
174 | + * @param string $type |
|
175 | + * @param string|array $recipients |
|
176 | + * @param array $extra_args Extra template args. |
|
177 | + */ |
|
178 | + public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
365 | 179 | |
366 | - /** |
|
367 | - * Notifies a user about new invoices |
|
368 | - * |
|
369 | - * @param WPInv_Invoice $invoice |
|
370 | - * @param bool $force |
|
371 | - */ |
|
372 | - public function user_invoice( $invoice, $force = false ) { |
|
180 | + do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
373 | 181 | |
374 | - if ( ! $force && ! empty( $GLOBALS['wpinv_skip_invoice_notification'] ) ) { |
|
375 | - return; |
|
376 | - } |
|
377 | - |
|
378 | - // Only send this email for invoices created via the admin page. |
|
379 | - if ( ! $invoice->is_type( 'invoice' ) || ( empty( $force ) && $invoice->is_paid() ) || ( empty( $force ) && $this->is_payment_form_invoice( $invoice->get_id() ) ) ) { |
|
380 | - return; |
|
381 | - } |
|
382 | - |
|
383 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
384 | - $recipient = $invoice->get_email(); |
|
385 | - |
|
386 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
387 | - |
|
388 | - } |
|
389 | - |
|
390 | - /** |
|
391 | - * Checks if an invoice is a payment form invoice. |
|
392 | - * |
|
393 | - * @param int $invoice |
|
394 | - * @return bool |
|
395 | - */ |
|
396 | - public function is_payment_form_invoice( $invoice ) { |
|
397 | - $created_via = get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
398 | - $is_payment_form_invoice = 'payment_form' === $created_via || 'geodirectory' === $created_via; |
|
399 | - $is_payment_form_invoice = apply_filters( 'getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice ); |
|
400 | - return empty( $_GET['getpaid-admin-action'] ) && $is_payment_form_invoice; |
|
401 | - } |
|
402 | - |
|
403 | - /** |
|
404 | - * Notifies admin about new invoice notes |
|
405 | - * |
|
406 | - * @param WPInv_Invoice $invoice |
|
407 | - * @param string $note |
|
408 | - */ |
|
409 | - public function user_note( $invoice, $note ) { |
|
410 | - |
|
411 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
412 | - $recipient = $invoice->get_email(); |
|
413 | - |
|
414 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
415 | - |
|
416 | - } |
|
417 | - |
|
418 | - /** |
|
419 | - * (Force) Sends overdue notices. |
|
420 | - * |
|
421 | - * @param WPInv_Invoice $invoice |
|
422 | - */ |
|
423 | - public function force_send_overdue_notice( $invoice ) { |
|
424 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
425 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
426 | - } |
|
427 | - |
|
428 | - /** |
|
429 | - * Sends overdue notices. |
|
430 | - * |
|
431 | - * @TODO: Create an invoices query class. |
|
432 | - */ |
|
433 | - public function overdue() { |
|
434 | - global $wpdb; |
|
435 | - |
|
436 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
437 | - |
|
438 | - // Fetch reminder days. |
|
439 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
440 | - |
|
441 | - // Abort if non is set. |
|
442 | - if ( empty( $reminder_days ) ) { |
|
443 | - return; |
|
444 | - } |
|
445 | - |
|
446 | - // Retrieve date query. |
|
447 | - $date_query = $this->get_date_query( $reminder_days ); |
|
448 | - |
|
449 | - // Invoices table. |
|
450 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
451 | - |
|
452 | - // Fetch invoices. |
|
453 | - $invoices = $wpdb->get_col( |
|
454 | - "SELECT posts.ID FROM $wpdb->posts as posts |
|
182 | + $skip = $invoice->is_free() && wpinv_get_option( 'skip_email_free_invoice' ); |
|
183 | + if ( apply_filters( 'getpaid_skip_invoice_email', $skip, $type, $invoice ) ) { |
|
184 | + return; |
|
185 | + } |
|
186 | + |
|
187 | + $mailer = new GetPaid_Notification_Email_Sender(); |
|
188 | + $merge_tags = $email->get_merge_tags(); |
|
189 | + |
|
190 | + $result = $mailer->send( |
|
191 | + apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
192 | + $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
193 | + $email->get_content( $merge_tags, $extra_args ), |
|
194 | + $email->get_attachments() |
|
195 | + ); |
|
196 | + |
|
197 | + // Maybe send a copy to the admin. |
|
198 | + if ( $email->include_admin_bcc() ) { |
|
199 | + $mailer->send( |
|
200 | + wpinv_get_admin_email(), |
|
201 | + $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
202 | + $email->get_content( $merge_tags ), |
|
203 | + $email->get_attachments() |
|
204 | + ); |
|
205 | + } |
|
206 | + |
|
207 | + if ( $result ) { |
|
208 | + $invoice->add_system_note( |
|
209 | + sprintf( |
|
210 | + // translators: %1 is the email type, %2 is the invoice recipient. |
|
211 | + __( 'Successfully sent %1$s notification email to %2$s.', 'invoicing' ), |
|
212 | + sanitize_key( $type ), |
|
213 | + $email->is_admin_email() ? __( 'admin', 'invoicing' ) : __( 'the customer', 'invoicing' ) |
|
214 | + ) |
|
215 | + ); |
|
216 | + } else { |
|
217 | + $invoice->add_system_note( |
|
218 | + sprintf( |
|
219 | + // translators: %1 is the email type, %2 is the invoice recipient. |
|
220 | + __( 'Failed sending %1$s notification email to %2$s.', 'invoicing' ), |
|
221 | + sanitize_key( $type ), |
|
222 | + $email->is_admin_email() ? __( 'admin', 'invoicing' ) : __( 'the customer', 'invoicing' ) |
|
223 | + ) |
|
224 | + ); |
|
225 | + } |
|
226 | + |
|
227 | + do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
228 | + |
|
229 | + return $result; |
|
230 | + } |
|
231 | + |
|
232 | + /** |
|
233 | + * Also send emails to any cc users. |
|
234 | + * |
|
235 | + * @param array $recipients |
|
236 | + * @param GetPaid_Notification_Email $email |
|
237 | + */ |
|
238 | + public function filter_email_recipients( $recipients, $email ) { |
|
239 | + |
|
240 | + if ( ! $email->is_admin_email() ) { |
|
241 | + $cc = $email->object->get_email_cc(); |
|
242 | + $cc_2 = get_user_meta( $email->object->get_user_id(), '_wpinv_email_cc', true ); |
|
243 | + |
|
244 | + if ( ! empty( $cc ) ) { |
|
245 | + $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
246 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
247 | + } |
|
248 | + |
|
249 | + if ( ! empty( $cc_2 ) ) { |
|
250 | + $cc_2 = array_map( 'sanitize_email', wpinv_parse_list( $cc_2 ) ); |
|
251 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc_2 ) ) ); |
|
252 | + } |
|
253 | + } |
|
254 | + |
|
255 | + return $recipients; |
|
256 | + |
|
257 | + } |
|
258 | + |
|
259 | + /** |
|
260 | + * Sends a new invoice notification. |
|
261 | + * |
|
262 | + * @param WPInv_Invoice $invoice |
|
263 | + */ |
|
264 | + public function new_invoice( $invoice ) { |
|
265 | + |
|
266 | + // Only send this email for invoices created via the admin page. |
|
267 | + if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
268 | + return; |
|
269 | + } |
|
270 | + |
|
271 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
272 | + $recipient = wpinv_get_admin_email(); |
|
273 | + |
|
274 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
275 | + |
|
276 | + } |
|
277 | + |
|
278 | + /** |
|
279 | + * Sends a cancelled invoice notification. |
|
280 | + * |
|
281 | + * @param WPInv_Invoice $invoice |
|
282 | + */ |
|
283 | + public function cancelled_invoice( $invoice ) { |
|
284 | + |
|
285 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
286 | + $recipient = $invoice->get_email(); |
|
287 | + |
|
288 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
289 | + } |
|
290 | + |
|
291 | + /** |
|
292 | + * Sends a failed invoice notification. |
|
293 | + * |
|
294 | + * @param WPInv_Invoice $invoice |
|
295 | + */ |
|
296 | + public function failed_invoice( $invoice ) { |
|
297 | + |
|
298 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
299 | + $recipient = wpinv_get_admin_email(); |
|
300 | + |
|
301 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
302 | + |
|
303 | + } |
|
304 | + |
|
305 | + /** |
|
306 | + * Sends a notification whenever an invoice is put on hold. |
|
307 | + * |
|
308 | + * @param WPInv_Invoice $invoice |
|
309 | + */ |
|
310 | + public function onhold_invoice( $invoice ) { |
|
311 | + |
|
312 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
313 | + $recipient = $invoice->get_email(); |
|
314 | + |
|
315 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
316 | + |
|
317 | + } |
|
318 | + |
|
319 | + /** |
|
320 | + * Sends a notification whenever an invoice is marked as processing payment. |
|
321 | + * |
|
322 | + * @param WPInv_Invoice $invoice |
|
323 | + */ |
|
324 | + public function processing_invoice( $invoice ) { |
|
325 | + |
|
326 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
327 | + $recipient = $invoice->get_email(); |
|
328 | + |
|
329 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
330 | + |
|
331 | + } |
|
332 | + |
|
333 | + /** |
|
334 | + * Sends a notification whenever an invoice is paid. |
|
335 | + * |
|
336 | + * @param WPInv_Invoice $invoice |
|
337 | + */ |
|
338 | + public function completed_invoice( $invoice ) { |
|
339 | + |
|
340 | + // (Maybe) abort if it is a renewal invoice. |
|
341 | + if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
342 | + return; |
|
343 | + } |
|
344 | + |
|
345 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
346 | + $recipient = $invoice->get_email(); |
|
347 | + |
|
348 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
349 | + |
|
350 | + } |
|
351 | + |
|
352 | + /** |
|
353 | + * Sends a notification whenever an invoice is refunded. |
|
354 | + * |
|
355 | + * @param WPInv_Invoice $invoice |
|
356 | + */ |
|
357 | + public function refunded_invoice( $invoice ) { |
|
358 | + |
|
359 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
360 | + $recipient = $invoice->get_email(); |
|
361 | + |
|
362 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
363 | + |
|
364 | + } |
|
365 | + |
|
366 | + /** |
|
367 | + * Notifies a user about new invoices |
|
368 | + * |
|
369 | + * @param WPInv_Invoice $invoice |
|
370 | + * @param bool $force |
|
371 | + */ |
|
372 | + public function user_invoice( $invoice, $force = false ) { |
|
373 | + |
|
374 | + if ( ! $force && ! empty( $GLOBALS['wpinv_skip_invoice_notification'] ) ) { |
|
375 | + return; |
|
376 | + } |
|
377 | + |
|
378 | + // Only send this email for invoices created via the admin page. |
|
379 | + if ( ! $invoice->is_type( 'invoice' ) || ( empty( $force ) && $invoice->is_paid() ) || ( empty( $force ) && $this->is_payment_form_invoice( $invoice->get_id() ) ) ) { |
|
380 | + return; |
|
381 | + } |
|
382 | + |
|
383 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
384 | + $recipient = $invoice->get_email(); |
|
385 | + |
|
386 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
387 | + |
|
388 | + } |
|
389 | + |
|
390 | + /** |
|
391 | + * Checks if an invoice is a payment form invoice. |
|
392 | + * |
|
393 | + * @param int $invoice |
|
394 | + * @return bool |
|
395 | + */ |
|
396 | + public function is_payment_form_invoice( $invoice ) { |
|
397 | + $created_via = get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
398 | + $is_payment_form_invoice = 'payment_form' === $created_via || 'geodirectory' === $created_via; |
|
399 | + $is_payment_form_invoice = apply_filters( 'getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice ); |
|
400 | + return empty( $_GET['getpaid-admin-action'] ) && $is_payment_form_invoice; |
|
401 | + } |
|
402 | + |
|
403 | + /** |
|
404 | + * Notifies admin about new invoice notes |
|
405 | + * |
|
406 | + * @param WPInv_Invoice $invoice |
|
407 | + * @param string $note |
|
408 | + */ |
|
409 | + public function user_note( $invoice, $note ) { |
|
410 | + |
|
411 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
412 | + $recipient = $invoice->get_email(); |
|
413 | + |
|
414 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
415 | + |
|
416 | + } |
|
417 | + |
|
418 | + /** |
|
419 | + * (Force) Sends overdue notices. |
|
420 | + * |
|
421 | + * @param WPInv_Invoice $invoice |
|
422 | + */ |
|
423 | + public function force_send_overdue_notice( $invoice ) { |
|
424 | + $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
425 | + return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
426 | + } |
|
427 | + |
|
428 | + /** |
|
429 | + * Sends overdue notices. |
|
430 | + * |
|
431 | + * @TODO: Create an invoices query class. |
|
432 | + */ |
|
433 | + public function overdue() { |
|
434 | + global $wpdb; |
|
435 | + |
|
436 | + $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
437 | + |
|
438 | + // Fetch reminder days. |
|
439 | + $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
440 | + |
|
441 | + // Abort if non is set. |
|
442 | + if ( empty( $reminder_days ) ) { |
|
443 | + return; |
|
444 | + } |
|
445 | + |
|
446 | + // Retrieve date query. |
|
447 | + $date_query = $this->get_date_query( $reminder_days ); |
|
448 | + |
|
449 | + // Invoices table. |
|
450 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
451 | + |
|
452 | + // Fetch invoices. |
|
453 | + $invoices = $wpdb->get_col( |
|
454 | + "SELECT posts.ID FROM $wpdb->posts as posts |
|
455 | 455 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
456 | 456 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query" |
457 | 457 | ); |
458 | 458 | |
459 | - foreach ( $invoices as $invoice ) { |
|
459 | + foreach ( $invoices as $invoice ) { |
|
460 | 460 | |
461 | - // Only send this email for invoices created via the admin page. |
|
462 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
463 | - $invoice = new WPInv_Invoice( $invoice ); |
|
464 | - $email->object = $invoice; |
|
461 | + // Only send this email for invoices created via the admin page. |
|
462 | + if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
463 | + $invoice = new WPInv_Invoice( $invoice ); |
|
464 | + $email->object = $invoice; |
|
465 | 465 | |
466 | - if ( $invoice->needs_payment() && ! $invoice->is_renewal() ) { |
|
467 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
468 | - } |
|
469 | - } |
|
470 | - } |
|
466 | + if ( $invoice->needs_payment() && ! $invoice->is_renewal() ) { |
|
467 | + $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
468 | + } |
|
469 | + } |
|
470 | + } |
|
471 | 471 | |
472 | - } |
|
472 | + } |
|
473 | 473 | |
474 | - /** |
|
475 | - * Calculates the date query for an invoices query |
|
476 | - * |
|
477 | - * @param array $reminder_days |
|
478 | - * @return string |
|
479 | - */ |
|
480 | - public function get_date_query( $reminder_days ) { |
|
474 | + /** |
|
475 | + * Calculates the date query for an invoices query |
|
476 | + * |
|
477 | + * @param array $reminder_days |
|
478 | + * @return string |
|
479 | + */ |
|
480 | + public function get_date_query( $reminder_days ) { |
|
481 | 481 | |
482 | - $date_query = array( |
|
483 | - 'relation' => 'OR', |
|
484 | - ); |
|
482 | + $date_query = array( |
|
483 | + 'relation' => 'OR', |
|
484 | + ); |
|
485 | 485 | |
486 | - foreach ( $reminder_days as $days ) { |
|
487 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
486 | + foreach ( $reminder_days as $days ) { |
|
487 | + $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
488 | 488 | |
489 | - $date_query[] = array( |
|
490 | - 'year' => $date['year'], |
|
491 | - 'month' => $date['month'], |
|
492 | - 'day' => $date['day'], |
|
493 | - ); |
|
489 | + $date_query[] = array( |
|
490 | + 'year' => $date['year'], |
|
491 | + 'month' => $date['month'], |
|
492 | + 'day' => $date['day'], |
|
493 | + ); |
|
494 | 494 | |
495 | - } |
|
495 | + } |
|
496 | 496 | |
497 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
497 | + $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
498 | 498 | |
499 | - return $date_query->get_sql(); |
|
499 | + return $date_query->get_sql(); |
|
500 | 500 | |
501 | - } |
|
501 | + } |
|
502 | 502 | |
503 | 503 | } |
@@ -13,324 +13,324 @@ |
||
13 | 13 | class GetPaid_Subscription_Notification_Emails { |
14 | 14 | |
15 | 15 | /** |
16 | - * The array of subscription email actions. |
|
17 | - * |
|
18 | - * @param array |
|
19 | - */ |
|
20 | - public $subscription_actions; |
|
16 | + * The array of subscription email actions. |
|
17 | + * |
|
18 | + * @param array |
|
19 | + */ |
|
20 | + public $subscription_actions; |
|
21 | 21 | |
22 | 22 | /** |
23 | - * Class constructor |
|
23 | + * Class constructor |
|
24 | 24 | * |
25 | - */ |
|
26 | - public function __construct() { |
|
27 | - |
|
28 | - $this->subscription_actions = apply_filters( |
|
29 | - 'getpaid_notification_email_subscription_triggers', |
|
30 | - array( |
|
31 | - 'getpaid_subscription_active' => 'subscription_active', |
|
32 | - 'getpaid_subscription_trialling' => 'subscription_trial', |
|
33 | - 'getpaid_subscription_cancelled' => 'subscription_cancelled', |
|
34 | - 'getpaid_subscription_expired' => 'subscription_expired', |
|
35 | - 'getpaid_subscription_completed' => 'subscription_complete', |
|
36 | - 'getpaid_daily_maintenance' => 'renewal_reminder' |
|
37 | - ) |
|
38 | - ); |
|
39 | - |
|
40 | - add_action( 'init', array( $this, 'init_hooks' ) ); |
|
41 | - } |
|
25 | + */ |
|
26 | + public function __construct() { |
|
27 | + |
|
28 | + $this->subscription_actions = apply_filters( |
|
29 | + 'getpaid_notification_email_subscription_triggers', |
|
30 | + array( |
|
31 | + 'getpaid_subscription_active' => 'subscription_active', |
|
32 | + 'getpaid_subscription_trialling' => 'subscription_trial', |
|
33 | + 'getpaid_subscription_cancelled' => 'subscription_cancelled', |
|
34 | + 'getpaid_subscription_expired' => 'subscription_expired', |
|
35 | + 'getpaid_subscription_completed' => 'subscription_complete', |
|
36 | + 'getpaid_daily_maintenance' => 'renewal_reminder' |
|
37 | + ) |
|
38 | + ); |
|
39 | + |
|
40 | + add_action( 'init', array( $this, 'init_hooks' ) ); |
|
41 | + } |
|
42 | 42 | |
43 | 43 | /** |
44 | - * Registers email hooks. |
|
45 | - */ |
|
46 | - public function init_hooks() { |
|
47 | - |
|
48 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'subscription_merge_tags' ), 10, 2 ); |
|
49 | - foreach ( $this->subscription_actions as $hook => $email_type ) { |
|
50 | - |
|
51 | - $email = new GetPaid_Notification_Email( $email_type ); |
|
52 | - |
|
53 | - if ( ! $email->is_active() ) { |
|
54 | - continue; |
|
55 | - } |
|
56 | - |
|
57 | - if ( method_exists( $this, $email_type ) ) { |
|
58 | - add_action( $hook, array( $this, $email_type ), 100, 2 ); |
|
59 | - continue; |
|
60 | - } |
|
61 | - |
|
62 | - do_action( 'getpaid_subscription_notification_email_register_hook', $email_type, $hook ); |
|
63 | - |
|
64 | - } |
|
65 | - |
|
66 | - } |
|
67 | - |
|
68 | - /** |
|
69 | - * Filters subscription merge tags. |
|
70 | - * |
|
71 | - * @param array $merge_tags |
|
72 | - * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
73 | - */ |
|
74 | - public function subscription_merge_tags( $merge_tags, $object ) { |
|
75 | - |
|
76 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
77 | - $merge_tags = array_merge( |
|
78 | - $merge_tags, |
|
79 | - $this->get_subscription_merge_tags( $object ) |
|
80 | - ); |
|
81 | - } |
|
82 | - |
|
83 | - return $merge_tags; |
|
84 | - |
|
85 | - } |
|
86 | - |
|
87 | - /** |
|
88 | - * Generates subscription merge tags. |
|
89 | - * |
|
90 | - * @param WPInv_Subscription $subscription |
|
91 | - * @return array |
|
92 | - */ |
|
93 | - public function get_subscription_merge_tags( $subscription ) { |
|
94 | - |
|
95 | - // Abort if it does not exist. |
|
96 | - if ( ! $subscription->get_id() ) { |
|
97 | - return array(); |
|
98 | - } |
|
99 | - |
|
100 | - $invoice = $subscription->get_parent_invoice(); |
|
101 | - return array( |
|
102 | - '{subscription_renewal_date}' => getpaid_format_date_value( $subscription->get_next_renewal_date(), __( 'Never', 'invoicing' ) ), |
|
103 | - '{subscription_created}' => getpaid_format_date_value( $subscription->get_date_created() ), |
|
104 | - '{subscription_status}' => sanitize_text_field( $subscription->get_status_label() ), |
|
105 | - '{subscription_profile_id}' => sanitize_text_field( $subscription->get_profile_id() ), |
|
106 | - '{subscription_id}' => absint( $subscription->get_id() ), |
|
107 | - '{subscription_recurring_amount}' => sanitize_text_field( wpinv_price( $subscription->get_recurring_amount(), $invoice->get_currency() ) ), |
|
108 | - '{subscription_initial_amount}' => sanitize_text_field( wpinv_price( $subscription->get_initial_amount(), $invoice->get_currency() ) ), |
|
109 | - '{subscription_recurring_period}' => getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ), |
|
110 | - '{subscription_bill_times}' => $subscription->get_bill_times(), |
|
111 | - '{subscription_url}' => esc_url( $subscription->get_view_url() ), |
|
112 | - ); |
|
113 | - |
|
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * Checks if we should send a notification for a subscription. |
|
118 | - * |
|
119 | - * @param WPInv_Invoice $invoice |
|
120 | - * @return bool |
|
121 | - */ |
|
122 | - public function should_send_notification( $invoice ) { |
|
123 | - return 0 != $invoice->get_id(); |
|
124 | - } |
|
125 | - |
|
126 | - /** |
|
127 | - * Returns notification recipients. |
|
128 | - * |
|
129 | - * @param WPInv_Invoice $invoice |
|
130 | - * @return array |
|
131 | - */ |
|
132 | - public function get_recipients( $invoice ) { |
|
133 | - $recipients = array( $invoice->get_email() ); |
|
134 | - |
|
135 | - $cc = $invoice->get_email_cc(); |
|
136 | - |
|
137 | - if ( ! empty( $cc ) ) { |
|
138 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
139 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
140 | - } |
|
141 | - |
|
142 | - return $recipients; |
|
143 | - } |
|
144 | - |
|
145 | - /** |
|
146 | - * Helper function to send an email. |
|
147 | - * |
|
148 | - * @param WPInv_Subscription $subscription |
|
149 | - * @param GetPaid_Notification_Email $email |
|
150 | - * @param string $type |
|
151 | - * @param array $extra_args Extra template args. |
|
152 | - */ |
|
153 | - public function send_email( $subscription, $email, $type, $extra_args = array() ) { |
|
154 | - |
|
155 | - if ( empty( $subscription ) ) { |
|
156 | - return; |
|
157 | - } |
|
158 | - |
|
159 | - if ( is_array( $subscription ) ) { |
|
160 | - $subscription = current( $subscription ); |
|
161 | - } |
|
162 | - |
|
163 | - if ( ! $subscription instanceof WPInv_Subscription ) { |
|
164 | - return; |
|
165 | - } |
|
166 | - |
|
167 | - // Abort in case the parent invoice does not exist. |
|
168 | - $invoice = $subscription->get_parent_invoice(); |
|
169 | - if ( ! $this->should_send_notification( $invoice ) ) { |
|
170 | - return; |
|
171 | - } |
|
172 | - |
|
173 | - if ( apply_filters( 'getpaid_skip_subscription_email', false, $type, $subscription ) ) { |
|
174 | - return; |
|
175 | - } |
|
176 | - |
|
177 | - do_action( 'getpaid_before_send_subscription_notification', $type, $subscription, $email ); |
|
178 | - |
|
179 | - $recipients = $this->get_recipients( $invoice ); |
|
180 | - $mailer = new GetPaid_Notification_Email_Sender(); |
|
181 | - $merge_tags = $email->get_merge_tags(); |
|
182 | - $content = $email->get_content( $merge_tags, $extra_args ); |
|
183 | - $subject = $email->add_merge_tags( $email->get_subject(), $merge_tags ); |
|
184 | - $attachments = $email->get_attachments(); |
|
185 | - |
|
186 | - $result = $mailer->send( |
|
187 | - apply_filters( 'getpaid_subscription_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
188 | - $subject, |
|
189 | - $content, |
|
190 | - $attachments |
|
191 | - ); |
|
192 | - |
|
193 | - // Maybe send a copy to the admin. |
|
194 | - if ( $email->include_admin_bcc() ) { |
|
195 | - $mailer->send( |
|
196 | - wpinv_get_admin_email(), |
|
197 | - $subject . __( ' - ADMIN BCC COPY', 'invoicing' ), |
|
198 | - $content, |
|
199 | - $attachments |
|
200 | - ); |
|
201 | - } |
|
202 | - |
|
203 | - if ( $result ) { |
|
204 | - $invoice->add_system_note( |
|
205 | - sprintf( |
|
206 | - __( 'Successfully sent %1$s notification email to %2$s.', 'invoicing' ), |
|
207 | - sanitize_key( $type ), |
|
208 | - $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
209 | - ) |
|
210 | - ); |
|
211 | - } else { |
|
212 | - $invoice->add_system_note( |
|
213 | - sprintf( |
|
214 | - __( 'Failed sending %1$s notification email to %2$s.', 'invoicing' ), |
|
215 | - sanitize_key( $type ), |
|
216 | - $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
217 | - ) |
|
218 | - ); |
|
219 | - } |
|
220 | - |
|
221 | - do_action( 'getpaid_after_send_subscription_notification', $type, $subscription, $email ); |
|
222 | - |
|
223 | - } |
|
224 | - |
|
225 | - /** |
|
226 | - * Sends a subscription active. |
|
227 | - * |
|
228 | - * @since 2.8.4 |
|
229 | - * |
|
230 | - * @param WPInv_Subscription $subscription |
|
231 | - */ |
|
232 | - public function subscription_active( $subscription ) { |
|
233 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
234 | - |
|
235 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
236 | - } |
|
44 | + * Registers email hooks. |
|
45 | + */ |
|
46 | + public function init_hooks() { |
|
47 | + |
|
48 | + add_filter( 'getpaid_get_email_merge_tags', array( $this, 'subscription_merge_tags' ), 10, 2 ); |
|
49 | + foreach ( $this->subscription_actions as $hook => $email_type ) { |
|
50 | + |
|
51 | + $email = new GetPaid_Notification_Email( $email_type ); |
|
52 | + |
|
53 | + if ( ! $email->is_active() ) { |
|
54 | + continue; |
|
55 | + } |
|
56 | + |
|
57 | + if ( method_exists( $this, $email_type ) ) { |
|
58 | + add_action( $hook, array( $this, $email_type ), 100, 2 ); |
|
59 | + continue; |
|
60 | + } |
|
61 | + |
|
62 | + do_action( 'getpaid_subscription_notification_email_register_hook', $email_type, $hook ); |
|
63 | + |
|
64 | + } |
|
65 | + |
|
66 | + } |
|
237 | 67 | |
238 | 68 | /** |
239 | - * Sends a new trial notification. |
|
240 | - * |
|
241 | - * @param WPInv_Subscription $subscription |
|
242 | - */ |
|
243 | - public function subscription_trial( $subscription ) { |
|
69 | + * Filters subscription merge tags. |
|
70 | + * |
|
71 | + * @param array $merge_tags |
|
72 | + * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
73 | + */ |
|
74 | + public function subscription_merge_tags( $merge_tags, $object ) { |
|
244 | 75 | |
245 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
246 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
76 | + if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
77 | + $merge_tags = array_merge( |
|
78 | + $merge_tags, |
|
79 | + $this->get_subscription_merge_tags( $object ) |
|
80 | + ); |
|
81 | + } |
|
247 | 82 | |
248 | - } |
|
83 | + return $merge_tags; |
|
249 | 84 | |
250 | - /** |
|
251 | - * Sends a cancelled subscription notification. |
|
252 | - * |
|
253 | - * @param WPInv_Subscription $subscription |
|
254 | - */ |
|
255 | - public function subscription_cancelled( $subscription ) { |
|
85 | + } |
|
86 | + |
|
87 | + /** |
|
88 | + * Generates subscription merge tags. |
|
89 | + * |
|
90 | + * @param WPInv_Subscription $subscription |
|
91 | + * @return array |
|
92 | + */ |
|
93 | + public function get_subscription_merge_tags( $subscription ) { |
|
94 | + |
|
95 | + // Abort if it does not exist. |
|
96 | + if ( ! $subscription->get_id() ) { |
|
97 | + return array(); |
|
98 | + } |
|
99 | + |
|
100 | + $invoice = $subscription->get_parent_invoice(); |
|
101 | + return array( |
|
102 | + '{subscription_renewal_date}' => getpaid_format_date_value( $subscription->get_next_renewal_date(), __( 'Never', 'invoicing' ) ), |
|
103 | + '{subscription_created}' => getpaid_format_date_value( $subscription->get_date_created() ), |
|
104 | + '{subscription_status}' => sanitize_text_field( $subscription->get_status_label() ), |
|
105 | + '{subscription_profile_id}' => sanitize_text_field( $subscription->get_profile_id() ), |
|
106 | + '{subscription_id}' => absint( $subscription->get_id() ), |
|
107 | + '{subscription_recurring_amount}' => sanitize_text_field( wpinv_price( $subscription->get_recurring_amount(), $invoice->get_currency() ) ), |
|
108 | + '{subscription_initial_amount}' => sanitize_text_field( wpinv_price( $subscription->get_initial_amount(), $invoice->get_currency() ) ), |
|
109 | + '{subscription_recurring_period}' => getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ), |
|
110 | + '{subscription_bill_times}' => $subscription->get_bill_times(), |
|
111 | + '{subscription_url}' => esc_url( $subscription->get_view_url() ), |
|
112 | + ); |
|
113 | + |
|
114 | + } |
|
256 | 115 | |
257 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
258 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
116 | + /** |
|
117 | + * Checks if we should send a notification for a subscription. |
|
118 | + * |
|
119 | + * @param WPInv_Invoice $invoice |
|
120 | + * @return bool |
|
121 | + */ |
|
122 | + public function should_send_notification( $invoice ) { |
|
123 | + return 0 != $invoice->get_id(); |
|
124 | + } |
|
259 | 125 | |
260 | - } |
|
126 | + /** |
|
127 | + * Returns notification recipients. |
|
128 | + * |
|
129 | + * @param WPInv_Invoice $invoice |
|
130 | + * @return array |
|
131 | + */ |
|
132 | + public function get_recipients( $invoice ) { |
|
133 | + $recipients = array( $invoice->get_email() ); |
|
261 | 134 | |
262 | - /** |
|
263 | - * Sends a subscription expired notification. |
|
264 | - * |
|
265 | - * @param WPInv_Subscription $subscription |
|
266 | - */ |
|
267 | - public function subscription_expired( $subscription ) { |
|
135 | + $cc = $invoice->get_email_cc(); |
|
268 | 136 | |
269 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
270 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
137 | + if ( ! empty( $cc ) ) { |
|
138 | + $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
139 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
140 | + } |
|
271 | 141 | |
272 | - } |
|
142 | + return $recipients; |
|
143 | + } |
|
273 | 144 | |
274 | - /** |
|
275 | - * Sends a completed subscription notification. |
|
276 | - * |
|
277 | - * @param WPInv_Subscription $subscription |
|
278 | - */ |
|
279 | - public function subscription_complete( $subscription ) { |
|
145 | + /** |
|
146 | + * Helper function to send an email. |
|
147 | + * |
|
148 | + * @param WPInv_Subscription $subscription |
|
149 | + * @param GetPaid_Notification_Email $email |
|
150 | + * @param string $type |
|
151 | + * @param array $extra_args Extra template args. |
|
152 | + */ |
|
153 | + public function send_email( $subscription, $email, $type, $extra_args = array() ) { |
|
154 | + |
|
155 | + if ( empty( $subscription ) ) { |
|
156 | + return; |
|
157 | + } |
|
158 | + |
|
159 | + if ( is_array( $subscription ) ) { |
|
160 | + $subscription = current( $subscription ); |
|
161 | + } |
|
162 | + |
|
163 | + if ( ! $subscription instanceof WPInv_Subscription ) { |
|
164 | + return; |
|
165 | + } |
|
166 | + |
|
167 | + // Abort in case the parent invoice does not exist. |
|
168 | + $invoice = $subscription->get_parent_invoice(); |
|
169 | + if ( ! $this->should_send_notification( $invoice ) ) { |
|
170 | + return; |
|
171 | + } |
|
172 | + |
|
173 | + if ( apply_filters( 'getpaid_skip_subscription_email', false, $type, $subscription ) ) { |
|
174 | + return; |
|
175 | + } |
|
176 | + |
|
177 | + do_action( 'getpaid_before_send_subscription_notification', $type, $subscription, $email ); |
|
178 | + |
|
179 | + $recipients = $this->get_recipients( $invoice ); |
|
180 | + $mailer = new GetPaid_Notification_Email_Sender(); |
|
181 | + $merge_tags = $email->get_merge_tags(); |
|
182 | + $content = $email->get_content( $merge_tags, $extra_args ); |
|
183 | + $subject = $email->add_merge_tags( $email->get_subject(), $merge_tags ); |
|
184 | + $attachments = $email->get_attachments(); |
|
185 | + |
|
186 | + $result = $mailer->send( |
|
187 | + apply_filters( 'getpaid_subscription_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
188 | + $subject, |
|
189 | + $content, |
|
190 | + $attachments |
|
191 | + ); |
|
192 | + |
|
193 | + // Maybe send a copy to the admin. |
|
194 | + if ( $email->include_admin_bcc() ) { |
|
195 | + $mailer->send( |
|
196 | + wpinv_get_admin_email(), |
|
197 | + $subject . __( ' - ADMIN BCC COPY', 'invoicing' ), |
|
198 | + $content, |
|
199 | + $attachments |
|
200 | + ); |
|
201 | + } |
|
202 | + |
|
203 | + if ( $result ) { |
|
204 | + $invoice->add_system_note( |
|
205 | + sprintf( |
|
206 | + __( 'Successfully sent %1$s notification email to %2$s.', 'invoicing' ), |
|
207 | + sanitize_key( $type ), |
|
208 | + $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
209 | + ) |
|
210 | + ); |
|
211 | + } else { |
|
212 | + $invoice->add_system_note( |
|
213 | + sprintf( |
|
214 | + __( 'Failed sending %1$s notification email to %2$s.', 'invoicing' ), |
|
215 | + sanitize_key( $type ), |
|
216 | + $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
217 | + ) |
|
218 | + ); |
|
219 | + } |
|
220 | + |
|
221 | + do_action( 'getpaid_after_send_subscription_notification', $type, $subscription, $email ); |
|
222 | + |
|
223 | + } |
|
280 | 224 | |
281 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
282 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
225 | + /** |
|
226 | + * Sends a subscription active. |
|
227 | + * |
|
228 | + * @since 2.8.4 |
|
229 | + * |
|
230 | + * @param WPInv_Subscription $subscription |
|
231 | + */ |
|
232 | + public function subscription_active( $subscription ) { |
|
233 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
283 | 234 | |
284 | - } |
|
235 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
236 | + } |
|
285 | 237 | |
286 | - /** |
|
287 | - * Sends a subscription renewal reminder notification. |
|
288 | - * |
|
289 | - */ |
|
290 | - public function renewal_reminder() { |
|
238 | + /** |
|
239 | + * Sends a new trial notification. |
|
240 | + * |
|
241 | + * @param WPInv_Subscription $subscription |
|
242 | + */ |
|
243 | + public function subscription_trial( $subscription ) { |
|
244 | + |
|
245 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
246 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
247 | + |
|
248 | + } |
|
249 | + |
|
250 | + /** |
|
251 | + * Sends a cancelled subscription notification. |
|
252 | + * |
|
253 | + * @param WPInv_Subscription $subscription |
|
254 | + */ |
|
255 | + public function subscription_cancelled( $subscription ) { |
|
256 | + |
|
257 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
258 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
259 | + |
|
260 | + } |
|
261 | + |
|
262 | + /** |
|
263 | + * Sends a subscription expired notification. |
|
264 | + * |
|
265 | + * @param WPInv_Subscription $subscription |
|
266 | + */ |
|
267 | + public function subscription_expired( $subscription ) { |
|
268 | + |
|
269 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
270 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
271 | + |
|
272 | + } |
|
273 | + |
|
274 | + /** |
|
275 | + * Sends a completed subscription notification. |
|
276 | + * |
|
277 | + * @param WPInv_Subscription $subscription |
|
278 | + */ |
|
279 | + public function subscription_complete( $subscription ) { |
|
280 | + |
|
281 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $subscription ); |
|
282 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
283 | + |
|
284 | + } |
|
285 | + |
|
286 | + /** |
|
287 | + * Sends a subscription renewal reminder notification. |
|
288 | + * |
|
289 | + */ |
|
290 | + public function renewal_reminder() { |
|
291 | 291 | |
292 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
292 | + $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
293 | 293 | |
294 | - // Fetch reminder days. |
|
295 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
294 | + // Fetch reminder days. |
|
295 | + $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
296 | 296 | |
297 | - // Abort if non is set. |
|
298 | - if ( empty( $reminder_days ) ) { |
|
299 | - return; |
|
300 | - } |
|
297 | + // Abort if non is set. |
|
298 | + if ( empty( $reminder_days ) ) { |
|
299 | + return; |
|
300 | + } |
|
301 | 301 | |
302 | - // Fetch matching subscriptions. |
|
302 | + // Fetch matching subscriptions. |
|
303 | 303 | $args = array( |
304 | 304 | 'number' => -1, |
305 | - 'count_total' => false, |
|
306 | - 'status' => 'trialling active', |
|
305 | + 'count_total' => false, |
|
306 | + 'status' => 'trialling active', |
|
307 | 307 | 'date_expires_query' => array( |
308 | - 'relation' => 'OR', |
|
308 | + 'relation' => 'OR', |
|
309 | 309 | ), |
310 | - ); |
|
310 | + ); |
|
311 | 311 | |
312 | - foreach ( $reminder_days as $days ) { |
|
313 | - $date = date_parse( date( 'Y-m-d', strtotime( "+$days days", current_time( 'timestamp' ) ) ) ); |
|
312 | + foreach ( $reminder_days as $days ) { |
|
313 | + $date = date_parse( date( 'Y-m-d', strtotime( "+$days days", current_time( 'timestamp' ) ) ) ); |
|
314 | 314 | |
315 | - $args['date_expires_query'][] = array( |
|
316 | - 'year' => $date['year'], |
|
317 | - 'month' => $date['month'], |
|
318 | - 'day' => $date['day'], |
|
319 | - ); |
|
315 | + $args['date_expires_query'][] = array( |
|
316 | + 'year' => $date['year'], |
|
317 | + 'month' => $date['month'], |
|
318 | + 'day' => $date['day'], |
|
319 | + ); |
|
320 | 320 | |
321 | - } |
|
321 | + } |
|
322 | 322 | |
323 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
323 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
324 | 324 | |
325 | 325 | foreach ( $subscriptions->get_results() as $subscription ) { |
326 | 326 | |
327 | - // Skip packages. |
|
328 | - if ( apply_filters( 'getpaid_send_subscription_renewal_reminder_email', true ) ) { |
|
329 | - $email->object = $subscription; |
|
330 | - $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
331 | - } |
|
332 | - } |
|
327 | + // Skip packages. |
|
328 | + if ( apply_filters( 'getpaid_send_subscription_renewal_reminder_email', true ) ) { |
|
329 | + $email->object = $subscription; |
|
330 | + $this->send_email( $subscription, $email, __FUNCTION__ ); |
|
331 | + } |
|
332 | + } |
|
333 | 333 | |
334 | - } |
|
334 | + } |
|
335 | 335 | |
336 | 336 | } |
@@ -34,12 +34,12 @@ |
||
34 | 34 | // Prepare pagination |
35 | 35 | $pagination = paginate_links( |
36 | 36 | array( |
37 | - 'base' => add_query_arg( 'paged', '%#%' ), |
|
38 | - 'format' => '', |
|
39 | - 'prev_text' => __( '«', 'invoicing' ), |
|
40 | - 'next_text' => __( '»', 'invoicing' ), |
|
41 | - 'total' => ceil( $total_logs / $per_page ), |
|
42 | - 'current' => $page, |
|
37 | + 'base' => add_query_arg( 'paged', '%#%' ), |
|
38 | + 'format' => '', |
|
39 | + 'prev_text' => __( '«', 'invoicing' ), |
|
40 | + 'next_text' => __( '»', 'invoicing' ), |
|
41 | + 'total' => ceil( $total_logs / $per_page ), |
|
42 | + 'current' => $page, |
|
43 | 43 | ) |
44 | 44 | ); |
45 | 45 |