@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * |
6 | 6 | */ |
7 | 7 | if ( ! defined( 'ABSPATH' ) ) { |
8 | - exit; |
|
8 | + exit; |
|
9 | 9 | } |
10 | 10 | |
11 | 11 | /** |
@@ -15,198 +15,198 @@ discard block |
||
15 | 15 | */ |
16 | 16 | class GetPaid_Subscription_Data_Store { |
17 | 17 | |
18 | - /** |
|
19 | - * A map of database fields to data types. |
|
20 | - * |
|
21 | - * @since 1.0.19 |
|
22 | - * @var array |
|
23 | - */ |
|
24 | - protected $database_fields_to_data_type = array( |
|
25 | - 'id' => '%d', |
|
26 | - 'customer_id' => '%d', |
|
27 | - 'frequency' => '%d', |
|
28 | - 'period' => '%s', |
|
29 | - 'initial_amount' => '%s', |
|
30 | - 'recurring_amount' => '%s', |
|
31 | - 'bill_times' => '%d', |
|
32 | - 'transaction_id' => '%s', |
|
33 | - 'parent_payment_id' => '%d', |
|
34 | - 'product_id' => '%d', |
|
35 | - 'created' => '%s', |
|
36 | - 'expiration' => '%s', |
|
37 | - 'trial_period' => '%s', |
|
38 | - 'status' => '%s', |
|
39 | - 'profile_id' => '%s', |
|
40 | - ); |
|
41 | - |
|
42 | - /* |
|
18 | + /** |
|
19 | + * A map of database fields to data types. |
|
20 | + * |
|
21 | + * @since 1.0.19 |
|
22 | + * @var array |
|
23 | + */ |
|
24 | + protected $database_fields_to_data_type = array( |
|
25 | + 'id' => '%d', |
|
26 | + 'customer_id' => '%d', |
|
27 | + 'frequency' => '%d', |
|
28 | + 'period' => '%s', |
|
29 | + 'initial_amount' => '%s', |
|
30 | + 'recurring_amount' => '%s', |
|
31 | + 'bill_times' => '%d', |
|
32 | + 'transaction_id' => '%s', |
|
33 | + 'parent_payment_id' => '%d', |
|
34 | + 'product_id' => '%d', |
|
35 | + 'created' => '%s', |
|
36 | + 'expiration' => '%s', |
|
37 | + 'trial_period' => '%s', |
|
38 | + 'status' => '%s', |
|
39 | + 'profile_id' => '%s', |
|
40 | + ); |
|
41 | + |
|
42 | + /* |
|
43 | 43 | |-------------------------------------------------------------------------- |
44 | 44 | | CRUD Methods |
45 | 45 | |-------------------------------------------------------------------------- |
46 | 46 | */ |
47 | 47 | |
48 | - /** |
|
49 | - * Method to create a new subscription in the database. |
|
50 | - * |
|
51 | - * @param WPInv_Subscription $subscription Subscription object. |
|
52 | - */ |
|
53 | - public function create( &$subscription ) { |
|
54 | - global $wpdb; |
|
55 | - |
|
56 | - $values = array(); |
|
57 | - $formats = array(); |
|
58 | - |
|
59 | - $fields = $this->database_fields_to_data_type; |
|
60 | - unset( $fields['id'] ); |
|
61 | - |
|
62 | - foreach ( $fields as $key => $format ) { |
|
63 | - $method = "get_$key"; |
|
64 | - $values[$key] = $subscription->$method( 'edit' ); |
|
65 | - $formats[] = $format; |
|
66 | - } |
|
67 | - |
|
68 | - $result = $wpdb->insert( $wpdb->prefix . 'wpinv_subscriptions', $values, $formats ); |
|
69 | - |
|
70 | - if ( $result ) { |
|
71 | - $subscription->set_id( $wpdb->insert_id ); |
|
72 | - $subscription->apply_changes(); |
|
73 | - $subscription->clear_cache(); |
|
74 | - update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() ); |
|
75 | - do_action( 'getpaid_new_subscription', $subscription ); |
|
76 | - return true; |
|
77 | - } |
|
78 | - |
|
79 | - return false; |
|
80 | - } |
|
81 | - |
|
82 | - /** |
|
83 | - * Method to read a subscription from the database. |
|
84 | - * |
|
85 | - * @param WPInv_Subscription $subscription Subscription object. |
|
86 | - * |
|
87 | - */ |
|
88 | - public function read( &$subscription ) { |
|
89 | - global $wpdb; |
|
90 | - |
|
91 | - $subscription->set_defaults(); |
|
92 | - |
|
93 | - if ( ! $subscription->get_id() ) { |
|
94 | - $subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' ); |
|
95 | - $subscription->set_id( 0 ); |
|
96 | - return false; |
|
97 | - } |
|
98 | - |
|
99 | - // Maybe retrieve from the cache. |
|
100 | - $raw_subscription = wp_cache_get( $subscription->get_id(), 'getpaid_subscriptions' ); |
|
101 | - |
|
102 | - // If not found, retrieve from the db. |
|
103 | - if ( false === $raw_subscription ) { |
|
104 | - |
|
105 | - $raw_subscription = $wpdb->get_row( |
|
106 | - $wpdb->prepare( |
|
107 | - "SELECT * FROM {$wpdb->prefix}wpinv_subscriptions WHERE id = %d", |
|
108 | - $subscription->get_id() |
|
109 | - ) |
|
110 | - ); |
|
111 | - |
|
112 | - // Update the cache with our data |
|
113 | - wp_cache_set( $subscription->get_id(), $raw_subscription, 'getpaid_subscriptions' ); |
|
114 | - |
|
115 | - } |
|
116 | - |
|
117 | - if ( ! $raw_subscription ) { |
|
118 | - $subscription->set_id( 0 ); |
|
119 | - $subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' ); |
|
120 | - return false; |
|
121 | - } |
|
122 | - |
|
123 | - foreach ( array_keys( $this->database_fields_to_data_type ) as $key ) { |
|
124 | - $method = "set_$key"; |
|
125 | - $subscription->$method( $raw_subscription->$key ); |
|
126 | - } |
|
127 | - |
|
128 | - $subscription->set_object_read( true ); |
|
129 | - do_action( 'getpaid_read_subscription', $subscription ); |
|
130 | - |
|
131 | - } |
|
132 | - |
|
133 | - /** |
|
134 | - * Method to update a subscription in the database. |
|
135 | - * |
|
136 | - * @param WPInv_Subscription $subscription Subscription object. |
|
137 | - */ |
|
138 | - public function update( &$subscription ) { |
|
139 | - global $wpdb; |
|
140 | - |
|
141 | - $changes = $subscription->get_changes(); |
|
142 | - $values = array(); |
|
143 | - $formats = array(); |
|
144 | - |
|
145 | - foreach ( $this->database_fields_to_data_type as $key => $format ) { |
|
146 | - if ( array_key_exists( $key, $changes ) ) { |
|
147 | - $method = "get_$key"; |
|
148 | - $values[$key] = $subscription->$method( 'edit' ); |
|
149 | - $formats[] = $format; |
|
150 | - } |
|
151 | - } |
|
152 | - |
|
153 | - if ( empty( $values ) ) { |
|
154 | - return; |
|
155 | - } |
|
156 | - |
|
157 | - $wpdb->update( |
|
158 | - $wpdb->prefix . 'wpinv_subscriptions', |
|
159 | - $values, |
|
160 | - array( |
|
161 | - 'id' => $subscription->get_id(), |
|
162 | - ), |
|
163 | - $formats, |
|
164 | - '%d' |
|
165 | - ); |
|
166 | - |
|
167 | - // Apply the changes. |
|
168 | - $subscription->apply_changes(); |
|
169 | - |
|
170 | - // Delete cache. |
|
171 | - $subscription->clear_cache(); |
|
172 | - |
|
173 | - update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id', $subscription->get_profile_id() ); |
|
174 | - update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() ); |
|
175 | - |
|
176 | - // Fire a hook. |
|
177 | - do_action( 'getpaid_update_subscription', $subscription ); |
|
178 | - |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * Method to delete a subscription from the database. |
|
183 | - * |
|
184 | - * @param WPInv_Subscription $subscription |
|
185 | - */ |
|
186 | - public function delete( &$subscription ) { |
|
187 | - global $wpdb; |
|
188 | - |
|
189 | - $wpdb->query( |
|
190 | - $wpdb->prepare( |
|
191 | - "DELETE FROM {$wpdb->prefix}wpinv_subscriptions |
|
48 | + /** |
|
49 | + * Method to create a new subscription in the database. |
|
50 | + * |
|
51 | + * @param WPInv_Subscription $subscription Subscription object. |
|
52 | + */ |
|
53 | + public function create( &$subscription ) { |
|
54 | + global $wpdb; |
|
55 | + |
|
56 | + $values = array(); |
|
57 | + $formats = array(); |
|
58 | + |
|
59 | + $fields = $this->database_fields_to_data_type; |
|
60 | + unset( $fields['id'] ); |
|
61 | + |
|
62 | + foreach ( $fields as $key => $format ) { |
|
63 | + $method = "get_$key"; |
|
64 | + $values[$key] = $subscription->$method( 'edit' ); |
|
65 | + $formats[] = $format; |
|
66 | + } |
|
67 | + |
|
68 | + $result = $wpdb->insert( $wpdb->prefix . 'wpinv_subscriptions', $values, $formats ); |
|
69 | + |
|
70 | + if ( $result ) { |
|
71 | + $subscription->set_id( $wpdb->insert_id ); |
|
72 | + $subscription->apply_changes(); |
|
73 | + $subscription->clear_cache(); |
|
74 | + update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() ); |
|
75 | + do_action( 'getpaid_new_subscription', $subscription ); |
|
76 | + return true; |
|
77 | + } |
|
78 | + |
|
79 | + return false; |
|
80 | + } |
|
81 | + |
|
82 | + /** |
|
83 | + * Method to read a subscription from the database. |
|
84 | + * |
|
85 | + * @param WPInv_Subscription $subscription Subscription object. |
|
86 | + * |
|
87 | + */ |
|
88 | + public function read( &$subscription ) { |
|
89 | + global $wpdb; |
|
90 | + |
|
91 | + $subscription->set_defaults(); |
|
92 | + |
|
93 | + if ( ! $subscription->get_id() ) { |
|
94 | + $subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' ); |
|
95 | + $subscription->set_id( 0 ); |
|
96 | + return false; |
|
97 | + } |
|
98 | + |
|
99 | + // Maybe retrieve from the cache. |
|
100 | + $raw_subscription = wp_cache_get( $subscription->get_id(), 'getpaid_subscriptions' ); |
|
101 | + |
|
102 | + // If not found, retrieve from the db. |
|
103 | + if ( false === $raw_subscription ) { |
|
104 | + |
|
105 | + $raw_subscription = $wpdb->get_row( |
|
106 | + $wpdb->prepare( |
|
107 | + "SELECT * FROM {$wpdb->prefix}wpinv_subscriptions WHERE id = %d", |
|
108 | + $subscription->get_id() |
|
109 | + ) |
|
110 | + ); |
|
111 | + |
|
112 | + // Update the cache with our data |
|
113 | + wp_cache_set( $subscription->get_id(), $raw_subscription, 'getpaid_subscriptions' ); |
|
114 | + |
|
115 | + } |
|
116 | + |
|
117 | + if ( ! $raw_subscription ) { |
|
118 | + $subscription->set_id( 0 ); |
|
119 | + $subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' ); |
|
120 | + return false; |
|
121 | + } |
|
122 | + |
|
123 | + foreach ( array_keys( $this->database_fields_to_data_type ) as $key ) { |
|
124 | + $method = "set_$key"; |
|
125 | + $subscription->$method( $raw_subscription->$key ); |
|
126 | + } |
|
127 | + |
|
128 | + $subscription->set_object_read( true ); |
|
129 | + do_action( 'getpaid_read_subscription', $subscription ); |
|
130 | + |
|
131 | + } |
|
132 | + |
|
133 | + /** |
|
134 | + * Method to update a subscription in the database. |
|
135 | + * |
|
136 | + * @param WPInv_Subscription $subscription Subscription object. |
|
137 | + */ |
|
138 | + public function update( &$subscription ) { |
|
139 | + global $wpdb; |
|
140 | + |
|
141 | + $changes = $subscription->get_changes(); |
|
142 | + $values = array(); |
|
143 | + $formats = array(); |
|
144 | + |
|
145 | + foreach ( $this->database_fields_to_data_type as $key => $format ) { |
|
146 | + if ( array_key_exists( $key, $changes ) ) { |
|
147 | + $method = "get_$key"; |
|
148 | + $values[$key] = $subscription->$method( 'edit' ); |
|
149 | + $formats[] = $format; |
|
150 | + } |
|
151 | + } |
|
152 | + |
|
153 | + if ( empty( $values ) ) { |
|
154 | + return; |
|
155 | + } |
|
156 | + |
|
157 | + $wpdb->update( |
|
158 | + $wpdb->prefix . 'wpinv_subscriptions', |
|
159 | + $values, |
|
160 | + array( |
|
161 | + 'id' => $subscription->get_id(), |
|
162 | + ), |
|
163 | + $formats, |
|
164 | + '%d' |
|
165 | + ); |
|
166 | + |
|
167 | + // Apply the changes. |
|
168 | + $subscription->apply_changes(); |
|
169 | + |
|
170 | + // Delete cache. |
|
171 | + $subscription->clear_cache(); |
|
172 | + |
|
173 | + update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id', $subscription->get_profile_id() ); |
|
174 | + update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() ); |
|
175 | + |
|
176 | + // Fire a hook. |
|
177 | + do_action( 'getpaid_update_subscription', $subscription ); |
|
178 | + |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * Method to delete a subscription from the database. |
|
183 | + * |
|
184 | + * @param WPInv_Subscription $subscription |
|
185 | + */ |
|
186 | + public function delete( &$subscription ) { |
|
187 | + global $wpdb; |
|
188 | + |
|
189 | + $wpdb->query( |
|
190 | + $wpdb->prepare( |
|
191 | + "DELETE FROM {$wpdb->prefix}wpinv_subscriptions |
|
192 | 192 | WHERE id = %d", |
193 | - $subscription->get_id() |
|
194 | - ) |
|
195 | - ); |
|
193 | + $subscription->get_id() |
|
194 | + ) |
|
195 | + ); |
|
196 | 196 | |
197 | - delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id' ); |
|
198 | - delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id' ); |
|
197 | + delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id' ); |
|
198 | + delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id' ); |
|
199 | 199 | |
200 | - // Delete cache. |
|
201 | - $subscription->clear_cache(); |
|
200 | + // Delete cache. |
|
201 | + $subscription->clear_cache(); |
|
202 | 202 | |
203 | - // Fire a hook. |
|
204 | - do_action( 'getpaid_delete_subscription', $subscription ); |
|
203 | + // Fire a hook. |
|
204 | + do_action( 'getpaid_delete_subscription', $subscription ); |
|
205 | 205 | |
206 | - $subscription->set_id( 0 ); |
|
207 | - } |
|
206 | + $subscription->set_id( 0 ); |
|
207 | + } |
|
208 | 208 | |
209 | - /* |
|
209 | + /* |
|
210 | 210 | |-------------------------------------------------------------------------- |
211 | 211 | | Additional Methods |
212 | 212 | |-------------------------------------------------------------------------- |
@@ -14,590 +14,590 @@ |
||
14 | 14 | */ |
15 | 15 | class WPInv_Plugin { |
16 | 16 | |
17 | - /** |
|
18 | - * GetPaid version. |
|
19 | - * |
|
20 | - * @var string |
|
21 | - */ |
|
22 | - public $version; |
|
23 | - |
|
24 | - /** |
|
25 | - * Data container. |
|
26 | - * |
|
27 | - * @var array |
|
28 | - */ |
|
29 | - protected $data = array(); |
|
30 | - |
|
31 | - /** |
|
32 | - * Form elements instance. |
|
33 | - * |
|
34 | - * @var WPInv_Payment_Form_Elements |
|
35 | - */ |
|
36 | - public $form_elements; |
|
37 | - |
|
38 | - /** |
|
39 | - * @var array An array of payment gateways. |
|
40 | - */ |
|
41 | - public $gateways; |
|
42 | - |
|
43 | - /** |
|
44 | - * Class constructor. |
|
45 | - */ |
|
46 | - public function __construct() { |
|
47 | - $this->define_constants(); |
|
48 | - $this->includes(); |
|
49 | - $this->init_hooks(); |
|
50 | - $this->set_properties(); |
|
51 | - } |
|
52 | - |
|
53 | - /** |
|
54 | - * Sets a custom data property. |
|
55 | - * |
|
56 | - * @param string $prop The prop to set. |
|
57 | - * @param mixed $value The value to retrieve. |
|
58 | - */ |
|
59 | - public function set( $prop, $value ) { |
|
60 | - $this->data[ $prop ] = $value; |
|
61 | - } |
|
62 | - |
|
63 | - /** |
|
64 | - * Gets a custom data property. |
|
65 | - * |
|
66 | - * @param string $prop The prop to set. |
|
67 | - * @return mixed The value. |
|
68 | - */ |
|
69 | - public function get( $prop ) { |
|
70 | - |
|
71 | - if ( isset( $this->data[ $prop ] ) ) { |
|
72 | - return $this->data[ $prop ]; |
|
73 | - } |
|
74 | - |
|
75 | - return null; |
|
76 | - } |
|
77 | - |
|
78 | - /** |
|
79 | - * Define class properties. |
|
80 | - */ |
|
81 | - public function set_properties() { |
|
82 | - |
|
83 | - // Sessions. |
|
84 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
85 | - $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
86 | - $GLOBALS['wpinv_euvat'] = new WPInv_EUVat(); // Backwards compatibility. |
|
87 | - |
|
88 | - // Init other objects. |
|
89 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
90 | - $this->set( 'notes', new WPInv_Notes() ); |
|
91 | - $this->set( 'api', new WPInv_API() ); |
|
92 | - $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
93 | - $this->set( 'template', new GetPaid_Template() ); |
|
94 | - $this->set( 'admin', new GetPaid_Admin() ); |
|
95 | - $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
96 | - $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
97 | - $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
98 | - $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
99 | - $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
100 | - $this->set( 'maxmind', new GetPaid_MaxMind_Geolocation() ); |
|
101 | - |
|
102 | - } |
|
103 | - |
|
104 | - /** |
|
105 | - * Define plugin constants. |
|
106 | - */ |
|
107 | - public function define_constants() { |
|
108 | - define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
109 | - define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
110 | - $this->version = WPINV_VERSION; |
|
111 | - } |
|
112 | - |
|
113 | - /** |
|
114 | - * Hook into actions and filters. |
|
115 | - * |
|
116 | - * @since 1.0.19 |
|
117 | - */ |
|
118 | - protected function init_hooks() { |
|
119 | - /* Internationalize the text strings used. */ |
|
120 | - add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
121 | - |
|
122 | - // Init the plugin after WordPress inits. |
|
123 | - add_action( 'init', array( $this, 'init' ), 1 ); |
|
124 | - add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
125 | - add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
126 | - add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
127 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
|
128 | - add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
|
129 | - add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
130 | - add_action( 'widgets_init', array( &$this, 'register_widgets' ) ); |
|
131 | - add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
132 | - add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
133 | - |
|
134 | - add_filter( 'query_vars', array( $this, 'custom_query_vars' ) ); |
|
17 | + /** |
|
18 | + * GetPaid version. |
|
19 | + * |
|
20 | + * @var string |
|
21 | + */ |
|
22 | + public $version; |
|
23 | + |
|
24 | + /** |
|
25 | + * Data container. |
|
26 | + * |
|
27 | + * @var array |
|
28 | + */ |
|
29 | + protected $data = array(); |
|
30 | + |
|
31 | + /** |
|
32 | + * Form elements instance. |
|
33 | + * |
|
34 | + * @var WPInv_Payment_Form_Elements |
|
35 | + */ |
|
36 | + public $form_elements; |
|
37 | + |
|
38 | + /** |
|
39 | + * @var array An array of payment gateways. |
|
40 | + */ |
|
41 | + public $gateways; |
|
42 | + |
|
43 | + /** |
|
44 | + * Class constructor. |
|
45 | + */ |
|
46 | + public function __construct() { |
|
47 | + $this->define_constants(); |
|
48 | + $this->includes(); |
|
49 | + $this->init_hooks(); |
|
50 | + $this->set_properties(); |
|
51 | + } |
|
52 | + |
|
53 | + /** |
|
54 | + * Sets a custom data property. |
|
55 | + * |
|
56 | + * @param string $prop The prop to set. |
|
57 | + * @param mixed $value The value to retrieve. |
|
58 | + */ |
|
59 | + public function set( $prop, $value ) { |
|
60 | + $this->data[ $prop ] = $value; |
|
61 | + } |
|
62 | + |
|
63 | + /** |
|
64 | + * Gets a custom data property. |
|
65 | + * |
|
66 | + * @param string $prop The prop to set. |
|
67 | + * @return mixed The value. |
|
68 | + */ |
|
69 | + public function get( $prop ) { |
|
70 | + |
|
71 | + if ( isset( $this->data[ $prop ] ) ) { |
|
72 | + return $this->data[ $prop ]; |
|
73 | + } |
|
74 | + |
|
75 | + return null; |
|
76 | + } |
|
77 | + |
|
78 | + /** |
|
79 | + * Define class properties. |
|
80 | + */ |
|
81 | + public function set_properties() { |
|
82 | + |
|
83 | + // Sessions. |
|
84 | + $this->set( 'session', new WPInv_Session_Handler() ); |
|
85 | + $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
86 | + $GLOBALS['wpinv_euvat'] = new WPInv_EUVat(); // Backwards compatibility. |
|
87 | + |
|
88 | + // Init other objects. |
|
89 | + $this->set( 'session', new WPInv_Session_Handler() ); |
|
90 | + $this->set( 'notes', new WPInv_Notes() ); |
|
91 | + $this->set( 'api', new WPInv_API() ); |
|
92 | + $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
93 | + $this->set( 'template', new GetPaid_Template() ); |
|
94 | + $this->set( 'admin', new GetPaid_Admin() ); |
|
95 | + $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
96 | + $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
97 | + $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
98 | + $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
99 | + $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
100 | + $this->set( 'maxmind', new GetPaid_MaxMind_Geolocation() ); |
|
101 | + |
|
102 | + } |
|
103 | + |
|
104 | + /** |
|
105 | + * Define plugin constants. |
|
106 | + */ |
|
107 | + public function define_constants() { |
|
108 | + define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
109 | + define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
110 | + $this->version = WPINV_VERSION; |
|
111 | + } |
|
112 | + |
|
113 | + /** |
|
114 | + * Hook into actions and filters. |
|
115 | + * |
|
116 | + * @since 1.0.19 |
|
117 | + */ |
|
118 | + protected function init_hooks() { |
|
119 | + /* Internationalize the text strings used. */ |
|
120 | + add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
121 | + |
|
122 | + // Init the plugin after WordPress inits. |
|
123 | + add_action( 'init', array( $this, 'init' ), 1 ); |
|
124 | + add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
125 | + add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
126 | + add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
127 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
|
128 | + add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
|
129 | + add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
130 | + add_action( 'widgets_init', array( &$this, 'register_widgets' ) ); |
|
131 | + add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
132 | + add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
133 | + |
|
134 | + add_filter( 'query_vars', array( $this, 'custom_query_vars' ) ); |
|
135 | 135 | add_action( 'init', array( $this, 'add_rewrite_rule' ), 10, 0 ); |
136 | - add_action( 'pre_get_posts', array( $this, 'maybe_process_new_ipn' ), 1 ); |
|
137 | - |
|
138 | - // Fires after registering actions. |
|
139 | - do_action( 'wpinv_actions', $this ); |
|
140 | - do_action( 'getpaid_actions', $this ); |
|
141 | - |
|
142 | - } |
|
143 | - |
|
144 | - public function plugins_loaded() { |
|
145 | - /* Internationalize the text strings used. */ |
|
146 | - $this->load_textdomain(); |
|
147 | - |
|
148 | - do_action( 'wpinv_loaded' ); |
|
149 | - |
|
150 | - // Fix oxygen page builder conflict |
|
151 | - if ( function_exists( 'ct_css_output' ) ) { |
|
152 | - wpinv_oxygen_fix_conflict(); |
|
153 | - } |
|
154 | - } |
|
155 | - |
|
156 | - /** |
|
157 | - * Load the translation of the plugin. |
|
158 | - * |
|
159 | - * @since 1.0 |
|
160 | - */ |
|
161 | - public function load_textdomain( $locale = NULL ) { |
|
162 | - if ( empty( $locale ) ) { |
|
163 | - $locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale(); |
|
164 | - } |
|
165 | - |
|
166 | - $locale = apply_filters( 'plugin_locale', $locale, 'invoicing' ); |
|
167 | - |
|
168 | - unload_textdomain( 'invoicing' ); |
|
169 | - load_textdomain( 'invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo' ); |
|
170 | - load_plugin_textdomain( 'invoicing', false, WPINV_PLUGIN_DIR . 'languages' ); |
|
171 | - |
|
172 | - /** |
|
173 | - * Define language constants. |
|
174 | - */ |
|
175 | - require_once( WPINV_PLUGIN_DIR . 'language.php' ); |
|
176 | - } |
|
177 | - |
|
178 | - /** |
|
179 | - * Include required core files used in admin and on the frontend. |
|
180 | - */ |
|
181 | - public function includes() { |
|
182 | - |
|
183 | - // Start with the settings. |
|
184 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
185 | - |
|
186 | - // Packages/libraries. |
|
187 | - require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
188 | - require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
189 | - |
|
190 | - // Load functions. |
|
191 | - require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
192 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
193 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
194 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
195 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
196 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
197 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
198 | - require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
199 | - require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
200 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
201 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
202 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
203 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
204 | - require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
|
205 | - require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
206 | - |
|
207 | - // Register autoloader. |
|
208 | - try { |
|
209 | - spl_autoload_register( array( $this, 'autoload' ), true ); |
|
210 | - } catch ( Exception $e ) { |
|
211 | - wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
212 | - } |
|
213 | - |
|
214 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
215 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
216 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
217 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
218 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
219 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
220 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
221 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
222 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
223 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
224 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
225 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
226 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
227 | - require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
228 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
229 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
230 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
231 | - require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
232 | - require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
233 | - require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
234 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
235 | - |
|
236 | - if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
237 | - GetPaid_Post_Types_Admin::init(); |
|
238 | - |
|
239 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
240 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
241 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
242 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
243 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
244 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
245 | - // load the user class only on the users.php page |
|
246 | - global $pagenow; |
|
247 | - if($pagenow=='users.php'){ |
|
248 | - new WPInv_Admin_Users(); |
|
249 | - } |
|
250 | - } |
|
251 | - |
|
252 | - // Register cli commands |
|
253 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
254 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
255 | - WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
256 | - } |
|
257 | - |
|
258 | - } |
|
259 | - |
|
260 | - /** |
|
261 | - * Class autoloader |
|
262 | - * |
|
263 | - * @param string $class_name The name of the class to load. |
|
264 | - * @access public |
|
265 | - * @since 1.0.19 |
|
266 | - * @return void |
|
267 | - */ |
|
268 | - public function autoload( $class_name ) { |
|
269 | - |
|
270 | - // Normalize the class name... |
|
271 | - $class_name = strtolower( $class_name ); |
|
272 | - |
|
273 | - // ... and make sure it is our class. |
|
274 | - if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
275 | - return; |
|
276 | - } |
|
277 | - |
|
278 | - // Next, prepare the file name from the class. |
|
279 | - $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
280 | - |
|
281 | - // Base path of the classes. |
|
282 | - $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
283 | - |
|
284 | - // And an array of possible locations in order of importance. |
|
285 | - $locations = array( |
|
286 | - "$plugin_path/includes", |
|
287 | - "$plugin_path/includes/data-stores", |
|
288 | - "$plugin_path/includes/gateways", |
|
289 | - "$plugin_path/includes/payments", |
|
290 | - "$plugin_path/includes/geolocation", |
|
291 | - "$plugin_path/includes/reports", |
|
292 | - "$plugin_path/includes/api", |
|
293 | - "$plugin_path/includes/admin", |
|
294 | - "$plugin_path/includes/admin/meta-boxes", |
|
295 | - ); |
|
296 | - |
|
297 | - foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
298 | - |
|
299 | - if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
300 | - include trailingslashit( $location ) . $file_name; |
|
301 | - break; |
|
302 | - } |
|
303 | - |
|
304 | - } |
|
305 | - |
|
306 | - } |
|
307 | - |
|
308 | - /** |
|
309 | - * Inits hooks etc. |
|
310 | - */ |
|
311 | - public function init() { |
|
312 | - |
|
313 | - // Fires before getpaid inits. |
|
314 | - do_action( 'before_getpaid_init', $this ); |
|
315 | - |
|
316 | - // Maybe upgrade. |
|
317 | - $this->maybe_upgrade_database(); |
|
318 | - |
|
319 | - // Load default gateways. |
|
320 | - $gateways = apply_filters( |
|
321 | - 'getpaid_default_gateways', |
|
322 | - array( |
|
323 | - 'manual' => 'GetPaid_Manual_Gateway', |
|
324 | - 'paypal' => 'GetPaid_Paypal_Gateway', |
|
325 | - 'worldpay' => 'GetPaid_Worldpay_Gateway', |
|
326 | - 'bank_transfer' => 'GetPaid_Bank_Transfer_Gateway', |
|
327 | - 'authorizenet' => 'GetPaid_Authorize_Net_Gateway', |
|
328 | - ) |
|
329 | - ); |
|
330 | - |
|
331 | - foreach ( $gateways as $id => $class ) { |
|
332 | - $this->gateways[ $id ] = new $class(); |
|
333 | - } |
|
334 | - |
|
335 | - if ( 'yes' != get_option( 'wpinv_renamed_gateways' ) ) { |
|
336 | - GetPaid_Installer::rename_gateways_label(); |
|
337 | - update_option( 'wpinv_renamed_gateways', 'yes' ); |
|
338 | - } |
|
339 | - |
|
340 | - // Fires after getpaid inits. |
|
341 | - do_action( 'getpaid_init', $this ); |
|
342 | - |
|
343 | - } |
|
344 | - |
|
345 | - /** |
|
346 | - * Checks if this is an IPN request and processes it. |
|
347 | - */ |
|
348 | - public function maybe_process_ipn() { |
|
349 | - |
|
350 | - // Ensure that this is an IPN request. |
|
351 | - if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
352 | - return; |
|
353 | - } |
|
354 | - |
|
355 | - $gateway = wpinv_clean( $_GET['wpi-gateway'] ); |
|
356 | - |
|
357 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
358 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
359 | - exit; |
|
360 | - |
|
361 | - } |
|
362 | - |
|
363 | - public function enqueue_scripts() { |
|
364 | - |
|
365 | - // Fires before adding scripts. |
|
366 | - do_action( 'getpaid_enqueue_scripts' ); |
|
367 | - |
|
368 | - $localize = array(); |
|
369 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
370 | - $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
371 | - $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
372 | - $localize['UseTaxes'] = wpinv_use_taxes(); |
|
373 | - $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
374 | - $localize['loading'] = __( 'Loading...', 'invoicing' ); |
|
375 | - $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
376 | - |
|
377 | - $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
378 | - |
|
379 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
380 | - wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
|
381 | - wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
382 | - } |
|
383 | - |
|
384 | - public function wpinv_actions() { |
|
385 | - if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
386 | - do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
387 | - } |
|
388 | - } |
|
389 | - |
|
390 | - /** |
|
136 | + add_action( 'pre_get_posts', array( $this, 'maybe_process_new_ipn' ), 1 ); |
|
137 | + |
|
138 | + // Fires after registering actions. |
|
139 | + do_action( 'wpinv_actions', $this ); |
|
140 | + do_action( 'getpaid_actions', $this ); |
|
141 | + |
|
142 | + } |
|
143 | + |
|
144 | + public function plugins_loaded() { |
|
145 | + /* Internationalize the text strings used. */ |
|
146 | + $this->load_textdomain(); |
|
147 | + |
|
148 | + do_action( 'wpinv_loaded' ); |
|
149 | + |
|
150 | + // Fix oxygen page builder conflict |
|
151 | + if ( function_exists( 'ct_css_output' ) ) { |
|
152 | + wpinv_oxygen_fix_conflict(); |
|
153 | + } |
|
154 | + } |
|
155 | + |
|
156 | + /** |
|
157 | + * Load the translation of the plugin. |
|
158 | + * |
|
159 | + * @since 1.0 |
|
160 | + */ |
|
161 | + public function load_textdomain( $locale = NULL ) { |
|
162 | + if ( empty( $locale ) ) { |
|
163 | + $locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale(); |
|
164 | + } |
|
165 | + |
|
166 | + $locale = apply_filters( 'plugin_locale', $locale, 'invoicing' ); |
|
167 | + |
|
168 | + unload_textdomain( 'invoicing' ); |
|
169 | + load_textdomain( 'invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo' ); |
|
170 | + load_plugin_textdomain( 'invoicing', false, WPINV_PLUGIN_DIR . 'languages' ); |
|
171 | + |
|
172 | + /** |
|
173 | + * Define language constants. |
|
174 | + */ |
|
175 | + require_once( WPINV_PLUGIN_DIR . 'language.php' ); |
|
176 | + } |
|
177 | + |
|
178 | + /** |
|
179 | + * Include required core files used in admin and on the frontend. |
|
180 | + */ |
|
181 | + public function includes() { |
|
182 | + |
|
183 | + // Start with the settings. |
|
184 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
185 | + |
|
186 | + // Packages/libraries. |
|
187 | + require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
188 | + require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
189 | + |
|
190 | + // Load functions. |
|
191 | + require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
192 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
193 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
194 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
195 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
196 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
197 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
198 | + require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
199 | + require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
200 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
201 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
202 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
203 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
204 | + require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
|
205 | + require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
206 | + |
|
207 | + // Register autoloader. |
|
208 | + try { |
|
209 | + spl_autoload_register( array( $this, 'autoload' ), true ); |
|
210 | + } catch ( Exception $e ) { |
|
211 | + wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
212 | + } |
|
213 | + |
|
214 | + require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
215 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
216 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
217 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
218 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
219 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
220 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
221 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
222 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
223 | + require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
224 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
225 | + require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
226 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
227 | + require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
228 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
229 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
230 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
231 | + require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
232 | + require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
233 | + require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
234 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
235 | + |
|
236 | + if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
237 | + GetPaid_Post_Types_Admin::init(); |
|
238 | + |
|
239 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
240 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
241 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
242 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
243 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
244 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
245 | + // load the user class only on the users.php page |
|
246 | + global $pagenow; |
|
247 | + if($pagenow=='users.php'){ |
|
248 | + new WPInv_Admin_Users(); |
|
249 | + } |
|
250 | + } |
|
251 | + |
|
252 | + // Register cli commands |
|
253 | + if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
254 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
255 | + WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
256 | + } |
|
257 | + |
|
258 | + } |
|
259 | + |
|
260 | + /** |
|
261 | + * Class autoloader |
|
262 | + * |
|
263 | + * @param string $class_name The name of the class to load. |
|
264 | + * @access public |
|
265 | + * @since 1.0.19 |
|
266 | + * @return void |
|
267 | + */ |
|
268 | + public function autoload( $class_name ) { |
|
269 | + |
|
270 | + // Normalize the class name... |
|
271 | + $class_name = strtolower( $class_name ); |
|
272 | + |
|
273 | + // ... and make sure it is our class. |
|
274 | + if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
275 | + return; |
|
276 | + } |
|
277 | + |
|
278 | + // Next, prepare the file name from the class. |
|
279 | + $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
280 | + |
|
281 | + // Base path of the classes. |
|
282 | + $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
283 | + |
|
284 | + // And an array of possible locations in order of importance. |
|
285 | + $locations = array( |
|
286 | + "$plugin_path/includes", |
|
287 | + "$plugin_path/includes/data-stores", |
|
288 | + "$plugin_path/includes/gateways", |
|
289 | + "$plugin_path/includes/payments", |
|
290 | + "$plugin_path/includes/geolocation", |
|
291 | + "$plugin_path/includes/reports", |
|
292 | + "$plugin_path/includes/api", |
|
293 | + "$plugin_path/includes/admin", |
|
294 | + "$plugin_path/includes/admin/meta-boxes", |
|
295 | + ); |
|
296 | + |
|
297 | + foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
298 | + |
|
299 | + if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
300 | + include trailingslashit( $location ) . $file_name; |
|
301 | + break; |
|
302 | + } |
|
303 | + |
|
304 | + } |
|
305 | + |
|
306 | + } |
|
307 | + |
|
308 | + /** |
|
309 | + * Inits hooks etc. |
|
310 | + */ |
|
311 | + public function init() { |
|
312 | + |
|
313 | + // Fires before getpaid inits. |
|
314 | + do_action( 'before_getpaid_init', $this ); |
|
315 | + |
|
316 | + // Maybe upgrade. |
|
317 | + $this->maybe_upgrade_database(); |
|
318 | + |
|
319 | + // Load default gateways. |
|
320 | + $gateways = apply_filters( |
|
321 | + 'getpaid_default_gateways', |
|
322 | + array( |
|
323 | + 'manual' => 'GetPaid_Manual_Gateway', |
|
324 | + 'paypal' => 'GetPaid_Paypal_Gateway', |
|
325 | + 'worldpay' => 'GetPaid_Worldpay_Gateway', |
|
326 | + 'bank_transfer' => 'GetPaid_Bank_Transfer_Gateway', |
|
327 | + 'authorizenet' => 'GetPaid_Authorize_Net_Gateway', |
|
328 | + ) |
|
329 | + ); |
|
330 | + |
|
331 | + foreach ( $gateways as $id => $class ) { |
|
332 | + $this->gateways[ $id ] = new $class(); |
|
333 | + } |
|
334 | + |
|
335 | + if ( 'yes' != get_option( 'wpinv_renamed_gateways' ) ) { |
|
336 | + GetPaid_Installer::rename_gateways_label(); |
|
337 | + update_option( 'wpinv_renamed_gateways', 'yes' ); |
|
338 | + } |
|
339 | + |
|
340 | + // Fires after getpaid inits. |
|
341 | + do_action( 'getpaid_init', $this ); |
|
342 | + |
|
343 | + } |
|
344 | + |
|
345 | + /** |
|
346 | + * Checks if this is an IPN request and processes it. |
|
347 | + */ |
|
348 | + public function maybe_process_ipn() { |
|
349 | + |
|
350 | + // Ensure that this is an IPN request. |
|
351 | + if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
352 | + return; |
|
353 | + } |
|
354 | + |
|
355 | + $gateway = wpinv_clean( $_GET['wpi-gateway'] ); |
|
356 | + |
|
357 | + do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
358 | + do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
359 | + exit; |
|
360 | + |
|
361 | + } |
|
362 | + |
|
363 | + public function enqueue_scripts() { |
|
364 | + |
|
365 | + // Fires before adding scripts. |
|
366 | + do_action( 'getpaid_enqueue_scripts' ); |
|
367 | + |
|
368 | + $localize = array(); |
|
369 | + $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
370 | + $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
371 | + $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
372 | + $localize['UseTaxes'] = wpinv_use_taxes(); |
|
373 | + $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
374 | + $localize['loading'] = __( 'Loading...', 'invoicing' ); |
|
375 | + $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
376 | + |
|
377 | + $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
378 | + |
|
379 | + $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
380 | + wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
|
381 | + wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
382 | + } |
|
383 | + |
|
384 | + public function wpinv_actions() { |
|
385 | + if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
386 | + do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
387 | + } |
|
388 | + } |
|
389 | + |
|
390 | + /** |
|
391 | 391 | * Fires an action after verifying that a user can fire them. |
392 | - * |
|
393 | - * Note: If the action is on an invoice, subscription etc, esure that the |
|
394 | - * current user owns the invoice/subscription. |
|
392 | + * |
|
393 | + * Note: If the action is on an invoice, subscription etc, esure that the |
|
394 | + * current user owns the invoice/subscription. |
|
395 | 395 | */ |
396 | 396 | public function maybe_do_authenticated_action() { |
397 | 397 | |
398 | - if ( isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
398 | + if ( isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
399 | + |
|
400 | + $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
401 | + $data = wp_unslash( $_REQUEST ); |
|
402 | + if ( is_user_logged_in() ) { |
|
403 | + do_action( "getpaid_authenticated_action_$key", $data ); |
|
404 | + } |
|
405 | + |
|
406 | + do_action( "getpaid_unauthenticated_action_$key", $data ); |
|
407 | + |
|
408 | + } |
|
399 | 409 | |
400 | - $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
401 | - $data = wp_unslash( $_REQUEST ); |
|
402 | - if ( is_user_logged_in() ) { |
|
403 | - do_action( "getpaid_authenticated_action_$key", $data ); |
|
404 | - } |
|
410 | + } |
|
405 | 411 | |
406 | - do_action( "getpaid_unauthenticated_action_$key", $data ); |
|
412 | + public function pre_get_posts( $wp_query ) { |
|
407 | 413 | |
408 | - } |
|
414 | + if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
415 | + $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
|
416 | + } |
|
409 | 417 | |
418 | + return $wp_query; |
|
410 | 419 | } |
411 | 420 | |
412 | - public function pre_get_posts( $wp_query ) { |
|
413 | - |
|
414 | - if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
415 | - $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
|
416 | - } |
|
417 | - |
|
418 | - return $wp_query; |
|
419 | - } |
|
420 | - |
|
421 | - /** |
|
422 | - * Register widgets |
|
423 | - * |
|
424 | - */ |
|
425 | - public function register_widgets() { |
|
426 | - |
|
427 | - // Currently, UX Builder does not work particulaly well with SuperDuper. |
|
428 | - // So we disable our widgets when editing a page with UX Builder. |
|
429 | - if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
|
430 | - return; |
|
431 | - } |
|
432 | - |
|
433 | - $widgets = apply_filters( |
|
434 | - 'getpaid_widget_classes', |
|
435 | - array( |
|
436 | - 'WPInv_Checkout_Widget', |
|
437 | - 'WPInv_History_Widget', |
|
438 | - 'WPInv_Receipt_Widget', |
|
439 | - 'WPInv_Subscriptions_Widget', |
|
440 | - 'WPInv_Buy_Item_Widget', |
|
441 | - 'WPInv_Messages_Widget', |
|
442 | - 'WPInv_GetPaid_Widget' |
|
443 | - ) |
|
444 | - ); |
|
445 | - |
|
446 | - foreach ( $widgets as $widget ) { |
|
447 | - register_widget( $widget ); |
|
448 | - } |
|
421 | + /** |
|
422 | + * Register widgets |
|
423 | + * |
|
424 | + */ |
|
425 | + public function register_widgets() { |
|
426 | + |
|
427 | + // Currently, UX Builder does not work particulaly well with SuperDuper. |
|
428 | + // So we disable our widgets when editing a page with UX Builder. |
|
429 | + if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
|
430 | + return; |
|
431 | + } |
|
432 | + |
|
433 | + $widgets = apply_filters( |
|
434 | + 'getpaid_widget_classes', |
|
435 | + array( |
|
436 | + 'WPInv_Checkout_Widget', |
|
437 | + 'WPInv_History_Widget', |
|
438 | + 'WPInv_Receipt_Widget', |
|
439 | + 'WPInv_Subscriptions_Widget', |
|
440 | + 'WPInv_Buy_Item_Widget', |
|
441 | + 'WPInv_Messages_Widget', |
|
442 | + 'WPInv_GetPaid_Widget' |
|
443 | + ) |
|
444 | + ); |
|
445 | + |
|
446 | + foreach ( $widgets as $widget ) { |
|
447 | + register_widget( $widget ); |
|
448 | + } |
|
449 | 449 | |
450 | - } |
|
450 | + } |
|
451 | 451 | |
452 | - /** |
|
453 | - * Upgrades the database. |
|
454 | - * |
|
455 | - * @since 2.0.2 |
|
456 | - */ |
|
457 | - public function maybe_upgrade_database() { |
|
452 | + /** |
|
453 | + * Upgrades the database. |
|
454 | + * |
|
455 | + * @since 2.0.2 |
|
456 | + */ |
|
457 | + public function maybe_upgrade_database() { |
|
458 | 458 | |
459 | - $wpi_version = get_option( 'wpinv_version', 0 ); |
|
459 | + $wpi_version = get_option( 'wpinv_version', 0 ); |
|
460 | 460 | |
461 | - if ( $wpi_version == WPINV_VERSION ) { |
|
462 | - return; |
|
463 | - } |
|
461 | + if ( $wpi_version == WPINV_VERSION ) { |
|
462 | + return; |
|
463 | + } |
|
464 | 464 | |
465 | - $installer = new GetPaid_Installer(); |
|
465 | + $installer = new GetPaid_Installer(); |
|
466 | 466 | |
467 | - if ( empty( $wpi_version ) ) { |
|
468 | - return $installer->upgrade_db( 0 ); |
|
469 | - } |
|
467 | + if ( empty( $wpi_version ) ) { |
|
468 | + return $installer->upgrade_db( 0 ); |
|
469 | + } |
|
470 | 470 | |
471 | - $upgrades = array( |
|
472 | - '0.0.5' => '004', |
|
473 | - '1.0.3' => '102', |
|
474 | - '2.0.0' => '118', |
|
475 | - '2.0.8' => '207', |
|
476 | - ); |
|
471 | + $upgrades = array( |
|
472 | + '0.0.5' => '004', |
|
473 | + '1.0.3' => '102', |
|
474 | + '2.0.0' => '118', |
|
475 | + '2.0.8' => '207', |
|
476 | + ); |
|
477 | 477 | |
478 | - foreach ( $upgrades as $key => $method ) { |
|
478 | + foreach ( $upgrades as $key => $method ) { |
|
479 | 479 | |
480 | - if ( version_compare( $wpi_version, $key, '<' ) ) { |
|
481 | - return $installer->upgrade_db( $method ); |
|
482 | - } |
|
480 | + if ( version_compare( $wpi_version, $key, '<' ) ) { |
|
481 | + return $installer->upgrade_db( $method ); |
|
482 | + } |
|
483 | 483 | |
484 | - } |
|
484 | + } |
|
485 | 485 | |
486 | - } |
|
486 | + } |
|
487 | 487 | |
488 | - /** |
|
489 | - * Flushes the permalinks if needed. |
|
490 | - * |
|
491 | - * @since 2.0.8 |
|
492 | - */ |
|
493 | - public function maybe_flush_permalinks() { |
|
488 | + /** |
|
489 | + * Flushes the permalinks if needed. |
|
490 | + * |
|
491 | + * @since 2.0.8 |
|
492 | + */ |
|
493 | + public function maybe_flush_permalinks() { |
|
494 | 494 | |
495 | - $flush = get_option( 'wpinv_flush_permalinks', 0 ); |
|
495 | + $flush = get_option( 'wpinv_flush_permalinks', 0 ); |
|
496 | 496 | |
497 | - if ( ! empty( $flush ) ) { |
|
498 | - flush_rewrite_rules(); |
|
499 | - delete_option( 'wpinv_flush_permalinks' ); |
|
500 | - } |
|
497 | + if ( ! empty( $flush ) ) { |
|
498 | + flush_rewrite_rules(); |
|
499 | + delete_option( 'wpinv_flush_permalinks' ); |
|
500 | + } |
|
501 | 501 | |
502 | - } |
|
502 | + } |
|
503 | 503 | |
504 | - /** |
|
505 | - * Remove our pages from yoast sitemaps. |
|
506 | - * |
|
507 | - * @since 1.0.19 |
|
508 | - * @param int[] $excluded_posts_ids |
|
509 | - */ |
|
510 | - public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
504 | + /** |
|
505 | + * Remove our pages from yoast sitemaps. |
|
506 | + * |
|
507 | + * @since 1.0.19 |
|
508 | + * @param int[] $excluded_posts_ids |
|
509 | + */ |
|
510 | + public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
511 | 511 | |
512 | - // Ensure that we have an array. |
|
513 | - if ( ! is_array( $excluded_posts_ids ) ) { |
|
514 | - $excluded_posts_ids = array(); |
|
515 | - } |
|
512 | + // Ensure that we have an array. |
|
513 | + if ( ! is_array( $excluded_posts_ids ) ) { |
|
514 | + $excluded_posts_ids = array(); |
|
515 | + } |
|
516 | 516 | |
517 | - // Prepare our pages. |
|
518 | - $our_pages = array(); |
|
517 | + // Prepare our pages. |
|
518 | + $our_pages = array(); |
|
519 | 519 | |
520 | - // Checkout page. |
|
521 | - $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
520 | + // Checkout page. |
|
521 | + $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
522 | 522 | |
523 | - // Success page. |
|
524 | - $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
523 | + // Success page. |
|
524 | + $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
525 | 525 | |
526 | - // Failure page. |
|
527 | - $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
526 | + // Failure page. |
|
527 | + $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
528 | 528 | |
529 | - // History page. |
|
530 | - $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
529 | + // History page. |
|
530 | + $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
531 | 531 | |
532 | - // Subscriptions page. |
|
533 | - $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
532 | + // Subscriptions page. |
|
533 | + $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
534 | 534 | |
535 | - $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
535 | + $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
536 | 536 | |
537 | - $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
|
538 | - return array_unique( $excluded_posts_ids ); |
|
537 | + $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
|
538 | + return array_unique( $excluded_posts_ids ); |
|
539 | 539 | |
540 | - } |
|
540 | + } |
|
541 | 541 | |
542 | - /** |
|
543 | - * Displays additional footer code. |
|
544 | - * |
|
545 | - * @since 2.0.0 |
|
546 | - */ |
|
547 | - public function wp_footer() { |
|
548 | - wpinv_get_template( 'frontend-footer.php' ); |
|
549 | - } |
|
542 | + /** |
|
543 | + * Displays additional footer code. |
|
544 | + * |
|
545 | + * @since 2.0.0 |
|
546 | + */ |
|
547 | + public function wp_footer() { |
|
548 | + wpinv_get_template( 'frontend-footer.php' ); |
|
549 | + } |
|
550 | 550 | |
551 | - /** |
|
552 | - * Displays additional header code. |
|
553 | - * |
|
554 | - * @since 2.0.0 |
|
555 | - */ |
|
556 | - public function wp_head() { |
|
557 | - wpinv_get_template( 'frontend-head.php' ); |
|
558 | - } |
|
551 | + /** |
|
552 | + * Displays additional header code. |
|
553 | + * |
|
554 | + * @since 2.0.0 |
|
555 | + */ |
|
556 | + public function wp_head() { |
|
557 | + wpinv_get_template( 'frontend-head.php' ); |
|
558 | + } |
|
559 | 559 | |
560 | - /** |
|
561 | - * Custom query vars. |
|
562 | - * |
|
563 | - */ |
|
564 | - public function custom_query_vars( $vars ) { |
|
560 | + /** |
|
561 | + * Custom query vars. |
|
562 | + * |
|
563 | + */ |
|
564 | + public function custom_query_vars( $vars ) { |
|
565 | 565 | $vars[] = 'getpaid-ipn'; |
566 | 566 | return $vars; |
567 | - } |
|
567 | + } |
|
568 | 568 | |
569 | - /** |
|
570 | - * Add rewrite tags and rules. |
|
571 | - * |
|
572 | - */ |
|
573 | - public function add_rewrite_rule() { |
|
569 | + /** |
|
570 | + * Add rewrite tags and rules. |
|
571 | + * |
|
572 | + */ |
|
573 | + public function add_rewrite_rule() { |
|
574 | 574 | $tag = 'getpaid-ipn'; |
575 | 575 | add_rewrite_tag( "%$tag%", '([^&]+)' ); |
576 | 576 | add_rewrite_rule( "^$tag/([^/]*)/?", "index.php?$tag=\$matches[1]",'top' ); |
577 | - } |
|
577 | + } |
|
578 | 578 | |
579 | - /** |
|
580 | - * Processes non-query string ipns. |
|
581 | - * |
|
582 | - */ |
|
583 | - public function maybe_process_new_ipn( $query ) { |
|
579 | + /** |
|
580 | + * Processes non-query string ipns. |
|
581 | + * |
|
582 | + */ |
|
583 | + public function maybe_process_new_ipn( $query ) { |
|
584 | 584 | |
585 | 585 | if ( is_admin() || ! $query->is_main_query() ) { |
586 | 586 | return; |
587 | 587 | } |
588 | 588 | |
589 | - $gateway = get_query_var( 'getpaid-ipn' ); |
|
589 | + $gateway = get_query_var( 'getpaid-ipn' ); |
|
590 | 590 | |
591 | 591 | if ( ! empty( $gateway ) ){ |
592 | 592 | |
593 | - $gateway = sanitize_text_field( $gateway ); |
|
594 | - nocache_headers(); |
|
595 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
596 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
597 | - exit; |
|
593 | + $gateway = sanitize_text_field( $gateway ); |
|
594 | + nocache_headers(); |
|
595 | + do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
596 | + do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
597 | + exit; |
|
598 | 598 | |
599 | 599 | } |
600 | 600 | |
601 | - } |
|
601 | + } |
|
602 | 602 | |
603 | 603 | } |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | */ |
7 | 7 | |
8 | 8 | if ( ! defined( 'ABSPATH' ) ) { |
9 | - exit; // Exit if accessed directly |
|
9 | + exit; // Exit if accessed directly |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | /** |
@@ -15,10 +15,10 @@ discard block |
||
15 | 15 | class GetPaid_Meta_Box_Invoice_Subscription { |
16 | 16 | |
17 | 17 | /** |
18 | - * Output the subscription metabox. |
|
19 | - * |
|
20 | - * @param WP_Post $post |
|
21 | - */ |
|
18 | + * Output the subscription metabox. |
|
19 | + * |
|
20 | + * @param WP_Post $post |
|
21 | + */ |
|
22 | 22 | public static function output( $post ) { |
23 | 23 | |
24 | 24 | // Fetch the invoice. |
@@ -34,10 +34,10 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
37 | - * Output the subscription invoices. |
|
38 | - * |
|
39 | - * @param WP_Post $post |
|
40 | - */ |
|
37 | + * Output the subscription invoices. |
|
38 | + * |
|
39 | + * @param WP_Post $post |
|
40 | + */ |
|
41 | 41 | public static function output_invoices( $post ) { |
42 | 42 | |
43 | 43 | // Fetch the invoice. |
@@ -53,10 +53,10 @@ discard block |
||
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
56 | - * Outputs related subscriptions. |
|
57 | - * |
|
58 | - * @param WP_Post $post |
|
59 | - */ |
|
56 | + * Outputs related subscriptions. |
|
57 | + * |
|
58 | + * @param WP_Post $post |
|
59 | + */ |
|
60 | 60 | public static function output_related( $post ) { |
61 | 61 | |
62 | 62 | // Fetch the invoice. |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
141 | 141 | */ |
142 | 142 | function wpinv_get_template_html( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
143 | - return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
143 | + return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @return string |
159 | 159 | */ |
160 | 160 | function wpinv_get_theme_template_dir_name() { |
161 | - return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
161 | + return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -175,122 +175,122 @@ discard block |
||
175 | 175 | } |
176 | 176 | |
177 | 177 | function wpinv_get_template_part( $slug, $name = null, $load = true ) { |
178 | - do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
178 | + do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
179 | 179 | |
180 | - // Setup possible parts |
|
181 | - $templates = array(); |
|
182 | - if ( isset( $name ) ) |
|
183 | - $templates[] = $slug . '-' . $name . '.php'; |
|
184 | - $templates[] = $slug . '.php'; |
|
180 | + // Setup possible parts |
|
181 | + $templates = array(); |
|
182 | + if ( isset( $name ) ) |
|
183 | + $templates[] = $slug . '-' . $name . '.php'; |
|
184 | + $templates[] = $slug . '.php'; |
|
185 | 185 | |
186 | - // Allow template parts to be filtered |
|
187 | - $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
186 | + // Allow template parts to be filtered |
|
187 | + $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
188 | 188 | |
189 | - // Return the part that is found |
|
190 | - return wpinv_locate_tmpl( $templates, $load, false ); |
|
189 | + // Return the part that is found |
|
190 | + return wpinv_locate_tmpl( $templates, $load, false ); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | function wpinv_locate_tmpl( $template_names, $load = false, $require_once = true ) { |
194 | - // No file found yet |
|
195 | - $located = false; |
|
194 | + // No file found yet |
|
195 | + $located = false; |
|
196 | 196 | |
197 | - // Try to find a template file |
|
198 | - foreach ( (array)$template_names as $template_name ) { |
|
197 | + // Try to find a template file |
|
198 | + foreach ( (array)$template_names as $template_name ) { |
|
199 | 199 | |
200 | - // Continue if template is empty |
|
201 | - if ( empty( $template_name ) ) |
|
202 | - continue; |
|
200 | + // Continue if template is empty |
|
201 | + if ( empty( $template_name ) ) |
|
202 | + continue; |
|
203 | 203 | |
204 | - // Trim off any slashes from the template name |
|
205 | - $template_name = ltrim( $template_name, '/' ); |
|
204 | + // Trim off any slashes from the template name |
|
205 | + $template_name = ltrim( $template_name, '/' ); |
|
206 | 206 | |
207 | - // try locating this template file by looping through the template paths |
|
208 | - foreach( wpinv_get_theme_template_paths() as $template_path ) { |
|
207 | + // try locating this template file by looping through the template paths |
|
208 | + foreach( wpinv_get_theme_template_paths() as $template_path ) { |
|
209 | 209 | |
210 | - if( file_exists( $template_path . $template_name ) ) { |
|
211 | - $located = $template_path . $template_name; |
|
212 | - break; |
|
213 | - } |
|
214 | - } |
|
210 | + if( file_exists( $template_path . $template_name ) ) { |
|
211 | + $located = $template_path . $template_name; |
|
212 | + break; |
|
213 | + } |
|
214 | + } |
|
215 | 215 | |
216 | - if( !empty( $located ) ) { |
|
217 | - break; |
|
218 | - } |
|
219 | - } |
|
216 | + if( !empty( $located ) ) { |
|
217 | + break; |
|
218 | + } |
|
219 | + } |
|
220 | 220 | |
221 | - if ( ( true == $load ) && ! empty( $located ) ) |
|
222 | - load_template( $located, $require_once ); |
|
221 | + if ( ( true == $load ) && ! empty( $located ) ) |
|
222 | + load_template( $located, $require_once ); |
|
223 | 223 | |
224 | - return $located; |
|
224 | + return $located; |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | function wpinv_get_theme_template_paths() { |
228 | - $template_dir = wpinv_get_theme_template_dir_name(); |
|
228 | + $template_dir = wpinv_get_theme_template_dir_name(); |
|
229 | 229 | |
230 | - $file_paths = array( |
|
231 | - 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
232 | - 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
233 | - 100 => wpinv_get_templates_dir() |
|
234 | - ); |
|
230 | + $file_paths = array( |
|
231 | + 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
232 | + 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
233 | + 100 => wpinv_get_templates_dir() |
|
234 | + ); |
|
235 | 235 | |
236 | - $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
236 | + $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
237 | 237 | |
238 | - // sort the file paths based on priority |
|
239 | - ksort( $file_paths, SORT_NUMERIC ); |
|
238 | + // sort the file paths based on priority |
|
239 | + ksort( $file_paths, SORT_NUMERIC ); |
|
240 | 240 | |
241 | - return array_map( 'trailingslashit', $file_paths ); |
|
241 | + return array_map( 'trailingslashit', $file_paths ); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | function wpinv_checkout_meta_tags() { |
245 | 245 | |
246 | - $pages = array(); |
|
247 | - $pages[] = wpinv_get_option( 'success_page' ); |
|
248 | - $pages[] = wpinv_get_option( 'failure_page' ); |
|
249 | - $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
250 | - $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
246 | + $pages = array(); |
|
247 | + $pages[] = wpinv_get_option( 'success_page' ); |
|
248 | + $pages[] = wpinv_get_option( 'failure_page' ); |
|
249 | + $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
250 | + $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
251 | 251 | |
252 | - if( !wpinv_is_checkout() && !is_page( $pages ) ) { |
|
253 | - return; |
|
254 | - } |
|
252 | + if( !wpinv_is_checkout() && !is_page( $pages ) ) { |
|
253 | + return; |
|
254 | + } |
|
255 | 255 | |
256 | - echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
|
256 | + echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
|
257 | 257 | } |
258 | 258 | add_action( 'wp_head', 'wpinv_checkout_meta_tags' ); |
259 | 259 | |
260 | 260 | function wpinv_add_body_classes( $class ) { |
261 | - $classes = (array)$class; |
|
261 | + $classes = (array)$class; |
|
262 | 262 | |
263 | - if( wpinv_is_checkout() ) { |
|
264 | - $classes[] = 'wpinv-checkout'; |
|
265 | - $classes[] = 'wpinv-page'; |
|
266 | - } |
|
263 | + if( wpinv_is_checkout() ) { |
|
264 | + $classes[] = 'wpinv-checkout'; |
|
265 | + $classes[] = 'wpinv-page'; |
|
266 | + } |
|
267 | 267 | |
268 | - if( wpinv_is_success_page() ) { |
|
269 | - $classes[] = 'wpinv-success'; |
|
270 | - $classes[] = 'wpinv-page'; |
|
271 | - } |
|
268 | + if( wpinv_is_success_page() ) { |
|
269 | + $classes[] = 'wpinv-success'; |
|
270 | + $classes[] = 'wpinv-page'; |
|
271 | + } |
|
272 | 272 | |
273 | - if( wpinv_is_failed_transaction_page() ) { |
|
274 | - $classes[] = 'wpinv-failed-transaction'; |
|
275 | - $classes[] = 'wpinv-page'; |
|
276 | - } |
|
273 | + if( wpinv_is_failed_transaction_page() ) { |
|
274 | + $classes[] = 'wpinv-failed-transaction'; |
|
275 | + $classes[] = 'wpinv-page'; |
|
276 | + } |
|
277 | 277 | |
278 | - if( wpinv_is_invoice_history_page() ) { |
|
279 | - $classes[] = 'wpinv-history'; |
|
280 | - $classes[] = 'wpinv-page'; |
|
281 | - } |
|
278 | + if( wpinv_is_invoice_history_page() ) { |
|
279 | + $classes[] = 'wpinv-history'; |
|
280 | + $classes[] = 'wpinv-page'; |
|
281 | + } |
|
282 | 282 | |
283 | - if( wpinv_is_subscriptions_history_page() ) { |
|
284 | - $classes[] = 'wpinv-subscription'; |
|
285 | - $classes[] = 'wpinv-page'; |
|
286 | - } |
|
283 | + if( wpinv_is_subscriptions_history_page() ) { |
|
284 | + $classes[] = 'wpinv-subscription'; |
|
285 | + $classes[] = 'wpinv-page'; |
|
286 | + } |
|
287 | 287 | |
288 | - if( wpinv_is_test_mode() ) { |
|
289 | - $classes[] = 'wpinv-test-mode'; |
|
290 | - $classes[] = 'wpinv-page'; |
|
291 | - } |
|
288 | + if( wpinv_is_test_mode() ) { |
|
289 | + $classes[] = 'wpinv-test-mode'; |
|
290 | + $classes[] = 'wpinv-page'; |
|
291 | + } |
|
292 | 292 | |
293 | - return array_unique( $classes ); |
|
293 | + return array_unique( $classes ); |
|
294 | 294 | } |
295 | 295 | add_filter( 'body_class', 'wpinv_add_body_classes' ); |
296 | 296 | |
@@ -821,21 +821,21 @@ discard block |
||
821 | 821 | |
822 | 822 | $formatted_address = str_ireplace( array_keys( $replacements ), $replacements, $format ); |
823 | 823 | |
824 | - // Remove unavailable tags. |
|
824 | + // Remove unavailable tags. |
|
825 | 825 | $formatted_address = preg_replace( "/\{\{\w+\}\}/", '', $formatted_address ); |
826 | 826 | |
827 | 827 | // Clean up white space. |
828 | - $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
828 | + $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
829 | 829 | $formatted_address = preg_replace( '/\n\n+/', "\n", $formatted_address ); |
830 | 830 | |
831 | 831 | // Break newlines apart and remove empty lines/trim commas and white space. |
832 | - $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
832 | + $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
833 | 833 | |
834 | 834 | // Add html breaks. |
835 | - $formatted_address = implode( $separator, $formatted_address ); |
|
835 | + $formatted_address = implode( $separator, $formatted_address ); |
|
836 | 836 | |
837 | - // We're done! |
|
838 | - return $formatted_address; |
|
837 | + // We're done! |
|
838 | + return $formatted_address; |
|
839 | 839 | |
840 | 840 | } |
841 | 841 | |
@@ -881,7 +881,7 @@ discard block |
||
881 | 881 | function getpaid_display_invoice_subscriptions( $invoice ) { |
882 | 882 | |
883 | 883 | // Subscriptions. |
884 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
884 | + $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
885 | 885 | |
886 | 886 | if ( empty( $subscriptions ) || ! $invoice->is_recurring() ) { |
887 | 887 | return; |
@@ -1089,7 +1089,7 @@ discard block |
||
1089 | 1089 | } |
1090 | 1090 | |
1091 | 1091 | function wpinv_empty_cart_message() { |
1092 | - return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
1092 | + return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
1093 | 1093 | } |
1094 | 1094 | |
1095 | 1095 | /** |
@@ -1281,10 +1281,10 @@ discard block |
||
1281 | 1281 | |
1282 | 1282 | if ( 0 == count( $form->get_items() ) ) { |
1283 | 1283 | echo aui()->alert( |
1284 | - array( |
|
1285 | - 'type' => 'warning', |
|
1286 | - 'content' => __( 'No published items found', 'invoicing' ), |
|
1287 | - ) |
|
1284 | + array( |
|
1285 | + 'type' => 'warning', |
|
1286 | + 'content' => __( 'No published items found', 'invoicing' ), |
|
1287 | + ) |
|
1288 | 1288 | ); |
1289 | 1289 | return; |
1290 | 1290 | } |
@@ -1302,21 +1302,21 @@ discard block |
||
1302 | 1302 | $invoice = wpinv_get_invoice( $invoice_id ); |
1303 | 1303 | |
1304 | 1304 | if ( empty( $invoice ) ) { |
1305 | - echo aui()->alert( |
|
1306 | - array( |
|
1307 | - 'type' => 'warning', |
|
1308 | - 'content' => __( 'Invoice not found', 'invoicing' ), |
|
1309 | - ) |
|
1305 | + echo aui()->alert( |
|
1306 | + array( |
|
1307 | + 'type' => 'warning', |
|
1308 | + 'content' => __( 'Invoice not found', 'invoicing' ), |
|
1309 | + ) |
|
1310 | 1310 | ); |
1311 | 1311 | return; |
1312 | 1312 | } |
1313 | 1313 | |
1314 | 1314 | if ( $invoice->is_paid() ) { |
1315 | - echo aui()->alert( |
|
1316 | - array( |
|
1317 | - 'type' => 'warning', |
|
1318 | - 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
1319 | - ) |
|
1315 | + echo aui()->alert( |
|
1316 | + array( |
|
1317 | + 'type' => 'warning', |
|
1318 | + 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
1319 | + ) |
|
1320 | 1320 | ); |
1321 | 1321 | return; |
1322 | 1322 | } |
@@ -1378,7 +1378,7 @@ discard block |
||
1378 | 1378 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-form='$form'>$label</button>"; |
1379 | 1379 | } |
1380 | 1380 | |
1381 | - if ( ! empty( $items ) ) { |
|
1381 | + if ( ! empty( $items ) ) { |
|
1382 | 1382 | $items = esc_attr( $items ); |
1383 | 1383 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-item='$items'>$label</button>"; |
1384 | 1384 | } |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | if ( ! defined( 'ABSPATH' ) ) exit; |
7 | 7 | |
8 | 8 | if ( ! class_exists( 'WP_List_Table' ) ) { |
9 | - include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
9 | + include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | /** |
@@ -14,406 +14,406 @@ discard block |
||
14 | 14 | */ |
15 | 15 | class WPInv_Subscriptions_List_Table extends WP_List_Table { |
16 | 16 | |
17 | - /** |
|
18 | - * URL of this page |
|
19 | - * |
|
20 | - * @var string |
|
21 | - * @since 1.0.19 |
|
22 | - */ |
|
23 | - public $base_url; |
|
24 | - |
|
25 | - /** |
|
26 | - * Query |
|
27 | - * |
|
28 | - * @var GetPaid_Subscriptions_Query |
|
29 | - * @since 1.0.19 |
|
30 | - */ |
|
31 | - public $query; |
|
32 | - |
|
33 | - /** |
|
34 | - * Total subscriptions |
|
35 | - * |
|
36 | - * @var string |
|
37 | - * @since 1.0.0 |
|
38 | - */ |
|
39 | - public $total_count; |
|
40 | - |
|
41 | - /** |
|
42 | - * Current status subscriptions |
|
43 | - * |
|
44 | - * @var string |
|
45 | - * @since 1.0.0 |
|
46 | - */ |
|
47 | - public $current_total_count; |
|
48 | - |
|
49 | - /** |
|
50 | - * Status counts |
|
51 | - * |
|
52 | - * @var array |
|
53 | - * @since 1.0.19 |
|
54 | - */ |
|
55 | - public $status_counts; |
|
56 | - |
|
57 | - /** |
|
58 | - * Number of results to show per page |
|
59 | - * |
|
60 | - * @var int |
|
61 | - * @since 1.0.0 |
|
62 | - */ |
|
63 | - public $per_page = 10; |
|
64 | - |
|
65 | - /** |
|
66 | - * Constructor function. |
|
67 | - */ |
|
68 | - public function __construct() { |
|
69 | - |
|
70 | - parent::__construct( |
|
71 | - array( |
|
72 | - 'singular' => 'subscription', |
|
73 | - 'plural' => 'subscriptions', |
|
74 | - ) |
|
75 | - ); |
|
76 | - |
|
77 | - $this->process_bulk_action(); |
|
78 | - |
|
79 | - $this->prepare_query(); |
|
80 | - |
|
81 | - $this->base_url = remove_query_arg( 'status' ); |
|
82 | - |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Prepares the display query |
|
87 | - */ |
|
88 | - public function prepare_query() { |
|
89 | - |
|
90 | - // Prepare query args. |
|
91 | - $query = array( |
|
92 | - 'number' => $this->per_page, |
|
93 | - 'paged' => $this->get_paged(), |
|
94 | - 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? $_GET['status'] : 'all', |
|
95 | - 'orderby' => ( isset( $_GET['orderby'] ) ) ? $_GET['orderby'] : 'id', |
|
96 | - 'order' => ( isset( $_GET['order'] ) ) ? $_GET['order'] : 'DESC', |
|
97 | - ); |
|
98 | - |
|
99 | - // Prepare class properties. |
|
100 | - $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
101 | - $this->total_count = $this->query->get_total(); |
|
102 | - $this->current_total_count = $this->query->get_total(); |
|
103 | - $this->items = $this->query->get_results(); |
|
104 | - $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
105 | - |
|
106 | - if ( 'all' != $query['status'] ) { |
|
107 | - unset( $query['status'] ); |
|
108 | - $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
109 | - } |
|
110 | - |
|
111 | - } |
|
112 | - |
|
113 | - /** |
|
114 | - * Gets the list of views available on this table. |
|
115 | - * |
|
116 | - * The format is an associative array: |
|
117 | - * - `'id' => 'link'` |
|
118 | - * |
|
119 | - * @since 1.0.0 |
|
120 | - * |
|
121 | - * @return array |
|
122 | - */ |
|
123 | - public function get_views() { |
|
124 | - |
|
125 | - $current = isset( $_GET['status'] ) ? $_GET['status'] : 'all'; |
|
126 | - $views = array( |
|
127 | - |
|
128 | - 'all' => sprintf( |
|
129 | - '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
130 | - esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
131 | - $current === 'all' ? ' class="current"' : '', |
|
132 | - __('All','invoicing' ), |
|
133 | - $this->total_count |
|
134 | - ) |
|
135 | - |
|
136 | - ); |
|
137 | - |
|
138 | - foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
139 | - |
|
140 | - $views[ $status ] = sprintf( |
|
141 | - '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
142 | - esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
143 | - $current === $status ? ' class="current"' : '', |
|
144 | - sanitize_text_field( getpaid_get_subscription_status_label( $status ) ), |
|
145 | - $count |
|
146 | - ); |
|
147 | - |
|
148 | - } |
|
149 | - |
|
150 | - return $views; |
|
151 | - |
|
152 | - } |
|
153 | - |
|
154 | - /** |
|
155 | - * Render most columns |
|
156 | - * |
|
157 | - * @access private |
|
158 | - * @since 1.0.0 |
|
159 | - * @return string |
|
160 | - */ |
|
161 | - public function column_default( $item, $column_name ) { |
|
162 | - return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
163 | - } |
|
164 | - |
|
165 | - /** |
|
166 | - * This is how checkbox column renders. |
|
167 | - * |
|
168 | - * @param WPInv_Subscription $item |
|
169 | - * @return string |
|
170 | - */ |
|
171 | - public function column_cb( $item ) { |
|
172 | - return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
173 | - } |
|
174 | - |
|
175 | - /** |
|
176 | - * Status column |
|
177 | - * |
|
178 | - * @param WPInv_Subscription $item |
|
179 | - * @since 1.0.0 |
|
180 | - * @return string |
|
181 | - */ |
|
182 | - public function column_status( $item ) { |
|
183 | - return $item->get_status_label_html(); |
|
184 | - } |
|
185 | - |
|
186 | - /** |
|
187 | - * Subscription column |
|
188 | - * |
|
189 | - * @param WPInv_Subscription $item |
|
190 | - * @since 1.0.0 |
|
191 | - * @return string |
|
192 | - */ |
|
193 | - public function column_subscription( $item ) { |
|
194 | - |
|
195 | - $username = __( '(Missing User)', 'invoicing' ); |
|
196 | - |
|
197 | - $user = get_userdata( $item->get_customer_id() ); |
|
198 | - if ( $user ) { |
|
199 | - |
|
200 | - $username = sprintf( |
|
201 | - '<a href="user-edit.php?user_id=%s">%s</a>', |
|
202 | - absint( $user->ID ), |
|
203 | - ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
204 | - ); |
|
205 | - |
|
206 | - } |
|
207 | - |
|
208 | - // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
|
209 | - $column_content = sprintf( |
|
210 | - _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
211 | - '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
212 | - '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
213 | - $username |
|
214 | - ); |
|
215 | - |
|
216 | - $row_actions = array(); |
|
217 | - |
|
218 | - // View subscription. |
|
219 | - $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
220 | - $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
221 | - |
|
222 | - // View invoice. |
|
223 | - $invoice = get_post( $item->get_parent_invoice_id() ); |
|
224 | - |
|
225 | - if ( ! empty( $invoice ) ) { |
|
226 | - $invoice_url = get_edit_post_link( $invoice ); |
|
227 | - $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
228 | - } |
|
229 | - |
|
230 | - $delete_url = esc_url( |
|
231 | - wp_nonce_url( |
|
232 | - add_query_arg( |
|
233 | - array( |
|
234 | - 'getpaid-admin-action' => 'subscription_manual_delete', |
|
235 | - 'id' => $item->get_id(), |
|
236 | - ) |
|
237 | - ), |
|
238 | - 'getpaid-nonce', |
|
239 | - 'getpaid-nonce' |
|
240 | - ) |
|
241 | - ); |
|
242 | - $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
243 | - |
|
244 | - $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
245 | - |
|
246 | - return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
247 | - } |
|
248 | - |
|
249 | - /** |
|
250 | - * Renewal date column |
|
251 | - * |
|
252 | - * @param WPInv_Subscription $item |
|
253 | - * @since 1.0.0 |
|
254 | - * @return string |
|
255 | - */ |
|
256 | - public function column_renewal_date( $item ) { |
|
257 | - return getpaid_format_date_value( $item->get_expiration() ); |
|
258 | - } |
|
259 | - |
|
260 | - /** |
|
261 | - * Start date column |
|
262 | - * |
|
263 | - * @param WPInv_Subscription $item |
|
264 | - * @since 1.0.0 |
|
265 | - * @return string |
|
266 | - */ |
|
267 | - public function column_start_date( $item ) { |
|
268 | - return getpaid_format_date_value( $item->get_date_created() ); |
|
269 | - } |
|
270 | - |
|
271 | - /** |
|
272 | - * Amount column |
|
273 | - * |
|
274 | - * @param WPInv_Subscription $item |
|
275 | - * @since 1.0.19 |
|
276 | - * @return string |
|
277 | - */ |
|
278 | - public static function column_amount( $item ) { |
|
279 | - $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
280 | - return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
|
281 | - } |
|
282 | - |
|
283 | - /** |
|
284 | - * Billing Times column |
|
285 | - * |
|
286 | - * @param WPInv_Subscription $item |
|
287 | - * @since 1.0.0 |
|
288 | - * @return string |
|
289 | - */ |
|
290 | - public function column_renewals( $item ) { |
|
291 | - $max_bills = $item->get_bill_times(); |
|
292 | - return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
293 | - } |
|
294 | - |
|
295 | - /** |
|
296 | - * Product ID column |
|
297 | - * |
|
298 | - * @param WPInv_Subscription $item |
|
299 | - * @since 1.0.0 |
|
300 | - * @return string |
|
301 | - */ |
|
302 | - public function column_item( $item ) { |
|
303 | - $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
304 | - |
|
305 | - if ( empty( $subscription_group ) ) { |
|
306 | - return $this->generate_item_markup( $item->get_product_id() ); |
|
307 | - } |
|
308 | - |
|
309 | - $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
310 | - return implode( ' | ', $markup ); |
|
311 | - |
|
312 | - } |
|
313 | - |
|
314 | - /** |
|
315 | - * Generates the items markup. |
|
316 | - * |
|
317 | - * @param int $item_id |
|
318 | - * @since 1.0.0 |
|
319 | - * @return string |
|
320 | - */ |
|
321 | - public static function generate_item_markup( $item_id ) { |
|
322 | - $item = get_post( $item_id ); |
|
323 | - |
|
324 | - if ( ! empty( $item ) ) { |
|
325 | - $link = get_edit_post_link( $item ); |
|
326 | - $link = esc_url( $link ); |
|
327 | - $name = esc_html( get_the_title( $item ) ); |
|
328 | - return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
|
329 | - } else { |
|
330 | - return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
331 | - } |
|
332 | - |
|
333 | - } |
|
334 | - |
|
335 | - /** |
|
336 | - * Retrieve the current page number |
|
337 | - * |
|
338 | - * @return int |
|
339 | - */ |
|
340 | - public function get_paged() { |
|
341 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
342 | - } |
|
343 | - |
|
344 | - /** |
|
345 | - * Setup the final data for the table |
|
346 | - * |
|
347 | - */ |
|
348 | - public function prepare_items() { |
|
349 | - |
|
350 | - $columns = $this->get_columns(); |
|
351 | - $hidden = array(); |
|
352 | - $sortable = $this->get_sortable_columns(); |
|
353 | - |
|
354 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
355 | - |
|
356 | - $this->set_pagination_args( |
|
357 | - array( |
|
358 | - 'total_items' => $this->current_total_count, |
|
359 | - 'per_page' => $this->per_page, |
|
360 | - 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
361 | - ) |
|
362 | - ); |
|
363 | - } |
|
364 | - |
|
365 | - /** |
|
366 | - * Table columns |
|
367 | - * |
|
368 | - * @return array |
|
369 | - */ |
|
370 | - public function get_columns(){ |
|
371 | - $columns = array( |
|
372 | - 'cb' => '<input type="checkbox" />', |
|
373 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
374 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
375 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
376 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
377 | - 'item' => __( 'Items', 'invoicing' ), |
|
378 | - 'status' => __( 'Status', 'invoicing' ), |
|
379 | - ); |
|
380 | - |
|
381 | - return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
382 | - } |
|
383 | - |
|
384 | - /** |
|
385 | - * Sortable table columns. |
|
386 | - * |
|
387 | - * @return array |
|
388 | - */ |
|
389 | - public function get_sortable_columns() { |
|
390 | - $sortable = array( |
|
391 | - 'subscription' => array( 'id', true ), |
|
392 | - 'start_date' => array( 'created', true ), |
|
393 | - 'renewal_date' => array( 'expiration', true ), |
|
394 | - 'renewals' => array( 'bill_times', true ), |
|
395 | - 'item' => array( 'product_id', true ), |
|
396 | - 'status' => array( 'status', true ), |
|
397 | - ); |
|
398 | - |
|
399 | - return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
400 | - } |
|
401 | - |
|
402 | - /** |
|
403 | - * Whether the table has items to display or not |
|
404 | - * |
|
405 | - * @return bool |
|
406 | - */ |
|
407 | - public function has_items() { |
|
408 | - return ! empty( $this->current_total_count ); |
|
409 | - } |
|
410 | - |
|
411 | - /** |
|
412 | - * Processes bulk actions. |
|
413 | - * |
|
414 | - */ |
|
415 | - public function process_bulk_action() { |
|
416 | - |
|
417 | - } |
|
17 | + /** |
|
18 | + * URL of this page |
|
19 | + * |
|
20 | + * @var string |
|
21 | + * @since 1.0.19 |
|
22 | + */ |
|
23 | + public $base_url; |
|
24 | + |
|
25 | + /** |
|
26 | + * Query |
|
27 | + * |
|
28 | + * @var GetPaid_Subscriptions_Query |
|
29 | + * @since 1.0.19 |
|
30 | + */ |
|
31 | + public $query; |
|
32 | + |
|
33 | + /** |
|
34 | + * Total subscriptions |
|
35 | + * |
|
36 | + * @var string |
|
37 | + * @since 1.0.0 |
|
38 | + */ |
|
39 | + public $total_count; |
|
40 | + |
|
41 | + /** |
|
42 | + * Current status subscriptions |
|
43 | + * |
|
44 | + * @var string |
|
45 | + * @since 1.0.0 |
|
46 | + */ |
|
47 | + public $current_total_count; |
|
48 | + |
|
49 | + /** |
|
50 | + * Status counts |
|
51 | + * |
|
52 | + * @var array |
|
53 | + * @since 1.0.19 |
|
54 | + */ |
|
55 | + public $status_counts; |
|
56 | + |
|
57 | + /** |
|
58 | + * Number of results to show per page |
|
59 | + * |
|
60 | + * @var int |
|
61 | + * @since 1.0.0 |
|
62 | + */ |
|
63 | + public $per_page = 10; |
|
64 | + |
|
65 | + /** |
|
66 | + * Constructor function. |
|
67 | + */ |
|
68 | + public function __construct() { |
|
69 | + |
|
70 | + parent::__construct( |
|
71 | + array( |
|
72 | + 'singular' => 'subscription', |
|
73 | + 'plural' => 'subscriptions', |
|
74 | + ) |
|
75 | + ); |
|
76 | + |
|
77 | + $this->process_bulk_action(); |
|
78 | + |
|
79 | + $this->prepare_query(); |
|
80 | + |
|
81 | + $this->base_url = remove_query_arg( 'status' ); |
|
82 | + |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * Prepares the display query |
|
87 | + */ |
|
88 | + public function prepare_query() { |
|
89 | + |
|
90 | + // Prepare query args. |
|
91 | + $query = array( |
|
92 | + 'number' => $this->per_page, |
|
93 | + 'paged' => $this->get_paged(), |
|
94 | + 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? $_GET['status'] : 'all', |
|
95 | + 'orderby' => ( isset( $_GET['orderby'] ) ) ? $_GET['orderby'] : 'id', |
|
96 | + 'order' => ( isset( $_GET['order'] ) ) ? $_GET['order'] : 'DESC', |
|
97 | + ); |
|
98 | + |
|
99 | + // Prepare class properties. |
|
100 | + $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
101 | + $this->total_count = $this->query->get_total(); |
|
102 | + $this->current_total_count = $this->query->get_total(); |
|
103 | + $this->items = $this->query->get_results(); |
|
104 | + $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
105 | + |
|
106 | + if ( 'all' != $query['status'] ) { |
|
107 | + unset( $query['status'] ); |
|
108 | + $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
109 | + } |
|
110 | + |
|
111 | + } |
|
112 | + |
|
113 | + /** |
|
114 | + * Gets the list of views available on this table. |
|
115 | + * |
|
116 | + * The format is an associative array: |
|
117 | + * - `'id' => 'link'` |
|
118 | + * |
|
119 | + * @since 1.0.0 |
|
120 | + * |
|
121 | + * @return array |
|
122 | + */ |
|
123 | + public function get_views() { |
|
124 | + |
|
125 | + $current = isset( $_GET['status'] ) ? $_GET['status'] : 'all'; |
|
126 | + $views = array( |
|
127 | + |
|
128 | + 'all' => sprintf( |
|
129 | + '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
130 | + esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
131 | + $current === 'all' ? ' class="current"' : '', |
|
132 | + __('All','invoicing' ), |
|
133 | + $this->total_count |
|
134 | + ) |
|
135 | + |
|
136 | + ); |
|
137 | + |
|
138 | + foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
139 | + |
|
140 | + $views[ $status ] = sprintf( |
|
141 | + '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
142 | + esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
143 | + $current === $status ? ' class="current"' : '', |
|
144 | + sanitize_text_field( getpaid_get_subscription_status_label( $status ) ), |
|
145 | + $count |
|
146 | + ); |
|
147 | + |
|
148 | + } |
|
149 | + |
|
150 | + return $views; |
|
151 | + |
|
152 | + } |
|
153 | + |
|
154 | + /** |
|
155 | + * Render most columns |
|
156 | + * |
|
157 | + * @access private |
|
158 | + * @since 1.0.0 |
|
159 | + * @return string |
|
160 | + */ |
|
161 | + public function column_default( $item, $column_name ) { |
|
162 | + return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
163 | + } |
|
164 | + |
|
165 | + /** |
|
166 | + * This is how checkbox column renders. |
|
167 | + * |
|
168 | + * @param WPInv_Subscription $item |
|
169 | + * @return string |
|
170 | + */ |
|
171 | + public function column_cb( $item ) { |
|
172 | + return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
173 | + } |
|
174 | + |
|
175 | + /** |
|
176 | + * Status column |
|
177 | + * |
|
178 | + * @param WPInv_Subscription $item |
|
179 | + * @since 1.0.0 |
|
180 | + * @return string |
|
181 | + */ |
|
182 | + public function column_status( $item ) { |
|
183 | + return $item->get_status_label_html(); |
|
184 | + } |
|
185 | + |
|
186 | + /** |
|
187 | + * Subscription column |
|
188 | + * |
|
189 | + * @param WPInv_Subscription $item |
|
190 | + * @since 1.0.0 |
|
191 | + * @return string |
|
192 | + */ |
|
193 | + public function column_subscription( $item ) { |
|
194 | + |
|
195 | + $username = __( '(Missing User)', 'invoicing' ); |
|
196 | + |
|
197 | + $user = get_userdata( $item->get_customer_id() ); |
|
198 | + if ( $user ) { |
|
199 | + |
|
200 | + $username = sprintf( |
|
201 | + '<a href="user-edit.php?user_id=%s">%s</a>', |
|
202 | + absint( $user->ID ), |
|
203 | + ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
204 | + ); |
|
205 | + |
|
206 | + } |
|
207 | + |
|
208 | + // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
|
209 | + $column_content = sprintf( |
|
210 | + _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
211 | + '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
212 | + '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
213 | + $username |
|
214 | + ); |
|
215 | + |
|
216 | + $row_actions = array(); |
|
217 | + |
|
218 | + // View subscription. |
|
219 | + $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
220 | + $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
221 | + |
|
222 | + // View invoice. |
|
223 | + $invoice = get_post( $item->get_parent_invoice_id() ); |
|
224 | + |
|
225 | + if ( ! empty( $invoice ) ) { |
|
226 | + $invoice_url = get_edit_post_link( $invoice ); |
|
227 | + $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
228 | + } |
|
229 | + |
|
230 | + $delete_url = esc_url( |
|
231 | + wp_nonce_url( |
|
232 | + add_query_arg( |
|
233 | + array( |
|
234 | + 'getpaid-admin-action' => 'subscription_manual_delete', |
|
235 | + 'id' => $item->get_id(), |
|
236 | + ) |
|
237 | + ), |
|
238 | + 'getpaid-nonce', |
|
239 | + 'getpaid-nonce' |
|
240 | + ) |
|
241 | + ); |
|
242 | + $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
243 | + |
|
244 | + $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
245 | + |
|
246 | + return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
247 | + } |
|
248 | + |
|
249 | + /** |
|
250 | + * Renewal date column |
|
251 | + * |
|
252 | + * @param WPInv_Subscription $item |
|
253 | + * @since 1.0.0 |
|
254 | + * @return string |
|
255 | + */ |
|
256 | + public function column_renewal_date( $item ) { |
|
257 | + return getpaid_format_date_value( $item->get_expiration() ); |
|
258 | + } |
|
259 | + |
|
260 | + /** |
|
261 | + * Start date column |
|
262 | + * |
|
263 | + * @param WPInv_Subscription $item |
|
264 | + * @since 1.0.0 |
|
265 | + * @return string |
|
266 | + */ |
|
267 | + public function column_start_date( $item ) { |
|
268 | + return getpaid_format_date_value( $item->get_date_created() ); |
|
269 | + } |
|
270 | + |
|
271 | + /** |
|
272 | + * Amount column |
|
273 | + * |
|
274 | + * @param WPInv_Subscription $item |
|
275 | + * @since 1.0.19 |
|
276 | + * @return string |
|
277 | + */ |
|
278 | + public static function column_amount( $item ) { |
|
279 | + $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
280 | + return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
|
281 | + } |
|
282 | + |
|
283 | + /** |
|
284 | + * Billing Times column |
|
285 | + * |
|
286 | + * @param WPInv_Subscription $item |
|
287 | + * @since 1.0.0 |
|
288 | + * @return string |
|
289 | + */ |
|
290 | + public function column_renewals( $item ) { |
|
291 | + $max_bills = $item->get_bill_times(); |
|
292 | + return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
293 | + } |
|
294 | + |
|
295 | + /** |
|
296 | + * Product ID column |
|
297 | + * |
|
298 | + * @param WPInv_Subscription $item |
|
299 | + * @since 1.0.0 |
|
300 | + * @return string |
|
301 | + */ |
|
302 | + public function column_item( $item ) { |
|
303 | + $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
304 | + |
|
305 | + if ( empty( $subscription_group ) ) { |
|
306 | + return $this->generate_item_markup( $item->get_product_id() ); |
|
307 | + } |
|
308 | + |
|
309 | + $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
310 | + return implode( ' | ', $markup ); |
|
311 | + |
|
312 | + } |
|
313 | + |
|
314 | + /** |
|
315 | + * Generates the items markup. |
|
316 | + * |
|
317 | + * @param int $item_id |
|
318 | + * @since 1.0.0 |
|
319 | + * @return string |
|
320 | + */ |
|
321 | + public static function generate_item_markup( $item_id ) { |
|
322 | + $item = get_post( $item_id ); |
|
323 | + |
|
324 | + if ( ! empty( $item ) ) { |
|
325 | + $link = get_edit_post_link( $item ); |
|
326 | + $link = esc_url( $link ); |
|
327 | + $name = esc_html( get_the_title( $item ) ); |
|
328 | + return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
|
329 | + } else { |
|
330 | + return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
331 | + } |
|
332 | + |
|
333 | + } |
|
334 | + |
|
335 | + /** |
|
336 | + * Retrieve the current page number |
|
337 | + * |
|
338 | + * @return int |
|
339 | + */ |
|
340 | + public function get_paged() { |
|
341 | + return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
342 | + } |
|
343 | + |
|
344 | + /** |
|
345 | + * Setup the final data for the table |
|
346 | + * |
|
347 | + */ |
|
348 | + public function prepare_items() { |
|
349 | + |
|
350 | + $columns = $this->get_columns(); |
|
351 | + $hidden = array(); |
|
352 | + $sortable = $this->get_sortable_columns(); |
|
353 | + |
|
354 | + $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
355 | + |
|
356 | + $this->set_pagination_args( |
|
357 | + array( |
|
358 | + 'total_items' => $this->current_total_count, |
|
359 | + 'per_page' => $this->per_page, |
|
360 | + 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
361 | + ) |
|
362 | + ); |
|
363 | + } |
|
364 | + |
|
365 | + /** |
|
366 | + * Table columns |
|
367 | + * |
|
368 | + * @return array |
|
369 | + */ |
|
370 | + public function get_columns(){ |
|
371 | + $columns = array( |
|
372 | + 'cb' => '<input type="checkbox" />', |
|
373 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
374 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
375 | + 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
376 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
377 | + 'item' => __( 'Items', 'invoicing' ), |
|
378 | + 'status' => __( 'Status', 'invoicing' ), |
|
379 | + ); |
|
380 | + |
|
381 | + return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
382 | + } |
|
383 | + |
|
384 | + /** |
|
385 | + * Sortable table columns. |
|
386 | + * |
|
387 | + * @return array |
|
388 | + */ |
|
389 | + public function get_sortable_columns() { |
|
390 | + $sortable = array( |
|
391 | + 'subscription' => array( 'id', true ), |
|
392 | + 'start_date' => array( 'created', true ), |
|
393 | + 'renewal_date' => array( 'expiration', true ), |
|
394 | + 'renewals' => array( 'bill_times', true ), |
|
395 | + 'item' => array( 'product_id', true ), |
|
396 | + 'status' => array( 'status', true ), |
|
397 | + ); |
|
398 | + |
|
399 | + return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
400 | + } |
|
401 | + |
|
402 | + /** |
|
403 | + * Whether the table has items to display or not |
|
404 | + * |
|
405 | + * @return bool |
|
406 | + */ |
|
407 | + public function has_items() { |
|
408 | + return ! empty( $this->current_total_count ); |
|
409 | + } |
|
410 | + |
|
411 | + /** |
|
412 | + * Processes bulk actions. |
|
413 | + * |
|
414 | + */ |
|
415 | + public function process_bulk_action() { |
|
416 | + |
|
417 | + } |
|
418 | 418 | |
419 | 419 | } |
@@ -14,144 +14,144 @@ discard block |
||
14 | 14 | */ |
15 | 15 | class WPInv_Subscriptions_Widget extends WP_Super_Duper { |
16 | 16 | |
17 | - /** |
|
18 | - * Register the widget with WordPress. |
|
19 | - * |
|
20 | - */ |
|
21 | - public function __construct() { |
|
22 | - |
|
23 | - $options = array( |
|
24 | - 'textdomain' => 'invoicing', |
|
25 | - 'block-icon' => 'controls-repeat', |
|
26 | - 'block-category'=> 'widgets', |
|
27 | - 'block-keywords'=> "['invoicing','subscriptions', 'getpaid']", |
|
28 | - 'class_name' => __CLASS__, |
|
29 | - 'base_id' => 'wpinv_subscriptions', |
|
30 | - 'name' => __( 'GetPaid > Subscriptions', 'invoicing' ), |
|
31 | - 'widget_ops' => array( |
|
32 | - 'classname' => 'getpaid-subscriptions bsui', |
|
33 | - 'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ), |
|
34 | - ), |
|
35 | - 'arguments' => array( |
|
36 | - 'title' => array( |
|
37 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
38 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
39 | - 'type' => 'text', |
|
40 | - 'desc_tip' => true, |
|
41 | - 'default' => '', |
|
42 | - 'advanced' => false |
|
43 | - ), |
|
44 | - ) |
|
45 | - |
|
46 | - ); |
|
47 | - |
|
48 | - |
|
49 | - parent::__construct( $options ); |
|
50 | - } |
|
51 | - |
|
52 | - /** |
|
53 | - * Retrieves current user's subscriptions. |
|
54 | - * |
|
55 | - * @return GetPaid_Subscriptions_Query |
|
56 | - */ |
|
57 | - public function get_subscriptions() { |
|
58 | - |
|
59 | - // Prepare license args. |
|
60 | - $args = array( |
|
61 | - 'customer_in' => get_current_user_id(), |
|
62 | - 'paged' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
63 | - ); |
|
64 | - |
|
65 | - return new GetPaid_Subscriptions_Query( $args ); |
|
66 | - |
|
67 | - } |
|
68 | - |
|
69 | - /** |
|
70 | - * The Super block output function. |
|
71 | - * |
|
72 | - * @param array $args |
|
73 | - * @param array $widget_args |
|
74 | - * @param string $content |
|
75 | - * |
|
76 | - * @return mixed|string|bool |
|
77 | - */ |
|
78 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
79 | - |
|
80 | - // Ensure that the user is logged in. |
|
81 | - if ( ! is_user_logged_in() ) { |
|
82 | - |
|
83 | - return aui()->alert( |
|
84 | - array( |
|
85 | - 'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ), |
|
86 | - 'type' => 'error', |
|
87 | - ) |
|
88 | - ); |
|
89 | - |
|
90 | - } |
|
91 | - |
|
92 | - // Are we displaying a single subscription? |
|
93 | - if ( isset( $_GET['subscription'] ) ) { |
|
94 | - return $this->display_single_subscription( trim( $_GET['subscription'] ) ); |
|
95 | - } |
|
96 | - |
|
97 | - // Retrieve the user's subscriptions. |
|
98 | - $subscriptions = $this->get_subscriptions(); |
|
99 | - |
|
100 | - // Start the output buffer. |
|
101 | - ob_start(); |
|
102 | - |
|
103 | - // Backwards compatibility. |
|
104 | - do_action( 'wpinv_before_user_subscriptions' ); |
|
105 | - |
|
106 | - // Display errors and notices. |
|
107 | - wpinv_print_errors(); |
|
108 | - |
|
109 | - do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions ); |
|
110 | - |
|
111 | - // Print the table header. |
|
112 | - $this->print_table_header(); |
|
113 | - |
|
114 | - // Print table body. |
|
115 | - $this->print_table_body( $subscriptions->get_results() ); |
|
116 | - |
|
117 | - // Print table footer. |
|
118 | - $this->print_table_footer(); |
|
119 | - |
|
120 | - // Print the navigation. |
|
121 | - $this->print_navigation( $subscriptions->get_total() ); |
|
122 | - |
|
123 | - // Backwards compatibility. |
|
124 | - do_action( 'wpinv_after_user_subscriptions' ); |
|
125 | - |
|
126 | - // Return the output. |
|
127 | - return ob_get_clean(); |
|
128 | - |
|
129 | - } |
|
130 | - |
|
131 | - /** |
|
132 | - * Retrieves the subscription columns. |
|
133 | - * |
|
134 | - * @return array |
|
135 | - */ |
|
136 | - public function get_subscriptions_table_columns() { |
|
17 | + /** |
|
18 | + * Register the widget with WordPress. |
|
19 | + * |
|
20 | + */ |
|
21 | + public function __construct() { |
|
22 | + |
|
23 | + $options = array( |
|
24 | + 'textdomain' => 'invoicing', |
|
25 | + 'block-icon' => 'controls-repeat', |
|
26 | + 'block-category'=> 'widgets', |
|
27 | + 'block-keywords'=> "['invoicing','subscriptions', 'getpaid']", |
|
28 | + 'class_name' => __CLASS__, |
|
29 | + 'base_id' => 'wpinv_subscriptions', |
|
30 | + 'name' => __( 'GetPaid > Subscriptions', 'invoicing' ), |
|
31 | + 'widget_ops' => array( |
|
32 | + 'classname' => 'getpaid-subscriptions bsui', |
|
33 | + 'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ), |
|
34 | + ), |
|
35 | + 'arguments' => array( |
|
36 | + 'title' => array( |
|
37 | + 'title' => __( 'Widget title', 'invoicing' ), |
|
38 | + 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
39 | + 'type' => 'text', |
|
40 | + 'desc_tip' => true, |
|
41 | + 'default' => '', |
|
42 | + 'advanced' => false |
|
43 | + ), |
|
44 | + ) |
|
45 | + |
|
46 | + ); |
|
47 | + |
|
48 | + |
|
49 | + parent::__construct( $options ); |
|
50 | + } |
|
51 | + |
|
52 | + /** |
|
53 | + * Retrieves current user's subscriptions. |
|
54 | + * |
|
55 | + * @return GetPaid_Subscriptions_Query |
|
56 | + */ |
|
57 | + public function get_subscriptions() { |
|
58 | + |
|
59 | + // Prepare license args. |
|
60 | + $args = array( |
|
61 | + 'customer_in' => get_current_user_id(), |
|
62 | + 'paged' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
63 | + ); |
|
64 | + |
|
65 | + return new GetPaid_Subscriptions_Query( $args ); |
|
66 | + |
|
67 | + } |
|
68 | + |
|
69 | + /** |
|
70 | + * The Super block output function. |
|
71 | + * |
|
72 | + * @param array $args |
|
73 | + * @param array $widget_args |
|
74 | + * @param string $content |
|
75 | + * |
|
76 | + * @return mixed|string|bool |
|
77 | + */ |
|
78 | + public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
79 | + |
|
80 | + // Ensure that the user is logged in. |
|
81 | + if ( ! is_user_logged_in() ) { |
|
82 | + |
|
83 | + return aui()->alert( |
|
84 | + array( |
|
85 | + 'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ), |
|
86 | + 'type' => 'error', |
|
87 | + ) |
|
88 | + ); |
|
89 | + |
|
90 | + } |
|
91 | + |
|
92 | + // Are we displaying a single subscription? |
|
93 | + if ( isset( $_GET['subscription'] ) ) { |
|
94 | + return $this->display_single_subscription( trim( $_GET['subscription'] ) ); |
|
95 | + } |
|
96 | + |
|
97 | + // Retrieve the user's subscriptions. |
|
98 | + $subscriptions = $this->get_subscriptions(); |
|
99 | + |
|
100 | + // Start the output buffer. |
|
101 | + ob_start(); |
|
102 | + |
|
103 | + // Backwards compatibility. |
|
104 | + do_action( 'wpinv_before_user_subscriptions' ); |
|
105 | + |
|
106 | + // Display errors and notices. |
|
107 | + wpinv_print_errors(); |
|
108 | + |
|
109 | + do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions ); |
|
110 | + |
|
111 | + // Print the table header. |
|
112 | + $this->print_table_header(); |
|
113 | + |
|
114 | + // Print table body. |
|
115 | + $this->print_table_body( $subscriptions->get_results() ); |
|
116 | + |
|
117 | + // Print table footer. |
|
118 | + $this->print_table_footer(); |
|
119 | + |
|
120 | + // Print the navigation. |
|
121 | + $this->print_navigation( $subscriptions->get_total() ); |
|
122 | + |
|
123 | + // Backwards compatibility. |
|
124 | + do_action( 'wpinv_after_user_subscriptions' ); |
|
125 | + |
|
126 | + // Return the output. |
|
127 | + return ob_get_clean(); |
|
128 | + |
|
129 | + } |
|
130 | + |
|
131 | + /** |
|
132 | + * Retrieves the subscription columns. |
|
133 | + * |
|
134 | + * @return array |
|
135 | + */ |
|
136 | + public function get_subscriptions_table_columns() { |
|
137 | 137 | |
138 | - $columns = array( |
|
139 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
140 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
141 | - 'renewal-date' => __( 'Next payment', 'invoicing' ), |
|
142 | - 'status' => __( 'Status', 'invoicing' ), |
|
143 | - ); |
|
138 | + $columns = array( |
|
139 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
140 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
141 | + 'renewal-date' => __( 'Next payment', 'invoicing' ), |
|
142 | + 'status' => __( 'Status', 'invoicing' ), |
|
143 | + ); |
|
144 | 144 | |
145 | - return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns ); |
|
146 | - } |
|
145 | + return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns ); |
|
146 | + } |
|
147 | 147 | |
148 | - /** |
|
149 | - * Displays the table header. |
|
150 | - * |
|
151 | - */ |
|
152 | - public function print_table_header() { |
|
148 | + /** |
|
149 | + * Displays the table header. |
|
150 | + * |
|
151 | + */ |
|
152 | + public function print_table_header() { |
|
153 | 153 | |
154 | - ?> |
|
154 | + ?> |
|
155 | 155 | |
156 | 156 | <table class="table table-bordered table-striped"> |
157 | 157 | |
@@ -167,121 +167,121 @@ discard block |
||
167 | 167 | |
168 | 168 | <?php |
169 | 169 | |
170 | - } |
|
170 | + } |
|
171 | 171 | |
172 | - /** |
|
173 | - * Displays the table body. |
|
174 | - * |
|
175 | - * @param WPInv_Subscription[] $subscriptions |
|
176 | - */ |
|
177 | - public function print_table_body( $subscriptions ) { |
|
172 | + /** |
|
173 | + * Displays the table body. |
|
174 | + * |
|
175 | + * @param WPInv_Subscription[] $subscriptions |
|
176 | + */ |
|
177 | + public function print_table_body( $subscriptions ) { |
|
178 | 178 | |
179 | - if ( empty( $subscriptions ) ) { |
|
180 | - $this->print_table_body_no_subscriptions(); |
|
181 | - } else { |
|
182 | - $this->print_table_body_subscriptions( $subscriptions ); |
|
183 | - } |
|
179 | + if ( empty( $subscriptions ) ) { |
|
180 | + $this->print_table_body_no_subscriptions(); |
|
181 | + } else { |
|
182 | + $this->print_table_body_subscriptions( $subscriptions ); |
|
183 | + } |
|
184 | 184 | |
185 | - } |
|
185 | + } |
|
186 | 186 | |
187 | - /** |
|
188 | - * Displays the table body if no subscriptions were found. |
|
189 | - * |
|
190 | - */ |
|
191 | - public function print_table_body_no_subscriptions() { |
|
187 | + /** |
|
188 | + * Displays the table body if no subscriptions were found. |
|
189 | + * |
|
190 | + */ |
|
191 | + public function print_table_body_no_subscriptions() { |
|
192 | 192 | |
193 | - ?> |
|
193 | + ?> |
|
194 | 194 | <tbody> |
195 | 195 | |
196 | 196 | <tr> |
197 | 197 | <td colspan="<?php echo count( $this->get_subscriptions_table_columns() ); ?>"> |
198 | 198 | |
199 | 199 | <?php |
200 | - echo aui()->alert( |
|
201 | - array( |
|
202 | - 'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ), |
|
203 | - 'type' => 'warning', |
|
204 | - ) |
|
205 | - ); |
|
206 | - ?> |
|
200 | + echo aui()->alert( |
|
201 | + array( |
|
202 | + 'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ), |
|
203 | + 'type' => 'warning', |
|
204 | + ) |
|
205 | + ); |
|
206 | + ?> |
|
207 | 207 | |
208 | 208 | </td> |
209 | 209 | </tr> |
210 | 210 | |
211 | 211 | </tbody> |
212 | 212 | <?php |
213 | - } |
|
213 | + } |
|
214 | 214 | |
215 | - /** |
|
216 | - * Displays the table body if subscriptions were found. |
|
217 | - * |
|
218 | - * @param WPInv_Subscription[] $subscriptions |
|
219 | - */ |
|
220 | - public function print_table_body_subscriptions( $subscriptions ) { |
|
215 | + /** |
|
216 | + * Displays the table body if subscriptions were found. |
|
217 | + * |
|
218 | + * @param WPInv_Subscription[] $subscriptions |
|
219 | + */ |
|
220 | + public function print_table_body_subscriptions( $subscriptions ) { |
|
221 | 221 | |
222 | - ?> |
|
222 | + ?> |
|
223 | 223 | <tbody> |
224 | 224 | |
225 | 225 | <?php foreach ( $subscriptions as $subscription ) : ?> |
226 | 226 | <tr class="getpaid-subscriptions-table-row subscription-<?php echo (int) $subscription->get_id(); ?>"> |
227 | 227 | <?php |
228 | - wpinv_get_template( |
|
229 | - 'subscriptions/subscriptions-table-row.php', |
|
230 | - array( |
|
231 | - 'subscription' => $subscription, |
|
232 | - 'widget' => $this |
|
233 | - ) |
|
234 | - ); |
|
235 | - ?> |
|
228 | + wpinv_get_template( |
|
229 | + 'subscriptions/subscriptions-table-row.php', |
|
230 | + array( |
|
231 | + 'subscription' => $subscription, |
|
232 | + 'widget' => $this |
|
233 | + ) |
|
234 | + ); |
|
235 | + ?> |
|
236 | 236 | </tr> |
237 | 237 | <?php endforeach; ?> |
238 | 238 | |
239 | 239 | </tbody> |
240 | 240 | <?php |
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * Adds row actions to a column |
|
245 | - * |
|
246 | - * @param string $content column content |
|
247 | - * @param WPInv_Subscription $subscription |
|
248 | - * @since 1.0.0 |
|
249 | - * @return string |
|
250 | - */ |
|
251 | - public function add_row_actions( $content, $subscription ) { |
|
252 | - |
|
253 | - // Prepare row actions. |
|
254 | - $actions = array(); |
|
255 | - |
|
256 | - // View subscription action. |
|
257 | - $view_url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
258 | - $view_url = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) ); |
|
259 | - $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
260 | - |
|
261 | - // Filter the actions. |
|
262 | - $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription ); |
|
263 | - |
|
264 | - $sanitized = array(); |
|
265 | - foreach ( $actions as $key => $action ) { |
|
266 | - $key = sanitize_html_class( $key ); |
|
267 | - $action = wp_kses_post( $action ); |
|
268 | - $sanitized[] = "<span class='$key'>$action</span>"; |
|
269 | - } |
|
270 | - |
|
271 | - $row_actions = "<small class='form-text getpaid-subscription-item-actions'>"; |
|
272 | - $row_actions .= implode( ' | ', $sanitized ); |
|
273 | - $row_actions .= '</small>'; |
|
274 | - |
|
275 | - return $content . $row_actions; |
|
276 | - } |
|
277 | - |
|
278 | - /** |
|
279 | - * Displays the table footer. |
|
280 | - * |
|
281 | - */ |
|
282 | - public function print_table_footer() { |
|
283 | - |
|
284 | - ?> |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Adds row actions to a column |
|
245 | + * |
|
246 | + * @param string $content column content |
|
247 | + * @param WPInv_Subscription $subscription |
|
248 | + * @since 1.0.0 |
|
249 | + * @return string |
|
250 | + */ |
|
251 | + public function add_row_actions( $content, $subscription ) { |
|
252 | + |
|
253 | + // Prepare row actions. |
|
254 | + $actions = array(); |
|
255 | + |
|
256 | + // View subscription action. |
|
257 | + $view_url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
258 | + $view_url = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) ); |
|
259 | + $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
260 | + |
|
261 | + // Filter the actions. |
|
262 | + $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription ); |
|
263 | + |
|
264 | + $sanitized = array(); |
|
265 | + foreach ( $actions as $key => $action ) { |
|
266 | + $key = sanitize_html_class( $key ); |
|
267 | + $action = wp_kses_post( $action ); |
|
268 | + $sanitized[] = "<span class='$key'>$action</span>"; |
|
269 | + } |
|
270 | + |
|
271 | + $row_actions = "<small class='form-text getpaid-subscription-item-actions'>"; |
|
272 | + $row_actions .= implode( ' | ', $sanitized ); |
|
273 | + $row_actions .= '</small>'; |
|
274 | + |
|
275 | + return $content . $row_actions; |
|
276 | + } |
|
277 | + |
|
278 | + /** |
|
279 | + * Displays the table footer. |
|
280 | + * |
|
281 | + */ |
|
282 | + public function print_table_footer() { |
|
283 | + |
|
284 | + ?> |
|
285 | 285 | |
286 | 286 | <tfoot> |
287 | 287 | <tr> |
@@ -296,143 +296,143 @@ discard block |
||
296 | 296 | </table> |
297 | 297 | <?php |
298 | 298 | |
299 | - } |
|
299 | + } |
|
300 | 300 | |
301 | - /** |
|
302 | - * Displays the navigation. |
|
303 | - * |
|
304 | - * @param int $total |
|
305 | - */ |
|
306 | - public function print_navigation( $total ) { |
|
301 | + /** |
|
302 | + * Displays the navigation. |
|
303 | + * |
|
304 | + * @param int $total |
|
305 | + */ |
|
306 | + public function print_navigation( $total ) { |
|
307 | 307 | |
308 | - if ( $total < 1 ) { |
|
308 | + if ( $total < 1 ) { |
|
309 | 309 | |
310 | - // Out-of-bounds, run the query again without LIMIT for total count. |
|
311 | - $args = array( |
|
312 | - 'customer_in' => get_current_user_id(), |
|
313 | - 'fields' => 'id', |
|
314 | - ); |
|
310 | + // Out-of-bounds, run the query again without LIMIT for total count. |
|
311 | + $args = array( |
|
312 | + 'customer_in' => get_current_user_id(), |
|
313 | + 'fields' => 'id', |
|
314 | + ); |
|
315 | 315 | |
316 | - $count_query = new GetPaid_Subscriptions_Query( $args ); |
|
317 | - $total = $count_query->get_total(); |
|
318 | - } |
|
316 | + $count_query = new GetPaid_Subscriptions_Query( $args ); |
|
317 | + $total = $count_query->get_total(); |
|
318 | + } |
|
319 | 319 | |
320 | - // Abort if we do not have pages. |
|
321 | - if ( 2 > $total ) { |
|
322 | - return; |
|
323 | - } |
|
320 | + // Abort if we do not have pages. |
|
321 | + if ( 2 > $total ) { |
|
322 | + return; |
|
323 | + } |
|
324 | 324 | |
325 | - ?> |
|
325 | + ?> |
|
326 | 326 | |
327 | 327 | <div class="getpaid-subscriptions-pagination"> |
328 | 328 | <?php |
329 | - $big = 999999; |
|
330 | - |
|
331 | - echo getpaid_paginate_links( |
|
332 | - array( |
|
333 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
334 | - 'format' => '?paged=%#%', |
|
335 | - 'total' => (int) ceil( $total / 10 ), |
|
336 | - ) |
|
337 | - ); |
|
338 | - ?> |
|
329 | + $big = 999999; |
|
330 | + |
|
331 | + echo getpaid_paginate_links( |
|
332 | + array( |
|
333 | + 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
334 | + 'format' => '?paged=%#%', |
|
335 | + 'total' => (int) ceil( $total / 10 ), |
|
336 | + ) |
|
337 | + ); |
|
338 | + ?> |
|
339 | 339 | </div> |
340 | 340 | |
341 | 341 | <?php |
342 | - } |
|
343 | - |
|
344 | - /** |
|
345 | - * Returns a single subscription's columns. |
|
346 | - * |
|
347 | - * @param WPInv_Subscription $subscription |
|
348 | - * |
|
349 | - * @return array |
|
350 | - */ |
|
351 | - public function get_single_subscription_columns( $subscription ) { |
|
352 | - |
|
353 | - // Prepare subscription detail columns. |
|
354 | - $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() ); |
|
355 | - $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
356 | - $fields = apply_filters( |
|
357 | - 'getpaid_single_subscription_details_fields', |
|
358 | - array( |
|
359 | - 'status' => __( 'Status', 'invoicing' ), |
|
360 | - 'initial_amount' => __( 'Initial amount', 'invoicing' ), |
|
361 | - 'recurring_amount' => __( 'Recurring amount', 'invoicing' ), |
|
362 | - 'start_date' => __( 'Start date', 'invoicing' ), |
|
363 | - 'expiry_date' => __( 'Next payment', 'invoicing' ), |
|
364 | - 'payments' => __( 'Payments', 'invoicing' ), |
|
365 | - 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
366 | - ), |
|
367 | - $subscription |
|
368 | - ); |
|
369 | - |
|
370 | - if ( isset( $fields['expiry_date'] ) ) { |
|
371 | - |
|
372 | - if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) { |
|
373 | - $fields['expiry_date'] = __( 'End date', 'invoicing' ); |
|
374 | - } |
|
375 | - |
|
376 | - if ( 'pending' == $subscription->get_status() ) { |
|
377 | - unset( $fields['expiry_date'] ); |
|
378 | - } |
|
379 | - |
|
380 | - } |
|
381 | - |
|
382 | - if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) { |
|
383 | - unset( $fields['start_date'] ); |
|
384 | - } |
|
385 | - |
|
386 | - if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) { |
|
387 | - unset( $fields['initial_amount'] ); |
|
388 | - } |
|
389 | - |
|
390 | - return $fields; |
|
391 | - } |
|
392 | - |
|
393 | - /** |
|
394 | - * Displays a single subscription. |
|
395 | - * |
|
396 | - * @param string $subscription |
|
397 | - * |
|
398 | - * @return string |
|
399 | - */ |
|
400 | - public function display_single_subscription( $subscription ) { |
|
401 | - |
|
402 | - // Fetch the subscription. |
|
403 | - $subscription = new WPInv_Subscription( (int) $subscription ); |
|
404 | - |
|
405 | - if ( ! $subscription->exists() ) { |
|
406 | - |
|
407 | - return aui()->alert( |
|
408 | - array( |
|
409 | - 'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ), |
|
410 | - 'type' => 'error', |
|
411 | - ) |
|
412 | - ); |
|
413 | - |
|
414 | - } |
|
415 | - |
|
416 | - // Ensure that the user owns this subscription key. |
|
417 | - if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) { |
|
418 | - |
|
419 | - return aui()->alert( |
|
420 | - array( |
|
421 | - 'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ), |
|
422 | - 'type' => 'error', |
|
423 | - ) |
|
424 | - ); |
|
425 | - |
|
426 | - } |
|
427 | - |
|
428 | - return wpinv_get_template_html( |
|
429 | - 'subscriptions/subscription-details.php', |
|
430 | - array( |
|
431 | - 'subscription' => $subscription, |
|
432 | - 'widget' => $this |
|
433 | - ) |
|
434 | - ); |
|
435 | - |
|
436 | - } |
|
342 | + } |
|
343 | + |
|
344 | + /** |
|
345 | + * Returns a single subscription's columns. |
|
346 | + * |
|
347 | + * @param WPInv_Subscription $subscription |
|
348 | + * |
|
349 | + * @return array |
|
350 | + */ |
|
351 | + public function get_single_subscription_columns( $subscription ) { |
|
352 | + |
|
353 | + // Prepare subscription detail columns. |
|
354 | + $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() ); |
|
355 | + $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
356 | + $fields = apply_filters( |
|
357 | + 'getpaid_single_subscription_details_fields', |
|
358 | + array( |
|
359 | + 'status' => __( 'Status', 'invoicing' ), |
|
360 | + 'initial_amount' => __( 'Initial amount', 'invoicing' ), |
|
361 | + 'recurring_amount' => __( 'Recurring amount', 'invoicing' ), |
|
362 | + 'start_date' => __( 'Start date', 'invoicing' ), |
|
363 | + 'expiry_date' => __( 'Next payment', 'invoicing' ), |
|
364 | + 'payments' => __( 'Payments', 'invoicing' ), |
|
365 | + 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
366 | + ), |
|
367 | + $subscription |
|
368 | + ); |
|
369 | + |
|
370 | + if ( isset( $fields['expiry_date'] ) ) { |
|
371 | + |
|
372 | + if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) { |
|
373 | + $fields['expiry_date'] = __( 'End date', 'invoicing' ); |
|
374 | + } |
|
375 | + |
|
376 | + if ( 'pending' == $subscription->get_status() ) { |
|
377 | + unset( $fields['expiry_date'] ); |
|
378 | + } |
|
379 | + |
|
380 | + } |
|
381 | + |
|
382 | + if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) { |
|
383 | + unset( $fields['start_date'] ); |
|
384 | + } |
|
385 | + |
|
386 | + if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) { |
|
387 | + unset( $fields['initial_amount'] ); |
|
388 | + } |
|
389 | + |
|
390 | + return $fields; |
|
391 | + } |
|
392 | + |
|
393 | + /** |
|
394 | + * Displays a single subscription. |
|
395 | + * |
|
396 | + * @param string $subscription |
|
397 | + * |
|
398 | + * @return string |
|
399 | + */ |
|
400 | + public function display_single_subscription( $subscription ) { |
|
401 | + |
|
402 | + // Fetch the subscription. |
|
403 | + $subscription = new WPInv_Subscription( (int) $subscription ); |
|
404 | + |
|
405 | + if ( ! $subscription->exists() ) { |
|
406 | + |
|
407 | + return aui()->alert( |
|
408 | + array( |
|
409 | + 'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ), |
|
410 | + 'type' => 'error', |
|
411 | + ) |
|
412 | + ); |
|
413 | + |
|
414 | + } |
|
415 | + |
|
416 | + // Ensure that the user owns this subscription key. |
|
417 | + if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) { |
|
418 | + |
|
419 | + return aui()->alert( |
|
420 | + array( |
|
421 | + 'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ), |
|
422 | + 'type' => 'error', |
|
423 | + ) |
|
424 | + ); |
|
425 | + |
|
426 | + } |
|
427 | + |
|
428 | + return wpinv_get_template_html( |
|
429 | + 'subscriptions/subscription-details.php', |
|
430 | + array( |
|
431 | + 'subscription' => $subscription, |
|
432 | + 'widget' => $this |
|
433 | + ) |
|
434 | + ); |
|
435 | + |
|
436 | + } |
|
437 | 437 | |
438 | 438 | } |
@@ -46,64 +46,64 @@ discard block |
||
46 | 46 | <td style="width: 65%"> |
47 | 47 | <?php |
48 | 48 | |
49 | - switch ( $key ) { |
|
49 | + switch ( $key ) { |
|
50 | 50 | |
51 | - case 'status': |
|
52 | - echo sanitize_text_field( $subscription->get_status_label() ); |
|
53 | - break; |
|
51 | + case 'status': |
|
52 | + echo sanitize_text_field( $subscription->get_status_label() ); |
|
53 | + break; |
|
54 | 54 | |
55 | - case 'start_date': |
|
56 | - echo sanitize_text_field( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
57 | - break; |
|
55 | + case 'start_date': |
|
56 | + echo sanitize_text_field( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
57 | + break; |
|
58 | 58 | |
59 | - case 'expiry_date': |
|
60 | - echo sanitize_text_field( getpaid_format_date_value( $subscription->get_next_renewal_date() ) ); |
|
61 | - break; |
|
59 | + case 'expiry_date': |
|
60 | + echo sanitize_text_field( getpaid_format_date_value( $subscription->get_next_renewal_date() ) ); |
|
61 | + break; |
|
62 | 62 | |
63 | - case 'initial_amount': |
|
64 | - echo wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
63 | + case 'initial_amount': |
|
64 | + echo wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
65 | 65 | |
66 | - if ( $subscription->has_trial_period() ) { |
|
66 | + if ( $subscription->has_trial_period() ) { |
|
67 | 67 | |
68 | - echo "<small class='text-muted'> "; |
|
69 | - printf( |
|
70 | - _x( '( %1$s trial )', 'Subscription trial period. (e.g.: 1 month trial)', 'invoicing' ), |
|
71 | - sanitize_text_field( $subscription->get_trial_period() ) |
|
72 | - ); |
|
73 | - echo '</small>'; |
|
68 | + echo "<small class='text-muted'> "; |
|
69 | + printf( |
|
70 | + _x( '( %1$s trial )', 'Subscription trial period. (e.g.: 1 month trial)', 'invoicing' ), |
|
71 | + sanitize_text_field( $subscription->get_trial_period() ) |
|
72 | + ); |
|
73 | + echo '</small>'; |
|
74 | 74 | |
75 | - } |
|
75 | + } |
|
76 | 76 | |
77 | - break; |
|
77 | + break; |
|
78 | 78 | |
79 | - case 'recurring_amount': |
|
80 | - $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
81 | - $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
82 | - echo strtolower( "<strong style='font-weight: 500;'>$amount</strong> / <span class='getpaid-item-recurring-period'>$frequency</span>" ); |
|
83 | - break; |
|
79 | + case 'recurring_amount': |
|
80 | + $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
81 | + $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
82 | + echo strtolower( "<strong style='font-weight: 500;'>$amount</strong> / <span class='getpaid-item-recurring-period'>$frequency</span>" ); |
|
83 | + break; |
|
84 | 84 | |
85 | - case 'item': |
|
85 | + case 'item': |
|
86 | 86 | |
87 | - if ( empty( $subscription_group ) ) { |
|
88 | - echo WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ); |
|
89 | - } else { |
|
90 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
91 | - echo implode( ' | ', $markup ); |
|
92 | - } |
|
87 | + if ( empty( $subscription_group ) ) { |
|
88 | + echo WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ); |
|
89 | + } else { |
|
90 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
91 | + echo implode( ' | ', $markup ); |
|
92 | + } |
|
93 | 93 | |
94 | - break; |
|
94 | + break; |
|
95 | 95 | |
96 | - case 'payments': |
|
96 | + case 'payments': |
|
97 | 97 | |
98 | - $max_activations = (int) $subscription->get_bill_times(); |
|
99 | - echo (int) $subscription->get_times_billed() . ' / ' . ( empty( $max_activations ) ? "∞" : $max_activations ); |
|
98 | + $max_activations = (int) $subscription->get_bill_times(); |
|
99 | + echo (int) $subscription->get_times_billed() . ' / ' . ( empty( $max_activations ) ? "∞" : $max_activations ); |
|
100 | 100 | |
101 | - break; |
|
101 | + break; |
|
102 | 102 | |
103 | - } |
|
104 | - do_action( "getpaid_render_single_subscription_column_$key", $subscription ); |
|
103 | + } |
|
104 | + do_action( "getpaid_render_single_subscription_column_$key", $subscription ); |
|
105 | 105 | |
106 | - ?> |
|
106 | + ?> |
|
107 | 107 | </td> |
108 | 108 | |
109 | 109 | </tr> |
@@ -130,17 +130,17 @@ discard block |
||
130 | 130 | <span class="form-text"> |
131 | 131 | |
132 | 132 | <?php |
133 | - if ( $subscription->can_cancel() ) { |
|
134 | - printf( |
|
135 | - '<a href="%s" class="btn btn-danger btn-sm" onclick="return confirm(\'%s\')">%s</a> ', |
|
136 | - esc_url( $subscription->get_cancel_url() ), |
|
137 | - esc_attr__( 'Are you sure you want to cancel this subscription?', 'invoicing' ), |
|
138 | - __( 'Cancel Subscription', 'invoicing' ) |
|
139 | - ); |
|
140 | - } |
|
141 | - |
|
142 | - do_action( 'getpaid-single-subscription-page-actions', $subscription ); |
|
143 | - ?> |
|
133 | + if ( $subscription->can_cancel() ) { |
|
134 | + printf( |
|
135 | + '<a href="%s" class="btn btn-danger btn-sm" onclick="return confirm(\'%s\')">%s</a> ', |
|
136 | + esc_url( $subscription->get_cancel_url() ), |
|
137 | + esc_attr__( 'Are you sure you want to cancel this subscription?', 'invoicing' ), |
|
138 | + __( 'Cancel Subscription', 'invoicing' ) |
|
139 | + ); |
|
140 | + } |
|
141 | + |
|
142 | + do_action( 'getpaid-single-subscription-page-actions', $subscription ); |
|
143 | + ?> |
|
144 | 144 | |
145 | 145 | <a href="<?php echo esc_url( getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ) ); ?>" class="btn btn-secondary btn-sm"><?php _e( 'Go Back', 'invoicing' ); ?></a> |
146 | 146 | </span> |
@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | class WPInv_Subscriptions { |
13 | 13 | |
14 | 14 | /** |
15 | - * Class constructor. |
|
16 | - */ |
|
15 | + * Class constructor. |
|
16 | + */ |
|
17 | 17 | public function __construct(){ |
18 | 18 | |
19 | 19 | // Fire gateway specific hooks when a subscription changes. |
@@ -89,12 +89,12 @@ discard block |
||
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
92 | - * Processes subscription status changes. |
|
92 | + * Processes subscription status changes. |
|
93 | 93 | * |
94 | 94 | * @param WPInv_Subscription $subscription |
95 | 95 | * @param string $from |
96 | 96 | * @param string $to |
97 | - */ |
|
97 | + */ |
|
98 | 98 | public function process_subscription_status_change( $subscription, $from, $to ) { |
99 | 99 | |
100 | 100 | $gateway = $subscription->get_gateway(); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
3 | - exit; |
|
3 | + exit; |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -10,198 +10,198 @@ discard block |
||
10 | 10 | class GetPaid_Payment_Form_Submission { |
11 | 11 | |
12 | 12 | /** |
13 | - * Submission ID |
|
14 | - * |
|
15 | - * @var string |
|
16 | - */ |
|
17 | - public $id = null; |
|
18 | - |
|
19 | - /** |
|
20 | - * The raw submission data. |
|
21 | - * |
|
22 | - * @var array |
|
23 | - */ |
|
24 | - protected $data = null; |
|
25 | - |
|
26 | - /** |
|
27 | - * Submission totals |
|
28 | - * |
|
29 | - * @var array |
|
30 | - */ |
|
31 | - protected $totals = array( |
|
32 | - |
|
33 | - 'subtotal' => array( |
|
34 | - 'initial' => 0, |
|
35 | - 'recurring' => 0, |
|
36 | - ), |
|
37 | - |
|
38 | - 'discount' => array( |
|
39 | - 'initial' => 0, |
|
40 | - 'recurring' => 0, |
|
41 | - ), |
|
42 | - |
|
43 | - 'fees' => array( |
|
44 | - 'initial' => 0, |
|
45 | - 'recurring' => 0, |
|
46 | - ), |
|
47 | - |
|
48 | - 'taxes' => array( |
|
49 | - 'initial' => 0, |
|
50 | - 'recurring' => 0, |
|
51 | - ), |
|
52 | - |
|
53 | - ); |
|
54 | - |
|
55 | - /** |
|
56 | - * Sets the associated payment form. |
|
57 | - * |
|
58 | - * @var GetPaid_Payment_Form |
|
59 | - */ |
|
13 | + * Submission ID |
|
14 | + * |
|
15 | + * @var string |
|
16 | + */ |
|
17 | + public $id = null; |
|
18 | + |
|
19 | + /** |
|
20 | + * The raw submission data. |
|
21 | + * |
|
22 | + * @var array |
|
23 | + */ |
|
24 | + protected $data = null; |
|
25 | + |
|
26 | + /** |
|
27 | + * Submission totals |
|
28 | + * |
|
29 | + * @var array |
|
30 | + */ |
|
31 | + protected $totals = array( |
|
32 | + |
|
33 | + 'subtotal' => array( |
|
34 | + 'initial' => 0, |
|
35 | + 'recurring' => 0, |
|
36 | + ), |
|
37 | + |
|
38 | + 'discount' => array( |
|
39 | + 'initial' => 0, |
|
40 | + 'recurring' => 0, |
|
41 | + ), |
|
42 | + |
|
43 | + 'fees' => array( |
|
44 | + 'initial' => 0, |
|
45 | + 'recurring' => 0, |
|
46 | + ), |
|
47 | + |
|
48 | + 'taxes' => array( |
|
49 | + 'initial' => 0, |
|
50 | + 'recurring' => 0, |
|
51 | + ), |
|
52 | + |
|
53 | + ); |
|
54 | + |
|
55 | + /** |
|
56 | + * Sets the associated payment form. |
|
57 | + * |
|
58 | + * @var GetPaid_Payment_Form |
|
59 | + */ |
|
60 | 60 | protected $payment_form = null; |
61 | 61 | |
62 | 62 | /** |
63 | - * The country for the submission. |
|
64 | - * |
|
65 | - * @var string |
|
66 | - */ |
|
67 | - public $country = null; |
|
68 | - |
|
69 | - /** |
|
70 | - * The state for the submission. |
|
71 | - * |
|
72 | - * @since 1.0.19 |
|
73 | - * @var string |
|
74 | - */ |
|
75 | - public $state = null; |
|
76 | - |
|
77 | - /** |
|
78 | - * The invoice associated with the submission. |
|
79 | - * |
|
80 | - * @var WPInv_Invoice |
|
81 | - */ |
|
82 | - protected $invoice = null; |
|
83 | - |
|
84 | - /** |
|
85 | - * The recurring item for the submission. |
|
86 | - * |
|
87 | - * @var int |
|
88 | - */ |
|
89 | - public $has_recurring = 0; |
|
90 | - |
|
91 | - /** |
|
92 | - * An array of fees for the submission. |
|
93 | - * |
|
94 | - * @var array |
|
95 | - */ |
|
96 | - protected $fees = array(); |
|
97 | - |
|
98 | - /** |
|
99 | - * An array of discounts for the submission. |
|
100 | - * |
|
101 | - * @var array |
|
102 | - */ |
|
103 | - protected $discounts = array(); |
|
104 | - |
|
105 | - /** |
|
106 | - * An array of taxes for the submission. |
|
107 | - * |
|
108 | - * @var array |
|
109 | - */ |
|
110 | - protected $taxes = array(); |
|
111 | - |
|
112 | - /** |
|
113 | - * An array of items for the submission. |
|
114 | - * |
|
115 | - * @var GetPaid_Form_Item[] |
|
116 | - */ |
|
117 | - protected $items = array(); |
|
118 | - |
|
119 | - /** |
|
120 | - * The last error. |
|
121 | - * |
|
122 | - * @var string |
|
123 | - */ |
|
124 | - public $last_error = null; |
|
125 | - |
|
126 | - /** |
|
127 | - * The last error code. |
|
128 | - * |
|
129 | - * @var string |
|
130 | - */ |
|
131 | - public $last_error_code = null; |
|
132 | - |
|
133 | - /** |
|
134 | - * Class constructor. |
|
135 | - * |
|
136 | - */ |
|
137 | - public function __construct() { |
|
138 | - |
|
139 | - // Set the state and country to the default state and country. |
|
140 | - $this->country = wpinv_default_billing_country(); |
|
141 | - $this->state = wpinv_get_default_state(); |
|
142 | - |
|
143 | - // Do we have an actual submission? |
|
144 | - if ( isset( $_POST['getpaid_payment_form_submission'] ) ) { |
|
145 | - $this->load_data( $_POST ); |
|
146 | - } |
|
147 | - |
|
148 | - } |
|
149 | - |
|
150 | - /** |
|
151 | - * Loads submission data. |
|
152 | - * |
|
153 | - * @param array $data |
|
154 | - */ |
|
155 | - public function load_data( $data ) { |
|
156 | - |
|
157 | - // Remove slashes from the submitted data... |
|
158 | - $data = wp_unslash( $data ); |
|
159 | - |
|
160 | - // Allow plugins to filter the data. |
|
161 | - $data = apply_filters( 'getpaid_submission_data', $data, $this ); |
|
162 | - |
|
163 | - // Cache it... |
|
164 | - $this->data = $data; |
|
165 | - |
|
166 | - // Then generate a unique id from the data. |
|
167 | - $this->id = md5( wp_json_encode( $data ) ); |
|
168 | - |
|
169 | - // Finally, process the submission. |
|
170 | - try { |
|
171 | - |
|
172 | - // Each process is passed an instance of the class (with reference) |
|
173 | - // and should throw an Exception whenever it encounters one. |
|
174 | - $processors = apply_filters( |
|
175 | - 'getpaid_payment_form_submission_processors', |
|
176 | - array( |
|
177 | - array( $this, 'process_payment_form' ), |
|
178 | - array( $this, 'process_invoice' ), |
|
179 | - array( $this, 'process_fees' ), |
|
180 | - array( $this, 'process_items' ), |
|
181 | - array( $this, 'process_discount' ), |
|
182 | - array( $this, 'process_taxes' ), |
|
183 | - ), |
|
184 | - $this |
|
185 | - ); |
|
186 | - |
|
187 | - foreach ( $processors as $processor ) { |
|
188 | - call_user_func_array( $processor, array( &$this ) ); |
|
189 | - } |
|
190 | - |
|
191 | - } catch( GetPaid_Payment_Exception $e ) { |
|
192 | - $this->last_error = $e->getMessage(); |
|
193 | - $this->last_error_code = $e->getErrorCode(); |
|
194 | - } catch ( Exception $e ) { |
|
195 | - $this->last_error = $e->getMessage(); |
|
196 | - $this->last_error_code = $e->getCode(); |
|
197 | - } |
|
198 | - |
|
199 | - // Fired when we are done processing a submission. |
|
200 | - do_action_ref_array( 'getpaid_process_submission', array( &$this ) ); |
|
201 | - |
|
202 | - } |
|
203 | - |
|
204 | - /* |
|
63 | + * The country for the submission. |
|
64 | + * |
|
65 | + * @var string |
|
66 | + */ |
|
67 | + public $country = null; |
|
68 | + |
|
69 | + /** |
|
70 | + * The state for the submission. |
|
71 | + * |
|
72 | + * @since 1.0.19 |
|
73 | + * @var string |
|
74 | + */ |
|
75 | + public $state = null; |
|
76 | + |
|
77 | + /** |
|
78 | + * The invoice associated with the submission. |
|
79 | + * |
|
80 | + * @var WPInv_Invoice |
|
81 | + */ |
|
82 | + protected $invoice = null; |
|
83 | + |
|
84 | + /** |
|
85 | + * The recurring item for the submission. |
|
86 | + * |
|
87 | + * @var int |
|
88 | + */ |
|
89 | + public $has_recurring = 0; |
|
90 | + |
|
91 | + /** |
|
92 | + * An array of fees for the submission. |
|
93 | + * |
|
94 | + * @var array |
|
95 | + */ |
|
96 | + protected $fees = array(); |
|
97 | + |
|
98 | + /** |
|
99 | + * An array of discounts for the submission. |
|
100 | + * |
|
101 | + * @var array |
|
102 | + */ |
|
103 | + protected $discounts = array(); |
|
104 | + |
|
105 | + /** |
|
106 | + * An array of taxes for the submission. |
|
107 | + * |
|
108 | + * @var array |
|
109 | + */ |
|
110 | + protected $taxes = array(); |
|
111 | + |
|
112 | + /** |
|
113 | + * An array of items for the submission. |
|
114 | + * |
|
115 | + * @var GetPaid_Form_Item[] |
|
116 | + */ |
|
117 | + protected $items = array(); |
|
118 | + |
|
119 | + /** |
|
120 | + * The last error. |
|
121 | + * |
|
122 | + * @var string |
|
123 | + */ |
|
124 | + public $last_error = null; |
|
125 | + |
|
126 | + /** |
|
127 | + * The last error code. |
|
128 | + * |
|
129 | + * @var string |
|
130 | + */ |
|
131 | + public $last_error_code = null; |
|
132 | + |
|
133 | + /** |
|
134 | + * Class constructor. |
|
135 | + * |
|
136 | + */ |
|
137 | + public function __construct() { |
|
138 | + |
|
139 | + // Set the state and country to the default state and country. |
|
140 | + $this->country = wpinv_default_billing_country(); |
|
141 | + $this->state = wpinv_get_default_state(); |
|
142 | + |
|
143 | + // Do we have an actual submission? |
|
144 | + if ( isset( $_POST['getpaid_payment_form_submission'] ) ) { |
|
145 | + $this->load_data( $_POST ); |
|
146 | + } |
|
147 | + |
|
148 | + } |
|
149 | + |
|
150 | + /** |
|
151 | + * Loads submission data. |
|
152 | + * |
|
153 | + * @param array $data |
|
154 | + */ |
|
155 | + public function load_data( $data ) { |
|
156 | + |
|
157 | + // Remove slashes from the submitted data... |
|
158 | + $data = wp_unslash( $data ); |
|
159 | + |
|
160 | + // Allow plugins to filter the data. |
|
161 | + $data = apply_filters( 'getpaid_submission_data', $data, $this ); |
|
162 | + |
|
163 | + // Cache it... |
|
164 | + $this->data = $data; |
|
165 | + |
|
166 | + // Then generate a unique id from the data. |
|
167 | + $this->id = md5( wp_json_encode( $data ) ); |
|
168 | + |
|
169 | + // Finally, process the submission. |
|
170 | + try { |
|
171 | + |
|
172 | + // Each process is passed an instance of the class (with reference) |
|
173 | + // and should throw an Exception whenever it encounters one. |
|
174 | + $processors = apply_filters( |
|
175 | + 'getpaid_payment_form_submission_processors', |
|
176 | + array( |
|
177 | + array( $this, 'process_payment_form' ), |
|
178 | + array( $this, 'process_invoice' ), |
|
179 | + array( $this, 'process_fees' ), |
|
180 | + array( $this, 'process_items' ), |
|
181 | + array( $this, 'process_discount' ), |
|
182 | + array( $this, 'process_taxes' ), |
|
183 | + ), |
|
184 | + $this |
|
185 | + ); |
|
186 | + |
|
187 | + foreach ( $processors as $processor ) { |
|
188 | + call_user_func_array( $processor, array( &$this ) ); |
|
189 | + } |
|
190 | + |
|
191 | + } catch( GetPaid_Payment_Exception $e ) { |
|
192 | + $this->last_error = $e->getMessage(); |
|
193 | + $this->last_error_code = $e->getErrorCode(); |
|
194 | + } catch ( Exception $e ) { |
|
195 | + $this->last_error = $e->getMessage(); |
|
196 | + $this->last_error_code = $e->getCode(); |
|
197 | + } |
|
198 | + |
|
199 | + // Fired when we are done processing a submission. |
|
200 | + do_action_ref_array( 'getpaid_process_submission', array( &$this ) ); |
|
201 | + |
|
202 | + } |
|
203 | + |
|
204 | + /* |
|
205 | 205 | |-------------------------------------------------------------------------- |
206 | 206 | | Payment Forms. |
207 | 207 | |-------------------------------------------------------------------------- |
@@ -210,39 +210,39 @@ discard block |
||
210 | 210 | | submission has an active payment form etc. |
211 | 211 | */ |
212 | 212 | |
213 | - /** |
|
214 | - * Prepares the submission's payment form. |
|
215 | - * |
|
216 | - * @since 1.0.19 |
|
217 | - */ |
|
218 | - public function process_payment_form() { |
|
213 | + /** |
|
214 | + * Prepares the submission's payment form. |
|
215 | + * |
|
216 | + * @since 1.0.19 |
|
217 | + */ |
|
218 | + public function process_payment_form() { |
|
219 | 219 | |
220 | - // Every submission needs an active payment form. |
|
221 | - if ( empty( $this->data['form_id'] ) ) { |
|
222 | - throw new Exception( __( 'Missing payment form', 'invoicing' ) ); |
|
223 | - } |
|
220 | + // Every submission needs an active payment form. |
|
221 | + if ( empty( $this->data['form_id'] ) ) { |
|
222 | + throw new Exception( __( 'Missing payment form', 'invoicing' ) ); |
|
223 | + } |
|
224 | 224 | |
225 | - // Fetch the payment form. |
|
226 | - $this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] ); |
|
225 | + // Fetch the payment form. |
|
226 | + $this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] ); |
|
227 | 227 | |
228 | - if ( ! $this->payment_form->is_active() ) { |
|
229 | - throw new Exception( __( 'Payment form not active', 'invoicing' ) ); |
|
230 | - } |
|
228 | + if ( ! $this->payment_form->is_active() ) { |
|
229 | + throw new Exception( __( 'Payment form not active', 'invoicing' ) ); |
|
230 | + } |
|
231 | 231 | |
232 | - do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) ); |
|
233 | - } |
|
232 | + do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) ); |
|
233 | + } |
|
234 | 234 | |
235 | 235 | /** |
236 | - * Returns the payment form. |
|
237 | - * |
|
238 | - * @since 1.0.19 |
|
239 | - * @return GetPaid_Payment_Form |
|
240 | - */ |
|
241 | - public function get_payment_form() { |
|
242 | - return $this->payment_form; |
|
243 | - } |
|
236 | + * Returns the payment form. |
|
237 | + * |
|
238 | + * @since 1.0.19 |
|
239 | + * @return GetPaid_Payment_Form |
|
240 | + */ |
|
241 | + public function get_payment_form() { |
|
242 | + return $this->payment_form; |
|
243 | + } |
|
244 | 244 | |
245 | - /* |
|
245 | + /* |
|
246 | 246 | |-------------------------------------------------------------------------- |
247 | 247 | | Invoices. |
248 | 248 | |-------------------------------------------------------------------------- |
@@ -251,84 +251,84 @@ discard block |
||
251 | 251 | | might be for an existing invoice. |
252 | 252 | */ |
253 | 253 | |
254 | - /** |
|
255 | - * Prepares the submission's invoice. |
|
256 | - * |
|
257 | - * @since 1.0.19 |
|
258 | - */ |
|
259 | - public function process_invoice() { |
|
254 | + /** |
|
255 | + * Prepares the submission's invoice. |
|
256 | + * |
|
257 | + * @since 1.0.19 |
|
258 | + */ |
|
259 | + public function process_invoice() { |
|
260 | 260 | |
261 | - // Abort if there is no invoice. |
|
262 | - if ( empty( $this->data['invoice_id'] ) ) { |
|
263 | - return; |
|
264 | - } |
|
261 | + // Abort if there is no invoice. |
|
262 | + if ( empty( $this->data['invoice_id'] ) ) { |
|
263 | + return; |
|
264 | + } |
|
265 | 265 | |
266 | - // If the submission is for an existing invoice, ensure that it exists |
|
267 | - // and that it is not paid for. |
|
268 | - $invoice = wpinv_get_invoice( $this->data['invoice_id'] ); |
|
266 | + // If the submission is for an existing invoice, ensure that it exists |
|
267 | + // and that it is not paid for. |
|
268 | + $invoice = wpinv_get_invoice( $this->data['invoice_id'] ); |
|
269 | 269 | |
270 | 270 | if ( empty( $invoice ) ) { |
271 | - throw new Exception( __( 'Invalid invoice', 'invoicing' ) ); |
|
272 | - } |
|
271 | + throw new Exception( __( 'Invalid invoice', 'invoicing' ) ); |
|
272 | + } |
|
273 | 273 | |
274 | - if ( $invoice->is_paid() ) { |
|
275 | - throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) ); |
|
276 | - } |
|
274 | + if ( $invoice->is_paid() ) { |
|
275 | + throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) ); |
|
276 | + } |
|
277 | 277 | |
278 | - $this->payment_form->invoice = $invoice; |
|
279 | - if ( ! $this->payment_form->is_default() ) { |
|
278 | + $this->payment_form->invoice = $invoice; |
|
279 | + if ( ! $this->payment_form->is_default() ) { |
|
280 | 280 | |
281 | - $items = array(); |
|
282 | - $item_ids = array(); |
|
281 | + $items = array(); |
|
282 | + $item_ids = array(); |
|
283 | 283 | |
284 | - foreach ( $invoice->get_items() as $item ) { |
|
285 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
286 | - $item_ids[] = $item->get_id(); |
|
287 | - $items[] = $item; |
|
288 | - } |
|
289 | - } |
|
284 | + foreach ( $invoice->get_items() as $item ) { |
|
285 | + if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
286 | + $item_ids[] = $item->get_id(); |
|
287 | + $items[] = $item; |
|
288 | + } |
|
289 | + } |
|
290 | 290 | |
291 | - foreach ( $this->payment_form->get_items() as $item ) { |
|
292 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
293 | - $item_ids[] = $item->get_id(); |
|
294 | - $items[] = $item; |
|
295 | - } |
|
296 | - } |
|
291 | + foreach ( $this->payment_form->get_items() as $item ) { |
|
292 | + if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
293 | + $item_ids[] = $item->get_id(); |
|
294 | + $items[] = $item; |
|
295 | + } |
|
296 | + } |
|
297 | 297 | |
298 | - $this->payment_form->set_items( $items ); |
|
298 | + $this->payment_form->set_items( $items ); |
|
299 | 299 | |
300 | - } else { |
|
301 | - $this->payment_form->set_items( $invoice->get_items() ); |
|
302 | - } |
|
303 | - |
|
304 | - $this->country = $invoice->get_country(); |
|
305 | - $this->state = $invoice->get_state(); |
|
306 | - $this->invoice = $invoice; |
|
307 | - |
|
308 | - do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) ); |
|
309 | - } |
|
310 | - |
|
311 | - /** |
|
312 | - * Returns the associated invoice. |
|
313 | - * |
|
314 | - * @since 1.0.19 |
|
315 | - * @return WPInv_Invoice |
|
316 | - */ |
|
317 | - public function get_invoice() { |
|
318 | - return $this->invoice; |
|
319 | - } |
|
320 | - |
|
321 | - /** |
|
322 | - * Checks whether there is an invoice associated with this submission. |
|
323 | - * |
|
324 | - * @since 1.0.19 |
|
325 | - * @return bool |
|
326 | - */ |
|
327 | - public function has_invoice() { |
|
328 | - return ! empty( $this->invoice ); |
|
329 | - } |
|
330 | - |
|
331 | - /* |
|
300 | + } else { |
|
301 | + $this->payment_form->set_items( $invoice->get_items() ); |
|
302 | + } |
|
303 | + |
|
304 | + $this->country = $invoice->get_country(); |
|
305 | + $this->state = $invoice->get_state(); |
|
306 | + $this->invoice = $invoice; |
|
307 | + |
|
308 | + do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) ); |
|
309 | + } |
|
310 | + |
|
311 | + /** |
|
312 | + * Returns the associated invoice. |
|
313 | + * |
|
314 | + * @since 1.0.19 |
|
315 | + * @return WPInv_Invoice |
|
316 | + */ |
|
317 | + public function get_invoice() { |
|
318 | + return $this->invoice; |
|
319 | + } |
|
320 | + |
|
321 | + /** |
|
322 | + * Checks whether there is an invoice associated with this submission. |
|
323 | + * |
|
324 | + * @since 1.0.19 |
|
325 | + * @return bool |
|
326 | + */ |
|
327 | + public function has_invoice() { |
|
328 | + return ! empty( $this->invoice ); |
|
329 | + } |
|
330 | + |
|
331 | + /* |
|
332 | 332 | |-------------------------------------------------------------------------- |
333 | 333 | | Items. |
334 | 334 | |-------------------------------------------------------------------------- |
@@ -337,129 +337,129 @@ discard block |
||
337 | 337 | | recurring item. But can have an unlimited number of non-recurring items. |
338 | 338 | */ |
339 | 339 | |
340 | - /** |
|
341 | - * Prepares the submission's items. |
|
342 | - * |
|
343 | - * @since 1.0.19 |
|
344 | - */ |
|
345 | - public function process_items() { |
|
346 | - |
|
347 | - $processor = new GetPaid_Payment_Form_Submission_Items( $this ); |
|
348 | - |
|
349 | - foreach ( $processor->items as $item ) { |
|
350 | - $this->add_item( $item ); |
|
351 | - } |
|
352 | - |
|
353 | - do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) ); |
|
354 | - } |
|
355 | - |
|
356 | - /** |
|
357 | - * Adds an item to the submission. |
|
358 | - * |
|
359 | - * @since 1.0.19 |
|
360 | - * @param GetPaid_Form_Item $item |
|
361 | - */ |
|
362 | - public function add_item( $item ) { |
|
363 | - |
|
364 | - // Make sure that it is available for purchase. |
|
365 | - if ( ! $item->can_purchase() || isset( $this->items[ $item->get_id() ] ) ) { |
|
366 | - return; |
|
367 | - } |
|
368 | - |
|
369 | - // Each submission can only contain one recurring item. |
|
370 | - if ( $item->is_recurring() ) { |
|
371 | - $this->has_recurring = $item->get_id(); |
|
372 | - } |
|
373 | - |
|
374 | - // Update the items and totals. |
|
375 | - $this->items[ $item->get_id() ] = $item; |
|
376 | - $this->totals['subtotal']['initial'] += $item->get_sub_total(); |
|
377 | - $this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total(); |
|
378 | - |
|
379 | - } |
|
380 | - |
|
381 | - /** |
|
382 | - * Removes a specific item. |
|
383 | - * |
|
384 | - * You should not call this method after the discounts and taxes |
|
385 | - * have been calculated. |
|
386 | - * |
|
387 | - * @since 1.0.19 |
|
388 | - */ |
|
389 | - public function remove_item( $item_id ) { |
|
390 | - |
|
391 | - if ( isset( $this->items[ $item_id ] ) ) { |
|
392 | - $this->totals['subtotal']['initial'] -= $this->items[ $item_id ]->get_sub_total(); |
|
393 | - $this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total(); |
|
394 | - |
|
395 | - if ( $this->items[ $item_id ]->is_recurring() ) { |
|
396 | - $this->has_recurring = 0; |
|
397 | - } |
|
398 | - |
|
399 | - unset( $this->items[ $item_id ] ); |
|
400 | - } |
|
401 | - |
|
402 | - } |
|
403 | - |
|
404 | - /** |
|
405 | - * Returns the subtotal. |
|
406 | - * |
|
407 | - * @since 1.0.19 |
|
408 | - */ |
|
409 | - public function get_subtotal() { |
|
410 | - |
|
411 | - if ( wpinv_prices_include_tax() ) { |
|
412 | - return $this->totals['subtotal']['initial'] - $this->totals['taxes']['initial']; |
|
413 | - } |
|
414 | - |
|
415 | - return $this->totals['subtotal']['initial']; |
|
416 | - } |
|
417 | - |
|
418 | - /** |
|
419 | - * Returns the recurring subtotal. |
|
420 | - * |
|
421 | - * @since 1.0.19 |
|
422 | - */ |
|
423 | - public function get_recurring_subtotal() { |
|
424 | - |
|
425 | - if ( wpinv_prices_include_tax() ) { |
|
426 | - return $this->totals['subtotal']['recurring'] - $this->totals['taxes']['recurring']; |
|
427 | - } |
|
428 | - |
|
429 | - return $this->totals['subtotal']['recurring']; |
|
430 | - } |
|
431 | - |
|
432 | - /** |
|
433 | - * Returns all items. |
|
434 | - * |
|
435 | - * @since 1.0.19 |
|
436 | - * @return GetPaid_Form_Item[] |
|
437 | - */ |
|
438 | - public function get_items() { |
|
439 | - return $this->items; |
|
440 | - } |
|
441 | - |
|
442 | - /** |
|
443 | - * Checks if there's a single subscription group in the submission. |
|
444 | - * |
|
445 | - * @since 2.3.0 |
|
446 | - * @return bool |
|
447 | - */ |
|
448 | - public function has_subscription_group() { |
|
449 | - return $this->has_recurring && getpaid_should_group_subscriptions( $this ) && 1 == count( getpaid_get_subscription_groups( $this ) ); |
|
450 | - } |
|
451 | - |
|
452 | - /** |
|
453 | - * Checks if there are multipe subscription groups in the submission. |
|
454 | - * |
|
455 | - * @since 2.3.0 |
|
456 | - * @return bool |
|
457 | - */ |
|
458 | - public function has_multiple_subscription_groups() { |
|
459 | - return $this->has_recurring && 1 < count( getpaid_get_subscription_groups( $this ) ); |
|
460 | - } |
|
461 | - |
|
462 | - /* |
|
340 | + /** |
|
341 | + * Prepares the submission's items. |
|
342 | + * |
|
343 | + * @since 1.0.19 |
|
344 | + */ |
|
345 | + public function process_items() { |
|
346 | + |
|
347 | + $processor = new GetPaid_Payment_Form_Submission_Items( $this ); |
|
348 | + |
|
349 | + foreach ( $processor->items as $item ) { |
|
350 | + $this->add_item( $item ); |
|
351 | + } |
|
352 | + |
|
353 | + do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) ); |
|
354 | + } |
|
355 | + |
|
356 | + /** |
|
357 | + * Adds an item to the submission. |
|
358 | + * |
|
359 | + * @since 1.0.19 |
|
360 | + * @param GetPaid_Form_Item $item |
|
361 | + */ |
|
362 | + public function add_item( $item ) { |
|
363 | + |
|
364 | + // Make sure that it is available for purchase. |
|
365 | + if ( ! $item->can_purchase() || isset( $this->items[ $item->get_id() ] ) ) { |
|
366 | + return; |
|
367 | + } |
|
368 | + |
|
369 | + // Each submission can only contain one recurring item. |
|
370 | + if ( $item->is_recurring() ) { |
|
371 | + $this->has_recurring = $item->get_id(); |
|
372 | + } |
|
373 | + |
|
374 | + // Update the items and totals. |
|
375 | + $this->items[ $item->get_id() ] = $item; |
|
376 | + $this->totals['subtotal']['initial'] += $item->get_sub_total(); |
|
377 | + $this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total(); |
|
378 | + |
|
379 | + } |
|
380 | + |
|
381 | + /** |
|
382 | + * Removes a specific item. |
|
383 | + * |
|
384 | + * You should not call this method after the discounts and taxes |
|
385 | + * have been calculated. |
|
386 | + * |
|
387 | + * @since 1.0.19 |
|
388 | + */ |
|
389 | + public function remove_item( $item_id ) { |
|
390 | + |
|
391 | + if ( isset( $this->items[ $item_id ] ) ) { |
|
392 | + $this->totals['subtotal']['initial'] -= $this->items[ $item_id ]->get_sub_total(); |
|
393 | + $this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total(); |
|
394 | + |
|
395 | + if ( $this->items[ $item_id ]->is_recurring() ) { |
|
396 | + $this->has_recurring = 0; |
|
397 | + } |
|
398 | + |
|
399 | + unset( $this->items[ $item_id ] ); |
|
400 | + } |
|
401 | + |
|
402 | + } |
|
403 | + |
|
404 | + /** |
|
405 | + * Returns the subtotal. |
|
406 | + * |
|
407 | + * @since 1.0.19 |
|
408 | + */ |
|
409 | + public function get_subtotal() { |
|
410 | + |
|
411 | + if ( wpinv_prices_include_tax() ) { |
|
412 | + return $this->totals['subtotal']['initial'] - $this->totals['taxes']['initial']; |
|
413 | + } |
|
414 | + |
|
415 | + return $this->totals['subtotal']['initial']; |
|
416 | + } |
|
417 | + |
|
418 | + /** |
|
419 | + * Returns the recurring subtotal. |
|
420 | + * |
|
421 | + * @since 1.0.19 |
|
422 | + */ |
|
423 | + public function get_recurring_subtotal() { |
|
424 | + |
|
425 | + if ( wpinv_prices_include_tax() ) { |
|
426 | + return $this->totals['subtotal']['recurring'] - $this->totals['taxes']['recurring']; |
|
427 | + } |
|
428 | + |
|
429 | + return $this->totals['subtotal']['recurring']; |
|
430 | + } |
|
431 | + |
|
432 | + /** |
|
433 | + * Returns all items. |
|
434 | + * |
|
435 | + * @since 1.0.19 |
|
436 | + * @return GetPaid_Form_Item[] |
|
437 | + */ |
|
438 | + public function get_items() { |
|
439 | + return $this->items; |
|
440 | + } |
|
441 | + |
|
442 | + /** |
|
443 | + * Checks if there's a single subscription group in the submission. |
|
444 | + * |
|
445 | + * @since 2.3.0 |
|
446 | + * @return bool |
|
447 | + */ |
|
448 | + public function has_subscription_group() { |
|
449 | + return $this->has_recurring && getpaid_should_group_subscriptions( $this ) && 1 == count( getpaid_get_subscription_groups( $this ) ); |
|
450 | + } |
|
451 | + |
|
452 | + /** |
|
453 | + * Checks if there are multipe subscription groups in the submission. |
|
454 | + * |
|
455 | + * @since 2.3.0 |
|
456 | + * @return bool |
|
457 | + */ |
|
458 | + public function has_multiple_subscription_groups() { |
|
459 | + return $this->has_recurring && 1 < count( getpaid_get_subscription_groups( $this ) ); |
|
460 | + } |
|
461 | + |
|
462 | + /* |
|
463 | 463 | |-------------------------------------------------------------------------- |
464 | 464 | | Taxes |
465 | 465 | |-------------------------------------------------------------------------- |
@@ -468,128 +468,128 @@ discard block |
||
468 | 468 | | or only one-time. |
469 | 469 | */ |
470 | 470 | |
471 | - /** |
|
472 | - * Prepares the submission's taxes. |
|
473 | - * |
|
474 | - * @since 1.0.19 |
|
475 | - */ |
|
476 | - public function process_taxes() { |
|
477 | - |
|
478 | - // Abort if we're not using taxes. |
|
479 | - if ( ! $this->use_taxes() ) { |
|
480 | - return; |
|
481 | - } |
|
482 | - |
|
483 | - // If a custom country && state has been passed in, use it to calculate taxes. |
|
484 | - $country = $this->get_field( 'wpinv_country', 'billing' ); |
|
485 | - if ( ! empty( $country ) ) { |
|
486 | - $this->country = $country; |
|
487 | - } |
|
488 | - |
|
489 | - $state = $this->get_field( 'wpinv_state', 'billing' ); |
|
490 | - if ( ! empty( $state ) ) { |
|
491 | - $this->state = $state; |
|
492 | - } |
|
493 | - |
|
494 | - // Confirm if the provided country and the ip country are similar. |
|
495 | - $address_confirmed = $this->get_field( 'confirm-address' ); |
|
496 | - if ( wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty( $address_confirmed ) ) { |
|
497 | - throw new Exception( __( 'The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing' ) ); |
|
498 | - } |
|
499 | - |
|
500 | - // Abort if the country is not taxable. |
|
501 | - if ( ! wpinv_is_country_taxable( $this->country ) ) { |
|
502 | - return; |
|
503 | - } |
|
504 | - |
|
505 | - $processor = new GetPaid_Payment_Form_Submission_Taxes( $this ); |
|
506 | - |
|
507 | - foreach ( $processor->taxes as $tax ) { |
|
508 | - $this->add_tax( $tax ); |
|
509 | - } |
|
510 | - |
|
511 | - do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) ); |
|
512 | - } |
|
513 | - |
|
514 | - /** |
|
515 | - * Adds a tax to the submission. |
|
516 | - * |
|
517 | - * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required. |
|
518 | - * @since 1.0.19 |
|
519 | - */ |
|
520 | - public function add_tax( $tax ) { |
|
521 | - |
|
522 | - if ( wpinv_round_tax_per_tax_rate() ) { |
|
523 | - $tax['initial_tax'] = wpinv_round_amount( $tax['initial_tax'] ); |
|
524 | - $tax['recurring_tax'] = wpinv_round_amount( $tax['recurring_tax'] ); |
|
525 | - } |
|
526 | - |
|
527 | - $this->taxes[ $tax['name'] ] = $tax; |
|
528 | - $this->totals['taxes']['initial'] += wpinv_sanitize_amount( $tax['initial_tax'] ); |
|
529 | - $this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] ); |
|
530 | - |
|
531 | - } |
|
532 | - |
|
533 | - /** |
|
534 | - * Removes a specific tax. |
|
535 | - * |
|
536 | - * @since 1.0.19 |
|
537 | - */ |
|
538 | - public function remove_tax( $tax_name ) { |
|
539 | - |
|
540 | - if ( isset( $this->taxes[ $tax_name ] ) ) { |
|
541 | - $this->totals['taxes']['initial'] -= $this->taxes[ $tax_name ]['initial_tax']; |
|
542 | - $this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax']; |
|
543 | - unset( $this->taxes[ $tax_name ] ); |
|
544 | - } |
|
545 | - |
|
546 | - } |
|
547 | - |
|
548 | - /** |
|
549 | - * Whether or not we'll use taxes for the submission. |
|
550 | - * |
|
551 | - * @since 1.0.19 |
|
552 | - */ |
|
553 | - public function use_taxes() { |
|
554 | - |
|
555 | - $use_taxes = wpinv_use_taxes(); |
|
556 | - |
|
557 | - if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) { |
|
558 | - $use_taxes = false; |
|
559 | - } |
|
560 | - |
|
561 | - return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this ); |
|
562 | - |
|
563 | - } |
|
564 | - |
|
565 | - /** |
|
566 | - * Returns the tax. |
|
567 | - * |
|
568 | - * @since 1.0.19 |
|
569 | - */ |
|
570 | - public function get_tax() { |
|
571 | - return $this->totals['taxes']['initial']; |
|
572 | - } |
|
573 | - |
|
574 | - /** |
|
575 | - * Returns the recurring tax. |
|
576 | - * |
|
577 | - * @since 1.0.19 |
|
578 | - */ |
|
579 | - public function get_recurring_tax() { |
|
580 | - return $this->totals['taxes']['recurring']; |
|
581 | - } |
|
582 | - |
|
583 | - /** |
|
584 | - * Returns all taxes. |
|
585 | - * |
|
586 | - * @since 1.0.19 |
|
587 | - */ |
|
588 | - public function get_taxes() { |
|
589 | - return $this->taxes; |
|
590 | - } |
|
591 | - |
|
592 | - /* |
|
471 | + /** |
|
472 | + * Prepares the submission's taxes. |
|
473 | + * |
|
474 | + * @since 1.0.19 |
|
475 | + */ |
|
476 | + public function process_taxes() { |
|
477 | + |
|
478 | + // Abort if we're not using taxes. |
|
479 | + if ( ! $this->use_taxes() ) { |
|
480 | + return; |
|
481 | + } |
|
482 | + |
|
483 | + // If a custom country && state has been passed in, use it to calculate taxes. |
|
484 | + $country = $this->get_field( 'wpinv_country', 'billing' ); |
|
485 | + if ( ! empty( $country ) ) { |
|
486 | + $this->country = $country; |
|
487 | + } |
|
488 | + |
|
489 | + $state = $this->get_field( 'wpinv_state', 'billing' ); |
|
490 | + if ( ! empty( $state ) ) { |
|
491 | + $this->state = $state; |
|
492 | + } |
|
493 | + |
|
494 | + // Confirm if the provided country and the ip country are similar. |
|
495 | + $address_confirmed = $this->get_field( 'confirm-address' ); |
|
496 | + if ( wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty( $address_confirmed ) ) { |
|
497 | + throw new Exception( __( 'The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing' ) ); |
|
498 | + } |
|
499 | + |
|
500 | + // Abort if the country is not taxable. |
|
501 | + if ( ! wpinv_is_country_taxable( $this->country ) ) { |
|
502 | + return; |
|
503 | + } |
|
504 | + |
|
505 | + $processor = new GetPaid_Payment_Form_Submission_Taxes( $this ); |
|
506 | + |
|
507 | + foreach ( $processor->taxes as $tax ) { |
|
508 | + $this->add_tax( $tax ); |
|
509 | + } |
|
510 | + |
|
511 | + do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) ); |
|
512 | + } |
|
513 | + |
|
514 | + /** |
|
515 | + * Adds a tax to the submission. |
|
516 | + * |
|
517 | + * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required. |
|
518 | + * @since 1.0.19 |
|
519 | + */ |
|
520 | + public function add_tax( $tax ) { |
|
521 | + |
|
522 | + if ( wpinv_round_tax_per_tax_rate() ) { |
|
523 | + $tax['initial_tax'] = wpinv_round_amount( $tax['initial_tax'] ); |
|
524 | + $tax['recurring_tax'] = wpinv_round_amount( $tax['recurring_tax'] ); |
|
525 | + } |
|
526 | + |
|
527 | + $this->taxes[ $tax['name'] ] = $tax; |
|
528 | + $this->totals['taxes']['initial'] += wpinv_sanitize_amount( $tax['initial_tax'] ); |
|
529 | + $this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] ); |
|
530 | + |
|
531 | + } |
|
532 | + |
|
533 | + /** |
|
534 | + * Removes a specific tax. |
|
535 | + * |
|
536 | + * @since 1.0.19 |
|
537 | + */ |
|
538 | + public function remove_tax( $tax_name ) { |
|
539 | + |
|
540 | + if ( isset( $this->taxes[ $tax_name ] ) ) { |
|
541 | + $this->totals['taxes']['initial'] -= $this->taxes[ $tax_name ]['initial_tax']; |
|
542 | + $this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax']; |
|
543 | + unset( $this->taxes[ $tax_name ] ); |
|
544 | + } |
|
545 | + |
|
546 | + } |
|
547 | + |
|
548 | + /** |
|
549 | + * Whether or not we'll use taxes for the submission. |
|
550 | + * |
|
551 | + * @since 1.0.19 |
|
552 | + */ |
|
553 | + public function use_taxes() { |
|
554 | + |
|
555 | + $use_taxes = wpinv_use_taxes(); |
|
556 | + |
|
557 | + if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) { |
|
558 | + $use_taxes = false; |
|
559 | + } |
|
560 | + |
|
561 | + return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this ); |
|
562 | + |
|
563 | + } |
|
564 | + |
|
565 | + /** |
|
566 | + * Returns the tax. |
|
567 | + * |
|
568 | + * @since 1.0.19 |
|
569 | + */ |
|
570 | + public function get_tax() { |
|
571 | + return $this->totals['taxes']['initial']; |
|
572 | + } |
|
573 | + |
|
574 | + /** |
|
575 | + * Returns the recurring tax. |
|
576 | + * |
|
577 | + * @since 1.0.19 |
|
578 | + */ |
|
579 | + public function get_recurring_tax() { |
|
580 | + return $this->totals['taxes']['recurring']; |
|
581 | + } |
|
582 | + |
|
583 | + /** |
|
584 | + * Returns all taxes. |
|
585 | + * |
|
586 | + * @since 1.0.19 |
|
587 | + */ |
|
588 | + public function get_taxes() { |
|
589 | + return $this->taxes; |
|
590 | + } |
|
591 | + |
|
592 | + /* |
|
593 | 593 | |-------------------------------------------------------------------------- |
594 | 594 | | Discounts |
595 | 595 | |-------------------------------------------------------------------------- |
@@ -598,99 +598,99 @@ discard block |
||
598 | 598 | | or only one-time. They also do not have to come from a discount code. |
599 | 599 | */ |
600 | 600 | |
601 | - /** |
|
602 | - * Prepares the submission's discount. |
|
603 | - * |
|
604 | - * @since 1.0.19 |
|
605 | - */ |
|
606 | - public function process_discount() { |
|
607 | - |
|
608 | - $initial_total = $this->get_subtotal() + $this->get_fee() + $this->get_tax(); |
|
609 | - $recurring_total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax(); |
|
610 | - $processor = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total ); |
|
611 | - |
|
612 | - foreach ( $processor->discounts as $discount ) { |
|
613 | - $this->add_discount( $discount ); |
|
614 | - } |
|
615 | - |
|
616 | - do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) ); |
|
617 | - } |
|
618 | - |
|
619 | - /** |
|
620 | - * Adds a discount to the submission. |
|
621 | - * |
|
622 | - * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code. |
|
623 | - * @since 1.0.19 |
|
624 | - */ |
|
625 | - public function add_discount( $discount ) { |
|
626 | - $this->discounts[ $discount['name'] ] = $discount; |
|
627 | - $this->totals['discount']['initial'] += wpinv_sanitize_amount( $discount['initial_discount'] ); |
|
628 | - $this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] ); |
|
629 | - } |
|
630 | - |
|
631 | - /** |
|
632 | - * Removes a discount from the submission. |
|
633 | - * |
|
634 | - * @since 1.0.19 |
|
635 | - */ |
|
636 | - public function remove_discount( $name ) { |
|
637 | - |
|
638 | - if ( isset( $this->discounts[ $name ] ) ) { |
|
639 | - $this->totals['discount']['initial'] -= $this->discounts[ $name ]['initial_discount']; |
|
640 | - $this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount']; |
|
641 | - unset( $this->discounts[ $name ] ); |
|
642 | - } |
|
643 | - |
|
644 | - } |
|
645 | - |
|
646 | - /** |
|
647 | - * Checks whether there is a discount code associated with this submission. |
|
648 | - * |
|
649 | - * @since 1.0.19 |
|
650 | - * @return bool |
|
651 | - */ |
|
652 | - public function has_discount_code() { |
|
653 | - return ! empty( $this->discounts['discount_code'] ); |
|
654 | - } |
|
655 | - |
|
656 | - /** |
|
657 | - * Returns the discount code. |
|
658 | - * |
|
659 | - * @since 1.0.19 |
|
660 | - * @return string |
|
661 | - */ |
|
662 | - public function get_discount_code() { |
|
663 | - return $this->has_discount_code() ? $this->discounts['discount_code']['discount_code'] : ''; |
|
664 | - } |
|
665 | - |
|
666 | - /** |
|
667 | - * Returns the discount. |
|
668 | - * |
|
669 | - * @since 1.0.19 |
|
670 | - */ |
|
671 | - public function get_discount() { |
|
672 | - return $this->totals['discount']['initial']; |
|
673 | - } |
|
674 | - |
|
675 | - /** |
|
676 | - * Returns the recurring discount. |
|
677 | - * |
|
678 | - * @since 1.0.19 |
|
679 | - */ |
|
680 | - public function get_recurring_discount() { |
|
681 | - return $this->totals['discount']['recurring']; |
|
682 | - } |
|
683 | - |
|
684 | - /** |
|
685 | - * Returns all discounts. |
|
686 | - * |
|
687 | - * @since 1.0.19 |
|
688 | - */ |
|
689 | - public function get_discounts() { |
|
690 | - return $this->discounts; |
|
691 | - } |
|
692 | - |
|
693 | - /* |
|
601 | + /** |
|
602 | + * Prepares the submission's discount. |
|
603 | + * |
|
604 | + * @since 1.0.19 |
|
605 | + */ |
|
606 | + public function process_discount() { |
|
607 | + |
|
608 | + $initial_total = $this->get_subtotal() + $this->get_fee() + $this->get_tax(); |
|
609 | + $recurring_total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax(); |
|
610 | + $processor = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total ); |
|
611 | + |
|
612 | + foreach ( $processor->discounts as $discount ) { |
|
613 | + $this->add_discount( $discount ); |
|
614 | + } |
|
615 | + |
|
616 | + do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) ); |
|
617 | + } |
|
618 | + |
|
619 | + /** |
|
620 | + * Adds a discount to the submission. |
|
621 | + * |
|
622 | + * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code. |
|
623 | + * @since 1.0.19 |
|
624 | + */ |
|
625 | + public function add_discount( $discount ) { |
|
626 | + $this->discounts[ $discount['name'] ] = $discount; |
|
627 | + $this->totals['discount']['initial'] += wpinv_sanitize_amount( $discount['initial_discount'] ); |
|
628 | + $this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] ); |
|
629 | + } |
|
630 | + |
|
631 | + /** |
|
632 | + * Removes a discount from the submission. |
|
633 | + * |
|
634 | + * @since 1.0.19 |
|
635 | + */ |
|
636 | + public function remove_discount( $name ) { |
|
637 | + |
|
638 | + if ( isset( $this->discounts[ $name ] ) ) { |
|
639 | + $this->totals['discount']['initial'] -= $this->discounts[ $name ]['initial_discount']; |
|
640 | + $this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount']; |
|
641 | + unset( $this->discounts[ $name ] ); |
|
642 | + } |
|
643 | + |
|
644 | + } |
|
645 | + |
|
646 | + /** |
|
647 | + * Checks whether there is a discount code associated with this submission. |
|
648 | + * |
|
649 | + * @since 1.0.19 |
|
650 | + * @return bool |
|
651 | + */ |
|
652 | + public function has_discount_code() { |
|
653 | + return ! empty( $this->discounts['discount_code'] ); |
|
654 | + } |
|
655 | + |
|
656 | + /** |
|
657 | + * Returns the discount code. |
|
658 | + * |
|
659 | + * @since 1.0.19 |
|
660 | + * @return string |
|
661 | + */ |
|
662 | + public function get_discount_code() { |
|
663 | + return $this->has_discount_code() ? $this->discounts['discount_code']['discount_code'] : ''; |
|
664 | + } |
|
665 | + |
|
666 | + /** |
|
667 | + * Returns the discount. |
|
668 | + * |
|
669 | + * @since 1.0.19 |
|
670 | + */ |
|
671 | + public function get_discount() { |
|
672 | + return $this->totals['discount']['initial']; |
|
673 | + } |
|
674 | + |
|
675 | + /** |
|
676 | + * Returns the recurring discount. |
|
677 | + * |
|
678 | + * @since 1.0.19 |
|
679 | + */ |
|
680 | + public function get_recurring_discount() { |
|
681 | + return $this->totals['discount']['recurring']; |
|
682 | + } |
|
683 | + |
|
684 | + /** |
|
685 | + * Returns all discounts. |
|
686 | + * |
|
687 | + * @since 1.0.19 |
|
688 | + */ |
|
689 | + public function get_discounts() { |
|
690 | + return $this->discounts; |
|
691 | + } |
|
692 | + |
|
693 | + /* |
|
694 | 694 | |-------------------------------------------------------------------------- |
695 | 695 | | Fees |
696 | 696 | |-------------------------------------------------------------------------- |
@@ -700,89 +700,89 @@ discard block |
||
700 | 700 | | fees. |
701 | 701 | */ |
702 | 702 | |
703 | - /** |
|
704 | - * Prepares the submission's fees. |
|
705 | - * |
|
706 | - * @since 1.0.19 |
|
707 | - */ |
|
708 | - public function process_fees() { |
|
709 | - |
|
710 | - $fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this ); |
|
711 | - |
|
712 | - foreach ( $fees_processor->fees as $fee ) { |
|
713 | - $this->add_fee( $fee ); |
|
714 | - } |
|
715 | - |
|
716 | - do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) ); |
|
717 | - } |
|
718 | - |
|
719 | - /** |
|
720 | - * Adds a fee to the submission. |
|
721 | - * |
|
722 | - * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required. |
|
723 | - * @since 1.0.19 |
|
724 | - */ |
|
725 | - public function add_fee( $fee ) { |
|
726 | - |
|
727 | - $this->fees[ $fee['name'] ] = $fee; |
|
728 | - $this->totals['fees']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
729 | - $this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
730 | - |
|
731 | - } |
|
732 | - |
|
733 | - /** |
|
734 | - * Removes a fee from the submission. |
|
735 | - * |
|
736 | - * @since 1.0.19 |
|
737 | - */ |
|
738 | - public function remove_fee( $name ) { |
|
739 | - |
|
740 | - if ( isset( $this->fees[ $name ] ) ) { |
|
741 | - $this->totals['fees']['initial'] -= $this->fees[ $name ]['initial_fee']; |
|
742 | - $this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee']; |
|
743 | - unset( $this->fees[ $name ] ); |
|
744 | - } |
|
745 | - |
|
746 | - } |
|
747 | - |
|
748 | - /** |
|
749 | - * Returns the fees. |
|
750 | - * |
|
751 | - * @since 1.0.19 |
|
752 | - */ |
|
753 | - public function get_fee() { |
|
754 | - return $this->totals['fees']['initial']; |
|
755 | - } |
|
756 | - |
|
757 | - /** |
|
758 | - * Returns the recurring fees. |
|
759 | - * |
|
760 | - * @since 1.0.19 |
|
761 | - */ |
|
762 | - public function get_recurring_fee() { |
|
763 | - return $this->totals['fees']['recurring']; |
|
764 | - } |
|
765 | - |
|
766 | - /** |
|
767 | - * Returns all fees. |
|
768 | - * |
|
769 | - * @since 1.0.19 |
|
770 | - */ |
|
771 | - public function get_fees() { |
|
772 | - return $this->fees; |
|
773 | - } |
|
774 | - |
|
775 | - /** |
|
776 | - * Checks if there are any fees for the form. |
|
777 | - * |
|
778 | - * @return bool |
|
779 | - * @since 1.0.19 |
|
780 | - */ |
|
781 | - public function has_fees() { |
|
782 | - return count( $this->fees ) !== 0; |
|
783 | - } |
|
784 | - |
|
785 | - /* |
|
703 | + /** |
|
704 | + * Prepares the submission's fees. |
|
705 | + * |
|
706 | + * @since 1.0.19 |
|
707 | + */ |
|
708 | + public function process_fees() { |
|
709 | + |
|
710 | + $fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this ); |
|
711 | + |
|
712 | + foreach ( $fees_processor->fees as $fee ) { |
|
713 | + $this->add_fee( $fee ); |
|
714 | + } |
|
715 | + |
|
716 | + do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) ); |
|
717 | + } |
|
718 | + |
|
719 | + /** |
|
720 | + * Adds a fee to the submission. |
|
721 | + * |
|
722 | + * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required. |
|
723 | + * @since 1.0.19 |
|
724 | + */ |
|
725 | + public function add_fee( $fee ) { |
|
726 | + |
|
727 | + $this->fees[ $fee['name'] ] = $fee; |
|
728 | + $this->totals['fees']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
729 | + $this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
730 | + |
|
731 | + } |
|
732 | + |
|
733 | + /** |
|
734 | + * Removes a fee from the submission. |
|
735 | + * |
|
736 | + * @since 1.0.19 |
|
737 | + */ |
|
738 | + public function remove_fee( $name ) { |
|
739 | + |
|
740 | + if ( isset( $this->fees[ $name ] ) ) { |
|
741 | + $this->totals['fees']['initial'] -= $this->fees[ $name ]['initial_fee']; |
|
742 | + $this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee']; |
|
743 | + unset( $this->fees[ $name ] ); |
|
744 | + } |
|
745 | + |
|
746 | + } |
|
747 | + |
|
748 | + /** |
|
749 | + * Returns the fees. |
|
750 | + * |
|
751 | + * @since 1.0.19 |
|
752 | + */ |
|
753 | + public function get_fee() { |
|
754 | + return $this->totals['fees']['initial']; |
|
755 | + } |
|
756 | + |
|
757 | + /** |
|
758 | + * Returns the recurring fees. |
|
759 | + * |
|
760 | + * @since 1.0.19 |
|
761 | + */ |
|
762 | + public function get_recurring_fee() { |
|
763 | + return $this->totals['fees']['recurring']; |
|
764 | + } |
|
765 | + |
|
766 | + /** |
|
767 | + * Returns all fees. |
|
768 | + * |
|
769 | + * @since 1.0.19 |
|
770 | + */ |
|
771 | + public function get_fees() { |
|
772 | + return $this->fees; |
|
773 | + } |
|
774 | + |
|
775 | + /** |
|
776 | + * Checks if there are any fees for the form. |
|
777 | + * |
|
778 | + * @return bool |
|
779 | + * @since 1.0.19 |
|
780 | + */ |
|
781 | + public function has_fees() { |
|
782 | + return count( $this->fees ) !== 0; |
|
783 | + } |
|
784 | + |
|
785 | + /* |
|
786 | 786 | |-------------------------------------------------------------------------- |
787 | 787 | | MISC |
788 | 788 | |-------------------------------------------------------------------------- |
@@ -790,119 +790,119 @@ discard block |
||
790 | 790 | | Extra submission functions. |
791 | 791 | */ |
792 | 792 | |
793 | - /** |
|
794 | - * Checks if this is the initial fetch. |
|
795 | - * |
|
796 | - * @return bool |
|
797 | - * @since 1.0.19 |
|
798 | - */ |
|
799 | - public function is_initial_fetch() { |
|
800 | - return empty( $this->data['initial_state'] ); |
|
801 | - } |
|
802 | - |
|
803 | - /** |
|
804 | - * Returns the total amount to collect for this submission. |
|
805 | - * |
|
806 | - * @since 1.0.19 |
|
807 | - */ |
|
808 | - public function get_total() { |
|
809 | - $total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() - $this->get_discount(); |
|
810 | - return max( $total, 0 ); |
|
811 | - } |
|
812 | - |
|
813 | - /** |
|
814 | - * Returns the recurring total amount to collect for this submission. |
|
815 | - * |
|
816 | - * @since 1.0.19 |
|
817 | - */ |
|
818 | - public function get_recurring_total() { |
|
819 | - $total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() - $this->get_recurring_discount(); |
|
820 | - return max( $total, 0 ); |
|
821 | - } |
|
822 | - |
|
823 | - /** |
|
824 | - * Whether payment details should be collected for this submission. |
|
825 | - * |
|
826 | - * @since 1.0.19 |
|
827 | - */ |
|
828 | - public function should_collect_payment_details() { |
|
829 | - $initial = $this->get_total(); |
|
830 | - $recurring = $this->get_recurring_total(); |
|
831 | - |
|
832 | - if ( $this->has_recurring == 0 ) { |
|
833 | - $recurring = 0; |
|
834 | - } |
|
835 | - |
|
836 | - $collect = $initial > 0 || $recurring > 0; |
|
837 | - return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this ); |
|
838 | - } |
|
839 | - |
|
840 | - /** |
|
841 | - * Returns the billing email of the user. |
|
842 | - * |
|
843 | - * @since 1.0.19 |
|
844 | - */ |
|
845 | - public function get_billing_email() { |
|
846 | - return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this ); |
|
847 | - } |
|
848 | - |
|
849 | - /** |
|
850 | - * Checks if the submitter has a billing email. |
|
851 | - * |
|
852 | - * @since 1.0.19 |
|
853 | - */ |
|
854 | - public function has_billing_email() { |
|
855 | - $billing_email = $this->get_billing_email(); |
|
856 | - return ! empty( $billing_email ) && is_email( $billing_email ); |
|
857 | - } |
|
858 | - |
|
859 | - /** |
|
860 | - * Returns the appropriate currency for the submission. |
|
861 | - * |
|
862 | - * @since 1.0.19 |
|
863 | - * @return string |
|
864 | - */ |
|
865 | - public function get_currency() { |
|
866 | - return $this->has_invoice() ? $this->invoice->get_currency() : wpinv_get_currency(); |
|
867 | - } |
|
868 | - |
|
869 | - /** |
|
870 | - * Returns the raw submission data. |
|
871 | - * |
|
872 | - * @since 1.0.19 |
|
873 | - * @return array |
|
874 | - */ |
|
875 | - public function get_data() { |
|
876 | - return $this->data; |
|
877 | - } |
|
878 | - |
|
879 | - /** |
|
880 | - * Returns a field from the submission data |
|
881 | - * |
|
882 | - * @param string $field |
|
883 | - * @since 1.0.19 |
|
884 | - * @return mixed|null |
|
885 | - */ |
|
886 | - public function get_field( $field, $sub_array_key = null ) { |
|
887 | - return getpaid_get_array_field( $this->data, $field, $sub_array_key ); |
|
888 | - } |
|
889 | - |
|
890 | - /** |
|
891 | - * Checks if a required field is set. |
|
892 | - * |
|
893 | - * @since 1.0.19 |
|
894 | - */ |
|
895 | - public function is_required_field_set( $field ) { |
|
896 | - return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] ); |
|
897 | - } |
|
898 | - |
|
899 | - /** |
|
900 | - * Formats an amount |
|
901 | - * |
|
902 | - * @since 1.0.19 |
|
903 | - */ |
|
904 | - public function format_amount( $amount ) { |
|
905 | - return wpinv_price( $amount, $this->get_currency() ); |
|
906 | - } |
|
793 | + /** |
|
794 | + * Checks if this is the initial fetch. |
|
795 | + * |
|
796 | + * @return bool |
|
797 | + * @since 1.0.19 |
|
798 | + */ |
|
799 | + public function is_initial_fetch() { |
|
800 | + return empty( $this->data['initial_state'] ); |
|
801 | + } |
|
802 | + |
|
803 | + /** |
|
804 | + * Returns the total amount to collect for this submission. |
|
805 | + * |
|
806 | + * @since 1.0.19 |
|
807 | + */ |
|
808 | + public function get_total() { |
|
809 | + $total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() - $this->get_discount(); |
|
810 | + return max( $total, 0 ); |
|
811 | + } |
|
812 | + |
|
813 | + /** |
|
814 | + * Returns the recurring total amount to collect for this submission. |
|
815 | + * |
|
816 | + * @since 1.0.19 |
|
817 | + */ |
|
818 | + public function get_recurring_total() { |
|
819 | + $total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() - $this->get_recurring_discount(); |
|
820 | + return max( $total, 0 ); |
|
821 | + } |
|
822 | + |
|
823 | + /** |
|
824 | + * Whether payment details should be collected for this submission. |
|
825 | + * |
|
826 | + * @since 1.0.19 |
|
827 | + */ |
|
828 | + public function should_collect_payment_details() { |
|
829 | + $initial = $this->get_total(); |
|
830 | + $recurring = $this->get_recurring_total(); |
|
831 | + |
|
832 | + if ( $this->has_recurring == 0 ) { |
|
833 | + $recurring = 0; |
|
834 | + } |
|
835 | + |
|
836 | + $collect = $initial > 0 || $recurring > 0; |
|
837 | + return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this ); |
|
838 | + } |
|
839 | + |
|
840 | + /** |
|
841 | + * Returns the billing email of the user. |
|
842 | + * |
|
843 | + * @since 1.0.19 |
|
844 | + */ |
|
845 | + public function get_billing_email() { |
|
846 | + return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this ); |
|
847 | + } |
|
848 | + |
|
849 | + /** |
|
850 | + * Checks if the submitter has a billing email. |
|
851 | + * |
|
852 | + * @since 1.0.19 |
|
853 | + */ |
|
854 | + public function has_billing_email() { |
|
855 | + $billing_email = $this->get_billing_email(); |
|
856 | + return ! empty( $billing_email ) && is_email( $billing_email ); |
|
857 | + } |
|
858 | + |
|
859 | + /** |
|
860 | + * Returns the appropriate currency for the submission. |
|
861 | + * |
|
862 | + * @since 1.0.19 |
|
863 | + * @return string |
|
864 | + */ |
|
865 | + public function get_currency() { |
|
866 | + return $this->has_invoice() ? $this->invoice->get_currency() : wpinv_get_currency(); |
|
867 | + } |
|
868 | + |
|
869 | + /** |
|
870 | + * Returns the raw submission data. |
|
871 | + * |
|
872 | + * @since 1.0.19 |
|
873 | + * @return array |
|
874 | + */ |
|
875 | + public function get_data() { |
|
876 | + return $this->data; |
|
877 | + } |
|
878 | + |
|
879 | + /** |
|
880 | + * Returns a field from the submission data |
|
881 | + * |
|
882 | + * @param string $field |
|
883 | + * @since 1.0.19 |
|
884 | + * @return mixed|null |
|
885 | + */ |
|
886 | + public function get_field( $field, $sub_array_key = null ) { |
|
887 | + return getpaid_get_array_field( $this->data, $field, $sub_array_key ); |
|
888 | + } |
|
889 | + |
|
890 | + /** |
|
891 | + * Checks if a required field is set. |
|
892 | + * |
|
893 | + * @since 1.0.19 |
|
894 | + */ |
|
895 | + public function is_required_field_set( $field ) { |
|
896 | + return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] ); |
|
897 | + } |
|
898 | + |
|
899 | + /** |
|
900 | + * Formats an amount |
|
901 | + * |
|
902 | + * @since 1.0.19 |
|
903 | + */ |
|
904 | + public function format_amount( $amount ) { |
|
905 | + return wpinv_price( $amount, $this->get_currency() ); |
|
906 | + } |
|
907 | 907 | |
908 | 908 | } |