@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -54,10 +54,10 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @param $args array The array of arguments that can be passed in and used for setting up this payment query. |
56 | 56 | */ |
57 | - public function __construct( $args = array() ) { |
|
57 | + public function __construct($args = array()) { |
|
58 | 58 | $defaults = array( |
59 | 59 | 'output' => 'payments', // Use 'posts' to get standard post objects |
60 | - 'post_type' => array( 'give_payment' ), |
|
60 | + 'post_type' => array('give_payment'), |
|
61 | 61 | 'start_date' => false, |
62 | 62 | 'end_date' => false, |
63 | 63 | 'number' => 20, |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | 'give_forms' => null |
78 | 78 | ); |
79 | 79 | |
80 | - $this->args = wp_parse_args( $args, $defaults ); |
|
80 | + $this->args = wp_parse_args($args, $defaults); |
|
81 | 81 | |
82 | 82 | $this->init(); |
83 | 83 | } |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | * @access public |
89 | 89 | * @since 1.0 |
90 | 90 | */ |
91 | - public function __set( $query_var, $value ) { |
|
92 | - if ( in_array( $query_var, array( 'meta_query', 'tax_query' ) ) ) { |
|
93 | - $this->args[ $query_var ][] = $value; |
|
91 | + public function __set($query_var, $value) { |
|
92 | + if (in_array($query_var, array('meta_query', 'tax_query'))) { |
|
93 | + $this->args[$query_var][] = $value; |
|
94 | 94 | } else { |
95 | - $this->args[ $query_var ] = $value; |
|
95 | + $this->args[$query_var] = $value; |
|
96 | 96 | } |
97 | 97 | } |
98 | 98 | |
@@ -102,8 +102,8 @@ discard block |
||
102 | 102 | * @access public |
103 | 103 | * @since 1.0 |
104 | 104 | */ |
105 | - public function __unset( $query_var ) { |
|
106 | - unset( $this->args[ $query_var ] ); |
|
105 | + public function __unset($query_var) { |
|
106 | + unset($this->args[$query_var]); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | /** |
@@ -115,19 +115,19 @@ discard block |
||
115 | 115 | */ |
116 | 116 | public function init() { |
117 | 117 | |
118 | - add_action( 'give_pre_get_payments', array( $this, 'date_filter_pre' ) ); |
|
119 | - add_action( 'give_post_get_payments', array( $this, 'date_filter_post' ) ); |
|
120 | - |
|
121 | - add_action( 'give_pre_get_payments', array( $this, 'orderby' ) ); |
|
122 | - add_action( 'give_pre_get_payments', array( $this, 'status' ) ); |
|
123 | - add_action( 'give_pre_get_payments', array( $this, 'month' ) ); |
|
124 | - add_action( 'give_pre_get_payments', array( $this, 'per_page' ) ); |
|
125 | - add_action( 'give_pre_get_payments', array( $this, 'page' ) ); |
|
126 | - add_action( 'give_pre_get_payments', array( $this, 'user' ) ); |
|
127 | - add_action( 'give_pre_get_payments', array( $this, 'search' ) ); |
|
128 | - add_action( 'give_pre_get_payments', array( $this, 'mode' ) ); |
|
129 | - add_action( 'give_pre_get_payments', array( $this, 'children' ) ); |
|
130 | - add_action( 'give_pre_get_payments', array( $this, 'give_forms' ) ); |
|
118 | + add_action('give_pre_get_payments', array($this, 'date_filter_pre')); |
|
119 | + add_action('give_post_get_payments', array($this, 'date_filter_post')); |
|
120 | + |
|
121 | + add_action('give_pre_get_payments', array($this, 'orderby')); |
|
122 | + add_action('give_pre_get_payments', array($this, 'status')); |
|
123 | + add_action('give_pre_get_payments', array($this, 'month')); |
|
124 | + add_action('give_pre_get_payments', array($this, 'per_page')); |
|
125 | + add_action('give_pre_get_payments', array($this, 'page')); |
|
126 | + add_action('give_pre_get_payments', array($this, 'user')); |
|
127 | + add_action('give_pre_get_payments', array($this, 'search')); |
|
128 | + add_action('give_pre_get_payments', array($this, 'mode')); |
|
129 | + add_action('give_pre_get_payments', array($this, 'children')); |
|
130 | + add_action('give_pre_get_payments', array($this, 'give_forms')); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -143,33 +143,33 @@ discard block |
||
143 | 143 | */ |
144 | 144 | public function get_payments() { |
145 | 145 | |
146 | - do_action( 'give_pre_get_payments', $this ); |
|
146 | + do_action('give_pre_get_payments', $this); |
|
147 | 147 | |
148 | - $query = new WP_Query( $this->args ); |
|
148 | + $query = new WP_Query($this->args); |
|
149 | 149 | |
150 | 150 | $custom_output = array( |
151 | 151 | 'payments', |
152 | 152 | 'give_payments', |
153 | 153 | ); |
154 | 154 | |
155 | - if ( ! in_array( $this->args['output'], $custom_output ) ) { |
|
155 | + if ( ! in_array($this->args['output'], $custom_output)) { |
|
156 | 156 | return $query->posts; |
157 | 157 | } |
158 | 158 | |
159 | - if ( $query->have_posts() ) { |
|
160 | - while ( $query->have_posts() ) { |
|
159 | + if ($query->have_posts()) { |
|
160 | + while ($query->have_posts()) { |
|
161 | 161 | $query->the_post(); |
162 | 162 | |
163 | 163 | $payment_id = get_post()->ID; |
164 | - $payment = new Give_Payment( $payment_id ); |
|
164 | + $payment = new Give_Payment($payment_id); |
|
165 | 165 | |
166 | - $this->payments[] = apply_filters( 'give_payment', $payment, $payment_id, $this ); |
|
166 | + $this->payments[] = apply_filters('give_payment', $payment, $payment_id, $this); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | wp_reset_postdata(); |
170 | 170 | } |
171 | 171 | |
172 | - do_action( 'give_post_get_payments', $this ); |
|
172 | + do_action('give_post_get_payments', $this); |
|
173 | 173 | |
174 | 174 | return $this->payments; |
175 | 175 | } |
@@ -182,13 +182,13 @@ discard block |
||
182 | 182 | * @return void |
183 | 183 | */ |
184 | 184 | public function date_filter_pre() { |
185 | - if ( ! ( $this->args['start_date'] || $this->args['end_date'] ) ) { |
|
185 | + if ( ! ($this->args['start_date'] || $this->args['end_date'])) { |
|
186 | 186 | return; |
187 | 187 | } |
188 | 188 | |
189 | - $this->setup_dates( $this->args['start_date'], $this->args['end_date'] ); |
|
189 | + $this->setup_dates($this->args['start_date'], $this->args['end_date']); |
|
190 | 190 | |
191 | - add_filter( 'posts_where', array( $this, 'payments_where' ) ); |
|
191 | + add_filter('posts_where', array($this, 'payments_where')); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | /** |
@@ -200,11 +200,11 @@ discard block |
||
200 | 200 | * @return void |
201 | 201 | */ |
202 | 202 | public function date_filter_post() { |
203 | - if ( ! ( $this->args['start_date'] || $this->args['end_date'] ) ) { |
|
203 | + if ( ! ($this->args['start_date'] || $this->args['end_date'])) { |
|
204 | 204 | return; |
205 | 205 | } |
206 | 206 | |
207 | - remove_filter( 'posts_where', array( $this, 'payments_where' ) ); |
|
207 | + remove_filter('posts_where', array($this, 'payments_where')); |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | /** |
@@ -215,12 +215,12 @@ discard block |
||
215 | 215 | * @return void |
216 | 216 | */ |
217 | 217 | public function status() { |
218 | - if ( ! isset ( $this->args['status'] ) ) { |
|
218 | + if ( ! isset ($this->args['status'])) { |
|
219 | 219 | return; |
220 | 220 | } |
221 | 221 | |
222 | - $this->__set( 'post_status', $this->args['status'] ); |
|
223 | - $this->__unset( 'status' ); |
|
222 | + $this->__set('post_status', $this->args['status']); |
|
223 | + $this->__unset('status'); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | /** |
@@ -231,12 +231,12 @@ discard block |
||
231 | 231 | * @return void |
232 | 232 | */ |
233 | 233 | public function page() { |
234 | - if ( ! isset ( $this->args['page'] ) ) { |
|
234 | + if ( ! isset ($this->args['page'])) { |
|
235 | 235 | return; |
236 | 236 | } |
237 | 237 | |
238 | - $this->__set( 'paged', $this->args['page'] ); |
|
239 | - $this->__unset( 'page' ); |
|
238 | + $this->__set('paged', $this->args['page']); |
|
239 | + $this->__unset('page'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -248,17 +248,17 @@ discard block |
||
248 | 248 | */ |
249 | 249 | public function per_page() { |
250 | 250 | |
251 | - if ( ! isset( $this->args['number'] ) ) { |
|
251 | + if ( ! isset($this->args['number'])) { |
|
252 | 252 | return; |
253 | 253 | } |
254 | 254 | |
255 | - if ( $this->args['number'] == - 1 ) { |
|
256 | - $this->__set( 'nopaging', true ); |
|
255 | + if ($this->args['number'] == - 1) { |
|
256 | + $this->__set('nopaging', true); |
|
257 | 257 | } else { |
258 | - $this->__set( 'posts_per_page', $this->args['number'] ); |
|
258 | + $this->__set('posts_per_page', $this->args['number']); |
|
259 | 259 | } |
260 | 260 | |
261 | - $this->__unset( 'number' ); |
|
261 | + $this->__unset('number'); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | /** |
@@ -269,12 +269,12 @@ discard block |
||
269 | 269 | * @return void |
270 | 270 | */ |
271 | 271 | public function month() { |
272 | - if ( ! isset ( $this->args['month'] ) ) { |
|
272 | + if ( ! isset ($this->args['month'])) { |
|
273 | 273 | return; |
274 | 274 | } |
275 | 275 | |
276 | - $this->__set( 'monthnum', $this->args['month'] ); |
|
277 | - $this->__unset( 'month' ); |
|
276 | + $this->__set('monthnum', $this->args['month']); |
|
277 | + $this->__unset('month'); |
|
278 | 278 | } |
279 | 279 | |
280 | 280 | /** |
@@ -285,13 +285,13 @@ discard block |
||
285 | 285 | * @return void |
286 | 286 | */ |
287 | 287 | public function orderby() { |
288 | - switch ( $this->args['orderby'] ) { |
|
288 | + switch ($this->args['orderby']) { |
|
289 | 289 | case 'amount' : |
290 | - $this->__set( 'orderby', 'meta_value_num' ); |
|
291 | - $this->__set( 'meta_key', '_give_payment_total' ); |
|
290 | + $this->__set('orderby', 'meta_value_num'); |
|
291 | + $this->__set('meta_key', '_give_payment_total'); |
|
292 | 292 | break; |
293 | 293 | default : |
294 | - $this->__set( 'orderby', $this->args['orderby'] ); |
|
294 | + $this->__set('orderby', $this->args['orderby']); |
|
295 | 295 | break; |
296 | 296 | } |
297 | 297 | } |
@@ -304,20 +304,20 @@ discard block |
||
304 | 304 | * @return void |
305 | 305 | */ |
306 | 306 | public function user() { |
307 | - if ( is_null( $this->args['user'] ) ) { |
|
307 | + if (is_null($this->args['user'])) { |
|
308 | 308 | return; |
309 | 309 | } |
310 | 310 | |
311 | - if ( is_numeric( $this->args['user'] ) ) { |
|
311 | + if (is_numeric($this->args['user'])) { |
|
312 | 312 | $user_key = '_give_payment_user_id'; |
313 | 313 | } else { |
314 | 314 | $user_key = '_give_payment_user_email'; |
315 | 315 | } |
316 | 316 | |
317 | - $this->__set( 'meta_query', array( |
|
317 | + $this->__set('meta_query', array( |
|
318 | 318 | 'key' => $user_key, |
319 | 319 | 'value' => $this->args['user'] |
320 | - ) ); |
|
320 | + )); |
|
321 | 321 | } |
322 | 322 | |
323 | 323 | /** |
@@ -329,33 +329,33 @@ discard block |
||
329 | 329 | */ |
330 | 330 | public function search() { |
331 | 331 | |
332 | - if ( ! isset( $this->args['s'] ) ) { |
|
332 | + if ( ! isset($this->args['s'])) { |
|
333 | 333 | return; |
334 | 334 | } |
335 | 335 | |
336 | - $search = trim( $this->args['s'] ); |
|
336 | + $search = trim($this->args['s']); |
|
337 | 337 | |
338 | - if ( empty( $search ) ) { |
|
338 | + if (empty($search)) { |
|
339 | 339 | return; |
340 | 340 | } |
341 | 341 | |
342 | - $is_email = is_email( $search ) || strpos( $search, '@' ) !== false; |
|
343 | - $is_user = strpos( $search, strtolower( 'user:' ) ) !== false; |
|
342 | + $is_email = is_email($search) || strpos($search, '@') !== false; |
|
343 | + $is_user = strpos($search, strtolower('user:')) !== false; |
|
344 | 344 | |
345 | - if ( ! empty( $this->args['search_in_notes'] ) ) { |
|
345 | + if ( ! empty($this->args['search_in_notes'])) { |
|
346 | 346 | |
347 | - $notes = give_get_payment_notes( 0, $search ); |
|
347 | + $notes = give_get_payment_notes(0, $search); |
|
348 | 348 | |
349 | - if ( ! empty( $notes ) ) { |
|
349 | + if ( ! empty($notes)) { |
|
350 | 350 | |
351 | - $payment_ids = wp_list_pluck( (array) $notes, 'comment_post_ID' ); |
|
351 | + $payment_ids = wp_list_pluck((array) $notes, 'comment_post_ID'); |
|
352 | 352 | |
353 | - $this->__set( 'post__in', $payment_ids ); |
|
353 | + $this->__set('post__in', $payment_ids); |
|
354 | 354 | } |
355 | 355 | |
356 | - $this->__unset( 's' ); |
|
356 | + $this->__unset('s'); |
|
357 | 357 | |
358 | - } elseif ( $is_email || strlen( $search ) == 32 ) { |
|
358 | + } elseif ($is_email || strlen($search) == 32) { |
|
359 | 359 | |
360 | 360 | $key = $is_email ? '_give_payment_user_email' : '_give_payment_purchase_key'; |
361 | 361 | $search_meta = array( |
@@ -364,19 +364,19 @@ discard block |
||
364 | 364 | 'compare' => 'LIKE' |
365 | 365 | ); |
366 | 366 | |
367 | - $this->__set( 'meta_query', $search_meta ); |
|
368 | - $this->__unset( 's' ); |
|
367 | + $this->__set('meta_query', $search_meta); |
|
368 | + $this->__unset('s'); |
|
369 | 369 | |
370 | - } elseif ( $is_user ) { |
|
370 | + } elseif ($is_user) { |
|
371 | 371 | |
372 | 372 | $search_meta = array( |
373 | 373 | 'key' => '_give_payment_user_id', |
374 | - 'value' => trim( str_replace( 'user:', '', strtolower( $search ) ) ) |
|
374 | + 'value' => trim(str_replace('user:', '', strtolower($search))) |
|
375 | 375 | ); |
376 | 376 | |
377 | - $this->__set( 'meta_query', $search_meta ); |
|
377 | + $this->__set('meta_query', $search_meta); |
|
378 | 378 | |
379 | - if ( give_get_option( 'enable_sequential' ) ) { |
|
379 | + if (give_get_option('enable_sequential')) { |
|
380 | 380 | |
381 | 381 | $search_meta = array( |
382 | 382 | 'key' => '_give_payment_number', |
@@ -384,19 +384,19 @@ discard block |
||
384 | 384 | 'compare' => 'LIKE' |
385 | 385 | ); |
386 | 386 | |
387 | - $this->__set( 'meta_query', $search_meta ); |
|
387 | + $this->__set('meta_query', $search_meta); |
|
388 | 388 | |
389 | 389 | $this->args['meta_query']['relation'] = 'OR'; |
390 | 390 | |
391 | 391 | } |
392 | 392 | |
393 | - $this->__unset( 's' ); |
|
393 | + $this->__unset('s'); |
|
394 | 394 | |
395 | 395 | } elseif ( |
396 | - give_get_option( 'enable_sequential' ) && |
|
396 | + give_get_option('enable_sequential') && |
|
397 | 397 | ( |
398 | - false !== strpos( $search, give_get_option( 'sequential_prefix' ) ) || |
|
399 | - false !== strpos( $search, give_get_option( 'sequential_postfix' ) ) |
|
398 | + false !== strpos($search, give_get_option('sequential_prefix')) || |
|
399 | + false !== strpos($search, give_get_option('sequential_postfix')) |
|
400 | 400 | ) |
401 | 401 | ) { |
402 | 402 | |
@@ -406,30 +406,30 @@ discard block |
||
406 | 406 | 'compare' => 'LIKE' |
407 | 407 | ); |
408 | 408 | |
409 | - $this->__set( 'meta_query', $search_meta ); |
|
410 | - $this->__unset( 's' ); |
|
409 | + $this->__set('meta_query', $search_meta); |
|
410 | + $this->__unset('s'); |
|
411 | 411 | |
412 | - } elseif ( is_numeric( $search ) ) { |
|
412 | + } elseif (is_numeric($search)) { |
|
413 | 413 | |
414 | - $post = get_post( $search ); |
|
414 | + $post = get_post($search); |
|
415 | 415 | |
416 | - if ( is_object( $post ) && $post->post_type == 'give_payment' ) { |
|
416 | + if (is_object($post) && $post->post_type == 'give_payment') { |
|
417 | 417 | |
418 | 418 | $arr = array(); |
419 | 419 | $arr[] = $search; |
420 | - $this->__set( 'post__in', $arr ); |
|
421 | - $this->__unset( 's' ); |
|
420 | + $this->__set('post__in', $arr); |
|
421 | + $this->__unset('s'); |
|
422 | 422 | } |
423 | 423 | |
424 | - } elseif ( '#' == substr( $search, 0, 1 ) ) { |
|
424 | + } elseif ('#' == substr($search, 0, 1)) { |
|
425 | 425 | |
426 | - $search = str_replace( '#:', '', $search ); |
|
427 | - $search = str_replace( '#', '', $search ); |
|
428 | - $this->__set( 'give_forms', $search ); |
|
429 | - $this->__unset( 's' ); |
|
426 | + $search = str_replace('#:', '', $search); |
|
427 | + $search = str_replace('#', '', $search); |
|
428 | + $this->__set('give_forms', $search); |
|
429 | + $this->__unset('s'); |
|
430 | 430 | |
431 | 431 | } else { |
432 | - $this->__set( 's', $search ); |
|
432 | + $this->__set('s', $search); |
|
433 | 433 | |
434 | 434 | } |
435 | 435 | |
@@ -443,16 +443,16 @@ discard block |
||
443 | 443 | * @return void |
444 | 444 | */ |
445 | 445 | public function mode() { |
446 | - if ( empty( $this->args['mode'] ) || $this->args['mode'] == 'all' ) { |
|
447 | - $this->__unset( 'mode' ); |
|
446 | + if (empty($this->args['mode']) || $this->args['mode'] == 'all') { |
|
447 | + $this->__unset('mode'); |
|
448 | 448 | |
449 | 449 | return; |
450 | 450 | } |
451 | 451 | |
452 | - $this->__set( 'meta_query', array( |
|
452 | + $this->__set('meta_query', array( |
|
453 | 453 | 'key' => '_give_payment_mode', |
454 | 454 | 'value' => $this->args['mode'] |
455 | - ) ); |
|
455 | + )); |
|
456 | 456 | } |
457 | 457 | |
458 | 458 | /** |
@@ -463,10 +463,10 @@ discard block |
||
463 | 463 | * @return void |
464 | 464 | */ |
465 | 465 | public function children() { |
466 | - if ( empty( $this->args['children'] ) ) { |
|
467 | - $this->__set( 'post_parent', 0 ); |
|
466 | + if (empty($this->args['children'])) { |
|
467 | + $this->__set('post_parent', 0); |
|
468 | 468 | } |
469 | - $this->__unset( 'children' ); |
|
469 | + $this->__unset('children'); |
|
470 | 470 | } |
471 | 471 | |
472 | 472 | /** |
@@ -478,7 +478,7 @@ discard block |
||
478 | 478 | */ |
479 | 479 | public function give_forms() { |
480 | 480 | |
481 | - if ( empty( $this->args['give_forms'] ) ) { |
|
481 | + if (empty($this->args['give_forms'])) { |
|
482 | 482 | return; |
483 | 483 | } |
484 | 484 | |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | $args = array( |
488 | 488 | 'post_parent' => $this->args['give_forms'], |
489 | 489 | 'log_type' => 'sale', |
490 | - 'post_status' => array( 'publish' ), |
|
490 | + 'post_status' => array('publish'), |
|
491 | 491 | 'nopaging' => true, |
492 | 492 | 'no_found_rows' => true, |
493 | 493 | 'update_post_term_cache' => false, |
@@ -496,31 +496,31 @@ discard block |
||
496 | 496 | 'fields' => 'ids' |
497 | 497 | ); |
498 | 498 | |
499 | - if ( is_array( $this->args['give_forms'] ) ) { |
|
500 | - unset( $args['post_parent'] ); |
|
499 | + if (is_array($this->args['give_forms'])) { |
|
500 | + unset($args['post_parent']); |
|
501 | 501 | $args['post_parent__in'] = $this->args['give_forms']; |
502 | 502 | } |
503 | 503 | |
504 | - $sales = $give_logs->get_connected_logs( $args ); |
|
504 | + $sales = $give_logs->get_connected_logs($args); |
|
505 | 505 | |
506 | - if ( ! empty( $sales ) ) { |
|
506 | + if ( ! empty($sales)) { |
|
507 | 507 | |
508 | 508 | $payments = array(); |
509 | 509 | |
510 | - foreach ( $sales as $sale ) { |
|
511 | - $payments[] = get_post_meta( $sale, '_give_log_payment_id', true ); |
|
510 | + foreach ($sales as $sale) { |
|
511 | + $payments[] = get_post_meta($sale, '_give_log_payment_id', true); |
|
512 | 512 | } |
513 | 513 | |
514 | - $this->__set( 'post__in', $payments ); |
|
514 | + $this->__set('post__in', $payments); |
|
515 | 515 | |
516 | 516 | } else { |
517 | 517 | |
518 | 518 | // Set post_parent to something crazy so it doesn't find anything |
519 | - $this->__set( 'post_parent', 999999999999999 ); |
|
519 | + $this->__set('post_parent', 999999999999999); |
|
520 | 520 | |
521 | 521 | } |
522 | 522 | |
523 | - $this->__unset( 'give_forms' ); |
|
523 | + $this->__unset('give_forms'); |
|
524 | 524 | |
525 | 525 | } |
526 | 526 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -28,22 +28,22 @@ discard block |
||
28 | 28 | * |
29 | 29 | * @return void |
30 | 30 | */ |
31 | -function give_complete_purchase( $payment_id, $new_status, $old_status ) { |
|
31 | +function give_complete_purchase($payment_id, $new_status, $old_status) { |
|
32 | 32 | |
33 | 33 | // Make sure that payments are only completed once |
34 | - if ( $old_status == 'publish' || $old_status == 'complete' ) { |
|
34 | + if ($old_status == 'publish' || $old_status == 'complete') { |
|
35 | 35 | return; |
36 | 36 | } |
37 | 37 | |
38 | 38 | // Make sure the payment completion is only processed when new status is complete |
39 | - if ( $new_status != 'publish' && $new_status != 'complete' ) { |
|
39 | + if ($new_status != 'publish' && $new_status != 'complete') { |
|
40 | 40 | return; |
41 | 41 | } |
42 | 42 | |
43 | 43 | |
44 | - $payment = new Give_Payment( $payment_id ); |
|
44 | + $payment = new Give_Payment($payment_id); |
|
45 | 45 | |
46 | - $creation_date = get_post_field( 'post_date', $payment_id, 'raw' ); |
|
46 | + $creation_date = get_post_field('post_date', $payment_id, 'raw'); |
|
47 | 47 | $payment_meta = $payment->payment_meta; |
48 | 48 | $completed_date = $payment->completed_date; |
49 | 49 | $user_info = $payment->user_info; |
@@ -52,46 +52,46 @@ discard block |
||
52 | 52 | $price_id = $payment->price_id; |
53 | 53 | $form_id = $payment->form_id; |
54 | 54 | |
55 | - do_action( 'give_pre_complete_purchase', $payment_id ); |
|
55 | + do_action('give_pre_complete_purchase', $payment_id); |
|
56 | 56 | |
57 | 57 | // Ensure these actions only run once, ever |
58 | - if ( empty( $completed_date ) ) { |
|
58 | + if (empty($completed_date)) { |
|
59 | 59 | |
60 | - give_record_sale_in_log( $form_id, $payment_id, $price_id, $creation_date ); |
|
61 | - do_action( 'give_complete_form_donation', $form_id, $payment_id, $payment_meta ); |
|
60 | + give_record_sale_in_log($form_id, $payment_id, $price_id, $creation_date); |
|
61 | + do_action('give_complete_form_donation', $form_id, $payment_id, $payment_meta); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | |
65 | 65 | // Increase the earnings for this form ID |
66 | - give_increase_earnings( $form_id, $amount ); |
|
67 | - give_increase_purchase_count( $form_id ); |
|
66 | + give_increase_earnings($form_id, $amount); |
|
67 | + give_increase_purchase_count($form_id); |
|
68 | 68 | |
69 | 69 | // Clear the total earnings cache |
70 | - delete_transient( 'give_earnings_total' ); |
|
70 | + delete_transient('give_earnings_total'); |
|
71 | 71 | // Clear the This Month earnings (this_monththis_month is NOT a typo) |
72 | - delete_transient( md5( 'give_earnings_this_monththis_month' ) ); |
|
73 | - delete_transient( md5( 'give_earnings_todaytoday' ) ); |
|
72 | + delete_transient(md5('give_earnings_this_monththis_month')); |
|
73 | + delete_transient(md5('give_earnings_todaytoday')); |
|
74 | 74 | |
75 | 75 | |
76 | 76 | // Increase the donor's purchase stats |
77 | - $customer = new Give_Customer( $customer_id ); |
|
77 | + $customer = new Give_Customer($customer_id); |
|
78 | 78 | $customer->increase_purchase_count(); |
79 | - $customer->increase_value( $amount ); |
|
79 | + $customer->increase_value($amount); |
|
80 | 80 | |
81 | - give_increase_total_earnings( $amount ); |
|
81 | + give_increase_total_earnings($amount); |
|
82 | 82 | |
83 | 83 | // Ensure this action only runs once ever |
84 | - if ( empty( $completed_date ) ) { |
|
84 | + if (empty($completed_date)) { |
|
85 | 85 | |
86 | 86 | // Save the completed date |
87 | - $payment->completed_date = current_time( 'mysql' ); |
|
87 | + $payment->completed_date = current_time('mysql'); |
|
88 | 88 | $payment->save(); |
89 | - do_action( 'give_complete_purchase', $payment_id ); |
|
89 | + do_action('give_complete_purchase', $payment_id); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | } |
93 | 93 | |
94 | -add_action( 'give_update_payment_status', 'give_complete_purchase', 100, 3 ); |
|
94 | +add_action('give_update_payment_status', 'give_complete_purchase', 100, 3); |
|
95 | 95 | |
96 | 96 | |
97 | 97 | /** |
@@ -105,19 +105,19 @@ discard block |
||
105 | 105 | * |
106 | 106 | * @return void |
107 | 107 | */ |
108 | -function give_record_status_change( $payment_id, $new_status, $old_status ) { |
|
108 | +function give_record_status_change($payment_id, $new_status, $old_status) { |
|
109 | 109 | |
110 | 110 | // Get the list of statuses so that status in the payment note can be translated |
111 | 111 | $stati = give_get_payment_statuses(); |
112 | - $old_status = isset( $stati[ $old_status ] ) ? $stati[ $old_status ] : $old_status; |
|
113 | - $new_status = isset( $stati[ $new_status ] ) ? $stati[ $new_status ] : $new_status; |
|
112 | + $old_status = isset($stati[$old_status]) ? $stati[$old_status] : $old_status; |
|
113 | + $new_status = isset($stati[$new_status]) ? $stati[$new_status] : $new_status; |
|
114 | 114 | |
115 | - $status_change = sprintf( __( 'Status changed from %s to %s', 'give' ), $old_status, $new_status ); |
|
115 | + $status_change = sprintf(__('Status changed from %s to %s', 'give'), $old_status, $new_status); |
|
116 | 116 | |
117 | - give_insert_payment_note( $payment_id, $status_change ); |
|
117 | + give_insert_payment_note($payment_id, $status_change); |
|
118 | 118 | } |
119 | 119 | |
120 | -add_action( 'give_update_payment_status', 'give_record_status_change', 100, 3 ); |
|
120 | +add_action('give_update_payment_status', 'give_record_status_change', 100, 3); |
|
121 | 121 | |
122 | 122 | |
123 | 123 | /** |
@@ -130,17 +130,17 @@ discard block |
||
130 | 130 | * @param $new_status the status of the payment, probably "publish" |
131 | 131 | * @param $old_status the status of the payment prior to being marked as "complete", probably "pending" |
132 | 132 | */ |
133 | -function give_clear_user_history_cache( $payment_id, $new_status, $old_status ) { |
|
133 | +function give_clear_user_history_cache($payment_id, $new_status, $old_status) { |
|
134 | 134 | |
135 | - $payment = new Give_Payment( $payment_id ); |
|
135 | + $payment = new Give_Payment($payment_id); |
|
136 | 136 | |
137 | - if ( ! empty( $payment->user_id ) ) { |
|
138 | - delete_transient( 'give_user_' . $payment->user_id . '_purchases' ); |
|
137 | + if ( ! empty($payment->user_id)) { |
|
138 | + delete_transient('give_user_'.$payment->user_id.'_purchases'); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | } |
142 | 142 | |
143 | -add_action( 'give_update_payment_status', 'give_clear_user_history_cache', 10, 3 ); |
|
143 | +add_action('give_update_payment_status', 'give_clear_user_history_cache', 10, 3); |
|
144 | 144 | |
145 | 145 | /** |
146 | 146 | * Updates all old payments, prior to 1.2, with new |
@@ -154,25 +154,25 @@ discard block |
||
154 | 154 | * |
155 | 155 | * @return void |
156 | 156 | */ |
157 | -function give_update_old_payments_with_totals( $data ) { |
|
158 | - if ( ! wp_verify_nonce( $data['_wpnonce'], 'give_upgrade_payments_nonce' ) ) { |
|
157 | +function give_update_old_payments_with_totals($data) { |
|
158 | + if ( ! wp_verify_nonce($data['_wpnonce'], 'give_upgrade_payments_nonce')) { |
|
159 | 159 | return; |
160 | 160 | } |
161 | 161 | |
162 | - if ( get_option( 'give_payment_totals_upgraded' ) ) { |
|
162 | + if (get_option('give_payment_totals_upgraded')) { |
|
163 | 163 | return; |
164 | 164 | } |
165 | 165 | |
166 | - $payments = give_get_payments( array( |
|
166 | + $payments = give_get_payments(array( |
|
167 | 167 | 'offset' => 0, |
168 | - 'number' => - 1, |
|
168 | + 'number' => -1, |
|
169 | 169 | 'mode' => 'all' |
170 | - ) ); |
|
170 | + )); |
|
171 | 171 | |
172 | - if ( $payments ) { |
|
173 | - foreach ( $payments as $payment ) { |
|
172 | + if ($payments) { |
|
173 | + foreach ($payments as $payment) { |
|
174 | 174 | |
175 | - $payment = new Give_Payment( $payment->ID ); |
|
175 | + $payment = new Give_Payment($payment->ID); |
|
176 | 176 | $meta = $payment->get_meta(); |
177 | 177 | |
178 | 178 | $payment->total = $meta['amount']; |
@@ -181,10 +181,10 @@ discard block |
||
181 | 181 | } |
182 | 182 | } |
183 | 183 | |
184 | - add_option( 'give_payment_totals_upgraded', 1 ); |
|
184 | + add_option('give_payment_totals_upgraded', 1); |
|
185 | 185 | } |
186 | 186 | |
187 | -add_action( 'give_upgrade_payments', 'give_update_old_payments_with_totals' ); |
|
187 | +add_action('give_upgrade_payments', 'give_update_old_payments_with_totals'); |
|
188 | 188 | |
189 | 189 | /** |
190 | 190 | * Updates week-old+ 'pending' orders to 'abandoned' |
@@ -195,21 +195,21 @@ discard block |
||
195 | 195 | function give_mark_abandoned_donations() { |
196 | 196 | $args = array( |
197 | 197 | 'status' => 'pending', |
198 | - 'number' => - 1, |
|
198 | + 'number' => -1, |
|
199 | 199 | 'output' => 'give_payments', |
200 | 200 | ); |
201 | 201 | |
202 | - add_filter( 'posts_where', 'give_filter_where_older_than_week' ); |
|
202 | + add_filter('posts_where', 'give_filter_where_older_than_week'); |
|
203 | 203 | |
204 | - $payments = give_get_payments( $args ); |
|
204 | + $payments = give_get_payments($args); |
|
205 | 205 | |
206 | - remove_filter( 'posts_where', 'give_filter_where_older_than_week' ); |
|
206 | + remove_filter('posts_where', 'give_filter_where_older_than_week'); |
|
207 | 207 | |
208 | - if ( $payments ) { |
|
209 | - foreach ( $payments as $payment ) { |
|
210 | - $gateway = give_get_payment_gateway( $payment ); |
|
208 | + if ($payments) { |
|
209 | + foreach ($payments as $payment) { |
|
210 | + $gateway = give_get_payment_gateway($payment); |
|
211 | 211 | //Skip offline gateway payments |
212 | - if ( $gateway == 'offline' ) { |
|
212 | + if ($gateway == 'offline') { |
|
213 | 213 | continue; |
214 | 214 | } |
215 | 215 | $payment->status = 'abandoned'; |
@@ -218,4 +218,4 @@ discard block |
||
218 | 218 | } |
219 | 219 | } |
220 | 220 | |
221 | -add_action( 'give_weekly_scheduled_events', 'give_mark_abandoned_donations' ); |
|
222 | 221 | \ No newline at end of file |
222 | +add_action('give_weekly_scheduled_events', 'give_mark_abandoned_donations'); |
|
223 | 223 | \ No newline at end of file |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | |
14 | 14 | |
15 | 15 | // Exit if accessed directly |
16 | -if ( ! defined( 'ABSPATH' ) ) { |
|
16 | +if ( ! defined('ABSPATH')) { |
|
17 | 17 | exit; |
18 | 18 | } |
19 | 19 | |
@@ -295,13 +295,13 @@ discard block |
||
295 | 295 | * |
296 | 296 | * @return mixed void|false |
297 | 297 | */ |
298 | - public function __construct( $payment_id = false ) { |
|
298 | + public function __construct($payment_id = false) { |
|
299 | 299 | |
300 | - if ( empty( $payment_id ) ) { |
|
300 | + if (empty($payment_id)) { |
|
301 | 301 | return false; |
302 | 302 | } |
303 | 303 | |
304 | - $this->setup_payment( $payment_id ); |
|
304 | + $this->setup_payment($payment_id); |
|
305 | 305 | } |
306 | 306 | |
307 | 307 | /** |
@@ -313,11 +313,11 @@ discard block |
||
313 | 313 | * |
314 | 314 | * @return mixed The value |
315 | 315 | */ |
316 | - public function __get( $key ) { |
|
316 | + public function __get($key) { |
|
317 | 317 | |
318 | - if ( method_exists( $this, 'get_' . $key ) ) { |
|
318 | + if (method_exists($this, 'get_'.$key)) { |
|
319 | 319 | |
320 | - $value = call_user_func( array( $this, 'get_' . $key ) ); |
|
320 | + $value = call_user_func(array($this, 'get_'.$key)); |
|
321 | 321 | |
322 | 322 | } else { |
323 | 323 | |
@@ -338,18 +338,18 @@ discard block |
||
338 | 338 | * @param string $key The property name |
339 | 339 | * @param mixed $value The value of the property |
340 | 340 | */ |
341 | - public function __set( $key, $value ) { |
|
342 | - $ignore = array( '_ID' ); |
|
341 | + public function __set($key, $value) { |
|
342 | + $ignore = array('_ID'); |
|
343 | 343 | |
344 | - if ( $key === 'status' ) { |
|
344 | + if ($key === 'status') { |
|
345 | 345 | $this->old_status = $this->status; |
346 | 346 | } |
347 | 347 | |
348 | - if ( ! in_array( $key, $ignore ) ) { |
|
349 | - $this->pending[ $key ] = $value; |
|
348 | + if ( ! in_array($key, $ignore)) { |
|
349 | + $this->pending[$key] = $value; |
|
350 | 350 | } |
351 | 351 | |
352 | - if ( '_ID' !== $key ) { |
|
352 | + if ('_ID' !== $key) { |
|
353 | 353 | $this->$key = $value; |
354 | 354 | } |
355 | 355 | } |
@@ -363,9 +363,9 @@ discard block |
||
363 | 363 | * |
364 | 364 | * @return boolean If the item is set or not |
365 | 365 | */ |
366 | - public function __isset( $name ) { |
|
367 | - if ( property_exists( $this, $name ) ) { |
|
368 | - return false === empty( $this->$name ); |
|
366 | + public function __isset($name) { |
|
367 | + if (property_exists($this, $name)) { |
|
368 | + return false === empty($this->$name); |
|
369 | 369 | } else { |
370 | 370 | return null; |
371 | 371 | } |
@@ -380,31 +380,31 @@ discard block |
||
380 | 380 | * |
381 | 381 | * @return bool If the setup was successful or not |
382 | 382 | */ |
383 | - private function setup_payment( $payment_id ) { |
|
383 | + private function setup_payment($payment_id) { |
|
384 | 384 | $this->pending = array(); |
385 | 385 | |
386 | - if ( empty( $payment_id ) ) { |
|
386 | + if (empty($payment_id)) { |
|
387 | 387 | return false; |
388 | 388 | } |
389 | 389 | |
390 | - $payment = get_post( $payment_id ); |
|
390 | + $payment = get_post($payment_id); |
|
391 | 391 | |
392 | - if ( ! $payment || is_wp_error( $payment ) ) { |
|
392 | + if ( ! $payment || is_wp_error($payment)) { |
|
393 | 393 | return false; |
394 | 394 | } |
395 | 395 | |
396 | - if ( 'give_payment' !== $payment->post_type ) { |
|
396 | + if ('give_payment' !== $payment->post_type) { |
|
397 | 397 | return false; |
398 | 398 | } |
399 | 399 | |
400 | 400 | // Allow extensions to perform actions before the payment is loaded |
401 | - do_action( 'give_pre_setup_payment', $this, $payment_id ); |
|
401 | + do_action('give_pre_setup_payment', $this, $payment_id); |
|
402 | 402 | |
403 | 403 | // Primary Identifier |
404 | - $this->ID = absint( $payment_id ); |
|
404 | + $this->ID = absint($payment_id); |
|
405 | 405 | |
406 | 406 | // Protected ID that can never be changed |
407 | - $this->_ID = absint( $payment_id ); |
|
407 | + $this->_ID = absint($payment_id); |
|
408 | 408 | |
409 | 409 | // We have a payment, get the generic payment_meta item to reduce calls to it |
410 | 410 | $this->payment_meta = $this->get_meta(); |
@@ -419,7 +419,7 @@ discard block |
||
419 | 419 | $this->parent_payment = $payment->post_parent; |
420 | 420 | |
421 | 421 | $all_payment_statuses = give_get_payment_statuses(); |
422 | - $this->status_nicename = array_key_exists( $this->status, $all_payment_statuses ) ? $all_payment_statuses[ $this->status ] : ucfirst( $this->status ); |
|
422 | + $this->status_nicename = array_key_exists($this->status, $all_payment_statuses) ? $all_payment_statuses[$this->status] : ucfirst($this->status); |
|
423 | 423 | |
424 | 424 | // Items |
425 | 425 | $this->fees = $this->setup_fees(); |
@@ -452,7 +452,7 @@ discard block |
||
452 | 452 | $this->number = $this->setup_payment_number(); |
453 | 453 | |
454 | 454 | // Allow extensions to add items to this object via hook |
455 | - do_action( 'give_setup_payment', $this, $payment_id ); |
|
455 | + do_action('give_setup_payment', $this, $payment_id); |
|
456 | 456 | |
457 | 457 | return true; |
458 | 458 | } |
@@ -467,24 +467,24 @@ discard block |
||
467 | 467 | |
468 | 468 | // Construct the payment title |
469 | 469 | $payment_title = ''; |
470 | - if ( ! empty( $this->first_name ) && ! empty( $this->last_name ) ) { |
|
471 | - $payment_title = $this->first_name . ' ' . $this->last_name; |
|
472 | - } else if ( ! empty( $this->first_name ) && empty( $this->last_name ) ) { |
|
470 | + if ( ! empty($this->first_name) && ! empty($this->last_name)) { |
|
471 | + $payment_title = $this->first_name.' '.$this->last_name; |
|
472 | + } else if ( ! empty($this->first_name) && empty($this->last_name)) { |
|
473 | 473 | $payment_title = $this->first_name; |
474 | - } else if ( ! empty( $this->email ) && is_email( $this->email ) ) { |
|
474 | + } else if ( ! empty($this->email) && is_email($this->email)) { |
|
475 | 475 | $payment_title = $this->email; |
476 | 476 | } |
477 | 477 | |
478 | 478 | //Set Key |
479 | - if ( empty( $this->key ) ) { |
|
479 | + if (empty($this->key)) { |
|
480 | 480 | |
481 | - $auth_key = defined( 'AUTH_KEY' ) ? AUTH_KEY : ''; |
|
482 | - $this->key = strtolower( md5( $this->email . date( 'Y-m-d H:i:s' ) . $auth_key . uniqid( 'give', true ) ) ); // Unique key |
|
481 | + $auth_key = defined('AUTH_KEY') ? AUTH_KEY : ''; |
|
482 | + $this->key = strtolower(md5($this->email.date('Y-m-d H:i:s').$auth_key.uniqid('give', true))); // Unique key |
|
483 | 483 | $this->pending['key'] = $this->key; |
484 | 484 | } |
485 | 485 | |
486 | 486 | //Set IP |
487 | - if ( empty( $this->ip ) ) { |
|
487 | + if (empty($this->ip)) { |
|
488 | 488 | |
489 | 489 | $this->ip = give_get_ip(); |
490 | 490 | $this->pending['ip'] = $this->ip; |
@@ -511,58 +511,58 @@ discard block |
||
511 | 511 | 'fees' => $this->fees, |
512 | 512 | ); |
513 | 513 | |
514 | - $args = apply_filters( 'give_insert_payment_args', array( |
|
514 | + $args = apply_filters('give_insert_payment_args', array( |
|
515 | 515 | 'post_title' => $payment_title, |
516 | 516 | 'post_status' => $this->status, |
517 | 517 | 'post_type' => 'give_payment', |
518 | - 'post_date' => ! empty( $this->date ) ? $this->date : null, |
|
519 | - 'post_date_gmt' => ! empty( $this->date ) ? get_gmt_from_date( $this->date ) : null, |
|
518 | + 'post_date' => ! empty($this->date) ? $this->date : null, |
|
519 | + 'post_date_gmt' => ! empty($this->date) ? get_gmt_from_date($this->date) : null, |
|
520 | 520 | 'post_parent' => $this->parent_payment, |
521 | - ), $payment_data ); |
|
521 | + ), $payment_data); |
|
522 | 522 | |
523 | 523 | // Create a blank payment |
524 | - $payment_id = wp_insert_post( $args ); |
|
524 | + $payment_id = wp_insert_post($args); |
|
525 | 525 | |
526 | - if ( ! empty( $payment_id ) ) { |
|
526 | + if ( ! empty($payment_id)) { |
|
527 | 527 | |
528 | 528 | $this->ID = $payment_id; |
529 | 529 | $this->_ID = $payment_id; |
530 | 530 | |
531 | 531 | $customer = new stdClass; |
532 | 532 | |
533 | - if ( did_action( 'give_pre_process_purchase' ) && is_user_logged_in() ) { |
|
534 | - $customer = new Give_Customer( get_current_user_id(), true ); |
|
533 | + if (did_action('give_pre_process_purchase') && is_user_logged_in()) { |
|
534 | + $customer = new Give_Customer(get_current_user_id(), true); |
|
535 | 535 | } |
536 | 536 | |
537 | - if ( empty( $customer->id ) ) { |
|
538 | - $customer = new Give_Customer( $this->email ); |
|
537 | + if (empty($customer->id)) { |
|
538 | + $customer = new Give_Customer($this->email); |
|
539 | 539 | } |
540 | 540 | |
541 | - if ( empty( $customer->id ) ) { |
|
541 | + if (empty($customer->id)) { |
|
542 | 542 | |
543 | 543 | $customer_data = array( |
544 | - 'name' => ! is_email( $payment_title ) ? $this->first_name . ' ' . $this->last_name : '', |
|
544 | + 'name' => ! is_email($payment_title) ? $this->first_name.' '.$this->last_name : '', |
|
545 | 545 | 'email' => $this->email, |
546 | 546 | 'user_id' => $this->user_id, |
547 | 547 | ); |
548 | 548 | |
549 | - $customer->create( $customer_data ); |
|
549 | + $customer->create($customer_data); |
|
550 | 550 | |
551 | 551 | } |
552 | 552 | |
553 | 553 | $this->customer_id = $customer->id; |
554 | 554 | $this->pending['customer_id'] = $this->customer_id; |
555 | - $customer->attach_payment( $this->ID, false ); |
|
555 | + $customer->attach_payment($this->ID, false); |
|
556 | 556 | |
557 | - $this->payment_meta = apply_filters( 'give_payment_meta', $this->payment_meta, $payment_data ); |
|
558 | - if ( ! empty( $this->payment_meta['fees'] ) ) { |
|
559 | - $this->fees = array_merge( $this->fees, $this->payment_meta['fees'] ); |
|
560 | - foreach ( $this->fees as $fee ) { |
|
561 | - $this->increase_fees( $fee['amount'] ); |
|
557 | + $this->payment_meta = apply_filters('give_payment_meta', $this->payment_meta, $payment_data); |
|
558 | + if ( ! empty($this->payment_meta['fees'])) { |
|
559 | + $this->fees = array_merge($this->fees, $this->payment_meta['fees']); |
|
560 | + foreach ($this->fees as $fee) { |
|
561 | + $this->increase_fees($fee['amount']); |
|
562 | 562 | } |
563 | 563 | } |
564 | 564 | |
565 | - $this->update_meta( '_give_payment_meta', $this->payment_meta ); |
|
565 | + $this->update_meta('_give_payment_meta', $this->payment_meta); |
|
566 | 566 | $this->new = true; |
567 | 567 | } |
568 | 568 | |
@@ -582,11 +582,11 @@ discard block |
||
582 | 582 | $saved = false; |
583 | 583 | |
584 | 584 | //Must have an ID |
585 | - if ( empty( $this->ID ) ) { |
|
585 | + if (empty($this->ID)) { |
|
586 | 586 | |
587 | 587 | $payment_id = $this->insert_payment(); |
588 | 588 | |
589 | - if ( false === $payment_id ) { |
|
589 | + if (false === $payment_id) { |
|
590 | 590 | $saved = false; |
591 | 591 | } else { |
592 | 592 | $this->ID = $payment_id; |
@@ -595,48 +595,48 @@ discard block |
||
595 | 595 | } |
596 | 596 | |
597 | 597 | //Set ID if not matching |
598 | - if ( $this->ID !== $this->_ID ) { |
|
598 | + if ($this->ID !== $this->_ID) { |
|
599 | 599 | $this->ID = $this->_ID; |
600 | 600 | } |
601 | 601 | |
602 | 602 | // If we have something pending, let's save it |
603 | - if ( ! empty( $this->pending ) ) { |
|
603 | + if ( ! empty($this->pending)) { |
|
604 | 604 | |
605 | 605 | $total_increase = 0; |
606 | 606 | $total_decrease = 0; |
607 | 607 | |
608 | - foreach ( $this->pending as $key => $value ) { |
|
608 | + foreach ($this->pending as $key => $value) { |
|
609 | 609 | |
610 | - switch ( $key ) { |
|
610 | + switch ($key) { |
|
611 | 611 | |
612 | 612 | case 'donations': |
613 | 613 | // Update totals for pending donations |
614 | - foreach ( $this->pending[ $key ] as $item ) { |
|
614 | + foreach ($this->pending[$key] as $item) { |
|
615 | 615 | |
616 | - $quantity = isset( $item['quantity'] ) ? $item['quantity'] : 1; |
|
617 | - $price_id = isset( $item['price_id'] ) ? $item['price_id'] : 0; |
|
616 | + $quantity = isset($item['quantity']) ? $item['quantity'] : 1; |
|
617 | + $price_id = isset($item['price_id']) ? $item['price_id'] : 0; |
|
618 | 618 | |
619 | - switch ( $item['action'] ) { |
|
619 | + switch ($item['action']) { |
|
620 | 620 | |
621 | 621 | case 'add': |
622 | 622 | |
623 | 623 | $price = $item['price']; |
624 | 624 | |
625 | - if ( 'publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status ) { |
|
625 | + if ('publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status) { |
|
626 | 626 | |
627 | 627 | // Add sales logs |
628 | - $log_date = date_i18n( 'Y-m-d G:i:s', current_time( 'timestamp' ) ); |
|
628 | + $log_date = date_i18n('Y-m-d G:i:s', current_time('timestamp')); |
|
629 | 629 | |
630 | 630 | $y = 0; |
631 | - while ( $y < $quantity ) { |
|
631 | + while ($y < $quantity) { |
|
632 | 632 | |
633 | - give_record_sale_in_log( $item['id'], $this->ID, $price_id, $log_date ); |
|
634 | - $y ++; |
|
633 | + give_record_sale_in_log($item['id'], $this->ID, $price_id, $log_date); |
|
634 | + $y++; |
|
635 | 635 | } |
636 | 636 | |
637 | - $form = new Give_Donate_Form( $item['id'] ); |
|
638 | - $form->increase_sales( $quantity ); |
|
639 | - $form->increase_earnings( $price ); |
|
637 | + $form = new Give_Donate_Form($item['id']); |
|
638 | + $form->increase_sales($quantity); |
|
639 | + $form->increase_earnings($price); |
|
640 | 640 | |
641 | 641 | $total_increase += $price; |
642 | 642 | } |
@@ -661,15 +661,15 @@ discard block |
||
661 | 661 | ) |
662 | 662 | ); |
663 | 663 | |
664 | - $found_logs = get_posts( $log_args ); |
|
665 | - foreach ( $found_logs as $log ) { |
|
666 | - wp_delete_post( $log->ID, true ); |
|
664 | + $found_logs = get_posts($log_args); |
|
665 | + foreach ($found_logs as $log) { |
|
666 | + wp_delete_post($log->ID, true); |
|
667 | 667 | } |
668 | 668 | |
669 | - if ( 'publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status ) { |
|
670 | - $form = new Give_Donate_Form( $item['id'] ); |
|
671 | - $form->decrease_sales( $quantity ); |
|
672 | - $form->decrease_earnings( $item['amount'] ); |
|
669 | + if ('publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status) { |
|
670 | + $form = new Give_Donate_Form($item['id']); |
|
671 | + $form->decrease_sales($quantity); |
|
672 | + $form->decrease_earnings($item['amount']); |
|
673 | 673 | |
674 | 674 | $total_decrease += $item['amount']; |
675 | 675 | } |
@@ -682,17 +682,17 @@ discard block |
||
682 | 682 | |
683 | 683 | case 'fees': |
684 | 684 | |
685 | - if ( 'publish' !== $this->status && 'complete' !== $this->status && 'revoked' !== $this->status ) { |
|
685 | + if ('publish' !== $this->status && 'complete' !== $this->status && 'revoked' !== $this->status) { |
|
686 | 686 | break; |
687 | 687 | } |
688 | 688 | |
689 | - if ( empty( $this->pending[ $key ] ) ) { |
|
689 | + if (empty($this->pending[$key])) { |
|
690 | 690 | break; |
691 | 691 | } |
692 | 692 | |
693 | - foreach ( $this->pending[ $key ] as $fee ) { |
|
693 | + foreach ($this->pending[$key] as $fee) { |
|
694 | 694 | |
695 | - switch ( $fee['action'] ) { |
|
695 | + switch ($fee['action']) { |
|
696 | 696 | |
697 | 697 | case 'add': |
698 | 698 | $total_increase += $fee['amount']; |
@@ -709,43 +709,43 @@ discard block |
||
709 | 709 | break; |
710 | 710 | |
711 | 711 | case 'status': |
712 | - $this->update_status( $this->status ); |
|
712 | + $this->update_status($this->status); |
|
713 | 713 | break; |
714 | 714 | |
715 | 715 | case 'gateway': |
716 | - $this->update_meta( '_give_payment_gateway', $this->gateway ); |
|
716 | + $this->update_meta('_give_payment_gateway', $this->gateway); |
|
717 | 717 | break; |
718 | 718 | |
719 | 719 | case 'mode': |
720 | - $this->update_meta( '_give_payment_mode', $this->mode ); |
|
720 | + $this->update_meta('_give_payment_mode', $this->mode); |
|
721 | 721 | break; |
722 | 722 | |
723 | 723 | case 'transaction_id': |
724 | - $this->update_meta( '_give_payment_transaction_id', $this->transaction_id ); |
|
724 | + $this->update_meta('_give_payment_transaction_id', $this->transaction_id); |
|
725 | 725 | break; |
726 | 726 | |
727 | 727 | case 'ip': |
728 | - $this->update_meta( '_give_payment_user_ip', $this->ip ); |
|
728 | + $this->update_meta('_give_payment_user_ip', $this->ip); |
|
729 | 729 | break; |
730 | 730 | |
731 | 731 | case 'customer_id': |
732 | - $this->update_meta( '_give_payment_customer_id', $this->customer_id ); |
|
732 | + $this->update_meta('_give_payment_customer_id', $this->customer_id); |
|
733 | 733 | break; |
734 | 734 | |
735 | 735 | case 'user_id': |
736 | - $this->update_meta( '_give_payment_user_id', $this->user_id ); |
|
736 | + $this->update_meta('_give_payment_user_id', $this->user_id); |
|
737 | 737 | break; |
738 | 738 | |
739 | 739 | case 'form_title': |
740 | - $this->update_meta( '_give_payment_form_title', $this->form_title ); |
|
740 | + $this->update_meta('_give_payment_form_title', $this->form_title); |
|
741 | 741 | break; |
742 | 742 | |
743 | 743 | case 'form_id': |
744 | - $this->update_meta( '_give_payment_form_id', $this->form_id ); |
|
744 | + $this->update_meta('_give_payment_form_id', $this->form_id); |
|
745 | 745 | break; |
746 | 746 | |
747 | 747 | case 'price_id': |
748 | - $this->update_meta( '_give_payment_price_id', $this->price_id ); |
|
748 | + $this->update_meta('_give_payment_price_id', $this->price_id); |
|
749 | 749 | break; |
750 | 750 | |
751 | 751 | case 'first_name': |
@@ -761,15 +761,15 @@ discard block |
||
761 | 761 | break; |
762 | 762 | |
763 | 763 | case 'email': |
764 | - $this->update_meta( '_give_payment_user_email', $this->email ); |
|
764 | + $this->update_meta('_give_payment_user_email', $this->email); |
|
765 | 765 | break; |
766 | 766 | |
767 | 767 | case 'key': |
768 | - $this->update_meta( '_give_payment_purchase_key', $this->key ); |
|
768 | + $this->update_meta('_give_payment_purchase_key', $this->key); |
|
769 | 769 | break; |
770 | 770 | |
771 | 771 | case 'number': |
772 | - $this->update_meta( '_give_payment_number', $this->number ); |
|
772 | + $this->update_meta('_give_payment_number', $this->number); |
|
773 | 773 | break; |
774 | 774 | |
775 | 775 | case 'date': |
@@ -779,11 +779,11 @@ discard block |
||
779 | 779 | 'edit_date' => true, |
780 | 780 | ); |
781 | 781 | |
782 | - wp_update_post( $args ); |
|
782 | + wp_update_post($args); |
|
783 | 783 | break; |
784 | 784 | |
785 | 785 | case 'completed_date': |
786 | - $this->update_meta( '_give_completed_date', $this->completed_date ); |
|
786 | + $this->update_meta('_give_completed_date', $this->completed_date); |
|
787 | 787 | break; |
788 | 788 | |
789 | 789 | case 'parent_payment': |
@@ -792,38 +792,38 @@ discard block |
||
792 | 792 | 'post_parent' => $this->parent_payment, |
793 | 793 | ); |
794 | 794 | |
795 | - wp_update_post( $args ); |
|
795 | + wp_update_post($args); |
|
796 | 796 | break; |
797 | 797 | |
798 | 798 | default: |
799 | - do_action( 'give_payment_save', $this, $key ); |
|
799 | + do_action('give_payment_save', $this, $key); |
|
800 | 800 | break; |
801 | 801 | } |
802 | 802 | } |
803 | 803 | |
804 | - if ( 'pending' !== $this->status ) { |
|
804 | + if ('pending' !== $this->status) { |
|
805 | 805 | |
806 | - $customer = new Give_Customer( $this->customer_id ); |
|
806 | + $customer = new Give_Customer($this->customer_id); |
|
807 | 807 | |
808 | 808 | $total_change = $total_increase - $total_decrease; |
809 | - if ( $total_change < 0 ) { |
|
809 | + if ($total_change < 0) { |
|
810 | 810 | |
811 | - $total_change = - ( $total_change ); |
|
811 | + $total_change = - ($total_change); |
|
812 | 812 | // Decrease the customer's purchase stats |
813 | - $customer->decrease_value( $total_change ); |
|
814 | - give_decrease_total_earnings( $total_change ); |
|
813 | + $customer->decrease_value($total_change); |
|
814 | + give_decrease_total_earnings($total_change); |
|
815 | 815 | |
816 | - } else if ( $total_change > 0 ) { |
|
816 | + } else if ($total_change > 0) { |
|
817 | 817 | |
818 | 818 | // Increase the customer's purchase stats |
819 | - $customer->increase_value( $total_change ); |
|
820 | - give_increase_total_earnings( $total_change ); |
|
819 | + $customer->increase_value($total_change); |
|
820 | + give_increase_total_earnings($total_change); |
|
821 | 821 | |
822 | 822 | } |
823 | 823 | |
824 | 824 | } |
825 | 825 | |
826 | - $this->update_meta( '_give_payment_total', $this->total ); |
|
826 | + $this->update_meta('_give_payment_total', $this->total); |
|
827 | 827 | |
828 | 828 | $new_meta = array( |
829 | 829 | 'form_title' => $this->form_title, |
@@ -835,12 +835,12 @@ discard block |
||
835 | 835 | ); |
836 | 836 | |
837 | 837 | $meta = $this->get_meta(); |
838 | - $merged_meta = array_merge( $meta, $new_meta ); |
|
838 | + $merged_meta = array_merge($meta, $new_meta); |
|
839 | 839 | |
840 | 840 | // Only save the payment meta if it's changed |
841 | - if ( md5( serialize( $meta ) ) !== md5( serialize( $merged_meta ) ) ) { |
|
842 | - $updated = $this->update_meta( '_give_payment_meta', $merged_meta ); |
|
843 | - if ( false !== $updated ) { |
|
841 | + if (md5(serialize($meta)) !== md5(serialize($merged_meta))) { |
|
842 | + $updated = $this->update_meta('_give_payment_meta', $merged_meta); |
|
843 | + if (false !== $updated) { |
|
844 | 844 | $saved = true; |
845 | 845 | } |
846 | 846 | } |
@@ -849,8 +849,8 @@ discard block |
||
849 | 849 | $saved = true; |
850 | 850 | } |
851 | 851 | |
852 | - if ( true === $saved ) { |
|
853 | - $this->setup_payment( $this->ID ); |
|
852 | + if (true === $saved) { |
|
853 | + $this->setup_payment($this->ID); |
|
854 | 854 | } |
855 | 855 | |
856 | 856 | return $saved; |
@@ -867,12 +867,12 @@ discard block |
||
867 | 867 | * |
868 | 868 | * @return bool True when successful, false otherwise |
869 | 869 | */ |
870 | - public function add_donation( $form_id = 0, $args = array(), $options = array() ) { |
|
870 | + public function add_donation($form_id = 0, $args = array(), $options = array()) { |
|
871 | 871 | |
872 | - $donation = new Give_Donate_Form( $form_id ); |
|
872 | + $donation = new Give_Donate_Form($form_id); |
|
873 | 873 | |
874 | 874 | // Bail if this post isn't a give donation form |
875 | - if ( ! $donation || $donation->post_type !== 'give_forms' ) { |
|
875 | + if ( ! $donation || $donation->post_type !== 'give_forms') { |
|
876 | 876 | return false; |
877 | 877 | } |
878 | 878 | |
@@ -883,60 +883,60 @@ discard block |
||
883 | 883 | 'fees' => array(), |
884 | 884 | ); |
885 | 885 | |
886 | - $args = wp_parse_args( apply_filters( 'give_payment_add_donation_args', $args, $donation->ID ), $defaults ); |
|
886 | + $args = wp_parse_args(apply_filters('give_payment_add_donation_args', $args, $donation->ID), $defaults); |
|
887 | 887 | |
888 | 888 | // Allow overriding the price |
889 | - if ( false !== $args['price'] ) { |
|
889 | + if (false !== $args['price']) { |
|
890 | 890 | $item_price = $args['price']; |
891 | 891 | } else { |
892 | 892 | |
893 | 893 | // Deal with variable pricing |
894 | - if ( give_has_variable_prices( $donation->ID ) ) { |
|
895 | - $prices = maybe_unserialize( get_post_meta( $form_id, '_give_donation_levels', true ) ); |
|
894 | + if (give_has_variable_prices($donation->ID)) { |
|
895 | + $prices = maybe_unserialize(get_post_meta($form_id, '_give_donation_levels', true)); |
|
896 | 896 | $item_price = ''; |
897 | 897 | //Loop through prices |
898 | - foreach ( $prices as $price ) { |
|
898 | + foreach ($prices as $price) { |
|
899 | 899 | //Find a match between price_id and level_id |
900 | 900 | //First verify array keys exists THEN make the match |
901 | - if ( ( isset( $args['price_id'] ) && isset( $price['_give_id']['level_id'] ) ) |
|
901 | + if ((isset($args['price_id']) && isset($price['_give_id']['level_id'])) |
|
902 | 902 | && $args['price_id'] == $price['_give_id']['level_id'] |
903 | 903 | ) { |
904 | 904 | $item_price = $price['_give_amount']; |
905 | 905 | } |
906 | 906 | } |
907 | 907 | //Fallback to the lowest price point |
908 | - if ( $item_price == '' ) { |
|
909 | - $item_price = give_get_lowest_price_option( $donation->ID ); |
|
910 | - $args['price_id'] = give_get_lowest_price_id( $donation->ID ); |
|
908 | + if ($item_price == '') { |
|
909 | + $item_price = give_get_lowest_price_option($donation->ID); |
|
910 | + $args['price_id'] = give_get_lowest_price_id($donation->ID); |
|
911 | 911 | } |
912 | 912 | } else { |
913 | 913 | //Simple form price |
914 | - $item_price = give_get_form_price( $donation->ID ); |
|
914 | + $item_price = give_get_form_price($donation->ID); |
|
915 | 915 | } |
916 | 916 | |
917 | 917 | } |
918 | 918 | |
919 | 919 | // Sanitizing the price here so we don't have a dozen calls later |
920 | - $item_price = give_sanitize_amount( $item_price ); |
|
921 | - $total = round( $item_price, give_currency_decimal_filter() ); |
|
920 | + $item_price = give_sanitize_amount($item_price); |
|
921 | + $total = round($item_price, give_currency_decimal_filter()); |
|
922 | 922 | |
923 | 923 | //Add Options |
924 | 924 | $default_options = array(); |
925 | - if ( false !== $args['price_id'] ) { |
|
925 | + if (false !== $args['price_id']) { |
|
926 | 926 | $default_options['price_id'] = (int) $args['price_id']; |
927 | 927 | } |
928 | - $options = wp_parse_args( $options, $default_options ); |
|
928 | + $options = wp_parse_args($options, $default_options); |
|
929 | 929 | |
930 | 930 | // Do not allow totals to go negative |
931 | - if ( $total < 0 ) { |
|
931 | + if ($total < 0) { |
|
932 | 932 | $total = 0; |
933 | 933 | } |
934 | 934 | |
935 | 935 | $donation = array( |
936 | 936 | 'name' => $donation->post_title, |
937 | 937 | 'id' => $donation->ID, |
938 | - 'price' => round( $total, give_currency_decimal_filter() ), |
|
939 | - 'subtotal' => round( $total, give_currency_decimal_filter() ), |
|
938 | + 'price' => round($total, give_currency_decimal_filter()), |
|
939 | + 'subtotal' => round($total, give_currency_decimal_filter()), |
|
940 | 940 | 'fees' => $args['fees'], |
941 | 941 | 'price_id' => $args['price_id'], |
942 | 942 | 'action' => 'add', |
@@ -945,7 +945,7 @@ discard block |
||
945 | 945 | |
946 | 946 | $this->pending['donations'][] = $donation; |
947 | 947 | |
948 | - $this->increase_subtotal( $total ); |
|
948 | + $this->increase_subtotal($total); |
|
949 | 949 | |
950 | 950 | return true; |
951 | 951 | |
@@ -961,7 +961,7 @@ discard block |
||
961 | 961 | * |
962 | 962 | * @return bool If the item was removed or not |
963 | 963 | */ |
964 | - public function remove_donation( $form_id, $args = array() ) { |
|
964 | + public function remove_donation($form_id, $args = array()) { |
|
965 | 965 | |
966 | 966 | // Set some defaults |
967 | 967 | $defaults = array( |
@@ -969,12 +969,12 @@ discard block |
||
969 | 969 | 'price' => false, |
970 | 970 | 'price_id' => false, |
971 | 971 | ); |
972 | - $args = wp_parse_args( $args, $defaults ); |
|
972 | + $args = wp_parse_args($args, $defaults); |
|
973 | 973 | |
974 | - $form = new Give_Donate_Form( $form_id ); |
|
974 | + $form = new Give_Donate_Form($form_id); |
|
975 | 975 | |
976 | 976 | // Bail if this post isn't a valid give donation form |
977 | - if ( ! $form || $form->post_type !== 'give_forms' ) { |
|
977 | + if ( ! $form || $form->post_type !== 'give_forms') { |
|
978 | 978 | return false; |
979 | 979 | } |
980 | 980 | |
@@ -987,7 +987,7 @@ discard block |
||
987 | 987 | |
988 | 988 | $this->pending['donations'][] = $pending_args; |
989 | 989 | |
990 | - $this->decrease_subtotal( $this->total ); |
|
990 | + $this->decrease_subtotal($this->total); |
|
991 | 991 | |
992 | 992 | return true; |
993 | 993 | } |
@@ -1002,7 +1002,7 @@ discard block |
||
1002 | 1002 | * |
1003 | 1003 | * @return bool If the fee was added |
1004 | 1004 | */ |
1005 | - public function add_fee( $args, $global = true ) { |
|
1005 | + public function add_fee($args, $global = true) { |
|
1006 | 1006 | |
1007 | 1007 | $default_args = array( |
1008 | 1008 | 'label' => '', |
@@ -1012,16 +1012,16 @@ discard block |
||
1012 | 1012 | 'price_id' => 0, |
1013 | 1013 | ); |
1014 | 1014 | |
1015 | - $fee = wp_parse_args( $args, $default_args ); |
|
1015 | + $fee = wp_parse_args($args, $default_args); |
|
1016 | 1016 | $this->fees[] = $fee; |
1017 | 1017 | |
1018 | 1018 | |
1019 | 1019 | $added_fee = $fee; |
1020 | 1020 | $added_fee['action'] = 'add'; |
1021 | 1021 | $this->pending['fees'][] = $added_fee; |
1022 | - reset( $this->fees ); |
|
1022 | + reset($this->fees); |
|
1023 | 1023 | |
1024 | - $this->increase_fees( $fee['amount'] ); |
|
1024 | + $this->increase_fees($fee['amount']); |
|
1025 | 1025 | |
1026 | 1026 | return true; |
1027 | 1027 | } |
@@ -1035,11 +1035,11 @@ discard block |
||
1035 | 1035 | * |
1036 | 1036 | * @return bool If the fee was removed successfully |
1037 | 1037 | */ |
1038 | - public function remove_fee( $key ) { |
|
1038 | + public function remove_fee($key) { |
|
1039 | 1039 | $removed = false; |
1040 | 1040 | |
1041 | - if ( is_numeric( $key ) ) { |
|
1042 | - $removed = $this->remove_fee_by( 'index', $key ); |
|
1041 | + if (is_numeric($key)) { |
|
1042 | + $removed = $this->remove_fee_by('index', $key); |
|
1043 | 1043 | } |
1044 | 1044 | |
1045 | 1045 | return $removed; |
@@ -1056,47 +1056,47 @@ discard block |
||
1056 | 1056 | * |
1057 | 1057 | * @return boolean If the item is removed |
1058 | 1058 | */ |
1059 | - public function remove_fee_by( $key, $value, $global = false ) { |
|
1059 | + public function remove_fee_by($key, $value, $global = false) { |
|
1060 | 1060 | |
1061 | - $allowed_fee_keys = apply_filters( 'give_payment_fee_keys', array( |
|
1061 | + $allowed_fee_keys = apply_filters('give_payment_fee_keys', array( |
|
1062 | 1062 | 'index', |
1063 | 1063 | 'label', |
1064 | 1064 | 'amount', |
1065 | 1065 | 'type', |
1066 | - ) ); |
|
1066 | + )); |
|
1067 | 1067 | |
1068 | - if ( ! in_array( $key, $allowed_fee_keys ) ) { |
|
1068 | + if ( ! in_array($key, $allowed_fee_keys)) { |
|
1069 | 1069 | return false; |
1070 | 1070 | } |
1071 | 1071 | |
1072 | 1072 | $removed = false; |
1073 | - if ( 'index' === $key && array_key_exists( $value, $this->fees ) ) { |
|
1073 | + if ('index' === $key && array_key_exists($value, $this->fees)) { |
|
1074 | 1074 | |
1075 | - $removed_fee = $this->fees[ $value ]; |
|
1075 | + $removed_fee = $this->fees[$value]; |
|
1076 | 1076 | $removed_fee['action'] = 'remove'; |
1077 | 1077 | $this->pending['fees'][] = $removed_fee; |
1078 | 1078 | |
1079 | - $this->decrease_fees( $removed_fee['amount'] ); |
|
1079 | + $this->decrease_fees($removed_fee['amount']); |
|
1080 | 1080 | |
1081 | - unset( $this->fees[ $value ] ); |
|
1081 | + unset($this->fees[$value]); |
|
1082 | 1082 | $removed = true; |
1083 | 1083 | |
1084 | - } else if ( 'index' !== $key ) { |
|
1084 | + } else if ('index' !== $key) { |
|
1085 | 1085 | |
1086 | - foreach ( $this->fees as $index => $fee ) { |
|
1086 | + foreach ($this->fees as $index => $fee) { |
|
1087 | 1087 | |
1088 | - if ( isset( $fee[ $key ] ) && $fee[ $key ] == $value ) { |
|
1088 | + if (isset($fee[$key]) && $fee[$key] == $value) { |
|
1089 | 1089 | |
1090 | 1090 | $removed_fee = $fee; |
1091 | 1091 | $removed_fee['action'] = 'remove'; |
1092 | 1092 | $this->pending['fees'][] = $removed_fee; |
1093 | 1093 | |
1094 | - $this->decrease_fees( $removed_fee['amount'] ); |
|
1094 | + $this->decrease_fees($removed_fee['amount']); |
|
1095 | 1095 | |
1096 | - unset( $this->fees[ $index ] ); |
|
1096 | + unset($this->fees[$index]); |
|
1097 | 1097 | $removed = true; |
1098 | 1098 | |
1099 | - if ( false === $global ) { |
|
1099 | + if (false === $global) { |
|
1100 | 1100 | break; |
1101 | 1101 | } |
1102 | 1102 | |
@@ -1106,8 +1106,8 @@ discard block |
||
1106 | 1106 | |
1107 | 1107 | } |
1108 | 1108 | |
1109 | - if ( true === $removed ) { |
|
1110 | - $this->fees = array_values( $this->fees ); |
|
1109 | + if (true === $removed) { |
|
1110 | + $this->fees = array_values($this->fees); |
|
1111 | 1111 | } |
1112 | 1112 | |
1113 | 1113 | return $removed; |
@@ -1122,14 +1122,14 @@ discard block |
||
1122 | 1122 | * |
1123 | 1123 | * @return array The Fees for the type specified |
1124 | 1124 | */ |
1125 | - public function get_fees( $type = 'all' ) { |
|
1125 | + public function get_fees($type = 'all') { |
|
1126 | 1126 | $fees = array(); |
1127 | 1127 | |
1128 | - if ( ! empty( $this->fees ) && is_array( $this->fees ) ) { |
|
1128 | + if ( ! empty($this->fees) && is_array($this->fees)) { |
|
1129 | 1129 | |
1130 | - foreach ( $this->fees as $fee_id => $fee ) { |
|
1130 | + foreach ($this->fees as $fee_id => $fee) { |
|
1131 | 1131 | |
1132 | - if ( 'all' != $type && ! empty( $fee['type'] ) && $type != $fee['type'] ) { |
|
1132 | + if ('all' != $type && ! empty($fee['type']) && $type != $fee['type']) { |
|
1133 | 1133 | continue; |
1134 | 1134 | } |
1135 | 1135 | |
@@ -1139,7 +1139,7 @@ discard block |
||
1139 | 1139 | } |
1140 | 1140 | } |
1141 | 1141 | |
1142 | - return apply_filters( 'give_get_payment_fees', $fees, $this->ID, $this ); |
|
1142 | + return apply_filters('give_get_payment_fees', $fees, $this->ID, $this); |
|
1143 | 1143 | } |
1144 | 1144 | |
1145 | 1145 | /** |
@@ -1151,13 +1151,13 @@ discard block |
||
1151 | 1151 | * |
1152 | 1152 | * @return void |
1153 | 1153 | */ |
1154 | - public function add_note( $note = false ) { |
|
1154 | + public function add_note($note = false) { |
|
1155 | 1155 | // Bail if no note specified |
1156 | - if ( ! $note ) { |
|
1156 | + if ( ! $note) { |
|
1157 | 1157 | return false; |
1158 | 1158 | } |
1159 | 1159 | |
1160 | - give_insert_payment_note( $this->ID, $note ); |
|
1160 | + give_insert_payment_note($this->ID, $note); |
|
1161 | 1161 | } |
1162 | 1162 | |
1163 | 1163 | /** |
@@ -1169,7 +1169,7 @@ discard block |
||
1169 | 1169 | * |
1170 | 1170 | * @return void |
1171 | 1171 | */ |
1172 | - private function increase_subtotal( $amount = 0.00 ) { |
|
1172 | + private function increase_subtotal($amount = 0.00) { |
|
1173 | 1173 | $amount = (float) $amount; |
1174 | 1174 | $this->subtotal += $amount; |
1175 | 1175 | |
@@ -1185,11 +1185,11 @@ discard block |
||
1185 | 1185 | * |
1186 | 1186 | * @return void |
1187 | 1187 | */ |
1188 | - private function decrease_subtotal( $amount = 0.00 ) { |
|
1188 | + private function decrease_subtotal($amount = 0.00) { |
|
1189 | 1189 | $amount = (float) $amount; |
1190 | 1190 | $this->subtotal -= $amount; |
1191 | 1191 | |
1192 | - if ( $this->subtotal < 0 ) { |
|
1192 | + if ($this->subtotal < 0) { |
|
1193 | 1193 | $this->subtotal = 0; |
1194 | 1194 | } |
1195 | 1195 | |
@@ -1205,7 +1205,7 @@ discard block |
||
1205 | 1205 | * |
1206 | 1206 | * @return void |
1207 | 1207 | */ |
1208 | - private function increase_fees( $amount = 0.00 ) { |
|
1208 | + private function increase_fees($amount = 0.00) { |
|
1209 | 1209 | $amount = (float) $amount; |
1210 | 1210 | $this->fees_total += $amount; |
1211 | 1211 | |
@@ -1221,11 +1221,11 @@ discard block |
||
1221 | 1221 | * |
1222 | 1222 | * @return void |
1223 | 1223 | */ |
1224 | - private function decrease_fees( $amount = 0.00 ) { |
|
1224 | + private function decrease_fees($amount = 0.00) { |
|
1225 | 1225 | $amount = (float) $amount; |
1226 | 1226 | $this->fees_total -= $amount; |
1227 | 1227 | |
1228 | - if ( $this->fees_total < 0 ) { |
|
1228 | + if ($this->fees_total < 0) { |
|
1229 | 1229 | $this->fees_total = 0; |
1230 | 1230 | } |
1231 | 1231 | |
@@ -1251,41 +1251,41 @@ discard block |
||
1251 | 1251 | * |
1252 | 1252 | * @return bool Returns if the status was successfully updated |
1253 | 1253 | */ |
1254 | - public function update_status( $status = false ) { |
|
1254 | + public function update_status($status = false) { |
|
1255 | 1255 | |
1256 | 1256 | //standardize the 'complete(d)' status |
1257 | - if ( $status == 'completed' || $status == 'complete' ) { |
|
1257 | + if ($status == 'completed' || $status == 'complete') { |
|
1258 | 1258 | $status = 'publish'; |
1259 | 1259 | } |
1260 | 1260 | |
1261 | - $old_status = ! empty( $this->old_status ) ? $this->old_status : false; |
|
1261 | + $old_status = ! empty($this->old_status) ? $this->old_status : false; |
|
1262 | 1262 | |
1263 | - if ( $old_status === $status ) { |
|
1263 | + if ($old_status === $status) { |
|
1264 | 1264 | return false; // Don't permit status changes that aren't changes |
1265 | 1265 | } |
1266 | 1266 | |
1267 | - $do_change = apply_filters( 'give_should_update_payment_status', true, $this->ID, $status, $old_status ); |
|
1267 | + $do_change = apply_filters('give_should_update_payment_status', true, $this->ID, $status, $old_status); |
|
1268 | 1268 | |
1269 | 1269 | $updated = false; |
1270 | 1270 | |
1271 | 1271 | |
1272 | - if ( $do_change ) { |
|
1272 | + if ($do_change) { |
|
1273 | 1273 | |
1274 | - do_action( 'give_before_payment_status_change', $this->ID, $status, $old_status ); |
|
1274 | + do_action('give_before_payment_status_change', $this->ID, $status, $old_status); |
|
1275 | 1275 | |
1276 | 1276 | $update_fields = array( |
1277 | 1277 | 'ID' => $this->ID, |
1278 | 1278 | 'post_status' => $status, |
1279 | - 'edit_date' => current_time( 'mysql' ) |
|
1279 | + 'edit_date' => current_time('mysql') |
|
1280 | 1280 | ); |
1281 | 1281 | |
1282 | - $updated = wp_update_post( apply_filters( 'give_update_payment_status_fields', $update_fields ) ); |
|
1282 | + $updated = wp_update_post(apply_filters('give_update_payment_status_fields', $update_fields)); |
|
1283 | 1283 | |
1284 | 1284 | $all_payment_statuses = give_get_payment_statuses(); |
1285 | - $this->status_nicename = array_key_exists( $status, $all_payment_statuses ) ? $all_payment_statuses[ $status ] : ucfirst( $status ); |
|
1285 | + $this->status_nicename = array_key_exists($status, $all_payment_statuses) ? $all_payment_statuses[$status] : ucfirst($status); |
|
1286 | 1286 | |
1287 | 1287 | // Process any specific status functions |
1288 | - switch ( $status ) { |
|
1288 | + switch ($status) { |
|
1289 | 1289 | case 'refunded': |
1290 | 1290 | $this->process_refund(); |
1291 | 1291 | break; |
@@ -1297,7 +1297,7 @@ discard block |
||
1297 | 1297 | break; |
1298 | 1298 | } |
1299 | 1299 | |
1300 | - do_action( 'give_update_payment_status', $this->ID, $status, $old_status ); |
|
1300 | + do_action('give_update_payment_status', $this->ID, $status, $old_status); |
|
1301 | 1301 | |
1302 | 1302 | } |
1303 | 1303 | |
@@ -1329,32 +1329,32 @@ discard block |
||
1329 | 1329 | * |
1330 | 1330 | * @return mixed The value from the post meta |
1331 | 1331 | */ |
1332 | - public function get_meta( $meta_key = '_give_payment_meta', $single = true ) { |
|
1332 | + public function get_meta($meta_key = '_give_payment_meta', $single = true) { |
|
1333 | 1333 | |
1334 | - $meta = get_post_meta( $this->ID, $meta_key, $single ); |
|
1334 | + $meta = get_post_meta($this->ID, $meta_key, $single); |
|
1335 | 1335 | |
1336 | - if ( $meta_key === '_give_payment_meta' ) { |
|
1336 | + if ($meta_key === '_give_payment_meta') { |
|
1337 | 1337 | |
1338 | - if ( empty( $meta['key'] ) ) { |
|
1338 | + if (empty($meta['key'])) { |
|
1339 | 1339 | $meta['key'] = $this->setup_payment_key(); |
1340 | 1340 | } |
1341 | 1341 | |
1342 | - if ( empty( $meta['form_title'] ) ) { |
|
1342 | + if (empty($meta['form_title'])) { |
|
1343 | 1343 | $meta['form_title'] = $this->setup_form_title(); |
1344 | 1344 | } |
1345 | 1345 | |
1346 | - if ( empty( $meta['email'] ) ) { |
|
1346 | + if (empty($meta['email'])) { |
|
1347 | 1347 | $meta['email'] = $this->setup_email(); |
1348 | 1348 | } |
1349 | 1349 | |
1350 | - if ( empty( $meta['date'] ) ) { |
|
1351 | - $meta['date'] = get_post_field( 'post_date', $this->ID ); |
|
1350 | + if (empty($meta['date'])) { |
|
1351 | + $meta['date'] = get_post_field('post_date', $this->ID); |
|
1352 | 1352 | } |
1353 | 1353 | } |
1354 | 1354 | |
1355 | - $meta = apply_filters( 'give_get_payment_meta_' . $meta_key, $meta, $this->ID ); |
|
1355 | + $meta = apply_filters('give_get_payment_meta_'.$meta_key, $meta, $this->ID); |
|
1356 | 1356 | |
1357 | - return apply_filters( 'give_get_payment_meta', $meta, $this->ID, $meta_key ); |
|
1357 | + return apply_filters('give_get_payment_meta', $meta, $this->ID, $meta_key); |
|
1358 | 1358 | } |
1359 | 1359 | |
1360 | 1360 | /** |
@@ -1368,23 +1368,23 @@ discard block |
||
1368 | 1368 | * |
1369 | 1369 | * @return int|bool Meta ID if the key didn't exist, true on successful update, false on failure |
1370 | 1370 | */ |
1371 | - public function update_meta( $meta_key = '', $meta_value = '', $prev_value = '' ) { |
|
1372 | - if ( empty( $meta_key ) ) { |
|
1371 | + public function update_meta($meta_key = '', $meta_value = '', $prev_value = '') { |
|
1372 | + if (empty($meta_key)) { |
|
1373 | 1373 | return false; |
1374 | 1374 | } |
1375 | 1375 | |
1376 | - if ( $meta_key == 'key' || $meta_key == 'date' ) { |
|
1376 | + if ($meta_key == 'key' || $meta_key == 'date') { |
|
1377 | 1377 | |
1378 | 1378 | $current_meta = $this->get_meta(); |
1379 | - $current_meta[ $meta_key ] = $meta_value; |
|
1379 | + $current_meta[$meta_key] = $meta_value; |
|
1380 | 1380 | |
1381 | 1381 | $meta_key = '_give_payment_meta'; |
1382 | 1382 | $meta_value = $current_meta; |
1383 | 1383 | |
1384 | - } else if ( $meta_key == 'email' || $meta_key == '_give_payment_user_email' ) { |
|
1384 | + } else if ($meta_key == 'email' || $meta_key == '_give_payment_user_email') { |
|
1385 | 1385 | |
1386 | - $meta_value = apply_filters( 'give_give_update_payment_meta_' . $meta_key, $meta_value, $this->ID ); |
|
1387 | - update_post_meta( $this->ID, '_give_payment_user_email', $meta_value ); |
|
1386 | + $meta_value = apply_filters('give_give_update_payment_meta_'.$meta_key, $meta_value, $this->ID); |
|
1387 | + update_post_meta($this->ID, '_give_payment_user_email', $meta_value); |
|
1388 | 1388 | |
1389 | 1389 | $current_meta = $this->get_meta(); |
1390 | 1390 | $current_meta['user_info']['email'] = $meta_value; |
@@ -1394,9 +1394,9 @@ discard block |
||
1394 | 1394 | |
1395 | 1395 | } |
1396 | 1396 | |
1397 | - $meta_value = apply_filters( 'give_update_payment_meta_' . $meta_key, $meta_value, $this->ID ); |
|
1397 | + $meta_value = apply_filters('give_update_payment_meta_'.$meta_key, $meta_value, $this->ID); |
|
1398 | 1398 | |
1399 | - return update_post_meta( $this->ID, $meta_key, $meta_value, $prev_value ); |
|
1399 | + return update_post_meta($this->ID, $meta_key, $meta_value, $prev_value); |
|
1400 | 1400 | } |
1401 | 1401 | |
1402 | 1402 | /** |
@@ -1410,30 +1410,30 @@ discard block |
||
1410 | 1410 | $process_refund = true; |
1411 | 1411 | |
1412 | 1412 | // If the payment was not in publish or revoked status, don't decrement stats as they were never incremented |
1413 | - if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'refunded' != $this->status ) { |
|
1413 | + if (('publish' != $this->old_status && 'revoked' != $this->old_status) || 'refunded' != $this->status) { |
|
1414 | 1414 | $process_refund = false; |
1415 | 1415 | } |
1416 | 1416 | |
1417 | 1417 | // Allow extensions to filter for their own payment types, Example: Recurring Payments |
1418 | - $process_refund = apply_filters( 'give_should_process_refund', $process_refund, $this ); |
|
1418 | + $process_refund = apply_filters('give_should_process_refund', $process_refund, $this); |
|
1419 | 1419 | |
1420 | - if ( false === $process_refund ) { |
|
1420 | + if (false === $process_refund) { |
|
1421 | 1421 | return; |
1422 | 1422 | } |
1423 | 1423 | |
1424 | - do_action( 'give_pre_refund_payment', $this ); |
|
1424 | + do_action('give_pre_refund_payment', $this); |
|
1425 | 1425 | |
1426 | - $decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_refund', true, $this ); |
|
1427 | - $decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_refund', true, $this ); |
|
1428 | - $decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_refund', true, $this ); |
|
1426 | + $decrease_store_earnings = apply_filters('give_decrease_store_earnings_on_refund', true, $this); |
|
1427 | + $decrease_customer_value = apply_filters('give_decrease_customer_value_on_refund', true, $this); |
|
1428 | + $decrease_purchase_count = apply_filters('give_decrease_customer_purchase_count_on_refund', true, $this); |
|
1429 | 1429 | |
1430 | - $this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count ); |
|
1430 | + $this->maybe_alter_stats($decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count); |
|
1431 | 1431 | $this->delete_sales_logs(); |
1432 | 1432 | |
1433 | 1433 | // Clear the This Month earnings (this_monththis_month is NOT a typo) |
1434 | - delete_transient( md5( 'give_earnings_this_monththis_month' ) ); |
|
1434 | + delete_transient(md5('give_earnings_this_monththis_month')); |
|
1435 | 1435 | |
1436 | - do_action( 'give_post_refund_payment', $this ); |
|
1436 | + do_action('give_post_refund_payment', $this); |
|
1437 | 1437 | } |
1438 | 1438 | |
1439 | 1439 | /** |
@@ -1457,29 +1457,29 @@ discard block |
||
1457 | 1457 | $process_pending = true; |
1458 | 1458 | |
1459 | 1459 | // If the payment was not in publish or revoked status, don't decrement stats as they were never incremented |
1460 | - if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'pending' != $this->status ) { |
|
1460 | + if (('publish' != $this->old_status && 'revoked' != $this->old_status) || 'pending' != $this->status) { |
|
1461 | 1461 | $process_pending = false; |
1462 | 1462 | } |
1463 | 1463 | |
1464 | 1464 | // Allow extensions to filter for their own payment types, Example: Recurring Payments |
1465 | - $process_pending = apply_filters( 'give_should_process_pending', $process_pending, $this ); |
|
1465 | + $process_pending = apply_filters('give_should_process_pending', $process_pending, $this); |
|
1466 | 1466 | |
1467 | - if ( false === $process_pending ) { |
|
1467 | + if (false === $process_pending) { |
|
1468 | 1468 | return; |
1469 | 1469 | } |
1470 | 1470 | |
1471 | - $decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_pending', true, $this ); |
|
1472 | - $decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_pending', true, $this ); |
|
1473 | - $decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_pending', true, $this ); |
|
1471 | + $decrease_store_earnings = apply_filters('give_decrease_store_earnings_on_pending', true, $this); |
|
1472 | + $decrease_customer_value = apply_filters('give_decrease_customer_value_on_pending', true, $this); |
|
1473 | + $decrease_purchase_count = apply_filters('give_decrease_customer_purchase_count_on_pending', true, $this); |
|
1474 | 1474 | |
1475 | - $this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count ); |
|
1475 | + $this->maybe_alter_stats($decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count); |
|
1476 | 1476 | $this->delete_sales_logs(); |
1477 | 1477 | |
1478 | 1478 | $this->completed_date = false; |
1479 | - $this->update_meta( '_give_completed_date', '' ); |
|
1479 | + $this->update_meta('_give_completed_date', ''); |
|
1480 | 1480 | |
1481 | 1481 | // Clear the This Month earnings (this_monththis_month is NOT a typo) |
1482 | - delete_transient( md5( 'give_earnings_this_monththis_month' ) ); |
|
1482 | + delete_transient(md5('give_earnings_this_monththis_month')); |
|
1483 | 1483 | } |
1484 | 1484 | |
1485 | 1485 | /** |
@@ -1493,25 +1493,25 @@ discard block |
||
1493 | 1493 | * |
1494 | 1494 | * @return void |
1495 | 1495 | */ |
1496 | - private function maybe_alter_stats( $alter_store_earnings, $alter_customer_value, $alter_customer_purchase_count ) { |
|
1496 | + private function maybe_alter_stats($alter_store_earnings, $alter_customer_value, $alter_customer_purchase_count) { |
|
1497 | 1497 | |
1498 | - give_undo_purchase( false, $this->ID ); |
|
1498 | + give_undo_purchase(false, $this->ID); |
|
1499 | 1499 | |
1500 | 1500 | // Decrease store earnings |
1501 | - if ( true === $alter_store_earnings ) { |
|
1502 | - give_decrease_total_earnings( $this->total ); |
|
1501 | + if (true === $alter_store_earnings) { |
|
1502 | + give_decrease_total_earnings($this->total); |
|
1503 | 1503 | } |
1504 | 1504 | |
1505 | 1505 | // Decrement the stats for the customer |
1506 | - if ( ! empty( $this->customer_id ) ) { |
|
1506 | + if ( ! empty($this->customer_id)) { |
|
1507 | 1507 | |
1508 | - $customer = new Give_Customer( $this->customer_id ); |
|
1508 | + $customer = new Give_Customer($this->customer_id); |
|
1509 | 1509 | |
1510 | - if ( true === $alter_customer_value ) { |
|
1511 | - $customer->decrease_value( $this->total ); |
|
1510 | + if (true === $alter_customer_value) { |
|
1511 | + $customer->decrease_value($this->total); |
|
1512 | 1512 | } |
1513 | 1513 | |
1514 | - if ( true === $alter_customer_purchase_count ) { |
|
1514 | + if (true === $alter_customer_purchase_count) { |
|
1515 | 1515 | $customer->decrease_purchase_count(); |
1516 | 1516 | } |
1517 | 1517 | |
@@ -1557,13 +1557,13 @@ discard block |
||
1557 | 1557 | * @return string The date the payment was completed |
1558 | 1558 | */ |
1559 | 1559 | private function setup_completed_date() { |
1560 | - $payment = get_post( $this->ID ); |
|
1560 | + $payment = get_post($this->ID); |
|
1561 | 1561 | |
1562 | - if ( 'pending' == $payment->post_status || 'preapproved' == $payment->post_status ) { |
|
1562 | + if ('pending' == $payment->post_status || 'preapproved' == $payment->post_status) { |
|
1563 | 1563 | return false; // This payment was never completed |
1564 | 1564 | } |
1565 | 1565 | |
1566 | - $date = ( $date = $this->get_meta( '_give_completed_date', true ) ) ? $date : $payment->modified_date; |
|
1566 | + $date = ($date = $this->get_meta('_give_completed_date', true)) ? $date : $payment->modified_date; |
|
1567 | 1567 | |
1568 | 1568 | return $date; |
1569 | 1569 | } |
@@ -1575,7 +1575,7 @@ discard block |
||
1575 | 1575 | * @return string The payment mode |
1576 | 1576 | */ |
1577 | 1577 | private function setup_mode() { |
1578 | - return $this->get_meta( '_give_payment_mode' ); |
|
1578 | + return $this->get_meta('_give_payment_mode'); |
|
1579 | 1579 | } |
1580 | 1580 | |
1581 | 1581 | /** |
@@ -1585,13 +1585,13 @@ discard block |
||
1585 | 1585 | * @return float The payment total |
1586 | 1586 | */ |
1587 | 1587 | private function setup_total() { |
1588 | - $amount = $this->get_meta( '_give_payment_total', true ); |
|
1588 | + $amount = $this->get_meta('_give_payment_total', true); |
|
1589 | 1589 | |
1590 | - if ( empty( $amount ) && '0.00' != $amount ) { |
|
1591 | - $meta = $this->get_meta( '_give_payment_meta', true ); |
|
1592 | - $meta = maybe_unserialize( $meta ); |
|
1590 | + if (empty($amount) && '0.00' != $amount) { |
|
1591 | + $meta = $this->get_meta('_give_payment_meta', true); |
|
1592 | + $meta = maybe_unserialize($meta); |
|
1593 | 1593 | |
1594 | - if ( isset( $meta['amount'] ) ) { |
|
1594 | + if (isset($meta['amount'])) { |
|
1595 | 1595 | $amount = $meta['amount']; |
1596 | 1596 | } |
1597 | 1597 | } |
@@ -1620,9 +1620,9 @@ discard block |
||
1620 | 1620 | private function setup_fees_total() { |
1621 | 1621 | $fees_total = (float) 0.00; |
1622 | 1622 | |
1623 | - $payment_fees = isset( $this->payment_meta['fees'] ) ? $this->payment_meta['fees'] : array(); |
|
1624 | - if ( ! empty( $payment_fees ) ) { |
|
1625 | - foreach ( $payment_fees as $fee ) { |
|
1623 | + $payment_fees = isset($this->payment_meta['fees']) ? $this->payment_meta['fees'] : array(); |
|
1624 | + if ( ! empty($payment_fees)) { |
|
1625 | + foreach ($payment_fees as $fee) { |
|
1626 | 1626 | $fees_total += (float) $fee['amount']; |
1627 | 1627 | } |
1628 | 1628 | } |
@@ -1638,7 +1638,7 @@ discard block |
||
1638 | 1638 | * @return string The currency for the payment |
1639 | 1639 | */ |
1640 | 1640 | private function setup_currency() { |
1641 | - $currency = isset( $this->payment_meta['currency'] ) ? $this->payment_meta['currency'] : apply_filters( 'give_payment_currency_default', give_get_currency(), $this ); |
|
1641 | + $currency = isset($this->payment_meta['currency']) ? $this->payment_meta['currency'] : apply_filters('give_payment_currency_default', give_get_currency(), $this); |
|
1642 | 1642 | |
1643 | 1643 | return $currency; |
1644 | 1644 | } |
@@ -1650,7 +1650,7 @@ discard block |
||
1650 | 1650 | * @return array The Fees |
1651 | 1651 | */ |
1652 | 1652 | private function setup_fees() { |
1653 | - $payment_fees = isset( $this->payment_meta['fees'] ) ? $this->payment_meta['fees'] : array(); |
|
1653 | + $payment_fees = isset($this->payment_meta['fees']) ? $this->payment_meta['fees'] : array(); |
|
1654 | 1654 | |
1655 | 1655 | return $payment_fees; |
1656 | 1656 | } |
@@ -1662,7 +1662,7 @@ discard block |
||
1662 | 1662 | * @return string The gateway |
1663 | 1663 | */ |
1664 | 1664 | private function setup_gateway() { |
1665 | - $gateway = $this->get_meta( '_give_payment_gateway', true ); |
|
1665 | + $gateway = $this->get_meta('_give_payment_gateway', true); |
|
1666 | 1666 | |
1667 | 1667 | return $gateway; |
1668 | 1668 | } |
@@ -1674,12 +1674,12 @@ discard block |
||
1674 | 1674 | * @return string The transaction ID for the payment |
1675 | 1675 | */ |
1676 | 1676 | private function setup_transaction_id() { |
1677 | - $transaction_id = $this->get_meta( '_give_payment_transaction_id', true ); |
|
1677 | + $transaction_id = $this->get_meta('_give_payment_transaction_id', true); |
|
1678 | 1678 | |
1679 | - if ( empty( $transaction_id ) || (int) $transaction_id === (int) $this->ID ) { |
|
1679 | + if (empty($transaction_id) || (int) $transaction_id === (int) $this->ID) { |
|
1680 | 1680 | |
1681 | 1681 | $gateway = $this->gateway; |
1682 | - $transaction_id = apply_filters( 'give_get_payment_transaction_id-' . $gateway, $this->ID ); |
|
1682 | + $transaction_id = apply_filters('give_get_payment_transaction_id-'.$gateway, $this->ID); |
|
1683 | 1683 | |
1684 | 1684 | } |
1685 | 1685 | |
@@ -1693,7 +1693,7 @@ discard block |
||
1693 | 1693 | * @return string The IP address for the payment |
1694 | 1694 | */ |
1695 | 1695 | private function setup_ip() { |
1696 | - $ip = $this->get_meta( '_give_payment_user_ip', true ); |
|
1696 | + $ip = $this->get_meta('_give_payment_user_ip', true); |
|
1697 | 1697 | |
1698 | 1698 | return $ip; |
1699 | 1699 | } |
@@ -1705,7 +1705,7 @@ discard block |
||
1705 | 1705 | * @return int The Customer ID |
1706 | 1706 | */ |
1707 | 1707 | private function setup_customer_id() { |
1708 | - $customer_id = $this->get_meta( '_give_payment_customer_id', true ); |
|
1708 | + $customer_id = $this->get_meta('_give_payment_customer_id', true); |
|
1709 | 1709 | |
1710 | 1710 | return $customer_id; |
1711 | 1711 | } |
@@ -1717,7 +1717,7 @@ discard block |
||
1717 | 1717 | * @return int The User ID |
1718 | 1718 | */ |
1719 | 1719 | private function setup_user_id() { |
1720 | - $user_id = $this->get_meta( '_give_payment_user_id', true ); |
|
1720 | + $user_id = $this->get_meta('_give_payment_user_id', true); |
|
1721 | 1721 | |
1722 | 1722 | return $user_id; |
1723 | 1723 | } |
@@ -1729,10 +1729,10 @@ discard block |
||
1729 | 1729 | * @return string The email address for the payment |
1730 | 1730 | */ |
1731 | 1731 | private function setup_email() { |
1732 | - $email = $this->get_meta( '_give_payment_user_email', true ); |
|
1732 | + $email = $this->get_meta('_give_payment_user_email', true); |
|
1733 | 1733 | |
1734 | - if ( empty( $email ) ) { |
|
1735 | - $email = Give()->customers->get_column( 'email', $this->customer_id ); |
|
1734 | + if (empty($email)) { |
|
1735 | + $email = Give()->customers->get_column('email', $this->customer_id); |
|
1736 | 1736 | } |
1737 | 1737 | |
1738 | 1738 | return $email; |
@@ -1750,15 +1750,15 @@ discard block |
||
1750 | 1750 | 'last_name' => $this->last_name, |
1751 | 1751 | ); |
1752 | 1752 | |
1753 | - $user_info = isset( $this->payment_meta['user_info'] ) ? maybe_unserialize( $this->payment_meta['user_info'] ) : array(); |
|
1754 | - $user_info = wp_parse_args( $user_info, $defaults ); |
|
1753 | + $user_info = isset($this->payment_meta['user_info']) ? maybe_unserialize($this->payment_meta['user_info']) : array(); |
|
1754 | + $user_info = wp_parse_args($user_info, $defaults); |
|
1755 | 1755 | |
1756 | - if ( empty( $user_info ) ) { |
|
1756 | + if (empty($user_info)) { |
|
1757 | 1757 | // Get the customer, but only if it's been created |
1758 | - $customer = new Give_Customer( $this->customer_id ); |
|
1758 | + $customer = new Give_Customer($this->customer_id); |
|
1759 | 1759 | |
1760 | - if ( $customer->id > 0 ) { |
|
1761 | - $name = explode( ' ', $customer->name, 2 ); |
|
1760 | + if ($customer->id > 0) { |
|
1761 | + $name = explode(' ', $customer->name, 2); |
|
1762 | 1762 | $user_info = array( |
1763 | 1763 | 'first_name' => $name[0], |
1764 | 1764 | 'last_name' => $name[1], |
@@ -1768,29 +1768,29 @@ discard block |
||
1768 | 1768 | } |
1769 | 1769 | } else { |
1770 | 1770 | // Get the customer, but only if it's been created |
1771 | - $customer = new Give_Customer( $this->customer_id ); |
|
1772 | - if ( $customer->id > 0 ) { |
|
1773 | - foreach ( $user_info as $key => $value ) { |
|
1774 | - if ( ! empty( $value ) ) { |
|
1771 | + $customer = new Give_Customer($this->customer_id); |
|
1772 | + if ($customer->id > 0) { |
|
1773 | + foreach ($user_info as $key => $value) { |
|
1774 | + if ( ! empty($value)) { |
|
1775 | 1775 | continue; |
1776 | 1776 | } |
1777 | 1777 | |
1778 | - switch ( $key ) { |
|
1778 | + switch ($key) { |
|
1779 | 1779 | case 'first_name': |
1780 | - $name = explode( ' ', $customer->name, 2 ); |
|
1780 | + $name = explode(' ', $customer->name, 2); |
|
1781 | 1781 | |
1782 | - $user_info[ $key ] = $name[0]; |
|
1782 | + $user_info[$key] = $name[0]; |
|
1783 | 1783 | break; |
1784 | 1784 | |
1785 | 1785 | case 'last_name': |
1786 | - $name = explode( ' ', $customer->name, 2 ); |
|
1787 | - $last_name = ! empty( $name[1] ) ? $name[1] : ''; |
|
1786 | + $name = explode(' ', $customer->name, 2); |
|
1787 | + $last_name = ! empty($name[1]) ? $name[1] : ''; |
|
1788 | 1788 | |
1789 | - $user_info[ $key ] = $last_name; |
|
1789 | + $user_info[$key] = $last_name; |
|
1790 | 1790 | break; |
1791 | 1791 | |
1792 | 1792 | case 'email': |
1793 | - $user_info[ $key ] = $customer->email; |
|
1793 | + $user_info[$key] = $customer->email; |
|
1794 | 1794 | break; |
1795 | 1795 | } |
1796 | 1796 | } |
@@ -1810,7 +1810,7 @@ discard block |
||
1810 | 1810 | */ |
1811 | 1811 | private function setup_address() { |
1812 | 1812 | |
1813 | - $address = ! empty( $this->payment_meta['user_info']['address'] ) ? $this->payment_meta['user_info']['address'] : array( |
|
1813 | + $address = ! empty($this->payment_meta['user_info']['address']) ? $this->payment_meta['user_info']['address'] : array( |
|
1814 | 1814 | 'line1' => '', |
1815 | 1815 | 'line2' => '', |
1816 | 1816 | 'city' => '', |
@@ -1830,7 +1830,7 @@ discard block |
||
1830 | 1830 | */ |
1831 | 1831 | private function setup_form_title() { |
1832 | 1832 | |
1833 | - $form_id = $this->get_meta( '_give_payment_form_title', true ); |
|
1833 | + $form_id = $this->get_meta('_give_payment_form_title', true); |
|
1834 | 1834 | |
1835 | 1835 | return $form_id; |
1836 | 1836 | } |
@@ -1843,7 +1843,7 @@ discard block |
||
1843 | 1843 | */ |
1844 | 1844 | private function setup_form_id() { |
1845 | 1845 | |
1846 | - $form_id = $this->get_meta( '_give_payment_form_id', true ); |
|
1846 | + $form_id = $this->get_meta('_give_payment_form_id', true); |
|
1847 | 1847 | |
1848 | 1848 | return $form_id; |
1849 | 1849 | } |
@@ -1855,7 +1855,7 @@ discard block |
||
1855 | 1855 | * @return int The Form Price ID |
1856 | 1856 | */ |
1857 | 1857 | private function setup_price_id() { |
1858 | - $price_id = $this->get_meta( '_give_payment_price_id', true ); |
|
1858 | + $price_id = $this->get_meta('_give_payment_price_id', true); |
|
1859 | 1859 | |
1860 | 1860 | return $price_id; |
1861 | 1861 | } |
@@ -1867,7 +1867,7 @@ discard block |
||
1867 | 1867 | * @return string The Payment Key |
1868 | 1868 | */ |
1869 | 1869 | private function setup_payment_key() { |
1870 | - $key = $this->get_meta( '_give_payment_purchase_key', true ); |
|
1870 | + $key = $this->get_meta('_give_payment_purchase_key', true); |
|
1871 | 1871 | |
1872 | 1872 | return $key; |
1873 | 1873 | } |
@@ -1881,11 +1881,11 @@ discard block |
||
1881 | 1881 | private function setup_payment_number() { |
1882 | 1882 | $number = $this->ID; |
1883 | 1883 | |
1884 | - if ( give_get_option( 'enable_sequential' ) ) { |
|
1884 | + if (give_get_option('enable_sequential')) { |
|
1885 | 1885 | |
1886 | - $number = $this->get_meta( '_give_payment_number', true ); |
|
1886 | + $number = $this->get_meta('_give_payment_number', true); |
|
1887 | 1887 | |
1888 | - if ( ! $number ) { |
|
1888 | + if ( ! $number) { |
|
1889 | 1889 | |
1890 | 1890 | $number = $this->ID; |
1891 | 1891 | |
@@ -1902,7 +1902,7 @@ discard block |
||
1902 | 1902 | * @return array The payment object as an array |
1903 | 1903 | */ |
1904 | 1904 | public function array_convert() { |
1905 | - return get_object_vars( $this ); |
|
1905 | + return get_object_vars($this); |
|
1906 | 1906 | } |
1907 | 1907 | |
1908 | 1908 | /** |
@@ -1912,7 +1912,7 @@ discard block |
||
1912 | 1912 | * @return string Date payment was completed |
1913 | 1913 | */ |
1914 | 1914 | private function get_completed_date() { |
1915 | - return apply_filters( 'give_payment_completed_date', $this->completed_date, $this->ID, $this ); |
|
1915 | + return apply_filters('give_payment_completed_date', $this->completed_date, $this->ID, $this); |
|
1916 | 1916 | } |
1917 | 1917 | |
1918 | 1918 | /** |
@@ -1922,7 +1922,7 @@ discard block |
||
1922 | 1922 | * @return float Payment subtotal |
1923 | 1923 | */ |
1924 | 1924 | private function get_subtotal() { |
1925 | - return apply_filters( 'give_get_payment_subtotal', $this->subtotal, $this->ID, $this ); |
|
1925 | + return apply_filters('give_get_payment_subtotal', $this->subtotal, $this->ID, $this); |
|
1926 | 1926 | } |
1927 | 1927 | |
1928 | 1928 | /** |
@@ -1932,7 +1932,7 @@ discard block |
||
1932 | 1932 | * @return string Payment currency code |
1933 | 1933 | */ |
1934 | 1934 | private function get_currency() { |
1935 | - return apply_filters( 'give_payment_currency_code', $this->currency, $this->ID, $this ); |
|
1935 | + return apply_filters('give_payment_currency_code', $this->currency, $this->ID, $this); |
|
1936 | 1936 | } |
1937 | 1937 | |
1938 | 1938 | /** |
@@ -1942,7 +1942,7 @@ discard block |
||
1942 | 1942 | * @return string Gateway used |
1943 | 1943 | */ |
1944 | 1944 | private function get_gateway() { |
1945 | - return apply_filters( 'give_payment_gateway', $this->gateway, $this->ID, $this ); |
|
1945 | + return apply_filters('give_payment_gateway', $this->gateway, $this->ID, $this); |
|
1946 | 1946 | } |
1947 | 1947 | |
1948 | 1948 | /** |
@@ -1952,7 +1952,7 @@ discard block |
||
1952 | 1952 | * @return string Transaction ID from merchant processor |
1953 | 1953 | */ |
1954 | 1954 | private function get_transaction_id() { |
1955 | - return apply_filters( 'give_get_payment_transaction_id', $this->transaction_id, $this->ID, $this ); |
|
1955 | + return apply_filters('give_get_payment_transaction_id', $this->transaction_id, $this->ID, $this); |
|
1956 | 1956 | } |
1957 | 1957 | |
1958 | 1958 | /** |
@@ -1962,7 +1962,7 @@ discard block |
||
1962 | 1962 | * @return string Payment IP address |
1963 | 1963 | */ |
1964 | 1964 | private function get_ip() { |
1965 | - return apply_filters( 'give_payment_user_ip', $this->ip, $this->ID, $this ); |
|
1965 | + return apply_filters('give_payment_user_ip', $this->ip, $this->ID, $this); |
|
1966 | 1966 | } |
1967 | 1967 | |
1968 | 1968 | /** |
@@ -1972,7 +1972,7 @@ discard block |
||
1972 | 1972 | * @return int Payment customer ID |
1973 | 1973 | */ |
1974 | 1974 | private function get_customer_id() { |
1975 | - return apply_filters( 'give_payment_customer_id', $this->customer_id, $this->ID, $this ); |
|
1975 | + return apply_filters('give_payment_customer_id', $this->customer_id, $this->ID, $this); |
|
1976 | 1976 | } |
1977 | 1977 | |
1978 | 1978 | /** |
@@ -1982,7 +1982,7 @@ discard block |
||
1982 | 1982 | * @return int Payment user ID |
1983 | 1983 | */ |
1984 | 1984 | private function get_user_id() { |
1985 | - return apply_filters( 'give_payment_user_id', $this->user_id, $this->ID, $this ); |
|
1985 | + return apply_filters('give_payment_user_id', $this->user_id, $this->ID, $this); |
|
1986 | 1986 | } |
1987 | 1987 | |
1988 | 1988 | /** |
@@ -1992,7 +1992,7 @@ discard block |
||
1992 | 1992 | * @return string Payment customer email |
1993 | 1993 | */ |
1994 | 1994 | private function get_email() { |
1995 | - return apply_filters( 'give_payment_user_email', $this->email, $this->ID, $this ); |
|
1995 | + return apply_filters('give_payment_user_email', $this->email, $this->ID, $this); |
|
1996 | 1996 | } |
1997 | 1997 | |
1998 | 1998 | /** |
@@ -2002,7 +2002,7 @@ discard block |
||
2002 | 2002 | * @return array Payment user info |
2003 | 2003 | */ |
2004 | 2004 | private function get_user_info() { |
2005 | - return apply_filters( 'give_payment_meta_user_info', $this->user_info, $this->ID, $this ); |
|
2005 | + return apply_filters('give_payment_meta_user_info', $this->user_info, $this->ID, $this); |
|
2006 | 2006 | } |
2007 | 2007 | |
2008 | 2008 | /** |
@@ -2012,7 +2012,7 @@ discard block |
||
2012 | 2012 | * @return array Payment billing address |
2013 | 2013 | */ |
2014 | 2014 | private function get_address() { |
2015 | - return apply_filters( 'give_payment_address', $this->address, $this->ID, $this ); |
|
2015 | + return apply_filters('give_payment_address', $this->address, $this->ID, $this); |
|
2016 | 2016 | } |
2017 | 2017 | |
2018 | 2018 | /** |
@@ -2022,7 +2022,7 @@ discard block |
||
2022 | 2022 | * @return string Payment key |
2023 | 2023 | */ |
2024 | 2024 | private function get_key() { |
2025 | - return apply_filters( 'give_payment_key', $this->key, $this->ID, $this ); |
|
2025 | + return apply_filters('give_payment_key', $this->key, $this->ID, $this); |
|
2026 | 2026 | } |
2027 | 2027 | |
2028 | 2028 | /** |
@@ -2032,7 +2032,7 @@ discard block |
||
2032 | 2032 | * @return string Payment key |
2033 | 2033 | */ |
2034 | 2034 | private function get_form_id() { |
2035 | - return apply_filters( 'give_payment_form_id', $this->form_id, $this->ID, $this ); |
|
2035 | + return apply_filters('give_payment_form_id', $this->form_id, $this->ID, $this); |
|
2036 | 2036 | } |
2037 | 2037 | |
2038 | 2038 | /** |
@@ -2042,7 +2042,7 @@ discard block |
||
2042 | 2042 | * @return int|string Payment number |
2043 | 2043 | */ |
2044 | 2044 | private function get_number() { |
2045 | - return apply_filters( 'give_payment_number', $this->number, $this->ID, $this ); |
|
2045 | + return apply_filters('give_payment_number', $this->number, $this->ID, $this); |
|
2046 | 2046 | } |
2047 | 2047 | |
2048 | 2048 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -39,35 +39,35 @@ discard block |
||
39 | 39 | * |
40 | 40 | * @return float|int Total amount of donations based on the passed arguments. |
41 | 41 | */ |
42 | - public function get_sales( $form_id = 0, $start_date = false, $end_date = false, $status = 'publish' ) { |
|
42 | + public function get_sales($form_id = 0, $start_date = false, $end_date = false, $status = 'publish') { |
|
43 | 43 | |
44 | - $this->setup_dates( $start_date, $end_date ); |
|
44 | + $this->setup_dates($start_date, $end_date); |
|
45 | 45 | |
46 | 46 | // Make sure start date is valid |
47 | - if ( is_wp_error( $this->start_date ) ) { |
|
47 | + if (is_wp_error($this->start_date)) { |
|
48 | 48 | return $this->start_date; |
49 | 49 | } |
50 | 50 | |
51 | 51 | // Make sure end date is valid |
52 | - if ( is_wp_error( $this->end_date ) ) { |
|
52 | + if (is_wp_error($this->end_date)) { |
|
53 | 53 | return $this->end_date; |
54 | 54 | } |
55 | 55 | |
56 | - if ( empty( $form_id ) ) { |
|
56 | + if (empty($form_id)) { |
|
57 | 57 | |
58 | 58 | // Global sale stats |
59 | - add_filter( 'give_count_payments_where', array( $this, 'count_where' ) ); |
|
59 | + add_filter('give_count_payments_where', array($this, 'count_where')); |
|
60 | 60 | |
61 | - if ( is_array( $status ) ) { |
|
61 | + if (is_array($status)) { |
|
62 | 62 | $count = 0; |
63 | - foreach ( $status as $payment_status ) { |
|
63 | + foreach ($status as $payment_status) { |
|
64 | 64 | $count += give_count_payments()->$payment_status; |
65 | 65 | } |
66 | 66 | } else { |
67 | 67 | $count = give_count_payments()->$status; |
68 | 68 | } |
69 | 69 | |
70 | - remove_filter( 'give_count_payments_where', array( $this, 'count_where' ) ); |
|
70 | + remove_filter('give_count_payments_where', array($this, 'count_where')); |
|
71 | 71 | |
72 | 72 | } else { |
73 | 73 | |
@@ -76,11 +76,11 @@ discard block |
||
76 | 76 | // Product specific stats |
77 | 77 | global $give_logs; |
78 | 78 | |
79 | - add_filter( 'posts_where', array( $this, 'payments_where' ) ); |
|
79 | + add_filter('posts_where', array($this, 'payments_where')); |
|
80 | 80 | |
81 | - $count = $give_logs->get_log_count( $form_id, 'sale' ); |
|
81 | + $count = $give_logs->get_log_count($form_id, 'sale'); |
|
82 | 82 | |
83 | - remove_filter( 'posts_where', array( $this, 'payments_where' ) ); |
|
83 | + remove_filter('posts_where', array($this, 'payments_where')); |
|
84 | 84 | |
85 | 85 | } |
86 | 86 | |
@@ -102,31 +102,31 @@ discard block |
||
102 | 102 | * |
103 | 103 | * @return float|int Total amount of donations based on the passed arguments. |
104 | 104 | */ |
105 | - public function get_earnings( $form_id = 0, $start_date = false, $end_date = false, $gateway_id = false ) { |
|
105 | + public function get_earnings($form_id = 0, $start_date = false, $end_date = false, $gateway_id = false) { |
|
106 | 106 | |
107 | 107 | global $wpdb; |
108 | 108 | |
109 | - $this->setup_dates( $start_date, $end_date ); |
|
109 | + $this->setup_dates($start_date, $end_date); |
|
110 | 110 | |
111 | 111 | // Make sure start date is valid |
112 | - if ( is_wp_error( $this->start_date ) ) { |
|
112 | + if (is_wp_error($this->start_date)) { |
|
113 | 113 | return $this->start_date; |
114 | 114 | } |
115 | 115 | |
116 | 116 | // Make sure end date is valid |
117 | - if ( is_wp_error( $this->end_date ) ) { |
|
117 | + if (is_wp_error($this->end_date)) { |
|
118 | 118 | return $this->end_date; |
119 | 119 | } |
120 | 120 | |
121 | - add_filter( 'posts_where', array( $this, 'payments_where' ) ); |
|
121 | + add_filter('posts_where', array($this, 'payments_where')); |
|
122 | 122 | |
123 | - if ( empty( $form_id ) ) { |
|
123 | + if (empty($form_id)) { |
|
124 | 124 | |
125 | 125 | // Global earning stats |
126 | 126 | $args = array( |
127 | 127 | 'post_type' => 'give_payment', |
128 | 128 | 'nopaging' => true, |
129 | - 'post_status' => array( 'publish' ), |
|
129 | + 'post_status' => array('publish'), |
|
130 | 130 | 'fields' => 'ids', |
131 | 131 | 'update_post_term_cache' => false, |
132 | 132 | 'suppress_filters' => false, |
@@ -138,24 +138,24 @@ discard block |
||
138 | 138 | ); |
139 | 139 | |
140 | 140 | //Filter by Gateway ID meta_key |
141 | - if ( $gateway_id !== false ) { |
|
141 | + if ($gateway_id !== false) { |
|
142 | 142 | $args['meta_key'] = '_give_payment_gateway'; |
143 | 143 | $args['meta_value'] = $gateway_id; |
144 | 144 | } |
145 | 145 | |
146 | - $args = apply_filters( 'give_stats_earnings_args', $args ); |
|
147 | - $key = 'give_stats_' . substr( md5( serialize( $args ) ), 0, 15 ); |
|
148 | - $earnings = get_transient( $key ); |
|
146 | + $args = apply_filters('give_stats_earnings_args', $args); |
|
147 | + $key = 'give_stats_'.substr(md5(serialize($args)), 0, 15); |
|
148 | + $earnings = get_transient($key); |
|
149 | 149 | |
150 | - if ( false === $earnings ) { |
|
151 | - $sales = get_posts( $args ); |
|
150 | + if (false === $earnings) { |
|
151 | + $sales = get_posts($args); |
|
152 | 152 | $earnings = 0; |
153 | - if ( $sales ) { |
|
154 | - $sales = implode( ',', array_map('intval', $sales ) ); |
|
155 | - $earnings += $wpdb->get_var( "SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN({$sales})" ); |
|
153 | + if ($sales) { |
|
154 | + $sales = implode(',', array_map('intval', $sales)); |
|
155 | + $earnings += $wpdb->get_var("SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN({$sales})"); |
|
156 | 156 | } |
157 | 157 | // Cache the results for one hour |
158 | - set_transient( $key, $earnings, HOUR_IN_SECONDS ); |
|
158 | + set_transient($key, $earnings, HOUR_IN_SECONDS); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | } else { |
@@ -175,37 +175,37 @@ discard block |
||
175 | 175 | 'give_transient_type' => 'give_earnings', |
176 | 176 | // This is not a valid query arg, but is used for cache keying |
177 | 177 | ); |
178 | - $args = apply_filters( 'give_stats_earnings_args', $args ); |
|
179 | - $key = 'give_stats_' . substr( md5( serialize( $args ) ), 0, 15 ); |
|
178 | + $args = apply_filters('give_stats_earnings_args', $args); |
|
179 | + $key = 'give_stats_'.substr(md5(serialize($args)), 0, 15); |
|
180 | 180 | //Set transient for faster stats |
181 | - $earnings = get_transient( $key ); |
|
181 | + $earnings = get_transient($key); |
|
182 | 182 | |
183 | - if ( false === $earnings ) { |
|
183 | + if (false === $earnings) { |
|
184 | 184 | |
185 | 185 | $this->timestamp = false; |
186 | - $log_ids = $give_logs->get_connected_logs( $args, 'sale' ); |
|
186 | + $log_ids = $give_logs->get_connected_logs($args, 'sale'); |
|
187 | 187 | $earnings = 0; |
188 | 188 | |
189 | - if ( $log_ids ) { |
|
190 | - $log_ids = implode( ',', array_map('intval', $log_ids ) ); |
|
191 | - $payment_ids = $wpdb->get_col( "SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids);" ); |
|
189 | + if ($log_ids) { |
|
190 | + $log_ids = implode(',', array_map('intval', $log_ids)); |
|
191 | + $payment_ids = $wpdb->get_col("SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids);"); |
|
192 | 192 | |
193 | - foreach ( $payment_ids as $payment_id ) { |
|
194 | - $earnings += give_get_payment_amount( $payment_id ); |
|
193 | + foreach ($payment_ids as $payment_id) { |
|
194 | + $earnings += give_get_payment_amount($payment_id); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | } |
198 | 198 | |
199 | 199 | // Cache the results for one hour |
200 | - set_transient( $key, $earnings, 60 * 60 ); |
|
200 | + set_transient($key, $earnings, 60 * 60); |
|
201 | 201 | } |
202 | 202 | } |
203 | 203 | |
204 | 204 | //remove our filter |
205 | - remove_filter( 'posts_where', array( $this, 'payments_where' ) ); |
|
205 | + remove_filter('posts_where', array($this, 'payments_where')); |
|
206 | 206 | |
207 | 207 | //return earnings |
208 | - return round( $earnings, give_currency_decimal_filter() ); |
|
208 | + return round($earnings, give_currency_decimal_filter()); |
|
209 | 209 | |
210 | 210 | } |
211 | 211 | |
@@ -219,16 +219,16 @@ discard block |
||
219 | 219 | * |
220 | 220 | * @return array |
221 | 221 | */ |
222 | - public function get_best_selling( $number = 10 ) { |
|
222 | + public function get_best_selling($number = 10) { |
|
223 | 223 | |
224 | 224 | global $wpdb; |
225 | 225 | |
226 | - $give_forms = $wpdb->get_results( $wpdb->prepare( |
|
226 | + $give_forms = $wpdb->get_results($wpdb->prepare( |
|
227 | 227 | "SELECT post_id as form_id, max(meta_value) as sales |
228 | 228 | FROM $wpdb->postmeta WHERE meta_key='_give_form_sales' AND meta_value > 0 |
229 | 229 | GROUP BY meta_value+0 |
230 | 230 | DESC LIMIT %d;", $number |
231 | - ) ); |
|
231 | + )); |
|
232 | 232 | |
233 | 233 | return $give_forms; |
234 | 234 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function __construct() { |
32 | 32 | // Create the log post type |
33 | - add_action( 'init', array( $this, 'register_post_type' ), 1 ); |
|
33 | + add_action('init', array($this, 'register_post_type'), 1); |
|
34 | 34 | |
35 | 35 | // Create types taxonomy and default types |
36 | - add_action( 'init', array( $this, 'register_taxonomy' ), 1 ); |
|
36 | + add_action('init', array($this, 'register_taxonomy'), 1); |
|
37 | 37 | |
38 | 38 | } |
39 | 39 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | public function register_post_type() { |
48 | 48 | /* Logs post type */ |
49 | 49 | $log_args = array( |
50 | - 'labels' => array( 'name' => __( 'Logs', 'give' ) ), |
|
50 | + 'labels' => array('name' => __('Logs', 'give')), |
|
51 | 51 | 'public' => false, |
52 | 52 | 'exclude_from_search' => true, |
53 | 53 | 'publicly_queryable' => false, |
@@ -55,11 +55,11 @@ discard block |
||
55 | 55 | 'query_var' => false, |
56 | 56 | 'rewrite' => false, |
57 | 57 | 'capability_type' => 'post', |
58 | - 'supports' => array( 'title', 'editor' ), |
|
58 | + 'supports' => array('title', 'editor'), |
|
59 | 59 | 'can_export' => true |
60 | 60 | ); |
61 | 61 | |
62 | - register_post_type( 'give_log', $log_args ); |
|
62 | + register_post_type('give_log', $log_args); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * @return void |
73 | 73 | */ |
74 | 74 | public function register_taxonomy() { |
75 | - register_taxonomy( 'give_log_type', 'give_log', array( 'public' => false ) ); |
|
75 | + register_taxonomy('give_log_type', 'give_log', array('public' => false)); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | 'api_request' |
92 | 92 | ); |
93 | 93 | |
94 | - return apply_filters( 'give_log_types', $terms ); |
|
94 | + return apply_filters('give_log_types', $terms); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -107,8 +107,8 @@ discard block |
||
107 | 107 | * |
108 | 108 | * @return bool Whether log type is valid |
109 | 109 | */ |
110 | - function valid_type( $type ) { |
|
111 | - return in_array( $type, $this->log_types() ); |
|
110 | + function valid_type($type) { |
|
111 | + return in_array($type, $this->log_types()); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | * |
129 | 129 | * @return int Log ID |
130 | 130 | */ |
131 | - public function add( $title = '', $message = '', $parent = 0, $type = null ) { |
|
131 | + public function add($title = '', $message = '', $parent = 0, $type = null) { |
|
132 | 132 | $log_data = array( |
133 | 133 | 'post_title' => $title, |
134 | 134 | 'post_content' => $message, |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | 'log_type' => $type |
137 | 137 | ); |
138 | 138 | |
139 | - return $this->insert_log( $log_data ); |
|
139 | + return $this->insert_log($log_data); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
@@ -152,12 +152,12 @@ discard block |
||
152 | 152 | * |
153 | 153 | * @return array Array of the connected logs |
154 | 154 | */ |
155 | - public function get_logs( $object_id = 0, $type = null, $paged = null ) { |
|
156 | - return $this->get_connected_logs( array( |
|
155 | + public function get_logs($object_id = 0, $type = null, $paged = null) { |
|
156 | + return $this->get_connected_logs(array( |
|
157 | 157 | 'post_parent' => $object_id, |
158 | 158 | 'paged' => $paged, |
159 | 159 | 'log_type' => $type |
160 | - ) ); |
|
160 | + )); |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | /** |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | * |
173 | 173 | * @return int The ID of the newly created log item |
174 | 174 | */ |
175 | - function insert_log( $log_data = array(), $log_meta = array() ) { |
|
175 | + function insert_log($log_data = array(), $log_meta = array()) { |
|
176 | 176 | $defaults = array( |
177 | 177 | 'post_type' => 'give_log', |
178 | 178 | 'post_status' => 'publish', |
@@ -181,26 +181,26 @@ discard block |
||
181 | 181 | 'log_type' => false |
182 | 182 | ); |
183 | 183 | |
184 | - $args = wp_parse_args( $log_data, $defaults ); |
|
184 | + $args = wp_parse_args($log_data, $defaults); |
|
185 | 185 | |
186 | - do_action( 'give_pre_insert_log', $log_data, $log_meta ); |
|
186 | + do_action('give_pre_insert_log', $log_data, $log_meta); |
|
187 | 187 | |
188 | 188 | // Store the log entry |
189 | - $log_id = wp_insert_post( $args ); |
|
189 | + $log_id = wp_insert_post($args); |
|
190 | 190 | |
191 | 191 | // Set the log type, if any |
192 | - if ( $log_data['log_type'] && $this->valid_type( $log_data['log_type'] ) ) { |
|
193 | - wp_set_object_terms( $log_id, $log_data['log_type'], 'give_log_type', false ); |
|
192 | + if ($log_data['log_type'] && $this->valid_type($log_data['log_type'])) { |
|
193 | + wp_set_object_terms($log_id, $log_data['log_type'], 'give_log_type', false); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | // Set log meta, if any |
197 | - if ( $log_id && ! empty( $log_meta ) ) { |
|
198 | - foreach ( (array) $log_meta as $key => $meta ) { |
|
199 | - update_post_meta( $log_id, '_give_log_' . sanitize_key( $key ), $meta ); |
|
197 | + if ($log_id && ! empty($log_meta)) { |
|
198 | + foreach ((array) $log_meta as $key => $meta) { |
|
199 | + update_post_meta($log_id, '_give_log_'.sanitize_key($key), $meta); |
|
200 | 200 | } |
201 | 201 | } |
202 | 202 | |
203 | - do_action( 'give_post_insert_log', $log_id, $log_data, $log_meta ); |
|
203 | + do_action('give_post_insert_log', $log_id, $log_data, $log_meta); |
|
204 | 204 | |
205 | 205 | return $log_id; |
206 | 206 | } |
@@ -216,9 +216,9 @@ discard block |
||
216 | 216 | * |
217 | 217 | * @return bool True if successful, false otherwise |
218 | 218 | */ |
219 | - public function update_log( $log_data = array(), $log_meta = array() ) { |
|
219 | + public function update_log($log_data = array(), $log_meta = array()) { |
|
220 | 220 | |
221 | - do_action( 'give_pre_update_log', $log_data, $log_meta ); |
|
221 | + do_action('give_pre_update_log', $log_data, $log_meta); |
|
222 | 222 | |
223 | 223 | $defaults = array( |
224 | 224 | 'post_type' => 'give_log', |
@@ -226,20 +226,20 @@ discard block |
||
226 | 226 | 'post_parent' => 0 |
227 | 227 | ); |
228 | 228 | |
229 | - $args = wp_parse_args( $log_data, $defaults ); |
|
229 | + $args = wp_parse_args($log_data, $defaults); |
|
230 | 230 | |
231 | 231 | // Store the log entry |
232 | - $log_id = wp_update_post( $args ); |
|
232 | + $log_id = wp_update_post($args); |
|
233 | 233 | |
234 | - if ( $log_id && ! empty( $log_meta ) ) { |
|
235 | - foreach ( (array) $log_meta as $key => $meta ) { |
|
236 | - if ( ! empty( $meta ) ) { |
|
237 | - update_post_meta( $log_id, '_give_log_' . sanitize_key( $key ), $meta ); |
|
234 | + if ($log_id && ! empty($log_meta)) { |
|
235 | + foreach ((array) $log_meta as $key => $meta) { |
|
236 | + if ( ! empty($meta)) { |
|
237 | + update_post_meta($log_id, '_give_log_'.sanitize_key($key), $meta); |
|
238 | 238 | } |
239 | 239 | } |
240 | 240 | } |
241 | 241 | |
242 | - do_action( 'give_post_update_log', $log_id, $log_data, $log_meta ); |
|
242 | + do_action('give_post_update_log', $log_id, $log_data, $log_meta); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | /** |
@@ -254,19 +254,19 @@ discard block |
||
254 | 254 | * |
255 | 255 | * @return mixed array if logs were found, false otherwise |
256 | 256 | */ |
257 | - public function get_connected_logs( $args = array() ) { |
|
257 | + public function get_connected_logs($args = array()) { |
|
258 | 258 | |
259 | 259 | $defaults = array( |
260 | 260 | 'post_type' => 'give_log', |
261 | 261 | 'posts_per_page' => 20, |
262 | 262 | 'post_status' => 'publish', |
263 | - 'paged' => get_query_var( 'paged' ), |
|
263 | + 'paged' => get_query_var('paged'), |
|
264 | 264 | 'log_type' => false |
265 | 265 | ); |
266 | 266 | |
267 | - $query_args = wp_parse_args( $args, $defaults ); |
|
267 | + $query_args = wp_parse_args($args, $defaults); |
|
268 | 268 | |
269 | - if ( $query_args['log_type'] && $this->valid_type( $query_args['log_type'] ) ) { |
|
269 | + if ($query_args['log_type'] && $this->valid_type($query_args['log_type'])) { |
|
270 | 270 | $query_args['tax_query'] = array( |
271 | 271 | array( |
272 | 272 | 'taxonomy' => 'give_log_type', |
@@ -276,9 +276,9 @@ discard block |
||
276 | 276 | ); |
277 | 277 | } |
278 | 278 | |
279 | - $logs = get_posts( $query_args ); |
|
279 | + $logs = get_posts($query_args); |
|
280 | 280 | |
281 | - if ( $logs ) { |
|
281 | + if ($logs) { |
|
282 | 282 | return $logs; |
283 | 283 | } |
284 | 284 | |
@@ -299,17 +299,17 @@ discard block |
||
299 | 299 | * |
300 | 300 | * @return int Log count |
301 | 301 | */ |
302 | - public function get_log_count( $object_id = 0, $type = null, $meta_query = null, $date_query = null ) { |
|
302 | + public function get_log_count($object_id = 0, $type = null, $meta_query = null, $date_query = null) { |
|
303 | 303 | |
304 | 304 | $query_args = array( |
305 | 305 | 'post_parent' => $object_id, |
306 | 306 | 'post_type' => 'give_log', |
307 | - 'posts_per_page' => - 1, |
|
307 | + 'posts_per_page' => -1, |
|
308 | 308 | 'post_status' => 'publish', |
309 | 309 | 'fields' => 'ids', |
310 | 310 | ); |
311 | 311 | |
312 | - if ( ! empty( $type ) && $this->valid_type( $type ) ) { |
|
312 | + if ( ! empty($type) && $this->valid_type($type)) { |
|
313 | 313 | $query_args['tax_query'] = array( |
314 | 314 | array( |
315 | 315 | 'taxonomy' => 'give_log_type', |
@@ -319,15 +319,15 @@ discard block |
||
319 | 319 | ); |
320 | 320 | } |
321 | 321 | |
322 | - if ( ! empty( $meta_query ) ) { |
|
322 | + if ( ! empty($meta_query)) { |
|
323 | 323 | $query_args['meta_query'] = $meta_query; |
324 | 324 | } |
325 | 325 | |
326 | - if ( ! empty( $date_query ) ) { |
|
326 | + if ( ! empty($date_query)) { |
|
327 | 327 | $query_args['date_query'] = $date_query; |
328 | 328 | } |
329 | 329 | |
330 | - $logs = new WP_Query( $query_args ); |
|
330 | + $logs = new WP_Query($query_args); |
|
331 | 331 | |
332 | 332 | return (int) $logs->post_count; |
333 | 333 | } |
@@ -345,16 +345,16 @@ discard block |
||
345 | 345 | * |
346 | 346 | * @return void |
347 | 347 | */ |
348 | - public function delete_logs( $object_id = 0, $type = null, $meta_query = null ) { |
|
348 | + public function delete_logs($object_id = 0, $type = null, $meta_query = null) { |
|
349 | 349 | $query_args = array( |
350 | 350 | 'post_parent' => $object_id, |
351 | 351 | 'post_type' => 'give_log', |
352 | - 'posts_per_page' => - 1, |
|
352 | + 'posts_per_page' => -1, |
|
353 | 353 | 'post_status' => 'publish', |
354 | 354 | 'fields' => 'ids' |
355 | 355 | ); |
356 | 356 | |
357 | - if ( ! empty( $type ) && $this->valid_type( $type ) ) { |
|
357 | + if ( ! empty($type) && $this->valid_type($type)) { |
|
358 | 358 | $query_args['tax_query'] = array( |
359 | 359 | array( |
360 | 360 | 'taxonomy' => 'give_log_type', |
@@ -364,15 +364,15 @@ discard block |
||
364 | 364 | ); |
365 | 365 | } |
366 | 366 | |
367 | - if ( ! empty( $meta_query ) ) { |
|
367 | + if ( ! empty($meta_query)) { |
|
368 | 368 | $query_args['meta_query'] = $meta_query; |
369 | 369 | } |
370 | 370 | |
371 | - $logs = get_posts( $query_args ); |
|
371 | + $logs = get_posts($query_args); |
|
372 | 372 | |
373 | - if ( $logs ) { |
|
374 | - foreach ( $logs as $log ) { |
|
375 | - wp_delete_post( $log, true ); |
|
373 | + if ($logs) { |
|
374 | + foreach ($logs as $log) { |
|
375 | + wp_delete_post($log, true); |
|
376 | 376 | } |
377 | 377 | } |
378 | 378 | } |
@@ -400,9 +400,9 @@ discard block |
||
400 | 400 | * |
401 | 401 | * @return mixed ID of the new log entry |
402 | 402 | */ |
403 | -function give_record_log( $title = '', $message = '', $parent = 0, $type = null ) { |
|
403 | +function give_record_log($title = '', $message = '', $parent = 0, $type = null) { |
|
404 | 404 | global $give_logs; |
405 | - $log = $give_logs->add( $title, $message, $parent, $type ); |
|
405 | + $log = $give_logs->add($title, $message, $parent, $type); |
|
406 | 406 | |
407 | 407 | return $log; |
408 | 408 | } |
409 | 409 | \ No newline at end of file |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -28,15 +28,15 @@ discard block |
||
28 | 28 | * |
29 | 29 | * @return bool $ret True if guest checkout is enabled, false otherwise |
30 | 30 | */ |
31 | -function give_no_guest_checkout( $form_id ) { |
|
31 | +function give_no_guest_checkout($form_id) { |
|
32 | 32 | |
33 | 33 | $backtrace = debug_backtrace(); |
34 | 34 | |
35 | - _give_deprecated_function( __FUNCTION__, '1.4.1', null, $backtrace ); |
|
35 | + _give_deprecated_function(__FUNCTION__, '1.4.1', null, $backtrace); |
|
36 | 36 | |
37 | - $ret = get_post_meta( $form_id, '_give_logged_in_only', true ); |
|
37 | + $ret = get_post_meta($form_id, '_give_logged_in_only', true); |
|
38 | 38 | |
39 | - return (bool) apply_filters( 'give_no_guest_checkout', $ret ); |
|
39 | + return (bool) apply_filters('give_no_guest_checkout', $ret); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -50,12 +50,12 @@ discard block |
||
50 | 50 | * |
51 | 51 | * @return void |
52 | 52 | */ |
53 | -function give_undo_donation_on_refund( $payment_id, $new_status, $old_status ) { |
|
53 | +function give_undo_donation_on_refund($payment_id, $new_status, $old_status) { |
|
54 | 54 | |
55 | 55 | $backtrace = debug_backtrace(); |
56 | - _give_deprecated_function( 'give_undo_purchase_on_refund', '1.5', 'Give_Payment->refund()', $backtrace ); |
|
56 | + _give_deprecated_function('give_undo_purchase_on_refund', '1.5', 'Give_Payment->refund()', $backtrace); |
|
57 | 57 | |
58 | - $payment = new Give_Payment( $payment_id ); |
|
58 | + $payment = new Give_Payment($payment_id); |
|
59 | 59 | $payment->refund(); |
60 | 60 | |
61 | 61 | } |
62 | 62 | \ No newline at end of file |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -26,39 +26,39 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @return void |
28 | 28 | */ |
29 | -function give_email_donation_receipt( $payment_id, $admin_notice = true ) { |
|
29 | +function give_email_donation_receipt($payment_id, $admin_notice = true) { |
|
30 | 30 | |
31 | - $payment_data = give_get_payment_meta( $payment_id ); |
|
31 | + $payment_data = give_get_payment_meta($payment_id); |
|
32 | 32 | |
33 | - $from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ); |
|
34 | - $from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data ); |
|
33 | + $from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES)); |
|
34 | + $from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data); |
|
35 | 35 | |
36 | - $from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) ); |
|
37 | - $from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data ); |
|
36 | + $from_email = give_get_option('from_email', get_bloginfo('admin_email')); |
|
37 | + $from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data); |
|
38 | 38 | |
39 | - $to_email = give_get_payment_user_email( $payment_id ); |
|
39 | + $to_email = give_get_payment_user_email($payment_id); |
|
40 | 40 | |
41 | - $subject = give_get_option( 'donation_subject', __( 'Donation Receipt', 'give' ) ); |
|
42 | - $subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), $payment_id ); |
|
43 | - $subject = give_do_email_tags( $subject, $payment_id ); |
|
41 | + $subject = give_get_option('donation_subject', __('Donation Receipt', 'give')); |
|
42 | + $subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), $payment_id); |
|
43 | + $subject = give_do_email_tags($subject, $payment_id); |
|
44 | 44 | |
45 | - $attachments = apply_filters( 'give_receipt_attachments', array(), $payment_id, $payment_data ); |
|
46 | - $message = give_do_email_tags( give_get_email_body_content( $payment_id, $payment_data ), $payment_id ); |
|
45 | + $attachments = apply_filters('give_receipt_attachments', array(), $payment_id, $payment_data); |
|
46 | + $message = give_do_email_tags(give_get_email_body_content($payment_id, $payment_data), $payment_id); |
|
47 | 47 | |
48 | 48 | $emails = Give()->emails; |
49 | 49 | |
50 | - $emails->__set( 'from_name', $from_name ); |
|
51 | - $emails->__set( 'from_email', $from_email ); |
|
52 | - $emails->__set( 'heading', __( 'Donation Receipt', 'give' ) ); |
|
50 | + $emails->__set('from_name', $from_name); |
|
51 | + $emails->__set('from_email', $from_email); |
|
52 | + $emails->__set('heading', __('Donation Receipt', 'give')); |
|
53 | 53 | |
54 | 54 | |
55 | - $headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data ); |
|
56 | - $emails->__set( 'headers', $headers ); |
|
55 | + $headers = apply_filters('give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data); |
|
56 | + $emails->__set('headers', $headers); |
|
57 | 57 | |
58 | - $emails->send( $to_email, $subject, $message, $attachments ); |
|
58 | + $emails->send($to_email, $subject, $message, $attachments); |
|
59 | 59 | |
60 | - if ( $admin_notice && ! give_admin_notices_disabled( $payment_id ) ) { |
|
61 | - do_action( 'give_admin_sale_notice', $payment_id, $payment_data ); |
|
60 | + if ($admin_notice && ! give_admin_notices_disabled($payment_id)) { |
|
61 | + do_action('give_admin_sale_notice', $payment_id, $payment_data); |
|
62 | 62 | } |
63 | 63 | } |
64 | 64 | |
@@ -71,29 +71,29 @@ discard block |
||
71 | 71 | */ |
72 | 72 | function give_email_test_donation_receipt() { |
73 | 73 | |
74 | - $from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ); |
|
75 | - $from_name = apply_filters( 'give_purchase_from_name', $from_name, 0, array() ); |
|
74 | + $from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES)); |
|
75 | + $from_name = apply_filters('give_purchase_from_name', $from_name, 0, array()); |
|
76 | 76 | |
77 | - $from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) ); |
|
78 | - $from_email = apply_filters( 'give_purchase_from_address', $from_email, 0, array() ); |
|
77 | + $from_email = give_get_option('from_email', get_bloginfo('admin_email')); |
|
78 | + $from_email = apply_filters('give_purchase_from_address', $from_email, 0, array()); |
|
79 | 79 | |
80 | - $subject = give_get_option( 'donation_subject', __( 'Donation Receipt', 'give' ) ); |
|
81 | - $subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), 0 ); |
|
82 | - $subject = give_do_email_tags( $subject, 0 ); |
|
80 | + $subject = give_get_option('donation_subject', __('Donation Receipt', 'give')); |
|
81 | + $subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), 0); |
|
82 | + $subject = give_do_email_tags($subject, 0); |
|
83 | 83 | |
84 | - $attachments = apply_filters( 'give_receipt_attachments', array(), 0, array() ); |
|
84 | + $attachments = apply_filters('give_receipt_attachments', array(), 0, array()); |
|
85 | 85 | |
86 | - $message = give_email_preview_template_tags( give_get_email_body_content( 0, array() ) ); |
|
86 | + $message = give_email_preview_template_tags(give_get_email_body_content(0, array())); |
|
87 | 87 | |
88 | 88 | $emails = Give()->emails; |
89 | - $emails->__set( 'from_name', $from_name ); |
|
90 | - $emails->__set( 'from_email', $from_email ); |
|
91 | - $emails->__set( 'heading', __( 'Donation Receipt', 'give' ) ); |
|
89 | + $emails->__set('from_name', $from_name); |
|
90 | + $emails->__set('from_email', $from_email); |
|
91 | + $emails->__set('heading', __('Donation Receipt', 'give')); |
|
92 | 92 | |
93 | - $headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), 0, array() ); |
|
94 | - $emails->__set( 'headers', $headers ); |
|
93 | + $headers = apply_filters('give_receipt_headers', $emails->get_headers(), 0, array()); |
|
94 | + $emails->__set('headers', $headers); |
|
95 | 95 | |
96 | - $emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments ); |
|
96 | + $emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments); |
|
97 | 97 | |
98 | 98 | } |
99 | 99 | |
@@ -107,49 +107,49 @@ discard block |
||
107 | 107 | * |
108 | 108 | * @return void |
109 | 109 | */ |
110 | -function give_admin_email_notice( $payment_id = 0, $payment_data = array() ) { |
|
110 | +function give_admin_email_notice($payment_id = 0, $payment_data = array()) { |
|
111 | 111 | |
112 | - $payment_id = absint( $payment_id ); |
|
112 | + $payment_id = absint($payment_id); |
|
113 | 113 | |
114 | - if ( empty( $payment_id ) ) { |
|
114 | + if (empty($payment_id)) { |
|
115 | 115 | return; |
116 | 116 | } |
117 | 117 | |
118 | - if ( ! give_get_payment_by( 'id', $payment_id ) ) { |
|
118 | + if ( ! give_get_payment_by('id', $payment_id)) { |
|
119 | 119 | return; |
120 | 120 | } |
121 | 121 | |
122 | - $from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ); |
|
123 | - $from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data ); |
|
122 | + $from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES)); |
|
123 | + $from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data); |
|
124 | 124 | |
125 | - $from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) ); |
|
126 | - $from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data ); |
|
125 | + $from_email = give_get_option('from_email', get_bloginfo('admin_email')); |
|
126 | + $from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data); |
|
127 | 127 | |
128 | - $subject = give_get_option( 'donation_notification_subject', sprintf( __( 'New Donation - Payment #%1$s', 'give' ), $payment_id ) ); |
|
129 | - $subject = apply_filters( 'give_admin_donation_notification_subject', wp_strip_all_tags( $subject ), $payment_id ); |
|
130 | - $subject = give_do_email_tags( $subject, $payment_id ); |
|
128 | + $subject = give_get_option('donation_notification_subject', sprintf(__('New Donation - Payment #%1$s', 'give'), $payment_id)); |
|
129 | + $subject = apply_filters('give_admin_donation_notification_subject', wp_strip_all_tags($subject), $payment_id); |
|
130 | + $subject = give_do_email_tags($subject, $payment_id); |
|
131 | 131 | |
132 | - $headers = "From: " . stripslashes_deep( html_entity_decode( $from_name, ENT_COMPAT, 'UTF-8' ) ) . " <$from_email>\r\n"; |
|
133 | - $headers .= "Reply-To: " . $from_email . "\r\n"; |
|
132 | + $headers = "From: ".stripslashes_deep(html_entity_decode($from_name, ENT_COMPAT, 'UTF-8'))." <$from_email>\r\n"; |
|
133 | + $headers .= "Reply-To: ".$from_email."\r\n"; |
|
134 | 134 | //$headers .= "MIME-Version: 1.0\r\n"; |
135 | 135 | $headers .= "Content-Type: text/html; charset=utf-8\r\n"; |
136 | - $headers = apply_filters( 'give_admin_donation_notification_headers', $headers, $payment_id, $payment_data ); |
|
136 | + $headers = apply_filters('give_admin_donation_notification_headers', $headers, $payment_id, $payment_data); |
|
137 | 137 | |
138 | - $attachments = apply_filters( 'give_admin_donation_notification_attachments', array(), $payment_id, $payment_data ); |
|
138 | + $attachments = apply_filters('give_admin_donation_notification_attachments', array(), $payment_id, $payment_data); |
|
139 | 139 | |
140 | - $message = give_get_donation_notification_body_content( $payment_id, $payment_data ); |
|
140 | + $message = give_get_donation_notification_body_content($payment_id, $payment_data); |
|
141 | 141 | |
142 | 142 | $emails = Give()->emails; |
143 | - $emails->__set( 'from_name', $from_name ); |
|
144 | - $emails->__set( 'from_email', $from_email ); |
|
145 | - $emails->__set( 'headers', $headers ); |
|
146 | - $emails->__set( 'heading', __( 'New Donation!', 'give' ) ); |
|
143 | + $emails->__set('from_name', $from_name); |
|
144 | + $emails->__set('from_email', $from_email); |
|
145 | + $emails->__set('headers', $headers); |
|
146 | + $emails->__set('heading', __('New Donation!', 'give')); |
|
147 | 147 | |
148 | - $emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments ); |
|
148 | + $emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments); |
|
149 | 149 | |
150 | 150 | } |
151 | 151 | |
152 | -add_action( 'give_admin_sale_notice', 'give_admin_email_notice', 10, 2 ); |
|
152 | +add_action('give_admin_sale_notice', 'give_admin_email_notice', 10, 2); |
|
153 | 153 | |
154 | 154 | /** |
155 | 155 | * Retrieves the emails for which admin notifications are sent to (these can be |
@@ -162,10 +162,10 @@ discard block |
||
162 | 162 | function give_get_admin_notice_emails() { |
163 | 163 | global $give_options; |
164 | 164 | |
165 | - $emails = isset( $give_options['admin_notice_emails'] ) && strlen( trim( $give_options['admin_notice_emails'] ) ) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo( 'admin_email' ); |
|
166 | - $emails = array_map( 'trim', explode( "\n", $emails ) ); |
|
165 | + $emails = isset($give_options['admin_notice_emails']) && strlen(trim($give_options['admin_notice_emails'])) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo('admin_email'); |
|
166 | + $emails = array_map('trim', explode("\n", $emails)); |
|
167 | 167 | |
168 | - return apply_filters( 'give_admin_notice_emails', $emails ); |
|
168 | + return apply_filters('give_admin_notice_emails', $emails); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | /** |
@@ -177,11 +177,11 @@ discard block |
||
177 | 177 | * |
178 | 178 | * @return mixed |
179 | 179 | */ |
180 | -function give_admin_notices_disabled( $payment_id = 0 ) { |
|
180 | +function give_admin_notices_disabled($payment_id = 0) { |
|
181 | 181 | global $give_options; |
182 | - $retval = isset( $give_options['disable_admin_notices'] ); |
|
182 | + $retval = isset($give_options['disable_admin_notices']); |
|
183 | 183 | |
184 | - return apply_filters( 'give_admin_notices_disabled', $retval, $payment_id ); |
|
184 | + return apply_filters('give_admin_notices_disabled', $retval, $payment_id); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | /** |
@@ -195,16 +195,16 @@ discard block |
||
195 | 195 | function give_get_default_donation_notification_email() { |
196 | 196 | global $give_options; |
197 | 197 | |
198 | - $default_email_body = __( 'Hi there,', 'give' ) . "\n\n" . __( 'This email is to inform you that a new donation has been made on your website: ', 'give' ) . '<a href="' . get_bloginfo( 'url' ) . '" target="_blank">' . get_bloginfo( 'url' ) . '</a>' . ".\n\n"; |
|
199 | - $default_email_body .= '<strong>' . __( 'Donor: ', 'give' ) . '</strong> ' . ' {name}' . "\n"; |
|
200 | - $default_email_body .= '<strong>' . __( 'Donation: ', 'give' ) . '</strong> ' . ' {donation}' . "\n"; |
|
201 | - $default_email_body .= '<strong>' . __( 'Amount: ', 'give' ) . '</strong> ' . ' {price}' . "\n"; |
|
202 | - $default_email_body .= '<strong>' . __( 'Payment Method: ', 'give' ) . '</strong> ' . ' {payment_method}' . "\n\n"; |
|
203 | - $default_email_body .= __( 'Thank you,', 'give' ) . "\n\n" . '{sitename}'; |
|
198 | + $default_email_body = __('Hi there,', 'give')."\n\n".__('This email is to inform you that a new donation has been made on your website: ', 'give').'<a href="'.get_bloginfo('url').'" target="_blank">'.get_bloginfo('url').'</a>'.".\n\n"; |
|
199 | + $default_email_body .= '<strong>'.__('Donor: ', 'give').'</strong> '.' {name}'."\n"; |
|
200 | + $default_email_body .= '<strong>'.__('Donation: ', 'give').'</strong> '.' {donation}'."\n"; |
|
201 | + $default_email_body .= '<strong>'.__('Amount: ', 'give').'</strong> '.' {price}'."\n"; |
|
202 | + $default_email_body .= '<strong>'.__('Payment Method: ', 'give').'</strong> '.' {payment_method}'."\n\n"; |
|
203 | + $default_email_body .= __('Thank you,', 'give')."\n\n".'{sitename}'; |
|
204 | 204 | |
205 | - $message = ( isset( $give_options['donation_notification'] ) && ! empty( $give_options['donation_notification'] ) ) ? $give_options['donation_notification'] : $default_email_body; |
|
205 | + $message = (isset($give_options['donation_notification']) && ! empty($give_options['donation_notification'])) ? $give_options['donation_notification'] : $default_email_body; |
|
206 | 206 | |
207 | - return apply_filters( 'give_default_donation_notification_email', $message ); |
|
207 | + return apply_filters('give_default_donation_notification_email', $message); |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | |
@@ -219,24 +219,24 @@ discard block |
||
219 | 219 | function give_get_default_donation_receipt_email() { |
220 | 220 | global $give_options; |
221 | 221 | |
222 | - $default_email_body = __( 'Dear', 'give' ) . " {name},\n\n"; |
|
223 | - $default_email_body .= __( 'Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give' ) . "\n\n"; |
|
224 | - $default_email_body .= '<strong>' . __( 'Donor', 'give' ) . ':</strong> ' . '{fullname}' . "\n"; |
|
225 | - $default_email_body .= '<strong>' . __( 'Donation', 'give' ) . ':</strong> ' . '{donation}' . "\n"; |
|
226 | - $default_email_body .= '<strong>' . __( 'Donation Date', 'give' ) . ':</strong> ' . '{date}' . "\n"; |
|
227 | - $default_email_body .= '<strong>' . __( 'Amount', 'give' ) . ':</strong> ' . '{price}' . "\n"; |
|
228 | - $default_email_body .= '<strong>' . __( 'Payment Method', 'give' ) . ':</strong> ' . '{payment_method}' . "\n"; |
|
229 | - $default_email_body .= '<strong>' . __( 'Payment ID', 'give' ) . ':</strong> ' . '{payment_id}' . "\n"; |
|
230 | - $default_email_body .= '<strong>' . __( 'Receipt ID', 'give' ) . ':</strong> ' . '{receipt_id}' . "\n\n"; |
|
231 | - $default_email_body .= '{receipt_link}' . "\n\n"; |
|
222 | + $default_email_body = __('Dear', 'give')." {name},\n\n"; |
|
223 | + $default_email_body .= __('Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give')."\n\n"; |
|
224 | + $default_email_body .= '<strong>'.__('Donor', 'give').':</strong> '.'{fullname}'."\n"; |
|
225 | + $default_email_body .= '<strong>'.__('Donation', 'give').':</strong> '.'{donation}'."\n"; |
|
226 | + $default_email_body .= '<strong>'.__('Donation Date', 'give').':</strong> '.'{date}'."\n"; |
|
227 | + $default_email_body .= '<strong>'.__('Amount', 'give').':</strong> '.'{price}'."\n"; |
|
228 | + $default_email_body .= '<strong>'.__('Payment Method', 'give').':</strong> '.'{payment_method}'."\n"; |
|
229 | + $default_email_body .= '<strong>'.__('Payment ID', 'give').':</strong> '.'{payment_id}'."\n"; |
|
230 | + $default_email_body .= '<strong>'.__('Receipt ID', 'give').':</strong> '.'{receipt_id}'."\n\n"; |
|
231 | + $default_email_body .= '{receipt_link}'."\n\n"; |
|
232 | 232 | |
233 | 233 | $default_email_body .= "\n\n"; |
234 | - $default_email_body .= __( 'Sincerely,', 'give' ); |
|
235 | - $default_email_body .= "\n" . '{sitename}' . "\n"; |
|
234 | + $default_email_body .= __('Sincerely,', 'give'); |
|
235 | + $default_email_body .= "\n".'{sitename}'."\n"; |
|
236 | 236 | |
237 | - $message = ( isset( $give_options['donation_receipt'] ) && ! empty( $give_options['donation_receipt'] ) ) ? $give_options['donation_receipt'] : $default_email_body; |
|
237 | + $message = (isset($give_options['donation_receipt']) && ! empty($give_options['donation_receipt'])) ? $give_options['donation_receipt'] : $default_email_body; |
|
238 | 238 | |
239 | - return apply_filters( 'give_default_donation_receipt_email', $message ); |
|
239 | + return apply_filters('give_default_donation_receipt_email', $message); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -248,19 +248,19 @@ discard block |
||
248 | 248 | * |
249 | 249 | * @return array $email_names |
250 | 250 | */ |
251 | -function give_get_email_names( $user_info ) { |
|
251 | +function give_get_email_names($user_info) { |
|
252 | 252 | $email_names = array(); |
253 | - $user_info = maybe_unserialize( $user_info ); |
|
253 | + $user_info = maybe_unserialize($user_info); |
|
254 | 254 | |
255 | 255 | $email_names['fullname'] = ''; |
256 | - if ( isset( $user_info['id'] ) && $user_info['id'] > 0 && isset( $user_info['first_name'] ) ) { |
|
257 | - $user_data = get_userdata( $user_info['id'] ); |
|
256 | + if (isset($user_info['id']) && $user_info['id'] > 0 && isset($user_info['first_name'])) { |
|
257 | + $user_data = get_userdata($user_info['id']); |
|
258 | 258 | $email_names['name'] = $user_info['first_name']; |
259 | - $email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name']; |
|
259 | + $email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name']; |
|
260 | 260 | $email_names['username'] = $user_data->user_login; |
261 | - } elseif ( isset( $user_info['first_name'] ) ) { |
|
261 | + } elseif (isset($user_info['first_name'])) { |
|
262 | 262 | $email_names['name'] = $user_info['first_name']; |
263 | - $email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name']; |
|
263 | + $email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name']; |
|
264 | 264 | $email_names['username'] = $user_info['first_name']; |
265 | 265 | } else { |
266 | 266 | $email_names['name'] = $user_info['email']; |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -20,27 +20,27 @@ discard block |
||
20 | 20 | * @since 1.0 |
21 | 21 | * @return void |
22 | 22 | */ |
23 | -if ( ! isset( $_GET['id'] ) || ! is_numeric( $_GET['id'] ) ) { |
|
24 | - wp_die( __( 'Donation ID not supplied. Please try again', 'give' ), __( 'Error', 'give' ) ); |
|
23 | +if ( ! isset($_GET['id']) || ! is_numeric($_GET['id'])) { |
|
24 | + wp_die(__('Donation ID not supplied. Please try again', 'give'), __('Error', 'give')); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | // Setup the variables |
28 | -$payment_id = absint( $_GET['id'] ); |
|
29 | -$payment = new Give_Payment( $payment_id ); |
|
28 | +$payment_id = absint($_GET['id']); |
|
29 | +$payment = new Give_Payment($payment_id); |
|
30 | 30 | |
31 | 31 | // Sanity check... fail if purchase ID is invalid |
32 | 32 | $payment_exists = $payment->ID; |
33 | -if ( empty( $payment_exists ) ) { |
|
34 | - wp_die( __( 'The specified ID does not belong to a payment. Please try again', 'give' ), __( 'Error', 'give' ) ); |
|
33 | +if (empty($payment_exists)) { |
|
34 | + wp_die(__('The specified ID does not belong to a payment. Please try again', 'give'), __('Error', 'give')); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | $number = $payment->number; |
38 | 38 | $payment_meta = $payment->get_meta(); |
39 | -$transaction_id = esc_attr( $payment->transaction_id ); |
|
39 | +$transaction_id = esc_attr($payment->transaction_id); |
|
40 | 40 | $user_id = $payment->user_id; |
41 | 41 | $customer_id = $payment->customer_id; |
42 | -$payment_date = strtotime( $payment->date ); |
|
43 | -$user_info = give_get_payment_meta_user_info( $payment_id ); |
|
42 | +$payment_date = strtotime($payment->date); |
|
43 | +$user_info = give_get_payment_meta_user_info($payment_id); |
|
44 | 44 | $address = $payment->address; |
45 | 45 | $gateway = $payment->gateway; |
46 | 46 | $currency_code = $payment->currency; |
@@ -49,72 +49,72 @@ discard block |
||
49 | 49 | $payment_mode = $payment->mode; |
50 | 50 | ?> |
51 | 51 | <div class="wrap give-wrap"> |
52 | - <h1 id="transaction-details-heading"><?php printf( __( 'Payment %s', 'give' ), $number ); ?><?php if ( $payment_mode == 'test' ) { |
|
53 | - echo '<span id="test-payment-label" class="give-item-label give-item-label-orange" data-tooltip="' . __( 'This payment was made in Test Mode', 'give' ) . '" data-tooltip-my-position="center left" data-tooltip-target-position="center right">' . __( 'Test Payment', 'give' ) . '</span>'; |
|
52 | + <h1 id="transaction-details-heading"><?php printf(__('Payment %s', 'give'), $number); ?><?php if ($payment_mode == 'test') { |
|
53 | + echo '<span id="test-payment-label" class="give-item-label give-item-label-orange" data-tooltip="'.__('This payment was made in Test Mode', 'give').'" data-tooltip-my-position="center left" data-tooltip-target-position="center right">'.__('Test Payment', 'give').'</span>'; |
|
54 | 54 | } ?></h1> |
55 | 55 | |
56 | - <?php do_action( 'give_view_order_details_before', $payment_id ); ?> |
|
56 | + <?php do_action('give_view_order_details_before', $payment_id); ?> |
|
57 | 57 | <form id="give-edit-order-form" method="post"> |
58 | - <?php do_action( 'give_view_order_details_form_top', $payment_id ); ?> |
|
58 | + <?php do_action('give_view_order_details_form_top', $payment_id); ?> |
|
59 | 59 | <div id="poststuff"> |
60 | 60 | <div id="give-dashboard-widgets-wrap"> |
61 | 61 | <div id="post-body" class="metabox-holder columns-2"> |
62 | 62 | <div id="postbox-container-1" class="postbox-container"> |
63 | 63 | <div id="side-sortables" class="meta-box-sortables ui-sortable"> |
64 | 64 | |
65 | - <?php do_action( 'give_view_order_details_sidebar_before', $payment_id ); ?> |
|
65 | + <?php do_action('give_view_order_details_sidebar_before', $payment_id); ?> |
|
66 | 66 | |
67 | 67 | |
68 | 68 | <div id="give-order-update" class="postbox give-order-data"> |
69 | 69 | |
70 | 70 | <h3 class="hndle"> |
71 | - <span><?php _e( 'Update Payment', 'give' ); ?></span> |
|
71 | + <span><?php _e('Update Payment', 'give'); ?></span> |
|
72 | 72 | </h3> |
73 | 73 | |
74 | 74 | <div class="inside"> |
75 | 75 | <div class="give-admin-box"> |
76 | 76 | |
77 | - <?php do_action( 'give_view_order_details_totals_before', $payment_id ); ?> |
|
77 | + <?php do_action('give_view_order_details_totals_before', $payment_id); ?> |
|
78 | 78 | |
79 | 79 | <div class="give-admin-box-inside"> |
80 | 80 | <p> |
81 | - <span class="label"><?php _e( 'Status:', 'give' ); ?></span> |
|
81 | + <span class="label"><?php _e('Status:', 'give'); ?></span> |
|
82 | 82 | <select name="give-payment-status" class="medium-text"> |
83 | - <?php foreach ( give_get_payment_statuses() as $key => $status ) : ?> |
|
84 | - <option value="<?php echo esc_attr( $key ); ?>"<?php selected( $payment->status, $key, true ); ?>><?php echo esc_html( $status ); ?></option> |
|
83 | + <?php foreach (give_get_payment_statuses() as $key => $status) : ?> |
|
84 | + <option value="<?php echo esc_attr($key); ?>"<?php selected($payment->status, $key, true); ?>><?php echo esc_html($status); ?></option> |
|
85 | 85 | <?php endforeach; ?> |
86 | 86 | </select> |
87 | - <span class="give-donation-status status-<?php echo sanitize_title( $payment->status ); ?>"><span class="give-donation-status-icon"></span></span> |
|
87 | + <span class="give-donation-status status-<?php echo sanitize_title($payment->status); ?>"><span class="give-donation-status-icon"></span></span> |
|
88 | 88 | </p> |
89 | 89 | </div> |
90 | 90 | |
91 | 91 | <div class="give-admin-box-inside"> |
92 | 92 | <p> |
93 | - <span class="label"><?php _e( 'Date:', 'give' ); ?></span> |
|
94 | - <input type="text" name="give-payment-date" value="<?php echo esc_attr( date( 'm/d/Y', $payment_date ) ); ?>" class="medium-text give_datepicker"/> |
|
93 | + <span class="label"><?php _e('Date:', 'give'); ?></span> |
|
94 | + <input type="text" name="give-payment-date" value="<?php echo esc_attr(date('m/d/Y', $payment_date)); ?>" class="medium-text give_datepicker"/> |
|
95 | 95 | </p> |
96 | 96 | </div> |
97 | 97 | |
98 | 98 | <div class="give-admin-box-inside"> |
99 | 99 | <p> |
100 | - <span class="label"><?php _e( 'Time:', 'give' ); ?></span> |
|
101 | - <input type="number" step="1" max="24" name="give-payment-time-hour" value="<?php echo esc_attr( date_i18n( 'H', $payment_date ) ); ?>" class="small-text give-payment-time-hour"/> : |
|
102 | - <input type="number" step="1" max="59" name="give-payment-time-min" value="<?php echo esc_attr( date( 'i', $payment_date ) ); ?>" class="small-text give-payment-time-min"/> |
|
100 | + <span class="label"><?php _e('Time:', 'give'); ?></span> |
|
101 | + <input type="number" step="1" max="24" name="give-payment-time-hour" value="<?php echo esc_attr(date_i18n('H', $payment_date)); ?>" class="small-text give-payment-time-hour"/> : |
|
102 | + <input type="number" step="1" max="59" name="give-payment-time-min" value="<?php echo esc_attr(date('i', $payment_date)); ?>" class="small-text give-payment-time-min"/> |
|
103 | 103 | </p> |
104 | 104 | </div> |
105 | 105 | |
106 | - <?php do_action( 'give_view_order_details_update_inner', $payment_id ); ?> |
|
106 | + <?php do_action('give_view_order_details_update_inner', $payment_id); ?> |
|
107 | 107 | |
108 | 108 | <?php |
109 | 109 | //@TODO: Fees |
110 | - $fees = give_get_payment_fees( $payment_id ); |
|
111 | - if ( ! empty( $fees ) ) : ?> |
|
110 | + $fees = give_get_payment_fees($payment_id); |
|
111 | + if ( ! empty($fees)) : ?> |
|
112 | 112 | <div class="give-order-fees give-admin-box-inside"> |
113 | - <p class="strong"><?php _e( 'Fees', 'give' ); ?>:</p> |
|
113 | + <p class="strong"><?php _e('Fees', 'give'); ?>:</p> |
|
114 | 114 | <ul class="give-payment-fees"> |
115 | - <?php foreach ( $fees as $fee ) : ?> |
|
115 | + <?php foreach ($fees as $fee) : ?> |
|
116 | 116 | <li> |
117 | - <span class="fee-label"><?php echo $fee['label'] . ':</span> ' . '<span class="fee-amount" data-fee="' . esc_attr( $fee['amount'] ) . '">' . give_currency_filter( $fee['amount'], $currency_code ); ?></span> |
|
117 | + <span class="fee-label"><?php echo $fee['label'].':</span> '.'<span class="fee-amount" data-fee="'.esc_attr($fee['amount']).'">'.give_currency_filter($fee['amount'], $currency_code); ?></span> |
|
118 | 118 | </li> |
119 | 119 | <?php endforeach; ?> |
120 | 120 | </ul> |
@@ -124,12 +124,12 @@ discard block |
||
124 | 124 | |
125 | 125 | <div class="give-order-payment give-admin-box-inside"> |
126 | 126 | <p> |
127 | - <span class="label"><?php _e( 'Total Donation', 'give' ); ?>:</span> |
|
128 | - <?php echo give_currency_symbol( $payment->currency ); ?> <input name="give-payment-total" type="text" class="small-text give-price-field" value="<?php echo esc_attr( give_format_amount( give_get_payment_amount( $payment_id ) ) ); ?>"/> |
|
127 | + <span class="label"><?php _e('Total Donation', 'give'); ?>:</span> |
|
128 | + <?php echo give_currency_symbol($payment->currency); ?> <input name="give-payment-total" type="text" class="small-text give-price-field" value="<?php echo esc_attr(give_format_amount(give_get_payment_amount($payment_id))); ?>"/> |
|
129 | 129 | </p> |
130 | 130 | </div> |
131 | 131 | |
132 | - <?php do_action( 'give_view_order_details_totals_after', $payment_id ); ?> |
|
132 | + <?php do_action('give_view_order_details_totals_after', $payment_id); ?> |
|
133 | 133 | |
134 | 134 | </div> |
135 | 135 | <!-- /.give-admin-box --> |
@@ -138,20 +138,20 @@ discard block |
||
138 | 138 | <!-- /.inside --> |
139 | 139 | |
140 | 140 | <div class="give-order-update-box give-admin-box"> |
141 | - <?php do_action( 'give_view_order_details_update_before', $payment_id ); ?> |
|
141 | + <?php do_action('give_view_order_details_update_before', $payment_id); ?> |
|
142 | 142 | <div id="major-publishing-actions"> |
143 | 143 | <div id="publishing-action"> |
144 | - <input type="submit" class="button button-primary right" value="<?php esc_attr_e( 'Save Payment', 'give' ); ?>"/> |
|
145 | - <?php if ( give_is_payment_complete( $payment_id ) ) : ?> |
|
146 | - <a href="<?php echo esc_url( add_query_arg( array( |
|
144 | + <input type="submit" class="button button-primary right" value="<?php esc_attr_e('Save Payment', 'give'); ?>"/> |
|
145 | + <?php if (give_is_payment_complete($payment_id)) : ?> |
|
146 | + <a href="<?php echo esc_url(add_query_arg(array( |
|
147 | 147 | 'give-action' => 'email_links', |
148 | 148 | 'purchase_id' => $payment_id |
149 | - ) ) ); ?>" id="give-resend-receipt" class="button-secondary right"><?php _e( 'Resend Receipt', 'give' ); ?></a> |
|
149 | + ))); ?>" id="give-resend-receipt" class="button-secondary right"><?php _e('Resend Receipt', 'give'); ?></a> |
|
150 | 150 | <?php endif; ?> |
151 | 151 | </div> |
152 | 152 | <div class="clear"></div> |
153 | 153 | </div> |
154 | - <?php do_action( 'give_view_order_details_update_after', $payment_id ); ?> |
|
154 | + <?php do_action('give_view_order_details_update_after', $payment_id); ?> |
|
155 | 155 | </div> |
156 | 156 | <!-- /.give-order-update-box --> |
157 | 157 | |
@@ -161,55 +161,55 @@ discard block |
||
161 | 161 | <div id="give-order-details" class="postbox give-order-data"> |
162 | 162 | |
163 | 163 | <h3 class="hndle"> |
164 | - <span><?php _e( 'Payment Meta', 'give' ); ?></span> |
|
164 | + <span><?php _e('Payment Meta', 'give'); ?></span> |
|
165 | 165 | </h3> |
166 | 166 | |
167 | 167 | <div class="inside"> |
168 | 168 | <div class="give-admin-box"> |
169 | 169 | |
170 | - <?php do_action( 'give_view_order_details_payment_meta_before', $payment_id ); ?> |
|
170 | + <?php do_action('give_view_order_details_payment_meta_before', $payment_id); ?> |
|
171 | 171 | |
172 | 172 | <?php |
173 | - $gateway = give_get_payment_gateway( $payment_id ); |
|
174 | - if ( $gateway ) : ?> |
|
173 | + $gateway = give_get_payment_gateway($payment_id); |
|
174 | + if ($gateway) : ?> |
|
175 | 175 | <div class="give-order-gateway give-admin-box-inside"> |
176 | 176 | <p> |
177 | - <span class="label"><?php _e( 'Gateway:', 'give' ); ?></span> |
|
178 | - <?php echo give_get_gateway_admin_label( $gateway ); ?> |
|
177 | + <span class="label"><?php _e('Gateway:', 'give'); ?></span> |
|
178 | + <?php echo give_get_gateway_admin_label($gateway); ?> |
|
179 | 179 | </p> |
180 | 180 | </div> |
181 | 181 | <?php endif; ?> |
182 | 182 | |
183 | 183 | <div class="give-order-payment-key give-admin-box-inside"> |
184 | 184 | <p> |
185 | - <span class="label"><?php _e( 'Key:', 'give' ); ?></span> |
|
186 | - <span><?php echo give_get_payment_key( $payment_id ); ?></span> |
|
185 | + <span class="label"><?php _e('Key:', 'give'); ?></span> |
|
186 | + <span><?php echo give_get_payment_key($payment_id); ?></span> |
|
187 | 187 | </p> |
188 | 188 | </div> |
189 | 189 | |
190 | 190 | <div class="give-order-ip give-admin-box-inside"> |
191 | 191 | <p> |
192 | - <span class="label"><?php _e( 'IP:', 'give' ); ?></span> |
|
193 | - <span><?php echo esc_html( give_get_payment_user_ip( $payment_id ) ); ?></span> |
|
192 | + <span class="label"><?php _e('IP:', 'give'); ?></span> |
|
193 | + <span><?php echo esc_html(give_get_payment_user_ip($payment_id)); ?></span> |
|
194 | 194 | </p> |
195 | 195 | </div> |
196 | 196 | |
197 | - <?php if ( $transaction_id ) : ?> |
|
197 | + <?php if ($transaction_id) : ?> |
|
198 | 198 | <div class="give-order-tx-id give-admin-box-inside"> |
199 | 199 | <p> |
200 | - <span class="label"><?php _e( 'Transaction ID:', 'give' ); ?></span> |
|
201 | - <span><?php echo apply_filters( 'give_payment_details_transaction_id-' . $gateway, $transaction_id, $payment_id ); ?></span> |
|
200 | + <span class="label"><?php _e('Transaction ID:', 'give'); ?></span> |
|
201 | + <span><?php echo apply_filters('give_payment_details_transaction_id-'.$gateway, $transaction_id, $payment_id); ?></span> |
|
202 | 202 | </p> |
203 | 203 | </div> |
204 | 204 | <?php endif; ?> |
205 | 205 | |
206 | 206 | <div class="give-admin-box-inside"> |
207 | - <p><?php $purchase_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&user=' . esc_attr( give_get_payment_user_email( $payment_id ) ) ); ?> |
|
208 | - <a href="<?php echo $purchase_url; ?>"><?php _e( 'View all donations for this donor', 'give' ); ?> »</a> |
|
207 | + <p><?php $purchase_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history&user='.esc_attr(give_get_payment_user_email($payment_id))); ?> |
|
208 | + <a href="<?php echo $purchase_url; ?>"><?php _e('View all donations for this donor', 'give'); ?> »</a> |
|
209 | 209 | </p> |
210 | 210 | </div> |
211 | 211 | |
212 | - <?php do_action( 'give_view_order_details_payment_meta_after', $payment_id ); ?> |
|
212 | + <?php do_action('give_view_order_details_payment_meta_after', $payment_id); ?> |
|
213 | 213 | |
214 | 214 | </div> |
215 | 215 | <!-- /.column-container --> |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | </div> |
221 | 221 | <!-- /#give-order-data --> |
222 | 222 | |
223 | - <?php do_action( 'give_view_order_details_sidebar_after', $payment_id ); ?> |
|
223 | + <?php do_action('give_view_order_details_sidebar_after', $payment_id); ?> |
|
224 | 224 | |
225 | 225 | </div> |
226 | 226 | <!-- /#side-sortables --> |
@@ -231,12 +231,12 @@ discard block |
||
231 | 231 | |
232 | 232 | <div id="normal-sortables" class="meta-box-sortables ui-sortable"> |
233 | 233 | |
234 | - <?php do_action( 'give_view_order_details_main_before', $payment_id ); ?> |
|
234 | + <?php do_action('give_view_order_details_main_before', $payment_id); ?> |
|
235 | 235 | |
236 | 236 | <?php $column_count = 'columns-3'; ?> |
237 | 237 | <div id="give-donation-overview" class="postbox <?php echo $column_count; ?>"> |
238 | 238 | <h3 class="hndle"> |
239 | - <span><?php _e( 'Donation Information', 'give' ); ?></span> |
|
239 | + <span><?php _e('Donation Information', 'give'); ?></span> |
|
240 | 240 | </h3> |
241 | 241 | |
242 | 242 | <div class="inside"> |
@@ -244,29 +244,29 @@ discard block |
||
244 | 244 | <table style="width:100%;text-align:left;"> |
245 | 245 | <thead> |
246 | 246 | <tr> |
247 | - <?php do_action( 'give_donation_details_thead_before', $payment_id ); ?> |
|
248 | - <th><?php _e( 'Donation Form ID', 'give' ) ?></th> |
|
249 | - <th><?php _e( 'Donation Form Title', 'give' ) ?></th> |
|
250 | - <th><?php _e( 'Donation Level', 'give' ) ?></th> |
|
251 | - <th><?php _e( 'Donation Date', 'give' ) ?></th> |
|
252 | - <th><?php _e( 'Total Donation', 'give' ) ?></th> |
|
253 | - <?php do_action( 'give_donation_details_thead_after', $payment_id ); ?> |
|
247 | + <?php do_action('give_donation_details_thead_before', $payment_id); ?> |
|
248 | + <th><?php _e('Donation Form ID', 'give') ?></th> |
|
249 | + <th><?php _e('Donation Form Title', 'give') ?></th> |
|
250 | + <th><?php _e('Donation Level', 'give') ?></th> |
|
251 | + <th><?php _e('Donation Date', 'give') ?></th> |
|
252 | + <th><?php _e('Total Donation', 'give') ?></th> |
|
253 | + <?php do_action('give_donation_details_thead_after', $payment_id); ?> |
|
254 | 254 | </tr> |
255 | 255 | </thead> |
256 | 256 | <tr> |
257 | - <?php do_action( 'give_donation_details_tbody_before', $payment_id ); ?> |
|
257 | + <?php do_action('give_donation_details_tbody_before', $payment_id); ?> |
|
258 | 258 | <td> |
259 | 259 | <?php echo $payment_meta['form_id']; ?> |
260 | 260 | </td> |
261 | 261 | <td> |
262 | - <a href="<?php echo get_permalink( $payment_meta['form_id'] ); ?>"><?php echo $payment_meta['form_title']; ?></a> |
|
262 | + <a href="<?php echo get_permalink($payment_meta['form_id']); ?>"><?php echo $payment_meta['form_title']; ?></a> |
|
263 | 263 | </td> |
264 | 264 | <td> |
265 | 265 | <?php |
266 | 266 | //Level ID |
267 | - $level_title = give_get_payment_form_title( $payment_meta, true ); |
|
268 | - if ( empty( $level_title ) ) { |
|
269 | - echo __( 'n/a', 'give' ); |
|
267 | + $level_title = give_get_payment_form_title($payment_meta, true); |
|
268 | + if (empty($level_title)) { |
|
269 | + echo __('n/a', 'give'); |
|
270 | 270 | } else { |
271 | 271 | echo $level_title; |
272 | 272 | } ?> |
@@ -274,13 +274,13 @@ discard block |
||
274 | 274 | <td> |
275 | 275 | <?php |
276 | 276 | //Transaction Date |
277 | - $date_format = get_option( 'date_format' ); |
|
278 | - echo date_i18n( $date_format, strtotime( $payment_date ) ); |
|
277 | + $date_format = get_option('date_format'); |
|
278 | + echo date_i18n($date_format, strtotime($payment_date)); |
|
279 | 279 | ?> |
280 | 280 | </td> |
281 | 281 | <td> |
282 | - <?php echo esc_html( give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) ) ); ?></td> |
|
283 | - <?php do_action( 'give_donation_details_tbody_after', $payment_id ); ?> |
|
282 | + <?php echo esc_html(give_currency_filter(give_format_amount(give_get_payment_amount($payment_id)))); ?></td> |
|
283 | + <?php do_action('give_donation_details_tbody_after', $payment_id); ?> |
|
284 | 284 | |
285 | 285 | </tr> |
286 | 286 | </table> |
@@ -292,64 +292,64 @@ discard block |
||
292 | 292 | </div> |
293 | 293 | <!-- /#give-donation-overview --> |
294 | 294 | |
295 | - <?php do_action( 'give_view_order_details_files_after', $payment_id ); ?> |
|
295 | + <?php do_action('give_view_order_details_files_after', $payment_id); ?> |
|
296 | 296 | |
297 | - <?php do_action( 'give_view_order_details_billing_before', $payment_id ); ?> |
|
297 | + <?php do_action('give_view_order_details_billing_before', $payment_id); ?> |
|
298 | 298 | |
299 | 299 | |
300 | 300 | <div id="give-customer-details" class="postbox"> |
301 | 301 | <h3 class="hndle"> |
302 | - <span><?php _e( 'Donor Details', 'give' ); ?></span> |
|
302 | + <span><?php _e('Donor Details', 'give'); ?></span> |
|
303 | 303 | </h3> |
304 | 304 | |
305 | 305 | <div class="inside give-clearfix"> |
306 | 306 | |
307 | - <?php $customer = new Give_Customer( $customer_id ); ?> |
|
307 | + <?php $customer = new Give_Customer($customer_id); ?> |
|
308 | 308 | |
309 | 309 | <div class="column-container customer-info"> |
310 | 310 | <div class="column"> |
311 | - <?php echo Give()->html->donor_dropdown( array( |
|
311 | + <?php echo Give()->html->donor_dropdown(array( |
|
312 | 312 | 'selected' => $customer->id, |
313 | 313 | 'name' => 'customer-id' |
314 | - ) ); ?> |
|
314 | + )); ?> |
|
315 | 315 | </div> |
316 | 316 | <div class="column"> |
317 | 317 | <input type="hidden" name="give-current-customer" value="<?php echo $customer->id; ?>"/> |
318 | 318 | </div> |
319 | 319 | <div class="column"> |
320 | - <?php if ( ! empty( $customer->id ) ) : ?> |
|
321 | - <?php $customer_url = admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=overview&id=' . $customer->id ); ?> |
|
322 | - <a href="<?php echo $customer_url; ?>" title="<?php _e( 'View Donor Details', 'give' ); ?>"><?php _e( 'View Donor Details', 'give' ); ?></a> |
|
320 | + <?php if ( ! empty($customer->id)) : ?> |
|
321 | + <?php $customer_url = admin_url('edit.php?post_type=give_forms&page=give-donors&view=overview&id='.$customer->id); ?> |
|
322 | + <a href="<?php echo $customer_url; ?>" title="<?php _e('View Donor Details', 'give'); ?>"><?php _e('View Donor Details', 'give'); ?></a> |
|
323 | 323 | | |
324 | 324 | <?php endif; ?> |
325 | - <a href="#new" class="give-payment-new-customer" title="<?php _e( 'New Donor', 'give' ); ?>"><?php _e( 'New Donor', 'give' ); ?></a> |
|
325 | + <a href="#new" class="give-payment-new-customer" title="<?php _e('New Donor', 'give'); ?>"><?php _e('New Donor', 'give'); ?></a> |
|
326 | 326 | </div> |
327 | 327 | </div> |
328 | 328 | |
329 | 329 | <div class="column-container new-customer" style="display: none"> |
330 | 330 | <div class="column"> |
331 | - <strong><?php _e( 'Name:', 'give' ); ?></strong> |
|
331 | + <strong><?php _e('Name:', 'give'); ?></strong> |
|
332 | 332 | <input type="text" name="give-new-customer-name" value="" class="medium-text"/> |
333 | 333 | </div> |
334 | 334 | <div class="column"> |
335 | - <strong><?php _e( 'Email:', 'give' ); ?></strong> |
|
335 | + <strong><?php _e('Email:', 'give'); ?></strong> |
|
336 | 336 | <input type="email" name="give-new-customer-email" value="" class="medium-text"/> |
337 | 337 | </div> |
338 | 338 | <div class="column"> |
339 | 339 | <input type="hidden" id="give-new-customer" name="give-new-customer" value="0"/> |
340 | - <a href="#cancel" class="give-payment-new-customer-cancel give-delete"><?php _e( 'Cancel', 'give' ); ?></a> |
|
340 | + <a href="#cancel" class="give-payment-new-customer-cancel give-delete"><?php _e('Cancel', 'give'); ?></a> |
|
341 | 341 | </div> |
342 | 342 | <div class="column"> |
343 | 343 | <small> |
344 | - <em>*<?php _e( 'Click "Save Payment" to create new donor', 'give' ); ?></em> |
|
344 | + <em>*<?php _e('Click "Save Payment" to create new donor', 'give'); ?></em> |
|
345 | 345 | </small> |
346 | 346 | </div> |
347 | 347 | </div> |
348 | 348 | |
349 | 349 | <?php |
350 | 350 | // The give_payment_personal_details_list hook is left here for backwards compatibility |
351 | - do_action( 'give_payment_personal_details_list', $payment_meta, $user_info ); |
|
352 | - do_action( 'give_payment_view_details', $payment_id ); |
|
351 | + do_action('give_payment_personal_details_list', $payment_meta, $user_info); |
|
352 | + do_action('give_payment_view_details', $payment_id); |
|
353 | 353 | ?> |
354 | 354 | |
355 | 355 | </div> |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | |
361 | 361 | <div id="give-billing-details" class="postbox"> |
362 | 362 | <h3 class="hndle"> |
363 | - <span><?php _e( 'Billing Address', 'give' ); ?></span> |
|
363 | + <span><?php _e('Billing Address', 'give'); ?></span> |
|
364 | 364 | </h3> |
365 | 365 | |
366 | 366 | <div class="inside give-clearfix"> |
@@ -371,62 +371,62 @@ discard block |
||
371 | 371 | <div class="data column-container"> |
372 | 372 | <div class="column"> |
373 | 373 | <p> |
374 | - <strong class="order-data-address-line"><?php _e( 'Street Address Line 1:', 'give' ); ?></strong><br/> |
|
375 | - <input type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr( $address['line1'] ); ?>" class="medium-text"/> |
|
374 | + <strong class="order-data-address-line"><?php _e('Street Address Line 1:', 'give'); ?></strong><br/> |
|
375 | + <input type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr($address['line1']); ?>" class="medium-text"/> |
|
376 | 376 | </p> |
377 | 377 | |
378 | 378 | <p> |
379 | - <strong class="order-data-address-line"><?php _e( 'Street Address Line 2:', 'give' ); ?></strong><br/> |
|
380 | - <input type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr( $address['line2'] ); ?>" class="medium-text"/> |
|
379 | + <strong class="order-data-address-line"><?php _e('Street Address Line 2:', 'give'); ?></strong><br/> |
|
380 | + <input type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr($address['line2']); ?>" class="medium-text"/> |
|
381 | 381 | </p> |
382 | 382 | |
383 | 383 | </div> |
384 | 384 | <div class="column"> |
385 | 385 | <p> |
386 | - <strong class="order-data-address-line"><?php echo _x( 'City:', 'Address City', 'give' ); ?></strong><br/> |
|
387 | - <input type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr( $address['city'] ); ?>" class="medium-text"/> |
|
386 | + <strong class="order-data-address-line"><?php echo _x('City:', 'Address City', 'give'); ?></strong><br/> |
|
387 | + <input type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr($address['city']); ?>" class="medium-text"/> |
|
388 | 388 | |
389 | 389 | </p> |
390 | 390 | |
391 | 391 | <p> |
392 | - <strong class="order-data-address-line"><?php echo _x( 'Zip / Postal Code:', 'Zip / Postal code of address', 'give' ); ?></strong><br/> |
|
393 | - <input type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr( $address['zip'] ); ?>" class="medium-text"/> |
|
392 | + <strong class="order-data-address-line"><?php echo _x('Zip / Postal Code:', 'Zip / Postal code of address', 'give'); ?></strong><br/> |
|
393 | + <input type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr($address['zip']); ?>" class="medium-text"/> |
|
394 | 394 | |
395 | 395 | </p> |
396 | 396 | </div> |
397 | 397 | <div class="column"> |
398 | 398 | <p id="give-order-address-country-wrap"> |
399 | - <strong class="order-data-address-line"><?php echo _x( 'Country:', 'Address country', 'give' ); ?></strong><br/> |
|
399 | + <strong class="order-data-address-line"><?php echo _x('Country:', 'Address country', 'give'); ?></strong><br/> |
|
400 | 400 | <?php |
401 | - echo Give()->html->select( array( |
|
401 | + echo Give()->html->select(array( |
|
402 | 402 | 'options' => give_get_country_list(), |
403 | 403 | 'name' => 'give-payment-address[0][country]', |
404 | 404 | 'selected' => $address['country'], |
405 | 405 | 'show_option_all' => false, |
406 | 406 | 'show_option_none' => false, |
407 | 407 | 'chosen' => true, |
408 | - 'placeholder' => __( 'Select a country', 'give' ) |
|
409 | - ) ); |
|
408 | + 'placeholder' => __('Select a country', 'give') |
|
409 | + )); |
|
410 | 410 | ?> |
411 | 411 | </p> |
412 | 412 | |
413 | 413 | <p id="give-order-address-state-wrap"> |
414 | - <strong class="order-data-address-line"><?php echo _x( 'State / Province:', 'State / province of address', 'give' ); ?></strong><br/> |
|
414 | + <strong class="order-data-address-line"><?php echo _x('State / Province:', 'State / province of address', 'give'); ?></strong><br/> |
|
415 | 415 | <?php |
416 | - $states = give_get_states( $address['country'] ); |
|
417 | - if ( ! empty( $states ) ) { |
|
418 | - echo Give()->html->select( array( |
|
416 | + $states = give_get_states($address['country']); |
|
417 | + if ( ! empty($states)) { |
|
418 | + echo Give()->html->select(array( |
|
419 | 419 | 'options' => $states, |
420 | 420 | 'name' => 'give-payment-address[0][state]', |
421 | 421 | 'selected' => $address['state'], |
422 | 422 | 'show_option_all' => false, |
423 | 423 | 'show_option_none' => false, |
424 | 424 | 'chosen' => true, |
425 | - 'placeholder' => __( 'Select a state', 'give' ) |
|
426 | - ) ); |
|
425 | + 'placeholder' => __('Select a state', 'give') |
|
426 | + )); |
|
427 | 427 | } else { |
428 | 428 | ?> |
429 | - <input type="text" name="give-payment-address[0][state]" value="<?php echo esc_attr( $address['state'] ); ?>" class="medium-text"/> |
|
429 | + <input type="text" name="give-payment-address[0][state]" value="<?php echo esc_attr($address['state']); ?>" class="medium-text"/> |
|
430 | 430 | <?php |
431 | 431 | } ?> |
432 | 432 | </p> |
@@ -436,39 +436,39 @@ discard block |
||
436 | 436 | </div> |
437 | 437 | <!-- /#give-order-address --> |
438 | 438 | |
439 | - <?php do_action( 'give_payment_billing_details', $payment_id ); ?> |
|
439 | + <?php do_action('give_payment_billing_details', $payment_id); ?> |
|
440 | 440 | |
441 | 441 | </div> |
442 | 442 | <!-- /.inside --> |
443 | 443 | </div> |
444 | 444 | <!-- /#give-billing-details --> |
445 | 445 | |
446 | - <?php do_action( 'give_view_order_details_billing_after', $payment_id ); ?> |
|
446 | + <?php do_action('give_view_order_details_billing_after', $payment_id); ?> |
|
447 | 447 | |
448 | 448 | <div id="give-payment-notes" class="postbox"> |
449 | - <h3 class="hndle"><span><?php _e( 'Payment Notes', 'give' ); ?></span></h3> |
|
449 | + <h3 class="hndle"><span><?php _e('Payment Notes', 'give'); ?></span></h3> |
|
450 | 450 | |
451 | 451 | <div class="inside"> |
452 | 452 | <div id="give-payment-notes-inner"> |
453 | 453 | <?php |
454 | - $notes = give_get_payment_notes( $payment_id ); |
|
455 | - if ( ! empty( $notes ) ) : |
|
454 | + $notes = give_get_payment_notes($payment_id); |
|
455 | + if ( ! empty($notes)) : |
|
456 | 456 | $no_notes_display = ' style="display:none;"'; |
457 | - foreach ( $notes as $note ) : |
|
457 | + foreach ($notes as $note) : |
|
458 | 458 | |
459 | - echo give_get_payment_note_html( $note, $payment_id ); |
|
459 | + echo give_get_payment_note_html($note, $payment_id); |
|
460 | 460 | |
461 | 461 | endforeach; |
462 | 462 | else : |
463 | 463 | $no_notes_display = ''; |
464 | 464 | endif; |
465 | - echo '<p class="give-no-payment-notes"' . $no_notes_display . '>' . __( 'No payment notes', 'give' ) . '</p>'; |
|
465 | + echo '<p class="give-no-payment-notes"'.$no_notes_display.'>'.__('No payment notes', 'give').'</p>'; |
|
466 | 466 | ?> |
467 | 467 | </div> |
468 | 468 | <textarea name="give-payment-note" id="give-payment-note" class="large-text"></textarea> |
469 | 469 | |
470 | 470 | <p class="give-clearfix"> |
471 | - <button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint( $payment_id ); ?>"><?php _e( 'Add Note', 'give' ); ?></button> |
|
471 | + <button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint($payment_id); ?>"><?php _e('Add Note', 'give'); ?></button> |
|
472 | 472 | </p> |
473 | 473 | |
474 | 474 | <div class="clear"></div> |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | </div> |
478 | 478 | <!-- /#give-payment-notes --> |
479 | 479 | |
480 | - <?php do_action( 'give_view_order_details_main_after', $payment_id ); ?> |
|
480 | + <?php do_action('give_view_order_details_main_after', $payment_id); ?> |
|
481 | 481 | </div> |
482 | 482 | <!-- /#normal-sortables --> |
483 | 483 | </div> |
@@ -488,10 +488,10 @@ discard block |
||
488 | 488 | <!-- #give-dashboard-widgets-wrap --> |
489 | 489 | </div> |
490 | 490 | <!-- /#post-stuff --> |
491 | - <?php do_action( 'give_view_order_details_form_bottom', $payment_id ); ?> |
|
492 | - <?php wp_nonce_field( 'give_update_payment_details_nonce' ); ?> |
|
493 | - <input type="hidden" name="give_payment_id" value="<?php echo esc_attr( $payment_id ); ?>"/> |
|
491 | + <?php do_action('give_view_order_details_form_bottom', $payment_id); ?> |
|
492 | + <?php wp_nonce_field('give_update_payment_details_nonce'); ?> |
|
493 | + <input type="hidden" name="give_payment_id" value="<?php echo esc_attr($payment_id); ?>"/> |
|
494 | 494 | <input type="hidden" name="give_action" value="update_payment_details"/> |
495 | 495 | </form> |
496 | - <?php do_action( 'give_view_order_details_after', $payment_id ); ?> |
|
496 | + <?php do_action('give_view_order_details_after', $payment_id); ?> |
|
497 | 497 | </div><!-- /.wrap --> |
@@ -10,11 +10,11 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | -add_filter( 'cmb2_meta_boxes', 'give_single_forms_cmb2_metaboxes' ); |
|
17 | +add_filter('cmb2_meta_boxes', 'give_single_forms_cmb2_metaboxes'); |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Define the metabox and field configurations. |
@@ -23,23 +23,23 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @return array |
25 | 25 | */ |
26 | -function give_single_forms_cmb2_metaboxes( array $meta_boxes ) { |
|
26 | +function give_single_forms_cmb2_metaboxes(array $meta_boxes) { |
|
27 | 27 | |
28 | 28 | $post_id = give_get_admin_post_id(); |
29 | - $price = give_get_form_price( $post_id ); |
|
30 | - $custom_amount_minimum = give_get_form_minimum_price( $post_id ); |
|
31 | - $goal = give_get_form_goal( $post_id ); |
|
32 | - $variable_pricing = give_has_variable_prices( $post_id ); |
|
33 | - $prices = give_get_variable_prices( $post_id ); |
|
29 | + $price = give_get_form_price($post_id); |
|
30 | + $custom_amount_minimum = give_get_form_minimum_price($post_id); |
|
31 | + $goal = give_get_form_goal($post_id); |
|
32 | + $variable_pricing = give_has_variable_prices($post_id); |
|
33 | + $prices = give_get_variable_prices($post_id); |
|
34 | 34 | |
35 | 35 | //No empty prices - min. 1.00 for new forms |
36 | - if ( empty( $price ) && is_null( $post_id ) ) { |
|
37 | - $price = esc_attr( give_format_amount( '1.00' ) ); |
|
36 | + if (empty($price) && is_null($post_id)) { |
|
37 | + $price = esc_attr(give_format_amount('1.00')); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | //Min. $1.00 for new forms |
41 | - if ( empty( $custom_amount_minimum ) ) { |
|
42 | - $custom_amount_minimum = esc_attr( give_format_amount( '1.00' ) ); |
|
41 | + if (empty($custom_amount_minimum)) { |
|
42 | + $custom_amount_minimum = esc_attr(give_format_amount('1.00')); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | // Start with an underscore to hide fields from custom fields list |
@@ -48,302 +48,302 @@ discard block |
||
48 | 48 | /** |
49 | 49 | * Repeatable Field Groups |
50 | 50 | */ |
51 | - $meta_boxes['form_field_options'] = apply_filters( 'give_forms_field_options', array( |
|
51 | + $meta_boxes['form_field_options'] = apply_filters('give_forms_field_options', array( |
|
52 | 52 | 'id' => 'form_field_options', |
53 | - 'title' => __( 'Donation Options', 'give' ), |
|
54 | - 'object_types' => array( 'give_forms' ), |
|
53 | + 'title' => __('Donation Options', 'give'), |
|
54 | + 'object_types' => array('give_forms'), |
|
55 | 55 | 'context' => 'normal', |
56 | 56 | 'priority' => 'high', //Show above Content WYSIWYG |
57 | - 'fields' => apply_filters( 'give_forms_donation_form_metabox_fields', array( |
|
57 | + 'fields' => apply_filters('give_forms_donation_form_metabox_fields', array( |
|
58 | 58 | //Donation Option |
59 | 59 | array( |
60 | - 'name' => __( 'Donation Option', 'give' ), |
|
61 | - 'description' => __( 'Would you like this form to have one set donation price or multiple levels (for example, $10, $20, $50)?', 'give' ), |
|
62 | - 'id' => $prefix . 'price_option', |
|
60 | + 'name' => __('Donation Option', 'give'), |
|
61 | + 'description' => __('Would you like this form to have one set donation price or multiple levels (for example, $10, $20, $50)?', 'give'), |
|
62 | + 'id' => $prefix.'price_option', |
|
63 | 63 | 'type' => 'radio_inline', |
64 | 64 | 'default' => 'set', |
65 | - 'options' => apply_filters( 'give_forms_price_options', array( |
|
66 | - 'set' => __( 'Set Donation', 'give' ), |
|
67 | - 'multi' => __( 'Multi-level Donation', 'give' ), |
|
68 | - ) ), |
|
65 | + 'options' => apply_filters('give_forms_price_options', array( |
|
66 | + 'set' => __('Set Donation', 'give'), |
|
67 | + 'multi' => __('Multi-level Donation', 'give'), |
|
68 | + )), |
|
69 | 69 | ), |
70 | 70 | array( |
71 | - 'name' => __( 'Set Donation', 'give' ), |
|
72 | - 'description' => __( 'This is the set donation amount for this form. If you have a "Custom Amount Minimum" set, make sure it is less than this amount.', 'give' ), |
|
73 | - 'id' => $prefix . 'set_price', |
|
71 | + 'name' => __('Set Donation', 'give'), |
|
72 | + 'description' => __('This is the set donation amount for this form. If you have a "Custom Amount Minimum" set, make sure it is less than this amount.', 'give'), |
|
73 | + 'id' => $prefix.'set_price', |
|
74 | 74 | 'type' => 'text_small', |
75 | 75 | 'row_classes' => 'give-subfield', |
76 | - 'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '', |
|
77 | - 'after_field' => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '', |
|
76 | + 'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '', |
|
77 | + 'after_field' => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '', |
|
78 | 78 | 'attributes' => array( |
79 | - 'placeholder' => give_format_amount( '1.00' ), |
|
80 | - 'value' => give_format_amount( $price ), |
|
79 | + 'placeholder' => give_format_amount('1.00'), |
|
80 | + 'value' => give_format_amount($price), |
|
81 | 81 | 'class' => 'cmb-type-text-small give-money-field', |
82 | 82 | ), |
83 | 83 | ), |
84 | 84 | //Donation levels: Header |
85 | 85 | array( |
86 | - 'id' => $prefix . 'levels_header', |
|
86 | + 'id' => $prefix.'levels_header', |
|
87 | 87 | 'type' => 'levels_repeater_header', |
88 | 88 | ), |
89 | 89 | //Donation Levels: Repeatable CMB2 Group |
90 | 90 | array( |
91 | - 'id' => $prefix . 'donation_levels', |
|
91 | + 'id' => $prefix.'donation_levels', |
|
92 | 92 | 'type' => 'group', |
93 | 93 | 'row_classes' => 'give-subfield', |
94 | 94 | 'options' => array( |
95 | - 'add_button' => __( 'Add Level', 'give' ), |
|
96 | - 'remove_button' => __( '<span class="dashicons dashicons-no"></span>', 'give' ), |
|
95 | + 'add_button' => __('Add Level', 'give'), |
|
96 | + 'remove_button' => __('<span class="dashicons dashicons-no"></span>', 'give'), |
|
97 | 97 | 'sortable' => true, // beta |
98 | 98 | ), |
99 | 99 | // Fields array works the same, except id's only need to be unique for this group. Prefix is not needed. |
100 | - 'fields' => apply_filters( 'give_donation_levels_table_row', array( |
|
100 | + 'fields' => apply_filters('give_donation_levels_table_row', array( |
|
101 | 101 | array( |
102 | - 'name' => __( 'ID', 'give' ), |
|
103 | - 'id' => $prefix . 'id', |
|
102 | + 'name' => __('ID', 'give'), |
|
103 | + 'id' => $prefix.'id', |
|
104 | 104 | 'type' => 'levels_id', |
105 | 105 | ), |
106 | 106 | array( |
107 | - 'name' => __( 'Amount', 'give' ), |
|
108 | - 'id' => $prefix . 'amount', |
|
107 | + 'name' => __('Amount', 'give'), |
|
108 | + 'id' => $prefix.'amount', |
|
109 | 109 | 'type' => 'text_small', |
110 | - 'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '', |
|
111 | - 'after_field' => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '', |
|
110 | + 'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '', |
|
111 | + 'after_field' => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '', |
|
112 | 112 | 'attributes' => array( |
113 | - 'placeholder' => give_format_amount( '1.00' ), |
|
113 | + 'placeholder' => give_format_amount('1.00'), |
|
114 | 114 | 'class' => 'cmb-type-text-small give-money-field', |
115 | 115 | ), |
116 | 116 | 'before' => 'give_format_admin_multilevel_amount', |
117 | 117 | ), |
118 | 118 | array( |
119 | - 'name' => __( 'Text', 'give' ), |
|
120 | - 'id' => $prefix . 'text', |
|
119 | + 'name' => __('Text', 'give'), |
|
120 | + 'id' => $prefix.'text', |
|
121 | 121 | 'type' => 'text', |
122 | 122 | 'attributes' => array( |
123 | - 'placeholder' => __( 'Donation Level', 'give' ), |
|
123 | + 'placeholder' => __('Donation Level', 'give'), |
|
124 | 124 | 'class' => 'give-multilevel-text-field', |
125 | 125 | ), |
126 | 126 | ), |
127 | 127 | array( |
128 | - 'name' => __( 'Default', 'give' ), |
|
129 | - 'id' => $prefix . 'default', |
|
128 | + 'name' => __('Default', 'give'), |
|
129 | + 'id' => $prefix.'default', |
|
130 | 130 | 'type' => 'give_default_radio_inline' |
131 | 131 | ), |
132 | - ) ), |
|
132 | + )), |
|
133 | 133 | ), |
134 | 134 | //Display Style |
135 | 135 | array( |
136 | - 'name' => __( 'Display Style', 'give' ), |
|
137 | - 'description' => __( 'Set how the donations levels will display on the form.', 'give' ), |
|
138 | - 'id' => $prefix . 'display_style', |
|
136 | + 'name' => __('Display Style', 'give'), |
|
137 | + 'description' => __('Set how the donations levels will display on the form.', 'give'), |
|
138 | + 'id' => $prefix.'display_style', |
|
139 | 139 | 'type' => 'radio_inline', |
140 | 140 | 'default' => 'buttons', |
141 | 141 | 'options' => array( |
142 | - 'buttons' => __( 'Buttons', 'give' ), |
|
143 | - 'radios' => __( 'Radios', 'give' ), |
|
144 | - 'dropdown' => __( 'Dropdown', 'give' ), |
|
142 | + 'buttons' => __('Buttons', 'give'), |
|
143 | + 'radios' => __('Radios', 'give'), |
|
144 | + 'dropdown' => __('Dropdown', 'give'), |
|
145 | 145 | ), |
146 | 146 | ), |
147 | 147 | //Custom Amount |
148 | 148 | array( |
149 | - 'name' => __( 'Custom Amount', 'give' ), |
|
150 | - 'description' => __( 'Do you want the user to be able to input their own donation amount?', 'give' ), |
|
151 | - 'id' => $prefix . 'custom_amount', |
|
149 | + 'name' => __('Custom Amount', 'give'), |
|
150 | + 'description' => __('Do you want the user to be able to input their own donation amount?', 'give'), |
|
151 | + 'id' => $prefix.'custom_amount', |
|
152 | 152 | 'type' => 'radio_inline', |
153 | 153 | 'default' => 'no', |
154 | 154 | 'options' => array( |
155 | - 'yes' => __( 'Yes', 'give' ), |
|
156 | - 'no' => __( 'No', 'give' ), |
|
155 | + 'yes' => __('Yes', 'give'), |
|
156 | + 'no' => __('No', 'give'), |
|
157 | 157 | ), |
158 | 158 | ), |
159 | 159 | array( |
160 | - 'name' => __( 'Custom Amount Minimum', 'give' ), |
|
161 | - 'description' => __( 'If you would like to set a minimum custom donation amount please enter it here.', 'give' ), |
|
162 | - 'id' => $prefix . 'custom_amount_minimum', |
|
160 | + 'name' => __('Custom Amount Minimum', 'give'), |
|
161 | + 'description' => __('If you would like to set a minimum custom donation amount please enter it here.', 'give'), |
|
162 | + 'id' => $prefix.'custom_amount_minimum', |
|
163 | 163 | 'type' => 'text_small', |
164 | 164 | 'row_classes' => 'give-subfield', |
165 | - 'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '', |
|
166 | - 'after_field' => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '', |
|
165 | + 'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '', |
|
166 | + 'after_field' => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '', |
|
167 | 167 | 'attributes' => array( |
168 | - 'placeholder' => give_format_amount( '1.00' ), |
|
169 | - 'value' => give_format_amount( $custom_amount_minimum ), |
|
168 | + 'placeholder' => give_format_amount('1.00'), |
|
169 | + 'value' => give_format_amount($custom_amount_minimum), |
|
170 | 170 | 'class' => 'cmb-type-text-small give-money-field', |
171 | 171 | ), |
172 | 172 | ), |
173 | 173 | array( |
174 | - 'name' => __( 'Custom Amount Text', 'give' ), |
|
175 | - 'description' => __( 'This text appears as a label below the custom amount field for set donation forms. For multi-level forms the text will appear as it\'s own level (ie button, radio, or select option).', 'give' ), |
|
176 | - 'id' => $prefix . 'custom_amount_text', |
|
174 | + 'name' => __('Custom Amount Text', 'give'), |
|
175 | + 'description' => __('This text appears as a label below the custom amount field for set donation forms. For multi-level forms the text will appear as it\'s own level (ie button, radio, or select option).', 'give'), |
|
176 | + 'id' => $prefix.'custom_amount_text', |
|
177 | 177 | 'type' => 'text', |
178 | 178 | 'row_classes' => 'give-subfield', |
179 | 179 | 'attributes' => array( |
180 | 180 | 'rows' => 3, |
181 | - 'placeholder' => __( 'Give a Custom Amount', 'give' ), |
|
181 | + 'placeholder' => __('Give a Custom Amount', 'give'), |
|
182 | 182 | ), |
183 | 183 | ), |
184 | 184 | //Goals |
185 | 185 | array( |
186 | - 'name' => __( 'Goal', 'give' ), |
|
187 | - 'description' => __( 'Do you want to set a donation goal for this form?', 'give' ), |
|
188 | - 'id' => $prefix . 'goal_option', |
|
186 | + 'name' => __('Goal', 'give'), |
|
187 | + 'description' => __('Do you want to set a donation goal for this form?', 'give'), |
|
188 | + 'id' => $prefix.'goal_option', |
|
189 | 189 | 'type' => 'radio_inline', |
190 | 190 | 'default' => 'no', |
191 | 191 | 'options' => array( |
192 | - 'yes' => __( 'Yes', 'give' ), |
|
193 | - 'no' => __( 'No', 'give' ), |
|
192 | + 'yes' => __('Yes', 'give'), |
|
193 | + 'no' => __('No', 'give'), |
|
194 | 194 | ), |
195 | 195 | ), |
196 | 196 | array( |
197 | - 'name' => __( 'Goal Amount', 'give' ), |
|
198 | - 'description' => __( 'This is the monetary goal amount you want to reach for this donation form.', 'give' ), |
|
199 | - 'id' => $prefix . 'set_goal', |
|
197 | + 'name' => __('Goal Amount', 'give'), |
|
198 | + 'description' => __('This is the monetary goal amount you want to reach for this donation form.', 'give'), |
|
199 | + 'id' => $prefix.'set_goal', |
|
200 | 200 | 'type' => 'text_small', |
201 | 201 | 'row_classes' => 'give-subfield', |
202 | - 'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '', |
|
203 | - 'after_field' => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '', |
|
202 | + 'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '', |
|
203 | + 'after_field' => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '', |
|
204 | 204 | 'attributes' => array( |
205 | - 'placeholder' => give_format_amount( '0.00' ), |
|
206 | - 'value' => isset( $goal ) ? esc_attr( give_format_amount( $goal ) ) : '', |
|
205 | + 'placeholder' => give_format_amount('0.00'), |
|
206 | + 'value' => isset($goal) ? esc_attr(give_format_amount($goal)) : '', |
|
207 | 207 | 'class' => 'cmb-type-text-small give-money-field', |
208 | 208 | ), |
209 | 209 | ), |
210 | 210 | |
211 | 211 | array( |
212 | - 'name' => __( 'Goal Format', 'give' ), |
|
213 | - 'description' => __( 'Would you like to display the total amount raised based on your monetary goal or a percentage? For instance, "$500 of $1,000 raised" or "50% funded".', 'give' ), |
|
214 | - 'id' => $prefix . 'goal_format', |
|
212 | + 'name' => __('Goal Format', 'give'), |
|
213 | + 'description' => __('Would you like to display the total amount raised based on your monetary goal or a percentage? For instance, "$500 of $1,000 raised" or "50% funded".', 'give'), |
|
214 | + 'id' => $prefix.'goal_format', |
|
215 | 215 | 'type' => 'radio_inline', |
216 | 216 | 'default' => 'amount', |
217 | 217 | 'row_classes' => 'give-subfield', |
218 | 218 | 'options' => array( |
219 | - 'amount' => __( 'Amount ', 'give' ), |
|
220 | - 'percentage' => __( 'Percentage', 'give' ), |
|
219 | + 'amount' => __('Amount ', 'give'), |
|
220 | + 'percentage' => __('Percentage', 'give'), |
|
221 | 221 | ), |
222 | 222 | ), |
223 | 223 | array( |
224 | - 'name' => __( 'Goal Progress Bar Color', 'give' ), |
|
225 | - 'id' => $prefix . 'goal_color', |
|
224 | + 'name' => __('Goal Progress Bar Color', 'give'), |
|
225 | + 'id' => $prefix.'goal_color', |
|
226 | 226 | 'type' => 'colorpicker', |
227 | 227 | 'row_classes' => 'give-subfield', |
228 | 228 | 'default' => '#2bc253', |
229 | 229 | ), |
230 | 230 | ) |
231 | 231 | ) |
232 | - ) ); |
|
232 | + )); |
|
233 | 233 | |
234 | 234 | |
235 | 235 | /** |
236 | 236 | * Content Field |
237 | 237 | */ |
238 | - $meta_boxes['form_content_options'] = apply_filters( 'give_forms_content_options', array( |
|
238 | + $meta_boxes['form_content_options'] = apply_filters('give_forms_content_options', array( |
|
239 | 239 | 'id' => 'form_content_options', |
240 | - 'title' => __( 'Form Content', 'give' ), |
|
241 | - 'object_types' => array( 'give_forms' ), |
|
240 | + 'title' => __('Form Content', 'give'), |
|
241 | + 'object_types' => array('give_forms'), |
|
242 | 242 | 'context' => 'normal', |
243 | 243 | 'priority' => 'high', //Show above Content WYSIWYG |
244 | - 'fields' => apply_filters( 'give_forms_content_options_metabox_fields', array( |
|
244 | + 'fields' => apply_filters('give_forms_content_options_metabox_fields', array( |
|
245 | 245 | //Donation Option |
246 | 246 | array( |
247 | - 'name' => __( 'Display Content', 'give' ), |
|
248 | - 'description' => __( 'Do you want to display content? If you select "Yes" a WYSIWYG editor will appear which you will be able to enter content to display above or below the form.', 'give' ), |
|
249 | - 'id' => $prefix . 'content_option', |
|
247 | + 'name' => __('Display Content', 'give'), |
|
248 | + 'description' => __('Do you want to display content? If you select "Yes" a WYSIWYG editor will appear which you will be able to enter content to display above or below the form.', 'give'), |
|
249 | + 'id' => $prefix.'content_option', |
|
250 | 250 | 'type' => 'select', |
251 | - 'options' => apply_filters( 'give_forms_content_options_select', array( |
|
252 | - 'none' => __( 'No content', 'give' ), |
|
253 | - 'give_pre_form' => __( 'Yes, display content ABOVE the form fields', 'give' ), |
|
254 | - 'give_post_form' => __( 'Yes, display content BELOW the form fields', 'give' ), |
|
251 | + 'options' => apply_filters('give_forms_content_options_select', array( |
|
252 | + 'none' => __('No content', 'give'), |
|
253 | + 'give_pre_form' => __('Yes, display content ABOVE the form fields', 'give'), |
|
254 | + 'give_post_form' => __('Yes, display content BELOW the form fields', 'give'), |
|
255 | 255 | ) |
256 | 256 | ), |
257 | 257 | 'default' => 'none', |
258 | 258 | ), |
259 | 259 | array( |
260 | - 'name' => __( 'Content', 'give' ), |
|
261 | - 'description' => __( 'This content will display on the single give form page.', 'give' ), |
|
262 | - 'id' => $prefix . 'form_content', |
|
260 | + 'name' => __('Content', 'give'), |
|
261 | + 'description' => __('This content will display on the single give form page.', 'give'), |
|
262 | + 'id' => $prefix.'form_content', |
|
263 | 263 | 'row_classes' => 'give-subfield', |
264 | 264 | 'type' => 'wysiwyg' |
265 | 265 | ), |
266 | 266 | ) |
267 | 267 | ) |
268 | - ) ); |
|
268 | + )); |
|
269 | 269 | |
270 | 270 | |
271 | 271 | /** |
272 | 272 | * Display Options |
273 | 273 | */ |
274 | - $meta_boxes['form_display_options'] = apply_filters( 'give_form_display_options', array( |
|
274 | + $meta_boxes['form_display_options'] = apply_filters('give_form_display_options', array( |
|
275 | 275 | 'id' => 'form_display_options', |
276 | - 'title' => __( 'Form Display Options', 'give' ), |
|
277 | - 'object_types' => array( 'give_forms' ), |
|
276 | + 'title' => __('Form Display Options', 'give'), |
|
277 | + 'object_types' => array('give_forms'), |
|
278 | 278 | 'context' => 'normal', // 'normal', 'advanced', or 'side' |
279 | 279 | 'priority' => 'high', //Show above Content WYSIWYG |
280 | 280 | 'show_names' => true, // Show field names on the left |
281 | - 'fields' => apply_filters( 'give_forms_display_options_metabox_fields', array( |
|
281 | + 'fields' => apply_filters('give_forms_display_options_metabox_fields', array( |
|
282 | 282 | array( |
283 | - 'name' => __( 'Payment Fields', 'give' ), |
|
284 | - 'desc' => __( 'How would you like to display payment information for this form? The "Show on Page" option will display the entire form when the page loads. "Reveal Upon Click" places a button below the donation fields and upon click slides into view the rest of the fields. "Modal Window Upon Click" is a similar option, rather than sliding into view the fields they will open in a shadow box or "modal" window.', 'give' ), |
|
285 | - 'id' => $prefix . 'payment_display', |
|
283 | + 'name' => __('Payment Fields', 'give'), |
|
284 | + 'desc' => __('How would you like to display payment information for this form? The "Show on Page" option will display the entire form when the page loads. "Reveal Upon Click" places a button below the donation fields and upon click slides into view the rest of the fields. "Modal Window Upon Click" is a similar option, rather than sliding into view the fields they will open in a shadow box or "modal" window.', 'give'), |
|
285 | + 'id' => $prefix.'payment_display', |
|
286 | 286 | 'type' => 'select', |
287 | 287 | 'options' => array( |
288 | - 'onpage' => __( 'Show on Page', 'give' ), |
|
289 | - 'reveal' => __( 'Reveal Upon Click', 'give' ), |
|
290 | - 'modal' => __( 'Modal Window Upon Click', 'give' ), |
|
288 | + 'onpage' => __('Show on Page', 'give'), |
|
289 | + 'reveal' => __('Reveal Upon Click', 'give'), |
|
290 | + 'modal' => __('Modal Window Upon Click', 'give'), |
|
291 | 291 | ), |
292 | 292 | 'default' => 'onpage', |
293 | 293 | ), |
294 | 294 | array( |
295 | - 'id' => $prefix . 'reveal_label', |
|
296 | - 'name' => __( 'Reveal / Modal Open Text', 'give' ), |
|
297 | - 'desc' => __( 'The button label for completing the donation.', 'give' ), |
|
295 | + 'id' => $prefix.'reveal_label', |
|
296 | + 'name' => __('Reveal / Modal Open Text', 'give'), |
|
297 | + 'desc' => __('The button label for completing the donation.', 'give'), |
|
298 | 298 | 'type' => 'text_small', |
299 | 299 | 'row_classes' => 'give-subfield', |
300 | 300 | 'attributes' => array( |
301 | - 'placeholder' => __( 'Donate Now', 'give' ), |
|
301 | + 'placeholder' => __('Donate Now', 'give'), |
|
302 | 302 | ), |
303 | 303 | ), |
304 | 304 | array( |
305 | - 'id' => $prefix . 'checkout_label', |
|
306 | - 'name' => __( 'Complete Donation Text', 'give' ), |
|
307 | - 'desc' => __( 'The button label for completing a donation.', 'give' ), |
|
305 | + 'id' => $prefix.'checkout_label', |
|
306 | + 'name' => __('Complete Donation Text', 'give'), |
|
307 | + 'desc' => __('The button label for completing a donation.', 'give'), |
|
308 | 308 | 'type' => 'text_small', |
309 | 309 | 'attributes' => array( |
310 | - 'placeholder' => __( 'Donate Now', 'give' ), |
|
310 | + 'placeholder' => __('Donate Now', 'give'), |
|
311 | 311 | ), |
312 | 312 | ), |
313 | 313 | array( |
314 | - 'name' => __( 'Default Gateway', 'give' ), |
|
315 | - 'desc' => __( 'By default, the gateway for this form will inherit the global default gateway (set under Give > Settings > Payment Gateways). This option allows you to customize the default gateway for this form only.', 'give' ), |
|
316 | - 'id' => $prefix . 'default_gateway', |
|
314 | + 'name' => __('Default Gateway', 'give'), |
|
315 | + 'desc' => __('By default, the gateway for this form will inherit the global default gateway (set under Give > Settings > Payment Gateways). This option allows you to customize the default gateway for this form only.', 'give'), |
|
316 | + 'id' => $prefix.'default_gateway', |
|
317 | 317 | 'type' => 'default_gateway' |
318 | 318 | ), |
319 | 319 | array( |
320 | - 'name' => __( 'Disable Guest Donations', 'give' ), |
|
321 | - 'desc' => __( 'Do you want to require users be logged-in to make donations?', 'give' ), |
|
322 | - 'id' => $prefix . 'logged_in_only', |
|
320 | + 'name' => __('Disable Guest Donations', 'give'), |
|
321 | + 'desc' => __('Do you want to require users be logged-in to make donations?', 'give'), |
|
322 | + 'id' => $prefix.'logged_in_only', |
|
323 | 323 | 'type' => 'checkbox' |
324 | 324 | ), |
325 | 325 | array( |
326 | - 'name' => __( 'Register / Login Form', 'give' ), |
|
327 | - 'desc' => __( 'Display the registration and login forms in the payment section for non-logged-in users.', 'give' ), |
|
328 | - 'id' => $prefix . 'show_register_form', |
|
326 | + 'name' => __('Register / Login Form', 'give'), |
|
327 | + 'desc' => __('Display the registration and login forms in the payment section for non-logged-in users.', 'give'), |
|
328 | + 'id' => $prefix.'show_register_form', |
|
329 | 329 | 'type' => 'select', |
330 | 330 | 'options' => array( |
331 | - 'both' => __( 'Registration and Login Forms', 'give' ), |
|
332 | - 'registration' => __( 'Registration Form Only', 'give' ), |
|
333 | - 'login' => __( 'Login Form Only', 'give' ), |
|
334 | - 'none' => __( 'None', 'give' ), |
|
331 | + 'both' => __('Registration and Login Forms', 'give'), |
|
332 | + 'registration' => __('Registration Form Only', 'give'), |
|
333 | + 'login' => __('Login Form Only', 'give'), |
|
334 | + 'none' => __('None', 'give'), |
|
335 | 335 | ), |
336 | 336 | 'default' => 'none', |
337 | 337 | ), |
338 | 338 | array( |
339 | - 'name' => __( 'Floating Labels', 'give' ), |
|
340 | - 'desc' => sprintf( __( 'Select the <a href="%s" target="_blank">floating labels</a> setting for this Give form.<br>Be aware that if you have the "Disable CSS" option enabled, you will need to style the floating labels yourself.', 'give' ), esc_url( "http://bradfrost.com/blog/post/float-label-pattern/" ) ), |
|
341 | - 'id' => $prefix . 'form_floating_labels', |
|
339 | + 'name' => __('Floating Labels', 'give'), |
|
340 | + 'desc' => sprintf(__('Select the <a href="%s" target="_blank">floating labels</a> setting for this Give form.<br>Be aware that if you have the "Disable CSS" option enabled, you will need to style the floating labels yourself.', 'give'), esc_url("http://bradfrost.com/blog/post/float-label-pattern/")), |
|
341 | + 'id' => $prefix.'form_floating_labels', |
|
342 | 342 | 'type' => 'select', |
343 | 343 | 'options' => array( |
344 | - '' => __( 'Use the global setting', 'give' ), |
|
345 | - 'enabled' => __( 'Enabled', 'give' ), |
|
346 | - 'disabled' => __( 'Disabled', 'give' ), |
|
344 | + '' => __('Use the global setting', 'give'), |
|
345 | + 'enabled' => __('Enabled', 'give'), |
|
346 | + 'disabled' => __('Disabled', 'give'), |
|
347 | 347 | ), |
348 | 348 | 'default' => 'none', |
349 | 349 | ) |
@@ -355,47 +355,47 @@ discard block |
||
355 | 355 | /** |
356 | 356 | * Terms & Conditions |
357 | 357 | */ |
358 | - $meta_boxes['form_terms_options'] = apply_filters( 'give_forms_terms_options', array( |
|
358 | + $meta_boxes['form_terms_options'] = apply_filters('give_forms_terms_options', array( |
|
359 | 359 | 'id' => 'form_terms_options', |
360 | - 'title' => __( 'Terms and Conditions', 'give' ), |
|
361 | - 'object_types' => array( 'give_forms' ), |
|
360 | + 'title' => __('Terms and Conditions', 'give'), |
|
361 | + 'object_types' => array('give_forms'), |
|
362 | 362 | 'context' => 'normal', |
363 | 363 | 'priority' => 'high', //Show above Content WYSIWYG |
364 | - 'fields' => apply_filters( 'give_forms_terms_options_metabox_fields', array( |
|
364 | + 'fields' => apply_filters('give_forms_terms_options_metabox_fields', array( |
|
365 | 365 | //Donation Option |
366 | 366 | array( |
367 | - 'name' => __( 'Terms and Conditions', 'give' ), |
|
368 | - 'description' => __( 'Do you want to require the user to agree to terms and conditions prior to being able to complete their donation?', 'give' ), |
|
369 | - 'id' => $prefix . 'terms_option', |
|
367 | + 'name' => __('Terms and Conditions', 'give'), |
|
368 | + 'description' => __('Do you want to require the user to agree to terms and conditions prior to being able to complete their donation?', 'give'), |
|
369 | + 'id' => $prefix.'terms_option', |
|
370 | 370 | 'type' => 'select', |
371 | - 'options' => apply_filters( 'give_forms_content_options_select', array( |
|
372 | - 'none' => __( 'No', 'give' ), |
|
373 | - 'yes' => __( 'Yes', 'give' ), |
|
371 | + 'options' => apply_filters('give_forms_content_options_select', array( |
|
372 | + 'none' => __('No', 'give'), |
|
373 | + 'yes' => __('Yes', 'give'), |
|
374 | 374 | ) |
375 | 375 | ), |
376 | 376 | 'default' => 'none', |
377 | 377 | ), |
378 | 378 | array( |
379 | - 'id' => $prefix . 'agree_label', |
|
380 | - 'name' => __( 'Agree to Terms Label', 'give' ), |
|
381 | - 'desc' => __( 'The label shown next to the agree to terms check box. Add your own to customize or leave blank to use the default text placeholder.', 'give' ), |
|
379 | + 'id' => $prefix.'agree_label', |
|
380 | + 'name' => __('Agree to Terms Label', 'give'), |
|
381 | + 'desc' => __('The label shown next to the agree to terms check box. Add your own to customize or leave blank to use the default text placeholder.', 'give'), |
|
382 | 382 | 'type' => 'text', |
383 | 383 | 'row_classes' => 'give-subfield', |
384 | 384 | 'size' => 'regular', |
385 | 385 | 'attributes' => array( |
386 | - 'placeholder' => __( 'Agree to Terms?', 'give' ), |
|
386 | + 'placeholder' => __('Agree to Terms?', 'give'), |
|
387 | 387 | ), |
388 | 388 | ), |
389 | 389 | array( |
390 | - 'id' => $prefix . 'agree_text', |
|
390 | + 'id' => $prefix.'agree_text', |
|
391 | 391 | 'row_classes' => 'give-subfield', |
392 | - 'name' => __( 'Agreement Text', 'give' ), |
|
393 | - 'desc' => __( 'This is the actual text which the user will have to agree to in order to make a donation.', 'give' ), |
|
392 | + 'name' => __('Agreement Text', 'give'), |
|
393 | + 'desc' => __('This is the actual text which the user will have to agree to in order to make a donation.', 'give'), |
|
394 | 394 | 'type' => 'wysiwyg' |
395 | 395 | ), |
396 | 396 | ) |
397 | 397 | ) |
398 | - ) ); |
|
398 | + )); |
|
399 | 399 | |
400 | 400 | return $meta_boxes; |
401 | 401 | |
@@ -409,18 +409,18 @@ discard block |
||
409 | 409 | |
410 | 410 | <div class="table-container"> |
411 | 411 | <div class="table-row"> |
412 | - <div class="table-cell col-amount"><?php _e( 'Amount', 'give' ); ?></div> |
|
413 | - <div class="table-cell col-text"><?php _e( 'Text', 'give' ); ?></div> |
|
414 | - <div class="table-cell col-default"><?php _e( 'Default', 'give' ); ?></div> |
|
415 | - <?php do_action( 'give_donation_levels_table_head' ); ?> |
|
416 | - <div class="table-cell col-sort"><?php _e( 'Sort', 'give' ); ?></div> |
|
412 | + <div class="table-cell col-amount"><?php _e('Amount', 'give'); ?></div> |
|
413 | + <div class="table-cell col-text"><?php _e('Text', 'give'); ?></div> |
|
414 | + <div class="table-cell col-default"><?php _e('Default', 'give'); ?></div> |
|
415 | + <?php do_action('give_donation_levels_table_head'); ?> |
|
416 | + <div class="table-cell col-sort"><?php _e('Sort', 'give'); ?></div> |
|
417 | 417 | |
418 | 418 | </div> |
419 | 419 | </div> |
420 | 420 | |
421 | 421 | <?php |
422 | 422 | } |
423 | -add_action( 'cmb2_render_levels_repeater_header', 'give_cmb_render_levels_repeater_header', 10 ); |
|
423 | +add_action('cmb2_render_levels_repeater_header', 'give_cmb_render_levels_repeater_header', 10); |
|
424 | 424 | |
425 | 425 | |
426 | 426 | /** |
@@ -437,24 +437,24 @@ discard block |
||
437 | 437 | * @param $object_type |
438 | 438 | * @param $field_type_object |
439 | 439 | */ |
440 | -function give_cmb_render_levels_id( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) { |
|
440 | +function give_cmb_render_levels_id($field_object, $escaped_value, $object_id, $object_type, $field_type_object) { |
|
441 | 441 | |
442 | - $escaped_value = ( isset( $escaped_value['level_id'] ) ? $escaped_value['level_id'] : '' ); |
|
442 | + $escaped_value = (isset($escaped_value['level_id']) ? $escaped_value['level_id'] : ''); |
|
443 | 443 | |
444 | 444 | $field_options_array = array( |
445 | 445 | 'class' => 'give-hidden give-level-id-input', |
446 | - 'name' => $field_type_object->_name( '[level_id]' ), |
|
447 | - 'id' => $field_type_object->_id( '_level_id' ), |
|
446 | + 'name' => $field_type_object->_name('[level_id]'), |
|
447 | + 'id' => $field_type_object->_id('_level_id'), |
|
448 | 448 | 'value' => $escaped_value, |
449 | 449 | 'type' => 'number', |
450 | 450 | 'desc' => '', |
451 | 451 | ); |
452 | 452 | |
453 | - echo '<p class="give-level-id">' . $escaped_value . '</p>'; |
|
454 | - echo $field_type_object->input( $field_options_array ); |
|
453 | + echo '<p class="give-level-id">'.$escaped_value.'</p>'; |
|
454 | + echo $field_type_object->input($field_options_array); |
|
455 | 455 | |
456 | 456 | } |
457 | -add_action( 'cmb2_render_levels_id', 'give_cmb_render_levels_id', 10, 5 ); |
|
457 | +add_action('cmb2_render_levels_id', 'give_cmb_render_levels_id', 10, 5); |
|
458 | 458 | |
459 | 459 | |
460 | 460 | /** |
@@ -466,13 +466,13 @@ discard block |
||
466 | 466 | * @param $object_type |
467 | 467 | * @param $field_type_object |
468 | 468 | */ |
469 | -function give_cmb_give_default_radio_inline( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) { |
|
470 | - echo '<input type="radio" class="cmb2-option donation-level-radio" name="' . $field_object->args['_name'] . '" id="' . $field_object->args['id'] . '" value="default" ' . checked( 'default', $escaped_value, false ) . '>'; |
|
471 | - echo '<label for="' . $field_object->args['id'] . '">Default</label>'; |
|
469 | +function give_cmb_give_default_radio_inline($field_object, $escaped_value, $object_id, $object_type, $field_type_object) { |
|
470 | + echo '<input type="radio" class="cmb2-option donation-level-radio" name="'.$field_object->args['_name'].'" id="'.$field_object->args['id'].'" value="default" '.checked('default', $escaped_value, false).'>'; |
|
471 | + echo '<label for="'.$field_object->args['id'].'">Default</label>'; |
|
472 | 472 | |
473 | 473 | } |
474 | 474 | |
475 | -add_action( 'cmb2_render_give_default_radio_inline', 'give_cmb_give_default_radio_inline', 10, 5 ); |
|
475 | +add_action('cmb2_render_give_default_radio_inline', 'give_cmb_give_default_radio_inline', 10, 5); |
|
476 | 476 | |
477 | 477 | |
478 | 478 | /** |
@@ -482,20 +482,20 @@ discard block |
||
482 | 482 | */ |
483 | 483 | function give_add_shortcode_to_publish_metabox() { |
484 | 484 | |
485 | - if ( 'give_forms' !== get_post_type() ) { |
|
485 | + if ('give_forms' !== get_post_type()) { |
|
486 | 486 | return false; |
487 | 487 | } |
488 | 488 | |
489 | 489 | global $post; |
490 | 490 | |
491 | 491 | //Only enqueue scripts for CPT on post type screen |
492 | - if ( 'give_forms' === $post->post_type ) { |
|
492 | + if ('give_forms' === $post->post_type) { |
|
493 | 493 | //Shortcode column with select all input |
494 | - $shortcode = htmlentities( '[give_form id="' . $post->ID . '"]' ); |
|
495 | - echo '<div class="shortcode-wrap box-sizing"><label>' . __( 'Give Form Shortcode:', 'give' ) . '</label><input onClick="this.setSelectionRange(0, this.value.length)" type="text" class="shortcode-input" readonly value="' . $shortcode . '"></div>'; |
|
494 | + $shortcode = htmlentities('[give_form id="'.$post->ID.'"]'); |
|
495 | + echo '<div class="shortcode-wrap box-sizing"><label>'.__('Give Form Shortcode:', 'give').'</label><input onClick="this.setSelectionRange(0, this.value.length)" type="text" class="shortcode-input" readonly value="'.$shortcode.'"></div>'; |
|
496 | 496 | |
497 | 497 | } |
498 | 498 | |
499 | 499 | } |
500 | 500 | |
501 | -add_action( 'post_submitbox_misc_actions', 'give_add_shortcode_to_publish_metabox' ); |
|
501 | +add_action('post_submitbox_misc_actions', 'give_add_shortcode_to_publish_metabox'); |