@@ -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 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @return string $output Give forms dropdown |
35 | 35 | */ |
36 | - public function forms_dropdown( $args = array() ) { |
|
36 | + public function forms_dropdown($args = array()) { |
|
37 | 37 | |
38 | 38 | $defaults = array( |
39 | 39 | 'name' => 'forms', |
@@ -44,47 +44,47 @@ discard block |
||
44 | 44 | 'chosen' => false, |
45 | 45 | 'number' => 30, |
46 | 46 | /* translators: %s: form singular label */ |
47 | - 'placeholder' => sprintf( esc_attr__( 'Select a %s', 'give' ), give_get_forms_label_singular() ) |
|
47 | + 'placeholder' => sprintf(esc_attr__('Select a %s', 'give'), give_get_forms_label_singular()) |
|
48 | 48 | ); |
49 | 49 | |
50 | - $args = wp_parse_args( $args, $defaults ); |
|
50 | + $args = wp_parse_args($args, $defaults); |
|
51 | 51 | |
52 | - $forms = get_posts( array( |
|
52 | + $forms = get_posts(array( |
|
53 | 53 | 'post_type' => 'give_forms', |
54 | 54 | 'orderby' => 'title', |
55 | 55 | 'order' => 'ASC', |
56 | 56 | 'posts_per_page' => $args['number'] |
57 | - ) ); |
|
57 | + )); |
|
58 | 58 | |
59 | 59 | $options = array(); |
60 | 60 | |
61 | - if ( $forms ) { |
|
61 | + if ($forms) { |
|
62 | 62 | $options[0] = sprintf( |
63 | 63 | /* translators: %s: form singular label */ |
64 | - esc_html__( 'Select a %s', 'give' ), |
|
64 | + esc_html__('Select a %s', 'give'), |
|
65 | 65 | give_get_forms_label_singular() |
66 | 66 | ); |
67 | - foreach ( $forms as $form ) { |
|
68 | - $options[ absint( $form->ID ) ] = esc_html( $form->post_title ); |
|
67 | + foreach ($forms as $form) { |
|
68 | + $options[absint($form->ID)] = esc_html($form->post_title); |
|
69 | 69 | } |
70 | 70 | } else { |
71 | - $options[0] = esc_html__( 'No Give Forms Found', 'give' ); |
|
71 | + $options[0] = esc_html__('No Give Forms Found', 'give'); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | // This ensures that any selected forms are included in the drop down |
75 | - if ( is_array( $args['selected'] ) ) { |
|
76 | - foreach ( $args['selected'] as $item ) { |
|
77 | - if ( ! in_array( $item, $options ) ) { |
|
78 | - $options[ $item ] = get_the_title( $item ); |
|
75 | + if (is_array($args['selected'])) { |
|
76 | + foreach ($args['selected'] as $item) { |
|
77 | + if ( ! in_array($item, $options)) { |
|
78 | + $options[$item] = get_the_title($item); |
|
79 | 79 | } |
80 | 80 | } |
81 | - } elseif ( is_numeric( $args['selected'] ) && $args['selected'] !== 0 ) { |
|
82 | - if ( ! in_array( $args['selected'], $options ) ) { |
|
83 | - $options[ $args['selected'] ] = get_the_title( $args['selected'] ); |
|
81 | + } elseif (is_numeric($args['selected']) && $args['selected'] !== 0) { |
|
82 | + if ( ! in_array($args['selected'], $options)) { |
|
83 | + $options[$args['selected']] = get_the_title($args['selected']); |
|
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
87 | - $output = $this->select( array( |
|
87 | + $output = $this->select(array( |
|
88 | 88 | 'name' => $args['name'], |
89 | 89 | 'selected' => $args['selected'], |
90 | 90 | 'id' => $args['id'], |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | 'placeholder' => $args['placeholder'], |
96 | 96 | 'show_option_all' => false, |
97 | 97 | 'show_option_none' => false |
98 | - ) ); |
|
98 | + )); |
|
99 | 99 | |
100 | 100 | return $output; |
101 | 101 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | * |
111 | 111 | * @return string $output Donor dropdown |
112 | 112 | */ |
113 | - public function donor_dropdown( $args = array() ) { |
|
113 | + public function donor_dropdown($args = array()) { |
|
114 | 114 | |
115 | 115 | $defaults = array( |
116 | 116 | 'name' => 'customers', |
@@ -119,38 +119,38 @@ discard block |
||
119 | 119 | 'multiple' => false, |
120 | 120 | 'selected' => 0, |
121 | 121 | 'chosen' => true, |
122 | - 'placeholder' => esc_attr__( 'Select a Donor', 'give' ), |
|
122 | + 'placeholder' => esc_attr__('Select a Donor', 'give'), |
|
123 | 123 | 'number' => 30 |
124 | 124 | ); |
125 | 125 | |
126 | - $args = wp_parse_args( $args, $defaults ); |
|
126 | + $args = wp_parse_args($args, $defaults); |
|
127 | 127 | |
128 | - $customers = Give()->customers->get_customers( array( |
|
128 | + $customers = Give()->customers->get_customers(array( |
|
129 | 129 | 'number' => $args['number'] |
130 | - ) ); |
|
130 | + )); |
|
131 | 131 | |
132 | 132 | $options = array(); |
133 | 133 | |
134 | - if ( $customers ) { |
|
135 | - $options[0] = esc_html__( 'No donor attached', 'give' ); |
|
136 | - foreach ( $customers as $customer ) { |
|
137 | - $options[ absint( $customer->id ) ] = esc_html( $customer->name . ' (' . $customer->email . ')' ); |
|
134 | + if ($customers) { |
|
135 | + $options[0] = esc_html__('No donor attached', 'give'); |
|
136 | + foreach ($customers as $customer) { |
|
137 | + $options[absint($customer->id)] = esc_html($customer->name.' ('.$customer->email.')'); |
|
138 | 138 | } |
139 | 139 | } else { |
140 | - $options[0] = esc_html__( 'No donors found', 'give' ); |
|
140 | + $options[0] = esc_html__('No donors found', 'give'); |
|
141 | 141 | } |
142 | 142 | |
143 | - if ( ! empty( $args['selected'] ) ) { |
|
143 | + if ( ! empty($args['selected'])) { |
|
144 | 144 | |
145 | 145 | // If a selected customer has been specified, we need to ensure it's in the initial list of customers displayed |
146 | 146 | |
147 | - if ( ! array_key_exists( $args['selected'], $options ) ) { |
|
147 | + if ( ! array_key_exists($args['selected'], $options)) { |
|
148 | 148 | |
149 | - $customer = new Give_Customer( $args['selected'] ); |
|
149 | + $customer = new Give_Customer($args['selected']); |
|
150 | 150 | |
151 | - if ( $customer ) { |
|
151 | + if ($customer) { |
|
152 | 152 | |
153 | - $options[ absint( $args['selected'] ) ] = esc_html( $customer->name . ' (' . $customer->email . ')' ); |
|
153 | + $options[absint($args['selected'])] = esc_html($customer->name.' ('.$customer->email.')'); |
|
154 | 154 | |
155 | 155 | } |
156 | 156 | |
@@ -158,17 +158,17 @@ discard block |
||
158 | 158 | |
159 | 159 | } |
160 | 160 | |
161 | - $output = $this->select( array( |
|
161 | + $output = $this->select(array( |
|
162 | 162 | 'name' => $args['name'], |
163 | 163 | 'selected' => $args['selected'], |
164 | 164 | 'id' => $args['id'], |
165 | - 'class' => $args['class'] . ' give-customer-select', |
|
165 | + 'class' => $args['class'].' give-customer-select', |
|
166 | 166 | 'options' => $options, |
167 | 167 | 'multiple' => $args['multiple'], |
168 | 168 | 'chosen' => $args['chosen'], |
169 | 169 | 'show_option_all' => false, |
170 | 170 | 'show_option_none' => false |
171 | - ) ); |
|
171 | + )); |
|
172 | 172 | |
173 | 173 | return $output; |
174 | 174 | } |
@@ -185,21 +185,21 @@ discard block |
||
185 | 185 | * |
186 | 186 | * @return string $output Category dropdown |
187 | 187 | */ |
188 | - public function category_dropdown( $name = 'give_forms_categories', $selected = 0 ) { |
|
189 | - $categories = get_terms( 'give_forms_category', apply_filters( 'give_forms_category_dropdown', array() ) ); |
|
188 | + public function category_dropdown($name = 'give_forms_categories', $selected = 0) { |
|
189 | + $categories = get_terms('give_forms_category', apply_filters('give_forms_category_dropdown', array())); |
|
190 | 190 | $options = array(); |
191 | 191 | |
192 | - foreach ( $categories as $category ) { |
|
193 | - $options[ absint( $category->term_id ) ] = esc_html( $category->name ); |
|
192 | + foreach ($categories as $category) { |
|
193 | + $options[absint($category->term_id)] = esc_html($category->name); |
|
194 | 194 | } |
195 | 195 | |
196 | - $output = $this->select( array( |
|
196 | + $output = $this->select(array( |
|
197 | 197 | 'name' => $name, |
198 | 198 | 'selected' => $selected, |
199 | 199 | 'options' => $options, |
200 | - 'show_option_all' => esc_html__( 'All Categories', 'give' ), |
|
200 | + 'show_option_all' => esc_html__('All Categories', 'give'), |
|
201 | 201 | 'show_option_none' => false |
202 | - ) ); |
|
202 | + )); |
|
203 | 203 | |
204 | 204 | return $output; |
205 | 205 | } |
@@ -217,25 +217,25 @@ discard block |
||
217 | 217 | * |
218 | 218 | * @return string $output Year dropdown |
219 | 219 | */ |
220 | - public function year_dropdown( $name = 'year', $selected = 0, $years_before = 5, $years_after = 0 ) { |
|
221 | - $current = date( 'Y' ); |
|
222 | - $start_year = $current - absint( $years_before ); |
|
223 | - $end_year = $current + absint( $years_after ); |
|
224 | - $selected = empty( $selected ) ? date( 'Y' ) : $selected; |
|
220 | + public function year_dropdown($name = 'year', $selected = 0, $years_before = 5, $years_after = 0) { |
|
221 | + $current = date('Y'); |
|
222 | + $start_year = $current - absint($years_before); |
|
223 | + $end_year = $current + absint($years_after); |
|
224 | + $selected = empty($selected) ? date('Y') : $selected; |
|
225 | 225 | $options = array(); |
226 | 226 | |
227 | - while ( $start_year <= $end_year ) { |
|
228 | - $options[ absint( $start_year ) ] = $start_year; |
|
229 | - $start_year ++; |
|
227 | + while ($start_year <= $end_year) { |
|
228 | + $options[absint($start_year)] = $start_year; |
|
229 | + $start_year++; |
|
230 | 230 | } |
231 | 231 | |
232 | - $output = $this->select( array( |
|
232 | + $output = $this->select(array( |
|
233 | 233 | 'name' => $name, |
234 | 234 | 'selected' => $selected, |
235 | 235 | 'options' => $options, |
236 | 236 | 'show_option_all' => false, |
237 | 237 | 'show_option_none' => false |
238 | - ) ); |
|
238 | + )); |
|
239 | 239 | |
240 | 240 | return $output; |
241 | 241 | } |
@@ -252,23 +252,23 @@ discard block |
||
252 | 252 | * |
253 | 253 | * @return string $output Month dropdown |
254 | 254 | */ |
255 | - public function month_dropdown( $name = 'month', $selected = 0 ) { |
|
255 | + public function month_dropdown($name = 'month', $selected = 0) { |
|
256 | 256 | $month = 1; |
257 | 257 | $options = array(); |
258 | - $selected = empty( $selected ) ? date( 'n' ) : $selected; |
|
258 | + $selected = empty($selected) ? date('n') : $selected; |
|
259 | 259 | |
260 | - while ( $month <= 12 ) { |
|
261 | - $options[ absint( $month ) ] = give_month_num_to_name( $month ); |
|
262 | - $month ++; |
|
260 | + while ($month <= 12) { |
|
261 | + $options[absint($month)] = give_month_num_to_name($month); |
|
262 | + $month++; |
|
263 | 263 | } |
264 | 264 | |
265 | - $output = $this->select( array( |
|
265 | + $output = $this->select(array( |
|
266 | 266 | 'name' => $name, |
267 | 267 | 'selected' => $selected, |
268 | 268 | 'options' => $options, |
269 | 269 | 'show_option_all' => false, |
270 | 270 | 'show_option_none' => false |
271 | - ) ); |
|
271 | + )); |
|
272 | 272 | |
273 | 273 | return $output; |
274 | 274 | } |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * |
284 | 284 | * @return string |
285 | 285 | */ |
286 | - public function select( $args = array() ) { |
|
286 | + public function select($args = array()) { |
|
287 | 287 | $defaults = array( |
288 | 288 | 'options' => array(), |
289 | 289 | 'name' => null, |
@@ -293,60 +293,60 @@ discard block |
||
293 | 293 | 'chosen' => false, |
294 | 294 | 'placeholder' => null, |
295 | 295 | 'multiple' => false, |
296 | - 'show_option_all' => esc_html__( 'All', 'give' ), |
|
297 | - 'show_option_none' => esc_html__( 'None', 'give' ) |
|
296 | + 'show_option_all' => esc_html__('All', 'give'), |
|
297 | + 'show_option_none' => esc_html__('None', 'give') |
|
298 | 298 | ); |
299 | 299 | |
300 | - $args = wp_parse_args( $args, $defaults ); |
|
300 | + $args = wp_parse_args($args, $defaults); |
|
301 | 301 | |
302 | 302 | |
303 | - if ( $args['multiple'] ) { |
|
303 | + if ($args['multiple']) { |
|
304 | 304 | $multiple = ' MULTIPLE'; |
305 | 305 | } else { |
306 | 306 | $multiple = ''; |
307 | 307 | } |
308 | 308 | |
309 | - if ( $args['chosen'] ) { |
|
309 | + if ($args['chosen']) { |
|
310 | 310 | $args['class'] .= ' give-select-chosen'; |
311 | 311 | } |
312 | 312 | |
313 | - if ( $args['placeholder'] ) { |
|
313 | + if ($args['placeholder']) { |
|
314 | 314 | $placeholder = $args['placeholder']; |
315 | 315 | } else { |
316 | 316 | $placeholder = ''; |
317 | 317 | } |
318 | 318 | |
319 | - $output = '<select name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( sanitize_key( str_replace( '-', '_', $args['id'] ) ) ) . '" class="give-select ' . esc_attr( $args['class'] ) . '"' . $multiple . ' data-placeholder="' . $placeholder . '">'; |
|
319 | + $output = '<select name="'.esc_attr($args['name']).'" id="'.esc_attr(sanitize_key(str_replace('-', '_', $args['id']))).'" class="give-select '.esc_attr($args['class']).'"'.$multiple.' data-placeholder="'.$placeholder.'">'; |
|
320 | 320 | |
321 | - if ( $args['show_option_all'] ) { |
|
322 | - if ( $args['multiple'] ) { |
|
323 | - $selected = selected( true, in_array( 0, $args['selected'] ), false ); |
|
321 | + if ($args['show_option_all']) { |
|
322 | + if ($args['multiple']) { |
|
323 | + $selected = selected(true, in_array(0, $args['selected']), false); |
|
324 | 324 | } else { |
325 | - $selected = selected( $args['selected'], 0, false ); |
|
325 | + $selected = selected($args['selected'], 0, false); |
|
326 | 326 | } |
327 | - $output .= '<option value="all"' . $selected . '>' . esc_html( $args['show_option_all'] ) . '</option>'; |
|
327 | + $output .= '<option value="all"'.$selected.'>'.esc_html($args['show_option_all']).'</option>'; |
|
328 | 328 | } |
329 | 329 | |
330 | - if ( ! empty( $args['options'] ) ) { |
|
330 | + if ( ! empty($args['options'])) { |
|
331 | 331 | |
332 | - if ( $args['show_option_none'] ) { |
|
333 | - if ( $args['multiple'] ) { |
|
334 | - $selected = selected( true, in_array( - 1, $args['selected'] ), false ); |
|
332 | + if ($args['show_option_none']) { |
|
333 | + if ($args['multiple']) { |
|
334 | + $selected = selected(true, in_array( -1, $args['selected'] ), false); |
|
335 | 335 | } else { |
336 | - $selected = selected( $args['selected'], - 1, false ); |
|
336 | + $selected = selected($args['selected'], - 1, false); |
|
337 | 337 | } |
338 | - $output .= '<option value="-1"' . $selected . '>' . esc_html( $args['show_option_none'] ) . '</option>'; |
|
338 | + $output .= '<option value="-1"'.$selected.'>'.esc_html($args['show_option_none']).'</option>'; |
|
339 | 339 | } |
340 | 340 | |
341 | - foreach ( $args['options'] as $key => $option ) { |
|
341 | + foreach ($args['options'] as $key => $option) { |
|
342 | 342 | |
343 | - if ( $args['multiple'] && is_array( $args['selected'] ) ) { |
|
344 | - $selected = selected( true, in_array( $key, $args['selected'] ), false ); |
|
343 | + if ($args['multiple'] && is_array($args['selected'])) { |
|
344 | + $selected = selected(true, in_array($key, $args['selected']), false); |
|
345 | 345 | } else { |
346 | - $selected = selected( $args['selected'], $key, false ); |
|
346 | + $selected = selected($args['selected'], $key, false); |
|
347 | 347 | } |
348 | 348 | |
349 | - $output .= '<option value="' . esc_attr( $key ) . '"' . $selected . '>' . esc_html( $option ) . '</option>'; |
|
349 | + $output .= '<option value="'.esc_attr($key).'"'.$selected.'>'.esc_html($option).'</option>'; |
|
350 | 350 | } |
351 | 351 | } |
352 | 352 | |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | * |
366 | 366 | * @return string |
367 | 367 | */ |
368 | - public function checkbox( $args = array() ) { |
|
368 | + public function checkbox($args = array()) { |
|
369 | 369 | $defaults = array( |
370 | 370 | 'name' => null, |
371 | 371 | 'current' => null, |
@@ -376,16 +376,16 @@ discard block |
||
376 | 376 | ) |
377 | 377 | ); |
378 | 378 | |
379 | - $args = wp_parse_args( $args, $defaults ); |
|
379 | + $args = wp_parse_args($args, $defaults); |
|
380 | 380 | |
381 | 381 | $options = ''; |
382 | - if ( ! empty( $args['options']['disabled'] ) ) { |
|
382 | + if ( ! empty($args['options']['disabled'])) { |
|
383 | 383 | $options .= ' disabled="disabled"'; |
384 | - } elseif ( ! empty( $args['options']['readonly'] ) ) { |
|
384 | + } elseif ( ! empty($args['options']['readonly'])) { |
|
385 | 385 | $options .= ' readonly'; |
386 | 386 | } |
387 | 387 | |
388 | - $output = '<input type="checkbox"' . $options . ' name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . $args['class'] . ' ' . esc_attr( $args['name'] ) . '" ' . checked( 1, $args['current'], false ) . ' />'; |
|
388 | + $output = '<input type="checkbox"'.$options.' name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" class="'.$args['class'].' '.esc_attr($args['name']).'" '.checked(1, $args['current'], false).' />'; |
|
389 | 389 | |
390 | 390 | return $output; |
391 | 391 | } |
@@ -400,22 +400,22 @@ discard block |
||
400 | 400 | * |
401 | 401 | * @return string Text field |
402 | 402 | */ |
403 | - public function text( $args = array() ) { |
|
403 | + public function text($args = array()) { |
|
404 | 404 | // Backwards compatibility |
405 | - if ( func_num_args() > 1 ) { |
|
405 | + if (func_num_args() > 1) { |
|
406 | 406 | $args = func_get_args(); |
407 | 407 | |
408 | 408 | $name = $args[0]; |
409 | - $value = isset( $args[1] ) ? $args[1] : ''; |
|
410 | - $label = isset( $args[2] ) ? $args[2] : ''; |
|
411 | - $desc = isset( $args[3] ) ? $args[3] : ''; |
|
409 | + $value = isset($args[1]) ? $args[1] : ''; |
|
410 | + $label = isset($args[2]) ? $args[2] : ''; |
|
411 | + $desc = isset($args[3]) ? $args[3] : ''; |
|
412 | 412 | } |
413 | 413 | |
414 | 414 | $defaults = array( |
415 | - 'name' => isset( $name ) ? $name : 'text', |
|
416 | - 'value' => isset( $value ) ? $value : null, |
|
417 | - 'label' => isset( $label ) ? $label : null, |
|
418 | - 'desc' => isset( $desc ) ? $desc : null, |
|
415 | + 'name' => isset($name) ? $name : 'text', |
|
416 | + 'value' => isset($value) ? $value : null, |
|
417 | + 'label' => isset($label) ? $label : null, |
|
418 | + 'desc' => isset($desc) ? $desc : null, |
|
419 | 419 | 'placeholder' => '', |
420 | 420 | 'class' => 'regular-text', |
421 | 421 | 'disabled' => false, |
@@ -423,29 +423,29 @@ discard block |
||
423 | 423 | 'data' => false |
424 | 424 | ); |
425 | 425 | |
426 | - $args = wp_parse_args( $args, $defaults ); |
|
426 | + $args = wp_parse_args($args, $defaults); |
|
427 | 427 | |
428 | 428 | $disabled = ''; |
429 | - if ( $args['disabled'] ) { |
|
429 | + if ($args['disabled']) { |
|
430 | 430 | $disabled = ' disabled="disabled"'; |
431 | 431 | } |
432 | 432 | |
433 | 433 | $data = ''; |
434 | - if ( ! empty( $args['data'] ) ) { |
|
435 | - foreach ( $args['data'] as $key => $value ) { |
|
436 | - $data .= 'data-' . $key . '="' . $value . '" '; |
|
434 | + if ( ! empty($args['data'])) { |
|
435 | + foreach ($args['data'] as $key => $value) { |
|
436 | + $data .= 'data-'.$key.'="'.$value.'" '; |
|
437 | 437 | } |
438 | 438 | } |
439 | 439 | |
440 | - $output = '<span id="give-' . sanitize_key( $args['name'] ) . '-wrap">'; |
|
440 | + $output = '<span id="give-'.sanitize_key($args['name']).'-wrap">'; |
|
441 | 441 | |
442 | - $output .= '<label class="give-label" for="give-' . sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>'; |
|
442 | + $output .= '<label class="give-label" for="give-'.sanitize_key($args['name']).'">'.esc_html($args['label']).'</label>'; |
|
443 | 443 | |
444 | - if ( ! empty( $args['desc'] ) ) { |
|
445 | - $output .= '<span class="give-description">' . esc_html( $args['desc'] ) . '</span>'; |
|
444 | + if ( ! empty($args['desc'])) { |
|
445 | + $output .= '<span class="give-description">'.esc_html($args['desc']).'</span>'; |
|
446 | 446 | } |
447 | 447 | |
448 | - $output .= '<input type="text" name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" autocomplete="' . esc_attr( $args['autocomplete'] ) . '" value="' . esc_attr( $args['value'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" class="' . $args['class'] . '" ' . $data . '' . $disabled . '/>'; |
|
448 | + $output .= '<input type="text" name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" autocomplete="'.esc_attr($args['autocomplete']).'" value="'.esc_attr($args['value']).'" placeholder="'.esc_attr($args['placeholder']).'" class="'.$args['class'].'" '.$data.''.$disabled.'/>'; |
|
449 | 449 | |
450 | 450 | $output .= '</span>'; |
451 | 451 | |
@@ -462,15 +462,15 @@ discard block |
||
462 | 462 | * |
463 | 463 | * @return string Datepicker field |
464 | 464 | */ |
465 | - public function date_field( $args = array() ) { |
|
465 | + public function date_field($args = array()) { |
|
466 | 466 | |
467 | - if ( empty( $args['class'] ) ) { |
|
467 | + if (empty($args['class'])) { |
|
468 | 468 | $args['class'] = 'give_datepicker'; |
469 | - } elseif ( ! strpos( $args['class'], 'give_datepicker' ) ) { |
|
469 | + } elseif ( ! strpos($args['class'], 'give_datepicker')) { |
|
470 | 470 | $args['class'] .= ' give_datepicker'; |
471 | 471 | } |
472 | 472 | |
473 | - return $this->text( $args ); |
|
473 | + return $this->text($args); |
|
474 | 474 | } |
475 | 475 | |
476 | 476 | |
@@ -484,7 +484,7 @@ discard block |
||
484 | 484 | * |
485 | 485 | * @return string textarea |
486 | 486 | */ |
487 | - public function textarea( $args = array() ) { |
|
487 | + public function textarea($args = array()) { |
|
488 | 488 | $defaults = array( |
489 | 489 | 'name' => 'textarea', |
490 | 490 | 'value' => null, |
@@ -494,21 +494,21 @@ discard block |
||
494 | 494 | 'disabled' => false |
495 | 495 | ); |
496 | 496 | |
497 | - $args = wp_parse_args( $args, $defaults ); |
|
497 | + $args = wp_parse_args($args, $defaults); |
|
498 | 498 | |
499 | 499 | $disabled = ''; |
500 | - if ( $args['disabled'] ) { |
|
500 | + if ($args['disabled']) { |
|
501 | 501 | $disabled = ' disabled="disabled"'; |
502 | 502 | } |
503 | 503 | |
504 | - $output = '<span id="give-' . sanitize_key( $args['name'] ) . '-wrap">'; |
|
504 | + $output = '<span id="give-'.sanitize_key($args['name']).'-wrap">'; |
|
505 | 505 | |
506 | - $output .= '<label class="give-label" for="give-' . sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>'; |
|
506 | + $output .= '<label class="give-label" for="give-'.sanitize_key($args['name']).'">'.esc_html($args['label']).'</label>'; |
|
507 | 507 | |
508 | - $output .= '<textarea name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . $args['class'] . '"' . $disabled . '>' . esc_attr( $args['value'] ) . '</textarea>'; |
|
508 | + $output .= '<textarea name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" class="'.$args['class'].'"'.$disabled.'>'.esc_attr($args['value']).'</textarea>'; |
|
509 | 509 | |
510 | - if ( ! empty( $args['desc'] ) ) { |
|
511 | - $output .= '<span class="give-description">' . esc_html( $args['desc'] ) . '</span>'; |
|
510 | + if ( ! empty($args['desc'])) { |
|
511 | + $output .= '<span class="give-description">'.esc_html($args['desc']).'</span>'; |
|
512 | 512 | } |
513 | 513 | |
514 | 514 | $output .= '</span>'; |
@@ -526,12 +526,12 @@ discard block |
||
526 | 526 | * |
527 | 527 | * @return string text field with ajax search |
528 | 528 | */ |
529 | - public function ajax_user_search( $args = array() ) { |
|
529 | + public function ajax_user_search($args = array()) { |
|
530 | 530 | |
531 | 531 | $defaults = array( |
532 | 532 | 'name' => 'user_id', |
533 | 533 | 'value' => null, |
534 | - 'placeholder' => esc_attr__( 'Enter username', 'give' ), |
|
534 | + 'placeholder' => esc_attr__('Enter username', 'give'), |
|
535 | 535 | 'label' => null, |
536 | 536 | 'desc' => null, |
537 | 537 | 'class' => '', |
@@ -540,13 +540,13 @@ discard block |
||
540 | 540 | 'data' => false |
541 | 541 | ); |
542 | 542 | |
543 | - $args = wp_parse_args( $args, $defaults ); |
|
543 | + $args = wp_parse_args($args, $defaults); |
|
544 | 544 | |
545 | - $args['class'] = 'give-ajax-user-search ' . $args['class']; |
|
545 | + $args['class'] = 'give-ajax-user-search '.$args['class']; |
|
546 | 546 | |
547 | 547 | $output = '<span class="give_user_search_wrap">'; |
548 | - $output .= $this->text( $args ); |
|
549 | - $output .= '<span class="give_user_search_results hidden"><a class="give-ajax-user-cancel" title="' . esc_attr__( 'Cancel', 'give' ) . '" aria-label="' . esc_attr__( 'Cancel', 'give' ) . '" href="#">x</a><span></span></span>'; |
|
548 | + $output .= $this->text($args); |
|
549 | + $output .= '<span class="give_user_search_results hidden"><a class="give-ajax-user-cancel" title="'.esc_attr__('Cancel', 'give').'" aria-label="'.esc_attr__('Cancel', 'give').'" href="#">x</a><span></span></span>'; |
|
550 | 550 | $output .= '</span>'; |
551 | 551 | |
552 | 552 | return $output; |
@@ -10,14 +10,14 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -defined( 'ABSPATH' ) or exit; |
|
13 | +defined('ABSPATH') or exit; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Give Form widget |
17 | 17 | * |
18 | 18 | * @since 1.0 |
19 | 19 | */ |
20 | -class Give_Forms_Widget extends WP_Widget{ |
|
20 | +class Give_Forms_Widget extends WP_Widget { |
|
21 | 21 | /** |
22 | 22 | * The widget class name |
23 | 23 | * |
@@ -28,19 +28,19 @@ discard block |
||
28 | 28 | /** |
29 | 29 | * Instantiate the class |
30 | 30 | */ |
31 | - public function __construct(){ |
|
32 | - $this->self = get_class( $this ); |
|
31 | + public function __construct() { |
|
32 | + $this->self = get_class($this); |
|
33 | 33 | |
34 | 34 | parent::__construct( |
35 | - strtolower( $this->self ), |
|
36 | - esc_html__( 'Give - Donation Form', 'give' ), |
|
35 | + strtolower($this->self), |
|
36 | + esc_html__('Give - Donation Form', 'give'), |
|
37 | 37 | array( |
38 | - 'description' => esc_html__( 'Display a Give Donation Form in your theme\'s widget powered sidebar.', 'give' ) |
|
38 | + 'description' => esc_html__('Display a Give Donation Form in your theme\'s widget powered sidebar.', 'give') |
|
39 | 39 | ) |
40 | 40 | ); |
41 | 41 | |
42 | - add_action( 'widgets_init', array( $this, 'widget_init' ) ); |
|
43 | - add_action( 'admin_enqueue_scripts', array( $this, 'admin_widget_scripts' ) ); |
|
42 | + add_action('widgets_init', array($this, 'widget_init')); |
|
43 | + add_action('admin_enqueue_scripts', array($this, 'admin_widget_scripts')); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
@@ -50,23 +50,23 @@ discard block |
||
50 | 50 | * |
51 | 51 | * @return void |
52 | 52 | */ |
53 | - public function admin_widget_scripts( $hook ){ |
|
53 | + public function admin_widget_scripts($hook) { |
|
54 | 54 | // Directories of assets |
55 | - $js_dir = GIVE_PLUGIN_URL . 'assets/js/admin/'; |
|
56 | - $js_plugins = GIVE_PLUGIN_URL . 'assets/js/plugins/'; |
|
57 | - $css_dir = GIVE_PLUGIN_URL . 'assets/css/'; |
|
55 | + $js_dir = GIVE_PLUGIN_URL.'assets/js/admin/'; |
|
56 | + $js_plugins = GIVE_PLUGIN_URL.'assets/js/plugins/'; |
|
57 | + $css_dir = GIVE_PLUGIN_URL.'assets/css/'; |
|
58 | 58 | |
59 | 59 | // Use minified libraries if SCRIPT_DEBUG is turned off |
60 | - $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
60 | + $suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
61 | 61 | |
62 | 62 | // Widget Script |
63 | - if ( $hook == 'widgets.php' ) { |
|
63 | + if ($hook == 'widgets.php') { |
|
64 | 64 | |
65 | - wp_enqueue_style( 'give-qtip-css', $css_dir . 'jquery.qtip' . $suffix . '.css' ); |
|
65 | + wp_enqueue_style('give-qtip-css', $css_dir.'jquery.qtip'.$suffix.'.css'); |
|
66 | 66 | |
67 | - wp_enqueue_script( 'give-qtip', $js_plugins . 'jquery.qtip' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION ); |
|
67 | + wp_enqueue_script('give-qtip', $js_plugins.'jquery.qtip'.$suffix.'.js', array('jquery'), GIVE_VERSION); |
|
68 | 68 | |
69 | - wp_enqueue_script( 'give-admin-widgets-scripts', $js_dir . 'admin-widgets' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, false ); |
|
69 | + wp_enqueue_script('give-admin-widgets-scripts', $js_dir.'admin-widgets'.$suffix.'.js', array('jquery'), GIVE_VERSION, false); |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | |
@@ -77,21 +77,21 @@ discard block |
||
77 | 77 | * before_widget, and after_widget. |
78 | 78 | * @param array $instance The settings for the particular instance of the widget. |
79 | 79 | */ |
80 | - public function widget( $args, $instance ){ |
|
81 | - $title = !empty( $instance['title'] ) ? $instance['title'] : ''; |
|
82 | - $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); |
|
80 | + public function widget($args, $instance) { |
|
81 | + $title = ! empty($instance['title']) ? $instance['title'] : ''; |
|
82 | + $title = apply_filters('widget_title', $title, $instance, $this->id_base); |
|
83 | 83 | |
84 | 84 | echo $args['before_widget']; |
85 | 85 | |
86 | - do_action( 'give_before_forms_widget' ); |
|
86 | + do_action('give_before_forms_widget'); |
|
87 | 87 | |
88 | - echo $title ? $args['before_title'] . $title . $args['after_title'] : ''; |
|
88 | + echo $title ? $args['before_title'].$title.$args['after_title'] : ''; |
|
89 | 89 | |
90 | - give_get_donation_form( $instance ); |
|
90 | + give_get_donation_form($instance); |
|
91 | 91 | |
92 | 92 | echo $args['after_widget']; |
93 | 93 | |
94 | - do_action( 'give_after_forms_widget' ); |
|
94 | + do_action('give_after_forms_widget'); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -101,65 +101,65 @@ discard block |
||
101 | 101 | * |
102 | 102 | * @return string |
103 | 103 | */ |
104 | - public function form( $instance ){ |
|
104 | + public function form($instance) { |
|
105 | 105 | $defaults = array( |
106 | 106 | 'title' => '', |
107 | 107 | 'id' => '', |
108 | 108 | 'float_labels' => '', |
109 | 109 | ); |
110 | 110 | |
111 | - $instance = wp_parse_args( (array) $instance, $defaults ); |
|
111 | + $instance = wp_parse_args((array) $instance, $defaults); |
|
112 | 112 | |
113 | 113 | // Query Give Forms |
114 | 114 | $args = array( |
115 | 115 | 'post_type' => 'give_forms', |
116 | - 'posts_per_page' => - 1, |
|
116 | + 'posts_per_page' => -1, |
|
117 | 117 | 'post_status' => 'publish', |
118 | 118 | ); |
119 | 119 | |
120 | - $give_forms = get_posts( $args ); |
|
120 | + $give_forms = get_posts($args); |
|
121 | 121 | |
122 | 122 | // Widget: Title |
123 | 123 | |
124 | 124 | ?><p> |
125 | - <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:', 'give' ); ?></label> |
|
126 | - <input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" /><br> |
|
127 | - <small><?php esc_html_e( 'Leave blank to hide the widget title.', 'give' ); ?></small> |
|
125 | + <label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'give'); ?></label> |
|
126 | + <input type="text" class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo esc_attr($instance['title']); ?>" /><br> |
|
127 | + <small><?php esc_html_e('Leave blank to hide the widget title.', 'give'); ?></small> |
|
128 | 128 | </p><?php |
129 | 129 | |
130 | 130 | // Widget: Give Form |
131 | 131 | |
132 | 132 | ?><p> |
133 | - <label for="<?php echo esc_attr( $this->get_field_id( 'id' ) ); ?>"><?php |
|
133 | + <label for="<?php echo esc_attr($this->get_field_id('id')); ?>"><?php |
|
134 | 134 | printf( |
135 | 135 | /* translators: %s: form singular label */ |
136 | - esc_html__( 'Give %s:', 'give' ), |
|
136 | + esc_html__('Give %s:', 'give'), |
|
137 | 137 | give_get_forms_label_singular() |
138 | 138 | ); |
139 | 139 | ?></label> |
140 | - <select class="widefat" name="<?php echo esc_attr( $this->get_field_name( 'id' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'id' ) ); ?>"> |
|
141 | - <option value="current"><?php esc_html_e( '— Select —', 'give' ); ?></option> |
|
142 | - <?php foreach ( $give_forms as $give_form ) { ?> |
|
143 | - <option <?php selected( absint( $instance['id'] ), $give_form->ID ); ?> value="<?php echo esc_attr( $give_form->ID ); ?>"><?php echo $give_form->post_title; ?></option> |
|
140 | + <select class="widefat" name="<?php echo esc_attr($this->get_field_name('id')); ?>" id="<?php echo esc_attr($this->get_field_id('id')); ?>"> |
|
141 | + <option value="current"><?php esc_html_e('— Select —', 'give'); ?></option> |
|
142 | + <?php foreach ($give_forms as $give_form) { ?> |
|
143 | + <option <?php selected(absint($instance['id']), $give_form->ID); ?> value="<?php echo esc_attr($give_form->ID); ?>"><?php echo $give_form->post_title; ?></option> |
|
144 | 144 | <?php } ?> |
145 | 145 | </select><br> |
146 | - <small><?php esc_html_e( 'Select a Give Form to embed in this widget.', 'give' ); ?></small> |
|
146 | + <small><?php esc_html_e('Select a Give Form to embed in this widget.', 'give'); ?></small> |
|
147 | 147 | </p><?php |
148 | 148 | |
149 | 149 | // Widget: Floating Labels |
150 | 150 | |
151 | 151 | ?><p> |
152 | - <label for="<?php echo esc_attr( $this->get_field_id( 'float_labels' ) ); ?>"><?php esc_html_e( 'Floating Labels (optional):', 'give' ); ?></label> |
|
153 | - <select class="widefat" name="<?php echo esc_attr( $this->get_field_name( 'float_labels' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'float_labels' ) ); ?>"> |
|
154 | - <option value="" <?php selected( esc_attr( $instance['float_labels'] ), '' ) ?>><?php esc_html_e( '- Select -', 'give' ); ?></option> |
|
155 | - <option value="enabled" <?php selected( esc_attr( $instance['float_labels'] ), 'enabled' ) ?>><?php esc_html_e( 'Enabled', 'give' ); ?></option> |
|
156 | - <option value="disabled" <?php selected( esc_attr( $instance['float_labels'] ), 'disabled' ) ?>><?php esc_html_e( 'Disabled', 'give' ); ?></option> |
|
152 | + <label for="<?php echo esc_attr($this->get_field_id('float_labels')); ?>"><?php esc_html_e('Floating Labels (optional):', 'give'); ?></label> |
|
153 | + <select class="widefat" name="<?php echo esc_attr($this->get_field_name('float_labels')); ?>" id="<?php echo esc_attr($this->get_field_id('float_labels')); ?>"> |
|
154 | + <option value="" <?php selected(esc_attr($instance['float_labels']), '') ?>><?php esc_html_e('- Select -', 'give'); ?></option> |
|
155 | + <option value="enabled" <?php selected(esc_attr($instance['float_labels']), 'enabled') ?>><?php esc_html_e('Enabled', 'give'); ?></option> |
|
156 | + <option value="disabled" <?php selected(esc_attr($instance['float_labels']), 'disabled') ?>><?php esc_html_e('Disabled', 'give'); ?></option> |
|
157 | 157 | </select><br> |
158 | 158 | <small><?php |
159 | 159 | printf( |
160 | 160 | /* translators: %s: http://bradfrost.com/blog/post/float-label-pattern/ */ |
161 | - __( 'Override the <a href="%s" target="_blank">floating labels</a> setting for this Give form.', 'give' ), |
|
162 | - esc_url( 'http://bradfrost.com/blog/post/float-label-pattern/' ) |
|
161 | + __('Override the <a href="%s" target="_blank">floating labels</a> setting for this Give form.', 'give'), |
|
162 | + esc_url('http://bradfrost.com/blog/post/float-label-pattern/') |
|
163 | 163 | ); |
164 | 164 | ?></small> |
165 | 165 | </p><?php |
@@ -170,8 +170,8 @@ discard block |
||
170 | 170 | * |
171 | 171 | * @return void |
172 | 172 | */ |
173 | - function widget_init(){ |
|
174 | - register_widget( $this->self ); |
|
173 | + function widget_init() { |
|
174 | + register_widget($this->self); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | * |
183 | 183 | * @return array |
184 | 184 | */ |
185 | - public function update( $new_instance, $old_instance ){ |
|
185 | + public function update($new_instance, $old_instance) { |
|
186 | 186 | $this->flush_widget_cache(); |
187 | 187 | |
188 | 188 | return $new_instance; |
@@ -193,8 +193,8 @@ discard block |
||
193 | 193 | * |
194 | 194 | * @return void |
195 | 195 | */ |
196 | - public function flush_widget_cache(){ |
|
197 | - wp_cache_delete( $this->self, 'widget' ); |
|
196 | + public function flush_widget_cache() { |
|
197 | + wp_cache_delete($this->self, 'widget'); |
|
198 | 198 | } |
199 | 199 | } |
200 | 200 |
@@ -408,30 +408,30 @@ |
||
408 | 408 | die( '-2' ); |
409 | 409 | } |
410 | 410 | |
411 | - if ( ! give_has_variable_prices( $form_id ) ) { |
|
412 | - echo esc_html__( 'n/a', 'give' ); |
|
413 | - } else { |
|
414 | - // Payment object. |
|
415 | - $payment = new Give_Payment( $payment_id ); |
|
416 | - |
|
417 | - // Payment meta. |
|
418 | - $payment_meta = $payment->get_meta(); |
|
419 | - |
|
420 | - |
|
421 | - // Variable price dropdown options. |
|
422 | - $variable_price_dropdown_option = array( |
|
423 | - 'id' => $form_id, |
|
424 | - 'name' => 'give-variable-price', |
|
425 | - 'chosen' => true, |
|
426 | - 'show_option_all' => '', |
|
427 | - 'selected' => $payment_meta['price_id'], |
|
428 | - ); |
|
429 | - |
|
430 | - // Render variable prices select tag html. |
|
431 | - give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true ); |
|
432 | - } |
|
433 | - |
|
434 | - give_die(); |
|
411 | + if ( ! give_has_variable_prices( $form_id ) ) { |
|
412 | + echo esc_html__( 'n/a', 'give' ); |
|
413 | + } else { |
|
414 | + // Payment object. |
|
415 | + $payment = new Give_Payment( $payment_id ); |
|
416 | + |
|
417 | + // Payment meta. |
|
418 | + $payment_meta = $payment->get_meta(); |
|
419 | + |
|
420 | + |
|
421 | + // Variable price dropdown options. |
|
422 | + $variable_price_dropdown_option = array( |
|
423 | + 'id' => $form_id, |
|
424 | + 'name' => 'give-variable-price', |
|
425 | + 'chosen' => true, |
|
426 | + 'show_option_all' => '', |
|
427 | + 'selected' => $payment_meta['price_id'], |
|
428 | + ); |
|
429 | + |
|
430 | + // Render variable prices select tag html. |
|
431 | + give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true ); |
|
432 | + } |
|
433 | + |
|
434 | + give_die(); |
|
435 | 435 | } |
436 | 436 | |
437 | 437 | add_action( 'wp_ajax_give_check_for_form_price_variations_html', 'give_check_for_form_price_variations_html' ); |
@@ -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 | |
@@ -25,27 +25,27 @@ discard block |
||
25 | 25 | function give_test_ajax_works() { |
26 | 26 | |
27 | 27 | // Check if the Airplane Mode plugin is installed |
28 | - if ( class_exists( 'Airplane_Mode_Core' ) ) { |
|
28 | + if (class_exists('Airplane_Mode_Core')) { |
|
29 | 29 | |
30 | 30 | $airplane = Airplane_Mode_Core::getInstance(); |
31 | 31 | |
32 | - if ( method_exists( $airplane, 'enabled' ) ) { |
|
32 | + if (method_exists($airplane, 'enabled')) { |
|
33 | 33 | |
34 | - if ( $airplane->enabled() ) { |
|
34 | + if ($airplane->enabled()) { |
|
35 | 35 | return true; |
36 | 36 | } |
37 | 37 | |
38 | 38 | } else { |
39 | 39 | |
40 | - if ( $airplane->check_status() == 'on' ) { |
|
40 | + if ($airplane->check_status() == 'on') { |
|
41 | 41 | return true; |
42 | 42 | } |
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
46 | - add_filter( 'block_local_requests', '__return_false' ); |
|
46 | + add_filter('block_local_requests', '__return_false'); |
|
47 | 47 | |
48 | - if ( get_transient( '_give_ajax_works' ) ) { |
|
48 | + if (get_transient('_give_ajax_works')) { |
|
49 | 49 | return true; |
50 | 50 | } |
51 | 51 | |
@@ -57,35 +57,35 @@ discard block |
||
57 | 57 | ) |
58 | 58 | ); |
59 | 59 | |
60 | - $ajax = wp_remote_post( give_get_ajax_url(), $params ); |
|
60 | + $ajax = wp_remote_post(give_get_ajax_url(), $params); |
|
61 | 61 | $works = true; |
62 | 62 | |
63 | - if ( is_wp_error( $ajax ) ) { |
|
63 | + if (is_wp_error($ajax)) { |
|
64 | 64 | |
65 | 65 | $works = false; |
66 | 66 | |
67 | 67 | } else { |
68 | 68 | |
69 | - if ( empty( $ajax['response'] ) ) { |
|
69 | + if (empty($ajax['response'])) { |
|
70 | 70 | $works = false; |
71 | 71 | } |
72 | 72 | |
73 | - if ( empty( $ajax['response']['code'] ) || 200 !== (int) $ajax['response']['code'] ) { |
|
73 | + if (empty($ajax['response']['code']) || 200 !== (int) $ajax['response']['code']) { |
|
74 | 74 | $works = false; |
75 | 75 | } |
76 | 76 | |
77 | - if ( empty( $ajax['response']['message'] ) || 'OK' !== $ajax['response']['message'] ) { |
|
77 | + if (empty($ajax['response']['message']) || 'OK' !== $ajax['response']['message']) { |
|
78 | 78 | $works = false; |
79 | 79 | } |
80 | 80 | |
81 | - if ( ! isset( $ajax['body'] ) || 0 !== (int) $ajax['body'] ) { |
|
81 | + if ( ! isset($ajax['body']) || 0 !== (int) $ajax['body']) { |
|
82 | 82 | $works = false; |
83 | 83 | } |
84 | 84 | |
85 | 85 | } |
86 | 86 | |
87 | - if ( $works ) { |
|
88 | - set_transient( '_give_ajax_works', '1', DAY_IN_SECONDS ); |
|
87 | + if ($works) { |
|
88 | + set_transient('_give_ajax_works', '1', DAY_IN_SECONDS); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | return $works; |
@@ -99,16 +99,16 @@ discard block |
||
99 | 99 | * @return string |
100 | 100 | */ |
101 | 101 | function give_get_ajax_url() { |
102 | - $scheme = defined( 'FORCE_SSL_ADMIN' ) && FORCE_SSL_ADMIN ? 'https' : 'admin'; |
|
102 | + $scheme = defined('FORCE_SSL_ADMIN') && FORCE_SSL_ADMIN ? 'https' : 'admin'; |
|
103 | 103 | |
104 | 104 | $current_url = give_get_current_page_url(); |
105 | - $ajax_url = admin_url( 'admin-ajax.php', $scheme ); |
|
105 | + $ajax_url = admin_url('admin-ajax.php', $scheme); |
|
106 | 106 | |
107 | - if ( preg_match( '/^https/', $current_url ) && ! preg_match( '/^https/', $ajax_url ) ) { |
|
108 | - $ajax_url = preg_replace( '/^http/', 'https', $ajax_url ); |
|
107 | + if (preg_match('/^https/', $current_url) && ! preg_match('/^https/', $ajax_url)) { |
|
108 | + $ajax_url = preg_replace('/^http/', 'https', $ajax_url); |
|
109 | 109 | } |
110 | 110 | |
111 | - return apply_filters( 'give_ajax_url', $ajax_url ); |
|
111 | + return apply_filters('give_ajax_url', $ajax_url); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -118,11 +118,11 @@ discard block |
||
118 | 118 | * @return void |
119 | 119 | */ |
120 | 120 | function give_load_checkout_login_fields() { |
121 | - do_action( 'give_purchase_form_login_fields' ); |
|
121 | + do_action('give_purchase_form_login_fields'); |
|
122 | 122 | give_die(); |
123 | 123 | } |
124 | 124 | |
125 | -add_action( 'wp_ajax_nopriv_give_checkout_login', 'give_load_checkout_login_fields' ); |
|
125 | +add_action('wp_ajax_nopriv_give_checkout_login', 'give_load_checkout_login_fields'); |
|
126 | 126 | |
127 | 127 | /** |
128 | 128 | * Load Checkout Fields |
@@ -131,22 +131,22 @@ discard block |
||
131 | 131 | * @return void |
132 | 132 | */ |
133 | 133 | function give_load_checkout_fields() { |
134 | - $form_id = isset( $_POST['form_id'] ) ? $_POST['form_id'] : ''; |
|
134 | + $form_id = isset($_POST['form_id']) ? $_POST['form_id'] : ''; |
|
135 | 135 | |
136 | 136 | ob_start(); |
137 | 137 | |
138 | - do_action( 'give_purchase_form_register_login_fields', $form_id ); |
|
138 | + do_action('give_purchase_form_register_login_fields', $form_id); |
|
139 | 139 | |
140 | 140 | $fields = ob_get_clean(); |
141 | 141 | |
142 | - wp_send_json( array( |
|
143 | - 'fields' => wp_json_encode( $fields ), |
|
144 | - 'submit' => wp_json_encode( give_checkout_button_purchase( $form_id ) ), |
|
145 | - ) ); |
|
142 | + wp_send_json(array( |
|
143 | + 'fields' => wp_json_encode($fields), |
|
144 | + 'submit' => wp_json_encode(give_checkout_button_purchase($form_id)), |
|
145 | + )); |
|
146 | 146 | } |
147 | 147 | |
148 | -add_action( 'wp_ajax_nopriv_give_cancel_login', 'give_load_checkout_fields' ); |
|
149 | -add_action( 'wp_ajax_nopriv_give_checkout_register', 'give_load_checkout_fields' ); |
|
148 | +add_action('wp_ajax_nopriv_give_cancel_login', 'give_load_checkout_fields'); |
|
149 | +add_action('wp_ajax_nopriv_give_checkout_register', 'give_load_checkout_fields'); |
|
150 | 150 | |
151 | 151 | /** |
152 | 152 | * Get Form Title via AJAX (used only in WordPress Admin) |
@@ -155,9 +155,9 @@ discard block |
||
155 | 155 | * @return void |
156 | 156 | */ |
157 | 157 | function give_ajax_get_form_title() { |
158 | - if ( isset( $_POST['form_id'] ) ) { |
|
159 | - $title = get_the_title( $_POST['form_id'] ); |
|
160 | - if ( $title ) { |
|
158 | + if (isset($_POST['form_id'])) { |
|
159 | + $title = get_the_title($_POST['form_id']); |
|
160 | + if ($title) { |
|
161 | 161 | echo $title; |
162 | 162 | } else { |
163 | 163 | echo 'fail'; |
@@ -166,8 +166,8 @@ discard block |
||
166 | 166 | give_die(); |
167 | 167 | } |
168 | 168 | |
169 | -add_action( 'wp_ajax_give_get_form_title', 'give_ajax_get_form_title' ); |
|
170 | -add_action( 'wp_ajax_nopriv_give_get_form_title', 'give_ajax_get_form_title' ); |
|
169 | +add_action('wp_ajax_give_get_form_title', 'give_ajax_get_form_title'); |
|
170 | +add_action('wp_ajax_nopriv_give_get_form_title', 'give_ajax_get_form_title'); |
|
171 | 171 | |
172 | 172 | /** |
173 | 173 | * Retrieve a states drop down |
@@ -177,23 +177,23 @@ discard block |
||
177 | 177 | */ |
178 | 178 | function give_ajax_get_states_field() { |
179 | 179 | |
180 | - if ( empty( $_POST['country'] ) ) { |
|
180 | + if (empty($_POST['country'])) { |
|
181 | 181 | $_POST['country'] = give_get_country(); |
182 | 182 | } |
183 | - $states = give_get_states( $_POST['country'] ); |
|
183 | + $states = give_get_states($_POST['country']); |
|
184 | 184 | |
185 | - if ( ! empty( $states ) ) { |
|
185 | + if ( ! empty($states)) { |
|
186 | 186 | |
187 | 187 | $args = array( |
188 | 188 | 'name' => $_POST['field_name'], |
189 | 189 | 'id' => $_POST['field_name'], |
190 | - 'class' => $_POST['field_name'] . ' give-select', |
|
191 | - 'options' => give_get_states( $_POST['country'] ), |
|
190 | + 'class' => $_POST['field_name'].' give-select', |
|
191 | + 'options' => give_get_states($_POST['country']), |
|
192 | 192 | 'show_option_all' => false, |
193 | 193 | 'show_option_none' => false |
194 | 194 | ); |
195 | 195 | |
196 | - $response = Give()->html->select( $args ); |
|
196 | + $response = Give()->html->select($args); |
|
197 | 197 | |
198 | 198 | } else { |
199 | 199 | |
@@ -205,8 +205,8 @@ discard block |
||
205 | 205 | give_die(); |
206 | 206 | } |
207 | 207 | |
208 | -add_action( 'wp_ajax_give_get_states', 'give_ajax_get_states_field' ); |
|
209 | -add_action( 'wp_ajax_nopriv_give_get_states', 'give_ajax_get_states_field' ); |
|
208 | +add_action('wp_ajax_give_get_states', 'give_ajax_get_states_field'); |
|
209 | +add_action('wp_ajax_nopriv_give_get_states', 'give_ajax_get_states_field'); |
|
210 | 210 | |
211 | 211 | /** |
212 | 212 | * Retrieve a states drop down |
@@ -217,17 +217,17 @@ discard block |
||
217 | 217 | function give_ajax_form_search() { |
218 | 218 | global $wpdb; |
219 | 219 | |
220 | - $search = esc_sql( sanitize_text_field( $_GET['s'] ) ); |
|
220 | + $search = esc_sql(sanitize_text_field($_GET['s'])); |
|
221 | 221 | $results = array(); |
222 | - if ( current_user_can( 'edit_give_forms' ) ) { |
|
223 | - $items = $wpdb->get_results( "SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_title` LIKE '%$search%' LIMIT 50" ); |
|
222 | + if (current_user_can('edit_give_forms')) { |
|
223 | + $items = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_title` LIKE '%$search%' LIMIT 50"); |
|
224 | 224 | } else { |
225 | - $items = $wpdb->get_results( "SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_status` = 'publish' AND `post_title` LIKE '%$search%' LIMIT 50" ); |
|
225 | + $items = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_status` = 'publish' AND `post_title` LIKE '%$search%' LIMIT 50"); |
|
226 | 226 | } |
227 | 227 | |
228 | - if ( $items ) { |
|
228 | + if ($items) { |
|
229 | 229 | |
230 | - foreach ( $items as $item ) { |
|
230 | + foreach ($items as $item) { |
|
231 | 231 | |
232 | 232 | $results[] = array( |
233 | 233 | 'id' => $item->ID, |
@@ -239,18 +239,18 @@ discard block |
||
239 | 239 | |
240 | 240 | $items[] = array( |
241 | 241 | 'id' => 0, |
242 | - 'name' => esc_html__( 'No results found', 'give' ) |
|
242 | + 'name' => esc_html__('No results found', 'give') |
|
243 | 243 | ); |
244 | 244 | |
245 | 245 | } |
246 | 246 | |
247 | - echo json_encode( $results ); |
|
247 | + echo json_encode($results); |
|
248 | 248 | |
249 | 249 | give_die(); |
250 | 250 | } |
251 | 251 | |
252 | -add_action( 'wp_ajax_give_form_search', 'give_ajax_form_search' ); |
|
253 | -add_action( 'wp_ajax_nopriv_give_form_search', 'give_ajax_form_search' ); |
|
252 | +add_action('wp_ajax_give_form_search', 'give_ajax_form_search'); |
|
253 | +add_action('wp_ajax_nopriv_give_form_search', 'give_ajax_form_search'); |
|
254 | 254 | |
255 | 255 | /** |
256 | 256 | * Search the donors database via Ajax |
@@ -261,21 +261,21 @@ discard block |
||
261 | 261 | function give_ajax_donor_search() { |
262 | 262 | global $wpdb; |
263 | 263 | |
264 | - $search = esc_sql( sanitize_text_field( $_GET['s'] ) ); |
|
264 | + $search = esc_sql(sanitize_text_field($_GET['s'])); |
|
265 | 265 | $results = array(); |
266 | - if ( ! current_user_can( 'view_give_reports' ) ) { |
|
266 | + if ( ! current_user_can('view_give_reports')) { |
|
267 | 267 | $donors = array(); |
268 | 268 | } else { |
269 | - $donors = $wpdb->get_results( "SELECT id,name,email FROM {$wpdb->prefix}give_donors WHERE `name` LIKE '%$search%' OR `email` LIKE '%$search%' LIMIT 50" ); |
|
269 | + $donors = $wpdb->get_results("SELECT id,name,email FROM {$wpdb->prefix}give_donors WHERE `name` LIKE '%$search%' OR `email` LIKE '%$search%' LIMIT 50"); |
|
270 | 270 | } |
271 | 271 | |
272 | - if ( $donors ) { |
|
272 | + if ($donors) { |
|
273 | 273 | |
274 | - foreach ( $donors as $donor ) { |
|
274 | + foreach ($donors as $donor) { |
|
275 | 275 | |
276 | 276 | $results[] = array( |
277 | 277 | 'id' => $donor->id, |
278 | - 'name' => $donor->name . '(' . $donor->email . ')' |
|
278 | + 'name' => $donor->name.'('.$donor->email.')' |
|
279 | 279 | ); |
280 | 280 | } |
281 | 281 | |
@@ -283,17 +283,17 @@ discard block |
||
283 | 283 | |
284 | 284 | $donors[] = array( |
285 | 285 | 'id' => 0, |
286 | - 'name' => esc_html__( 'No results found', 'give' ) |
|
286 | + 'name' => esc_html__('No results found', 'give') |
|
287 | 287 | ); |
288 | 288 | |
289 | 289 | } |
290 | 290 | |
291 | - echo json_encode( $results ); |
|
291 | + echo json_encode($results); |
|
292 | 292 | |
293 | 293 | give_die(); |
294 | 294 | } |
295 | 295 | |
296 | -add_action( 'wp_ajax_give_donor_search', 'give_ajax_donor_search' ); |
|
296 | +add_action('wp_ajax_give_donor_search', 'give_ajax_donor_search'); |
|
297 | 297 | |
298 | 298 | |
299 | 299 | /** |
@@ -304,42 +304,42 @@ discard block |
||
304 | 304 | */ |
305 | 305 | function give_ajax_search_users() { |
306 | 306 | |
307 | - if ( current_user_can( 'manage_give_settings' ) ) { |
|
307 | + if (current_user_can('manage_give_settings')) { |
|
308 | 308 | |
309 | - $search_query = trim( $_POST['user_name'] ); |
|
310 | - $exclude = trim( $_POST['exclude'] ); |
|
309 | + $search_query = trim($_POST['user_name']); |
|
310 | + $exclude = trim($_POST['exclude']); |
|
311 | 311 | |
312 | 312 | $get_users_args = array( |
313 | 313 | 'number' => 9999, |
314 | - 'search' => $search_query . '*' |
|
314 | + 'search' => $search_query.'*' |
|
315 | 315 | ); |
316 | 316 | |
317 | - if ( ! empty( $exclude ) ) { |
|
318 | - $exclude_array = explode( ',', $exclude ); |
|
317 | + if ( ! empty($exclude)) { |
|
318 | + $exclude_array = explode(',', $exclude); |
|
319 | 319 | $get_users_args['exclude'] = $exclude_array; |
320 | 320 | } |
321 | 321 | |
322 | - $get_users_args = apply_filters( 'give_search_users_args', $get_users_args ); |
|
322 | + $get_users_args = apply_filters('give_search_users_args', $get_users_args); |
|
323 | 323 | |
324 | - $found_users = apply_filters( 'give_ajax_found_users', get_users( $get_users_args ), $search_query ); |
|
324 | + $found_users = apply_filters('give_ajax_found_users', get_users($get_users_args), $search_query); |
|
325 | 325 | |
326 | 326 | $user_list = '<ul>'; |
327 | - if ( $found_users ) { |
|
328 | - foreach ( $found_users as $user ) { |
|
329 | - $user_list .= '<li><a href="#" data-userid="' . esc_attr( $user->ID ) . '" data-login="' . esc_attr( $user->user_login ) . '">' . esc_html( $user->user_login ) . '</a></li>'; |
|
327 | + if ($found_users) { |
|
328 | + foreach ($found_users as $user) { |
|
329 | + $user_list .= '<li><a href="#" data-userid="'.esc_attr($user->ID).'" data-login="'.esc_attr($user->user_login).'">'.esc_html($user->user_login).'</a></li>'; |
|
330 | 330 | } |
331 | 331 | } else { |
332 | - $user_list .= '<li>' . esc_html__( 'No users found', 'give' ) . '</li>'; |
|
332 | + $user_list .= '<li>'.esc_html__('No users found', 'give').'</li>'; |
|
333 | 333 | } |
334 | 334 | $user_list .= '</ul>'; |
335 | 335 | |
336 | - echo json_encode( array( 'results' => $user_list ) ); |
|
336 | + echo json_encode(array('results' => $user_list)); |
|
337 | 337 | |
338 | 338 | } |
339 | 339 | die(); |
340 | 340 | } |
341 | 341 | |
342 | -add_action( 'wp_ajax_give_search_users', 'give_ajax_search_users' ); |
|
342 | +add_action('wp_ajax_give_search_users', 'give_ajax_search_users'); |
|
343 | 343 | |
344 | 344 | |
345 | 345 | /** |
@@ -350,32 +350,32 @@ discard block |
||
350 | 350 | */ |
351 | 351 | function give_check_for_form_price_variations() { |
352 | 352 | |
353 | - if ( ! current_user_can( 'edit_give_forms', get_current_user_id() ) ) { |
|
354 | - die( '-1' ); |
|
353 | + if ( ! current_user_can('edit_give_forms', get_current_user_id())) { |
|
354 | + die('-1'); |
|
355 | 355 | } |
356 | 356 | |
357 | - $form_id = intval( $_POST['form_id'] ); |
|
358 | - $form = get_post( $form_id ); |
|
357 | + $form_id = intval($_POST['form_id']); |
|
358 | + $form = get_post($form_id); |
|
359 | 359 | |
360 | - if ( 'give_forms' != $form->post_type ) { |
|
361 | - die( '-2' ); |
|
360 | + if ('give_forms' != $form->post_type) { |
|
361 | + die('-2'); |
|
362 | 362 | } |
363 | 363 | |
364 | - if ( give_has_variable_prices( $form_id ) ) { |
|
365 | - $variable_prices = give_get_variable_prices( $form_id ); |
|
364 | + if (give_has_variable_prices($form_id)) { |
|
365 | + $variable_prices = give_get_variable_prices($form_id); |
|
366 | 366 | |
367 | - if ( $variable_prices ) { |
|
367 | + if ($variable_prices) { |
|
368 | 368 | $ajax_response = '<select class="give_price_options_select give-select give-select" name="give_price_option">'; |
369 | 369 | |
370 | - if ( isset( $_POST['all_prices'] ) ) { |
|
371 | - $ajax_response .= '<option value="">' . esc_html__( 'All Levels', 'give' ) . '</option>'; |
|
370 | + if (isset($_POST['all_prices'])) { |
|
371 | + $ajax_response .= '<option value="">'.esc_html__('All Levels', 'give').'</option>'; |
|
372 | 372 | } |
373 | 373 | |
374 | - foreach ( $variable_prices as $key => $price ) { |
|
374 | + foreach ($variable_prices as $key => $price) { |
|
375 | 375 | |
376 | - $level_text = ! empty( $price['_give_text'] ) ? esc_html( $price['_give_text'] ) : give_currency_filter( give_format_amount( $price['_give_amount'] ) ); |
|
376 | + $level_text = ! empty($price['_give_text']) ? esc_html($price['_give_text']) : give_currency_filter(give_format_amount($price['_give_amount'])); |
|
377 | 377 | |
378 | - $ajax_response .= '<option value="' . esc_attr( $price['_give_id']['level_id'] ) . '">' . $level_text . '</option>'; |
|
378 | + $ajax_response .= '<option value="'.esc_attr($price['_give_id']['level_id']).'">'.$level_text.'</option>'; |
|
379 | 379 | } |
380 | 380 | $ajax_response .= '</select>'; |
381 | 381 | echo $ajax_response; |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | give_die(); |
387 | 387 | } |
388 | 388 | |
389 | -add_action( 'wp_ajax_give_check_for_form_price_variations', 'give_check_for_form_price_variations' ); |
|
389 | +add_action('wp_ajax_give_check_for_form_price_variations', 'give_check_for_form_price_variations'); |
|
390 | 390 | |
391 | 391 | |
392 | 392 | /** |
@@ -396,30 +396,30 @@ discard block |
||
396 | 396 | * @return void |
397 | 397 | */ |
398 | 398 | function give_check_for_form_price_variations_html() { |
399 | - if ( ! current_user_can( 'edit_give_payments', get_current_user_id() ) ) { |
|
400 | - die( '-1' ); |
|
399 | + if ( ! current_user_can('edit_give_payments', get_current_user_id())) { |
|
400 | + die('-1'); |
|
401 | 401 | } |
402 | 402 | |
403 | - $form_id = intval( $_POST['form_id'] ); |
|
404 | - $payment_id = intval( $_POST['payment_id'] ); |
|
405 | - $form = get_post( $form_id ); |
|
403 | + $form_id = intval($_POST['form_id']); |
|
404 | + $payment_id = intval($_POST['payment_id']); |
|
405 | + $form = get_post($form_id); |
|
406 | 406 | |
407 | - if ( 'give_forms' != $form->post_type ) { |
|
408 | - die( '-2' ); |
|
407 | + if ('give_forms' != $form->post_type) { |
|
408 | + die('-2'); |
|
409 | 409 | } |
410 | 410 | |
411 | - if ( ! give_has_variable_prices( $form_id ) ) { |
|
412 | - echo esc_html__( 'n/a', 'give' ); |
|
411 | + if ( ! give_has_variable_prices($form_id)) { |
|
412 | + echo esc_html__('n/a', 'give'); |
|
413 | 413 | } else { |
414 | 414 | // Payment object. |
415 | - $payment = new Give_Payment( $payment_id ); |
|
415 | + $payment = new Give_Payment($payment_id); |
|
416 | 416 | |
417 | 417 | // Payment meta. |
418 | 418 | $payment_meta = $payment->get_meta(); |
419 | 419 | |
420 | 420 | |
421 | 421 | // Variable price dropdown options. |
422 | - $variable_price_dropdown_option = array( |
|
422 | + $variable_price_dropdown_option = array( |
|
423 | 423 | 'id' => $form_id, |
424 | 424 | 'name' => 'give-variable-price', |
425 | 425 | 'chosen' => true, |
@@ -428,10 +428,10 @@ discard block |
||
428 | 428 | ); |
429 | 429 | |
430 | 430 | // Render variable prices select tag html. |
431 | - give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true ); |
|
431 | + give_get_form_variable_price_dropdown($variable_price_dropdown_option, true); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | give_die(); |
435 | 435 | } |
436 | 436 | |
437 | -add_action( 'wp_ajax_give_check_for_form_price_variations_html', 'give_check_for_form_price_variations_html' ); |
|
437 | +add_action('wp_ajax_give_check_for_form_price_variations_html', 'give_check_for_form_price_variations_html'); |
@@ -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,7 +20,7 @@ discard block |
||
20 | 20 | * @since 1.0 |
21 | 21 | * @return void |
22 | 22 | */ |
23 | -add_action( 'give_manual_cc_form', '__return_false' ); |
|
23 | +add_action('give_manual_cc_form', '__return_false'); |
|
24 | 24 | |
25 | 25 | /** |
26 | 26 | * Processes the purchase data and uses the Manual Payment gateway to record |
@@ -32,17 +32,17 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @return void |
34 | 34 | */ |
35 | -function give_manual_payment( $purchase_data ) { |
|
35 | +function give_manual_payment($purchase_data) { |
|
36 | 36 | |
37 | - if ( ! wp_verify_nonce( $purchase_data['gateway_nonce'], 'give-gateway' ) ) { |
|
38 | - wp_die( esc_html__( 'Nonce verification has failed', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
37 | + if ( ! wp_verify_nonce($purchase_data['gateway_nonce'], 'give-gateway')) { |
|
38 | + wp_die(esc_html__('Nonce verification has failed', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | //Create payment_data array |
42 | 42 | $payment_data = array( |
43 | 43 | 'price' => $purchase_data['price'], |
44 | 44 | 'give_form_title' => $purchase_data['post_data']['give-form-title'], |
45 | - 'give_form_id' => intval( $purchase_data['post_data']['give-form-id'] ), |
|
45 | + 'give_form_id' => intval($purchase_data['post_data']['give-form-id']), |
|
46 | 46 | 'give_price_id' => isset($purchase_data['post_data']['give-price-id']) ? $purchase_data['post_data']['give-price-id'] : '', |
47 | 47 | 'date' => $purchase_data['date'], |
48 | 48 | 'user_email' => $purchase_data['user_email'], |
@@ -52,24 +52,24 @@ discard block |
||
52 | 52 | 'status' => 'pending' |
53 | 53 | ); |
54 | 54 | // Record the pending payment |
55 | - $payment = give_insert_payment( $payment_data ); |
|
55 | + $payment = give_insert_payment($payment_data); |
|
56 | 56 | |
57 | - if ( $payment ) { |
|
58 | - give_update_payment_status( $payment, 'publish' ); |
|
57 | + if ($payment) { |
|
58 | + give_update_payment_status($payment, 'publish'); |
|
59 | 59 | give_send_to_success_page(); |
60 | 60 | } else { |
61 | 61 | give_record_gateway_error( |
62 | - esc_html__( 'Payment Error', 'give' ), |
|
62 | + esc_html__('Payment Error', 'give'), |
|
63 | 63 | sprintf( |
64 | 64 | /* translators: %s: payment data */ |
65 | - __( 'The payment creation failed while processing a manual (free or test) donation. Payment data: %s', 'give' ), |
|
66 | - json_encode( $payment_data ) |
|
65 | + __('The payment creation failed while processing a manual (free or test) donation. Payment data: %s', 'give'), |
|
66 | + json_encode($payment_data) |
|
67 | 67 | ), |
68 | 68 | $payment |
69 | 69 | ); |
70 | 70 | // If errors are present, send the user back to the purchase page so they can be corrected |
71 | - give_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['give-gateway'] ); |
|
71 | + give_send_back_to_checkout('?payment-mode='.$purchase_data['post_data']['give-gateway']); |
|
72 | 72 | } |
73 | 73 | } |
74 | 74 | |
75 | -add_action( 'give_gateway_manual', 'give_manual_payment' ); |
|
75 | +add_action('give_gateway_manual', 'give_manual_payment'); |
@@ -18,17 +18,17 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @return array |
20 | 20 | */ |
21 | -function give_offline_register_gateway( $gateways ) { |
|
21 | +function give_offline_register_gateway($gateways) { |
|
22 | 22 | // Format: ID => Name |
23 | 23 | $gateways['offline'] = array( |
24 | - 'admin_label' => esc_html__( 'Offline Donation', 'give' ), |
|
25 | - 'checkout_label' => esc_html__( 'Offline Donation', 'give' ) |
|
24 | + 'admin_label' => esc_html__('Offline Donation', 'give'), |
|
25 | + 'checkout_label' => esc_html__('Offline Donation', 'give') |
|
26 | 26 | ); |
27 | 27 | |
28 | 28 | return $gateways; |
29 | 29 | } |
30 | 30 | |
31 | -add_filter( 'give_payment_gateways', 'give_offline_register_gateway', 1 ); |
|
31 | +add_filter('give_payment_gateways', 'give_offline_register_gateway', 1); |
|
32 | 32 | |
33 | 33 | |
34 | 34 | /** |
@@ -40,56 +40,56 @@ discard block |
||
40 | 40 | * |
41 | 41 | * @return void |
42 | 42 | */ |
43 | -function give_offline_payment_cc_form( $form_id ) { |
|
43 | +function give_offline_payment_cc_form($form_id) { |
|
44 | 44 | |
45 | - $post_offline_customization_option = get_post_meta( $form_id, '_give_customize_offline_donations', true ); |
|
46 | - $post_offline_instructions = get_post_meta( $form_id, '_give_offline_checkout_notes', true ); |
|
47 | - $global_offline_instruction = give_get_option( 'global_offline_donation_content' ); |
|
45 | + $post_offline_customization_option = get_post_meta($form_id, '_give_customize_offline_donations', true); |
|
46 | + $post_offline_instructions = get_post_meta($form_id, '_give_offline_checkout_notes', true); |
|
47 | + $global_offline_instruction = give_get_option('global_offline_donation_content'); |
|
48 | 48 | $offline_instructions = $global_offline_instruction; |
49 | 49 | |
50 | - if ( $post_offline_customization_option == 'yes' ) { |
|
50 | + if ($post_offline_customization_option == 'yes') { |
|
51 | 51 | $offline_instructions = $post_offline_instructions; |
52 | 52 | } |
53 | 53 | |
54 | 54 | |
55 | 55 | ob_start(); ?> |
56 | - <?php do_action( 'give_before_offline_info_fields', $form_id ); ?> |
|
56 | + <?php do_action('give_before_offline_info_fields', $form_id); ?> |
|
57 | 57 | <fieldset id="give_offline_payment_info"> |
58 | 58 | <?php |
59 | - $settings_url = admin_url( 'post.php?post=' . $form_id . '&action=edit&message=1' ); |
|
59 | + $settings_url = admin_url('post.php?post='.$form_id.'&action=edit&message=1'); |
|
60 | 60 | /* translators: %s: form settings url */ |
61 | - $offline_instructions = ! empty( $offline_instructions ) ? $offline_instructions : sprintf( __( 'Please enter offline donation instructions in <a href="%s">this form\'s settings</a>.', 'give' ), $settings_url ); |
|
62 | - echo wpautop( stripslashes( $offline_instructions ) ); |
|
61 | + $offline_instructions = ! empty($offline_instructions) ? $offline_instructions : sprintf(__('Please enter offline donation instructions in <a href="%s">this form\'s settings</a>.', 'give'), $settings_url); |
|
62 | + echo wpautop(stripslashes($offline_instructions)); |
|
63 | 63 | ?> |
64 | 64 | </fieldset> |
65 | - <?php do_action( 'give_after_offline_info_fields', $form_id ); ?> |
|
65 | + <?php do_action('give_after_offline_info_fields', $form_id); ?> |
|
66 | 66 | <?php |
67 | 67 | echo ob_get_clean(); |
68 | 68 | } |
69 | 69 | |
70 | -add_action( 'give_offline_cc_form', 'give_offline_payment_cc_form' ); |
|
70 | +add_action('give_offline_cc_form', 'give_offline_payment_cc_form'); |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * Give Offline Billing Field |
74 | 74 | * |
75 | 75 | * @param $form_id |
76 | 76 | */ |
77 | -function give_offline_billing_fields( $form_id ) { |
|
77 | +function give_offline_billing_fields($form_id) { |
|
78 | 78 | //Enable Default CC fields (billing info) |
79 | - $post_offline_cc_fields = get_post_meta( $form_id, '_give_offline_donation_enable_billing_fields_single', true ); |
|
80 | - $post_offline_customize_option = get_post_meta( $form_id, '_give_customize_offline_donations', true ); |
|
79 | + $post_offline_cc_fields = get_post_meta($form_id, '_give_offline_donation_enable_billing_fields_single', true); |
|
80 | + $post_offline_customize_option = get_post_meta($form_id, '_give_customize_offline_donations', true); |
|
81 | 81 | |
82 | - $global_offline_cc_fields = give_get_option( 'give_offline_donation_enable_billing_fields' ); |
|
82 | + $global_offline_cc_fields = give_get_option('give_offline_donation_enable_billing_fields'); |
|
83 | 83 | |
84 | 84 | //Output CC Address fields if global option is on and user hasn't elected to customize this form's offline donation options |
85 | - if ( $global_offline_cc_fields == 'on' && $post_offline_customize_option !== 'yes' ) { |
|
86 | - give_default_cc_address_fields( $form_id ); |
|
87 | - } elseif($post_offline_customize_option == 'yes' && $post_offline_cc_fields == 'on') { |
|
88 | - give_default_cc_address_fields( $form_id ); |
|
85 | + if ($global_offline_cc_fields == 'on' && $post_offline_customize_option !== 'yes') { |
|
86 | + give_default_cc_address_fields($form_id); |
|
87 | + } elseif ($post_offline_customize_option == 'yes' && $post_offline_cc_fields == 'on') { |
|
88 | + give_default_cc_address_fields($form_id); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | |
92 | -add_action( 'give_before_offline_info_fields', 'give_offline_billing_fields', 10, 1 ); |
|
92 | +add_action('give_before_offline_info_fields', 'give_offline_billing_fields', 10, 1); |
|
93 | 93 | |
94 | 94 | /** |
95 | 95 | * Process the payment |
@@ -100,16 +100,16 @@ discard block |
||
100 | 100 | * |
101 | 101 | * @return void |
102 | 102 | */ |
103 | -function give_offline_process_payment( $purchase_data ) { |
|
103 | +function give_offline_process_payment($purchase_data) { |
|
104 | 104 | |
105 | - $purchase_summary = give_get_purchase_summary( $purchase_data ); |
|
105 | + $purchase_summary = give_get_purchase_summary($purchase_data); |
|
106 | 106 | |
107 | 107 | // setup the payment details |
108 | 108 | $payment_data = array( |
109 | 109 | 'price' => $purchase_data['price'], |
110 | 110 | 'give_form_title' => $purchase_data['post_data']['give-form-title'], |
111 | - 'give_form_id' => intval( $purchase_data['post_data']['give-form-id'] ), |
|
112 | - 'give_price_id' => isset( $purchase_data['post_data']['give-price-id'] ) ? $purchase_data['post_data']['give-price-id'] : '', |
|
111 | + 'give_form_id' => intval($purchase_data['post_data']['give-form-id']), |
|
112 | + 'give_price_id' => isset($purchase_data['post_data']['give-price-id']) ? $purchase_data['post_data']['give-price-id'] : '', |
|
113 | 113 | 'date' => $purchase_data['date'], |
114 | 114 | 'user_email' => $purchase_data['user_email'], |
115 | 115 | 'purchase_key' => $purchase_data['purchase_key'], |
@@ -121,20 +121,20 @@ discard block |
||
121 | 121 | |
122 | 122 | |
123 | 123 | // record the pending payment |
124 | - $payment = give_insert_payment( $payment_data ); |
|
124 | + $payment = give_insert_payment($payment_data); |
|
125 | 125 | |
126 | - if ( $payment ) { |
|
127 | - give_offline_send_admin_notice( $payment ); |
|
128 | - give_offline_send_donor_instructions( $payment ); |
|
126 | + if ($payment) { |
|
127 | + give_offline_send_admin_notice($payment); |
|
128 | + give_offline_send_donor_instructions($payment); |
|
129 | 129 | give_send_to_success_page(); |
130 | 130 | } else { |
131 | 131 | // if errors are present, send the user back to the donation form so they can be corrected |
132 | - give_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['give-gateway'] ); |
|
132 | + give_send_back_to_checkout('?payment-mode='.$purchase_data['post_data']['give-gateway']); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | } |
136 | 136 | |
137 | -add_action( 'give_gateway_offline', 'give_offline_process_payment' ); |
|
137 | +add_action('give_gateway_offline', 'give_offline_process_payment'); |
|
138 | 138 | |
139 | 139 | |
140 | 140 | /** |
@@ -147,47 +147,47 @@ discard block |
||
147 | 147 | * @since 1.0 |
148 | 148 | * @return void |
149 | 149 | */ |
150 | -function give_offline_send_donor_instructions( $payment_id = 0 ) { |
|
150 | +function give_offline_send_donor_instructions($payment_id = 0) { |
|
151 | 151 | |
152 | - $payment_data = give_get_payment_meta( $payment_id ); |
|
153 | - $post_offline_customization_option = get_post_meta( $payment_data['form_id'], '_give_customize_offline_donations', true ); |
|
152 | + $payment_data = give_get_payment_meta($payment_id); |
|
153 | + $post_offline_customization_option = get_post_meta($payment_data['form_id'], '_give_customize_offline_donations', true); |
|
154 | 154 | |
155 | 155 | //Customize email content depending on whether the single form has been customized |
156 | - $email_content = give_get_option( 'global_offline_donation_email' ); |
|
156 | + $email_content = give_get_option('global_offline_donation_email'); |
|
157 | 157 | |
158 | - if ( $post_offline_customization_option === 'yes' ) { |
|
159 | - $email_content = get_post_meta( $payment_data['form_id'], '_give_offline_donation_email', true ); |
|
158 | + if ($post_offline_customization_option === 'yes') { |
|
159 | + $email_content = get_post_meta($payment_data['form_id'], '_give_offline_donation_email', true); |
|
160 | 160 | } |
161 | 161 | |
162 | - $from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ); |
|
163 | - $from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data ); |
|
162 | + $from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES)); |
|
163 | + $from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data); |
|
164 | 164 | |
165 | - $from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) ); |
|
166 | - $from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data ); |
|
165 | + $from_email = give_get_option('from_email', get_bloginfo('admin_email')); |
|
166 | + $from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data); |
|
167 | 167 | |
168 | - $to_email = give_get_payment_user_email( $payment_id ); |
|
168 | + $to_email = give_get_payment_user_email($payment_id); |
|
169 | 169 | |
170 | - $subject = give_get_option( 'offline_donation_subject', esc_html__( 'Offline Donation Instructions', 'give' ) ); |
|
171 | - if ( $post_offline_customization_option === 'yes' ) { |
|
172 | - $subject = get_post_meta( $payment_data['form_id'], '_give_offline_donation_subject', true ); |
|
170 | + $subject = give_get_option('offline_donation_subject', esc_html__('Offline Donation Instructions', 'give')); |
|
171 | + if ($post_offline_customization_option === 'yes') { |
|
172 | + $subject = get_post_meta($payment_data['form_id'], '_give_offline_donation_subject', true); |
|
173 | 173 | } |
174 | 174 | |
175 | - $subject = apply_filters( 'give_offline_donation_subject', wp_strip_all_tags( $subject ), $payment_id ); |
|
176 | - $subject = give_do_email_tags( $subject, $payment_id ); |
|
175 | + $subject = apply_filters('give_offline_donation_subject', wp_strip_all_tags($subject), $payment_id); |
|
176 | + $subject = give_do_email_tags($subject, $payment_id); |
|
177 | 177 | |
178 | - $attachments = apply_filters( 'give_offline_donation_attachments', array(), $payment_id, $payment_data ); |
|
179 | - $message = give_do_email_tags( $email_content, $payment_id ); |
|
178 | + $attachments = apply_filters('give_offline_donation_attachments', array(), $payment_id, $payment_data); |
|
179 | + $message = give_do_email_tags($email_content, $payment_id); |
|
180 | 180 | |
181 | 181 | $emails = Give()->emails; |
182 | 182 | |
183 | - $emails->__set( 'from_name', $from_name ); |
|
184 | - $emails->__set( 'from_email', $from_email ); |
|
185 | - $emails->__set( 'heading', esc_html__( 'Offline Donation Instructions', 'give' ) ); |
|
183 | + $emails->__set('from_name', $from_name); |
|
184 | + $emails->__set('from_email', $from_email); |
|
185 | + $emails->__set('heading', esc_html__('Offline Donation Instructions', 'give')); |
|
186 | 186 | |
187 | - $headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data ); |
|
188 | - $emails->__set( 'headers', $headers ); |
|
187 | + $headers = apply_filters('give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data); |
|
188 | + $emails->__set('headers', $headers); |
|
189 | 189 | |
190 | - $emails->send( $to_email, $subject, $message, $attachments ); |
|
190 | + $emails->send($to_email, $subject, $message, $attachments); |
|
191 | 191 | |
192 | 192 | } |
193 | 193 | |
@@ -204,50 +204,50 @@ discard block |
||
204 | 204 | * @return void |
205 | 205 | * |
206 | 206 | */ |
207 | -function give_offline_send_admin_notice( $payment_id = 0 ) { |
|
207 | +function give_offline_send_admin_notice($payment_id = 0) { |
|
208 | 208 | |
209 | 209 | /* Send an email notification to the admin */ |
210 | 210 | $admin_email = give_get_admin_notice_emails(); |
211 | - $user_info = give_get_payment_meta_user_info( $payment_id ); |
|
211 | + $user_info = give_get_payment_meta_user_info($payment_id); |
|
212 | 212 | |
213 | - if ( isset( $user_info['id'] ) && $user_info['id'] > 0 ) { |
|
214 | - $user_data = get_userdata( $user_info['id'] ); |
|
213 | + if (isset($user_info['id']) && $user_info['id'] > 0) { |
|
214 | + $user_data = get_userdata($user_info['id']); |
|
215 | 215 | $name = $user_data->display_name; |
216 | - } elseif ( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) { |
|
217 | - $name = $user_info['first_name'] . ' ' . $user_info['last_name']; |
|
216 | + } elseif (isset($user_info['first_name']) && isset($user_info['last_name'])) { |
|
217 | + $name = $user_info['first_name'].' '.$user_info['last_name']; |
|
218 | 218 | } else { |
219 | 219 | $name = $user_info['email']; |
220 | 220 | } |
221 | 221 | |
222 | - $amount = give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) ); |
|
222 | + $amount = give_currency_filter(give_format_amount(give_get_payment_amount($payment_id))); |
|
223 | 223 | |
224 | - $admin_subject = apply_filters( 'give_offline_admin_donation_notification_subject', esc_html__( 'New Pending Donation', 'give' ), $payment_id ); |
|
224 | + $admin_subject = apply_filters('give_offline_admin_donation_notification_subject', esc_html__('New Pending Donation', 'give'), $payment_id); |
|
225 | 225 | |
226 | - $admin_message = esc_html__( 'Dear Admin,', 'give' ) . "\n\n"; |
|
227 | - $admin_message .= esc_html__( 'An offline donation has been made on your website: ', 'give' ) . get_bloginfo( 'name' ) . ' '; |
|
228 | - $admin_message .= esc_html__( 'Hooray! The donation is in a pending status and is awaiting payment. Donation instructions have been emailed to the donor. Once you receive payment, be sure to mark the donation as complete using the link below.', 'give' ) . "\n\n"; |
|
226 | + $admin_message = esc_html__('Dear Admin,', 'give')."\n\n"; |
|
227 | + $admin_message .= esc_html__('An offline donation has been made on your website: ', 'give').get_bloginfo('name').' '; |
|
228 | + $admin_message .= esc_html__('Hooray! The donation is in a pending status and is awaiting payment. Donation instructions have been emailed to the donor. Once you receive payment, be sure to mark the donation as complete using the link below.', 'give')."\n\n"; |
|
229 | 229 | |
230 | 230 | |
231 | - $admin_message .= '<strong>' . esc_html__( 'Donor: ', 'give' ) . '</strong>' . html_entity_decode( $name, ENT_COMPAT, 'UTF-8' ) . "\n"; |
|
232 | - $admin_message .= '<strong>' . esc_html__( 'Amount: ', 'give' ) . '</strong>' . html_entity_decode( $amount, ENT_COMPAT, 'UTF-8' ) . "\n\n"; |
|
231 | + $admin_message .= '<strong>'.esc_html__('Donor: ', 'give').'</strong>'.html_entity_decode($name, ENT_COMPAT, 'UTF-8')."\n"; |
|
232 | + $admin_message .= '<strong>'.esc_html__('Amount: ', 'give').'</strong>'.html_entity_decode($amount, ENT_COMPAT, 'UTF-8')."\n\n"; |
|
233 | 233 | |
234 | 234 | $admin_message .= sprintf( |
235 | 235 | '<a href="%1$s">%2$s</a>', |
236 | - admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details&id=' . $payment_id ), |
|
237 | - esc_html__( 'Click Here to View and/or Update Donation Details', 'give' ) |
|
238 | - ) . "\n\n"; |
|
236 | + admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details&id='.$payment_id), |
|
237 | + esc_html__('Click Here to View and/or Update Donation Details', 'give') |
|
238 | + )."\n\n"; |
|
239 | 239 | |
240 | - $admin_message = apply_filters( 'give_offline_admin_donation_notification', $admin_message, $payment_id ); |
|
241 | - $attachments = apply_filters( 'give_offline_admin_donation_notification_attachments', array(), $payment_id ); |
|
242 | - $admin_headers = apply_filters( 'give_offline_admin_donation_notification_headers', array(), $payment_id ); |
|
240 | + $admin_message = apply_filters('give_offline_admin_donation_notification', $admin_message, $payment_id); |
|
241 | + $attachments = apply_filters('give_offline_admin_donation_notification_attachments', array(), $payment_id); |
|
242 | + $admin_headers = apply_filters('give_offline_admin_donation_notification_headers', array(), $payment_id); |
|
243 | 243 | |
244 | 244 | //Send Email |
245 | 245 | $emails = Give()->emails; |
246 | - if ( ! empty( $admin_headers ) ) { |
|
247 | - $emails->__set( 'headers', $admin_headers ); |
|
246 | + if ( ! empty($admin_headers)) { |
|
247 | + $emails->__set('headers', $admin_headers); |
|
248 | 248 | } |
249 | 249 | |
250 | - $emails->send( $admin_email, $admin_subject, $admin_message, $attachments ); |
|
250 | + $emails->send($admin_email, $admin_subject, $admin_message, $attachments); |
|
251 | 251 | |
252 | 252 | } |
253 | 253 | |
@@ -258,15 +258,15 @@ discard block |
||
258 | 258 | * @since 1.0 |
259 | 259 | * @return array |
260 | 260 | */ |
261 | -function give_offline_add_settings( $settings ) { |
|
261 | +function give_offline_add_settings($settings) { |
|
262 | 262 | |
263 | 263 | //Vars |
264 | 264 | $prefix = '_give_'; |
265 | 265 | |
266 | - $is_gateway_active = give_is_gateway_active( 'offline' ); |
|
266 | + $is_gateway_active = give_is_gateway_active('offline'); |
|
267 | 267 | |
268 | 268 | //this gateway isn't active |
269 | - if ( ! $is_gateway_active ) { |
|
269 | + if ( ! $is_gateway_active) { |
|
270 | 270 | //return settings and bounce |
271 | 271 | return $settings; |
272 | 272 | } |
@@ -275,27 +275,27 @@ discard block |
||
275 | 275 | $check_settings = array( |
276 | 276 | |
277 | 277 | array( |
278 | - 'name' => esc_html__( 'Customize Offline Donations', 'give' ), |
|
279 | - 'desc' => esc_html__( 'If you would like to customize the donation instructions for this specific forms check this option.', 'give' ), |
|
280 | - 'id' => $prefix . 'customize_offline_donations', |
|
278 | + 'name' => esc_html__('Customize Offline Donations', 'give'), |
|
279 | + 'desc' => esc_html__('If you would like to customize the donation instructions for this specific forms check this option.', 'give'), |
|
280 | + 'id' => $prefix.'customize_offline_donations', |
|
281 | 281 | 'type' => 'radio_inline', |
282 | 282 | 'default' => 'no', |
283 | 283 | 'options' => array( |
284 | - 'yes' => esc_html__( 'Yes', 'give' ), |
|
285 | - 'no' => esc_html__( 'No', 'give' ), |
|
284 | + 'yes' => esc_html__('Yes', 'give'), |
|
285 | + 'no' => esc_html__('No', 'give'), |
|
286 | 286 | ), |
287 | 287 | ), |
288 | 288 | array( |
289 | - 'name' => esc_html__( 'Request Billing Information', 'give' ), |
|
290 | - 'desc' => esc_html__( 'This option will enable the billing details section for this form\'s offline donation payment gateway. The fieldset will appear above the offline donation instructions.', 'give' ), |
|
291 | - 'id' => $prefix . 'offline_donation_enable_billing_fields_single', |
|
289 | + 'name' => esc_html__('Request Billing Information', 'give'), |
|
290 | + 'desc' => esc_html__('This option will enable the billing details section for this form\'s offline donation payment gateway. The fieldset will appear above the offline donation instructions.', 'give'), |
|
291 | + 'id' => $prefix.'offline_donation_enable_billing_fields_single', |
|
292 | 292 | 'row_classes' => 'give-subfield', |
293 | 293 | 'type' => 'checkbox' |
294 | 294 | ), |
295 | 295 | array( |
296 | - 'id' => $prefix . 'offline_checkout_notes', |
|
297 | - 'name' => esc_html__( 'Offline Donation Instructions', 'give' ), |
|
298 | - 'desc' => esc_html__( 'Enter the instructions you want to display to the donor during the donation process. Most likely this would include important information like mailing address and who to make the check out to.', 'give' ), |
|
296 | + 'id' => $prefix.'offline_checkout_notes', |
|
297 | + 'name' => esc_html__('Offline Donation Instructions', 'give'), |
|
298 | + 'desc' => esc_html__('Enter the instructions you want to display to the donor during the donation process. Most likely this would include important information like mailing address and who to make the check out to.', 'give'), |
|
299 | 299 | 'default' => give_get_default_offline_donation_content(), |
300 | 300 | 'type' => 'wysiwyg', |
301 | 301 | 'row_classes' => 'give-subfield', |
@@ -304,17 +304,17 @@ discard block |
||
304 | 304 | ) |
305 | 305 | ), |
306 | 306 | array( |
307 | - 'id' => $prefix . 'offline_donation_subject', |
|
308 | - 'name' => esc_html__( 'Offline Donation Email Instructions Subject', 'give' ), |
|
309 | - 'desc' => esc_html__( 'Enter the subject line for the donation receipt email.', 'give' ), |
|
310 | - 'default' => esc_attr__( '{donation} - Offline Donation Instructions', 'give' ), |
|
307 | + 'id' => $prefix.'offline_donation_subject', |
|
308 | + 'name' => esc_html__('Offline Donation Email Instructions Subject', 'give'), |
|
309 | + 'desc' => esc_html__('Enter the subject line for the donation receipt email.', 'give'), |
|
310 | + 'default' => esc_attr__('{donation} - Offline Donation Instructions', 'give'), |
|
311 | 311 | 'row_classes' => 'give-subfield', |
312 | 312 | 'type' => 'text' |
313 | 313 | ), |
314 | 314 | array( |
315 | - 'id' => $prefix . 'offline_donation_email', |
|
316 | - 'name' => esc_html__( 'Offline Donation Email Instructions', 'give' ), |
|
317 | - 'desc' => esc_html__( 'Enter the instructions you want emailed to the donor after they have submitted the donation form. Most likely this would include important information like mailing address and who to make the check out to.', 'give' ), |
|
315 | + 'id' => $prefix.'offline_donation_email', |
|
316 | + 'name' => esc_html__('Offline Donation Email Instructions', 'give'), |
|
317 | + 'desc' => esc_html__('Enter the instructions you want emailed to the donor after they have submitted the donation form. Most likely this would include important information like mailing address and who to make the check out to.', 'give'), |
|
318 | 318 | 'default' => give_get_default_offline_donation_email_content(), |
319 | 319 | 'type' => 'wysiwyg', |
320 | 320 | 'row_classes' => 'give-subfield', |
@@ -324,10 +324,10 @@ discard block |
||
324 | 324 | ) |
325 | 325 | ); |
326 | 326 | |
327 | - return array_merge( $settings, $check_settings ); |
|
327 | + return array_merge($settings, $check_settings); |
|
328 | 328 | } |
329 | 329 | |
330 | -add_filter( 'give_forms_display_options_metabox_fields', 'give_offline_add_settings' ); |
|
330 | +add_filter('give_forms_display_options_metabox_fields', 'give_offline_add_settings'); |
|
331 | 331 | |
332 | 332 | |
333 | 333 | /** |
@@ -339,32 +339,32 @@ discard block |
||
339 | 339 | */ |
340 | 340 | function give_get_default_offline_donation_content() { |
341 | 341 | |
342 | - $sitename = get_bloginfo( 'sitename' ); |
|
342 | + $sitename = get_bloginfo('sitename'); |
|
343 | 343 | |
344 | - $default_text = '<p>' . esc_html__( 'In order to make an offline donation we ask that you please follow these instructions', 'give' ) . ': </p>'; |
|
344 | + $default_text = '<p>'.esc_html__('In order to make an offline donation we ask that you please follow these instructions', 'give').': </p>'; |
|
345 | 345 | $default_text .= '<ol>'; |
346 | 346 | $default_text .= '<li>'; |
347 | 347 | $default_text .= sprintf( |
348 | 348 | /* translators: %s: site name */ |
349 | - __( 'Make a check payable to "%s"', 'give' ), |
|
349 | + __('Make a check payable to "%s"', 'give'), |
|
350 | 350 | $sitename |
351 | 351 | ); |
352 | 352 | $default_text .= '</li>'; |
353 | 353 | $default_text .= '<li>'; |
354 | 354 | $default_text .= sprintf( |
355 | 355 | /* translators: %s: site name */ |
356 | - __( 'On the memo line of the check, please indicate that the donation is for "%s"', 'give' ), |
|
356 | + __('On the memo line of the check, please indicate that the donation is for "%s"', 'give'), |
|
357 | 357 | $sitename |
358 | 358 | ); |
359 | 359 | $default_text .= '</li>'; |
360 | - $default_text .= '<li>' . esc_html__( 'Please mail your check to:', 'give' ) . '</li>'; |
|
360 | + $default_text .= '<li>'.esc_html__('Please mail your check to:', 'give').'</li>'; |
|
361 | 361 | $default_text .= '</ol>'; |
362 | - $default_text .= ' <em>' . $sitename . '</em><br>'; |
|
362 | + $default_text .= ' <em>'.$sitename.'</em><br>'; |
|
363 | 363 | $default_text .= ' <em>123 G Street </em><br>'; |
364 | 364 | $default_text .= ' <em>San Diego, CA 92101 </em><br>'; |
365 | - $default_text .= '<p>' . esc_html__( 'All contributions will be gratefully acknowledged and are tax deductible.', 'give' ) . '</p>'; |
|
365 | + $default_text .= '<p>'.esc_html__('All contributions will be gratefully acknowledged and are tax deductible.', 'give').'</p>'; |
|
366 | 366 | |
367 | - return apply_filters( 'give_default_offline_donation_content', $default_text ); |
|
367 | + return apply_filters('give_default_offline_donation_content', $default_text); |
|
368 | 368 | |
369 | 369 | } |
370 | 370 | |
@@ -377,33 +377,33 @@ discard block |
||
377 | 377 | */ |
378 | 378 | function give_get_default_offline_donation_email_content() { |
379 | 379 | |
380 | - $sitename = get_bloginfo( 'sitename' ); |
|
381 | - $default_text = '<p>' . esc_html__( 'Dear {name},', 'give' ) . '</p>'; |
|
382 | - $default_text .= '<p>' . esc_html__( 'Thank you for your offline donation request! Your generosity is greatly appreciated. In order to make an offline donation we ask that you please follow these instructions', 'give' ) . ': </p>'; |
|
380 | + $sitename = get_bloginfo('sitename'); |
|
381 | + $default_text = '<p>'.esc_html__('Dear {name},', 'give').'</p>'; |
|
382 | + $default_text .= '<p>'.esc_html__('Thank you for your offline donation request! Your generosity is greatly appreciated. In order to make an offline donation we ask that you please follow these instructions', 'give').': </p>'; |
|
383 | 383 | $default_text .= '<ol>'; |
384 | 384 | $default_text .= '<li>'; |
385 | 385 | $default_text .= sprintf( |
386 | 386 | /* translators: %s: site name */ |
387 | - __( 'Make a check payable to "%s"', 'give' ), |
|
387 | + __('Make a check payable to "%s"', 'give'), |
|
388 | 388 | $sitename |
389 | 389 | ); |
390 | 390 | $default_text .= '</li>'; |
391 | 391 | $default_text .= '<li>'; |
392 | 392 | $default_text .= sprintf( |
393 | 393 | /* translators: %s: site name */ |
394 | - __( 'On the memo line of the check, please indicate that the donation is for "%s"', 'give' ), |
|
394 | + __('On the memo line of the check, please indicate that the donation is for "%s"', 'give'), |
|
395 | 395 | $sitename |
396 | 396 | ); |
397 | 397 | $default_text .= '</li>'; |
398 | - $default_text .= '<li>' . esc_html__( 'Please mail your check to:', 'give' ) . '</li>'; |
|
398 | + $default_text .= '<li>'.esc_html__('Please mail your check to:', 'give').'</li>'; |
|
399 | 399 | $default_text .= '</ol>'; |
400 | - $default_text .= ' <em>' . $sitename . '</em><br>'; |
|
400 | + $default_text .= ' <em>'.$sitename.'</em><br>'; |
|
401 | 401 | $default_text .= ' <em>123 G Street </em><br>'; |
402 | 402 | $default_text .= ' <em>San Diego, CA 92101 </em><br>'; |
403 | - $default_text .= '<p>' . esc_html__( 'Once your donation has been received we will mark it as complete and you will receive an email receipt for your records. Please contact us with any questions you may have!', 'give' ) . '</p>'; |
|
404 | - $default_text .= '<p>' . esc_html__( 'Sincerely,', 'give' ) . '</p>'; |
|
405 | - $default_text .= '<p>' . $sitename . '</p>'; |
|
403 | + $default_text .= '<p>'.esc_html__('Once your donation has been received we will mark it as complete and you will receive an email receipt for your records. Please contact us with any questions you may have!', 'give').'</p>'; |
|
404 | + $default_text .= '<p>'.esc_html__('Sincerely,', 'give').'</p>'; |
|
405 | + $default_text .= '<p>'.$sitename.'</p>'; |
|
406 | 406 | |
407 | - return apply_filters( 'give_default_offline_donation_content', $default_text ); |
|
407 | + return apply_filters('give_default_offline_donation_content', $default_text); |
|
408 | 408 | |
409 | 409 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * @since 1.0 |
10 | 10 | */ |
11 | 11 | |
12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
12 | +if ( ! defined('ABSPATH')) { |
|
13 | 13 | exit; |
14 | 14 | } |
15 | 15 | |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @access private |
22 | 22 | * @since 1.0 |
23 | 23 | */ |
24 | -add_action( 'give_paypal_cc_form', '__return_false' ); |
|
24 | +add_action('give_paypal_cc_form', '__return_false'); |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * Process PayPal Purchase |
@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @return void |
34 | 34 | */ |
35 | -function give_process_paypal_purchase( $purchase_data ) { |
|
35 | +function give_process_paypal_purchase($purchase_data) { |
|
36 | 36 | |
37 | - if ( ! wp_verify_nonce( $purchase_data['gateway_nonce'], 'give-gateway' ) ) { |
|
38 | - wp_die( esc_html__( 'Nonce verification has failed.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
37 | + if ( ! wp_verify_nonce($purchase_data['gateway_nonce'], 'give-gateway')) { |
|
38 | + wp_die(esc_html__('Nonce verification has failed.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
39 | 39 | } |
40 | 40 | |
41 | - $form_id = intval( $purchase_data['post_data']['give-form-id'] ); |
|
41 | + $form_id = intval($purchase_data['post_data']['give-form-id']); |
|
42 | 42 | $price_id = isset($purchase_data['post_data']['give-price-id']) ? $purchase_data['post_data']['give-price-id'] : ''; |
43 | 43 | |
44 | 44 | // Collect payment data |
@@ -57,67 +57,67 @@ discard block |
||
57 | 57 | ); |
58 | 58 | |
59 | 59 | // Record the pending payment |
60 | - $payment = give_insert_payment( $payment_data ); |
|
60 | + $payment = give_insert_payment($payment_data); |
|
61 | 61 | |
62 | 62 | // Check payment |
63 | - if ( ! $payment ) { |
|
63 | + if ( ! $payment) { |
|
64 | 64 | // Record the error |
65 | 65 | give_record_gateway_error( |
66 | - esc_html__( 'Payment Error', 'give' ), |
|
66 | + esc_html__('Payment Error', 'give'), |
|
67 | 67 | sprintf( |
68 | 68 | /* translators: %s: payment data */ |
69 | - __( 'Payment creation failed before sending buyer to PayPal. Payment data: %s', 'give' ), |
|
70 | - json_encode( $payment_data ) |
|
69 | + __('Payment creation failed before sending buyer to PayPal. Payment data: %s', 'give'), |
|
70 | + json_encode($payment_data) |
|
71 | 71 | ), |
72 | 72 | $payment |
73 | 73 | ); |
74 | 74 | // Problems? send back |
75 | - give_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['give-gateway'] ); |
|
75 | + give_send_back_to_checkout('?payment-mode='.$purchase_data['post_data']['give-gateway']); |
|
76 | 76 | } else { |
77 | 77 | // Only send to PayPal if the pending payment is created successfully |
78 | - $listener_url = add_query_arg( 'give-listener', 'IPN', home_url( 'index.php' ) ); |
|
78 | + $listener_url = add_query_arg('give-listener', 'IPN', home_url('index.php')); |
|
79 | 79 | |
80 | 80 | // Get the success url |
81 | - $return_url = add_query_arg( array( |
|
81 | + $return_url = add_query_arg(array( |
|
82 | 82 | 'payment-confirmation' => 'paypal', |
83 | 83 | 'payment-id' => $payment |
84 | 84 | |
85 | - ), get_permalink( give_get_option( 'success_page' ) ) ); |
|
85 | + ), get_permalink(give_get_option('success_page'))); |
|
86 | 86 | |
87 | 87 | // Get the PayPal redirect uri |
88 | - $paypal_redirect = trailingslashit( give_get_paypal_redirect() ) . '?'; |
|
88 | + $paypal_redirect = trailingslashit(give_get_paypal_redirect()).'?'; |
|
89 | 89 | |
90 | 90 | //Item name - pass level name if variable priced |
91 | 91 | $item_name = $purchase_data['post_data']['give-form-title']; |
92 | 92 | |
93 | 93 | //Verify has variable prices |
94 | - if ( give_has_variable_prices( $form_id ) && isset( $purchase_data['post_data']['give-price-id'] ) ) { |
|
94 | + if (give_has_variable_prices($form_id) && isset($purchase_data['post_data']['give-price-id'])) { |
|
95 | 95 | |
96 | - $item_price_level_text = give_get_price_option_name( $form_id, $purchase_data['post_data']['give-price-id'] ); |
|
96 | + $item_price_level_text = give_get_price_option_name($form_id, $purchase_data['post_data']['give-price-id']); |
|
97 | 97 | |
98 | - $price_level_amount = give_get_price_option_amount( $form_id, $purchase_data['post_data']['give-price-id'] ); |
|
98 | + $price_level_amount = give_get_price_option_amount($form_id, $purchase_data['post_data']['give-price-id']); |
|
99 | 99 | |
100 | 100 | //Donation given doesn't match selected level (must be a custom amount) |
101 | - if ( $price_level_amount != give_sanitize_amount( $purchase_data['price'] ) ) { |
|
102 | - $custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true ); |
|
101 | + if ($price_level_amount != give_sanitize_amount($purchase_data['price'])) { |
|
102 | + $custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true); |
|
103 | 103 | //user custom amount text if any, fallback to default if not |
104 | - $item_name .= ' - ' . ( ! empty( $custom_amount_text ) ? $custom_amount_text : esc_html__( 'Custom Amount', 'give' ) ); |
|
104 | + $item_name .= ' - '.( ! empty($custom_amount_text) ? $custom_amount_text : esc_html__('Custom Amount', 'give')); |
|
105 | 105 | |
106 | 106 | } //Is there any donation level text? |
107 | - elseif ( ! empty( $item_price_level_text ) ) { |
|
108 | - $item_name .= ' - ' . $item_price_level_text; |
|
107 | + elseif ( ! empty($item_price_level_text)) { |
|
108 | + $item_name .= ' - '.$item_price_level_text; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | } //Single donation: Custom Amount |
112 | - elseif ( give_get_form_price( $form_id ) !== give_sanitize_amount( $purchase_data['price'] ) ) { |
|
113 | - $custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true ); |
|
112 | + elseif (give_get_form_price($form_id) !== give_sanitize_amount($purchase_data['price'])) { |
|
113 | + $custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true); |
|
114 | 114 | //user custom amount text if any, fallback to default if not |
115 | - $item_name .= ' - ' . ( ! empty( $custom_amount_text ) ? $custom_amount_text : esc_html__( 'Custom Amount', 'give' ) ); |
|
115 | + $item_name .= ' - '.( ! empty($custom_amount_text) ? $custom_amount_text : esc_html__('Custom Amount', 'give')); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | // Setup PayPal arguments |
119 | 119 | $paypal_args = array( |
120 | - 'business' => give_get_option( 'paypal_email', false ), |
|
120 | + 'business' => give_get_option('paypal_email', false), |
|
121 | 121 | 'email' => $purchase_data['user_email'], |
122 | 122 | 'invoice' => $purchase_data['purchase_key'], |
123 | 123 | 'amount' => $purchase_data['price'], |
@@ -128,25 +128,25 @@ discard block |
||
128 | 128 | 'shipping' => '0', |
129 | 129 | 'no_note' => '1', |
130 | 130 | 'currency_code' => give_get_currency(), |
131 | - 'charset' => get_bloginfo( 'charset' ), |
|
131 | + 'charset' => get_bloginfo('charset'), |
|
132 | 132 | 'custom' => $payment, |
133 | 133 | 'rm' => '2', |
134 | 134 | 'return' => $return_url, |
135 | - 'cancel_return' => give_get_failed_transaction_uri( '?payment-id=' . $payment ), |
|
135 | + 'cancel_return' => give_get_failed_transaction_uri('?payment-id='.$payment), |
|
136 | 136 | 'notify_url' => $listener_url, |
137 | 137 | 'page_style' => give_get_paypal_page_style(), |
138 | - 'cbt' => get_bloginfo( 'name' ), |
|
138 | + 'cbt' => get_bloginfo('name'), |
|
139 | 139 | 'bn' => 'givewp_SP' |
140 | 140 | ); |
141 | 141 | |
142 | - if ( ! empty( $purchase_data['user_info']['address'] ) ) { |
|
142 | + if ( ! empty($purchase_data['user_info']['address'])) { |
|
143 | 143 | $paypal_args['address1'] = $purchase_data['user_info']['address']['line1']; |
144 | 144 | $paypal_args['address2'] = $purchase_data['user_info']['address']['line2']; |
145 | 145 | $paypal_args['city'] = $purchase_data['user_info']['address']['city']; |
146 | 146 | $paypal_args['country'] = $purchase_data['user_info']['address']['country']; |
147 | 147 | } |
148 | 148 | |
149 | - if ( give_get_option( 'paypal_button_type' ) === 'standard' ) { |
|
149 | + if (give_get_option('paypal_button_type') === 'standard') { |
|
150 | 150 | $paypal_extra_args = array( |
151 | 151 | 'cmd' => '_xclick', |
152 | 152 | ); |
@@ -156,23 +156,23 @@ discard block |
||
156 | 156 | ); |
157 | 157 | } |
158 | 158 | |
159 | - $paypal_args = array_merge( $paypal_extra_args, $paypal_args ); |
|
160 | - $paypal_args = apply_filters( 'give_paypal_redirect_args', $paypal_args, $purchase_data ); |
|
159 | + $paypal_args = array_merge($paypal_extra_args, $paypal_args); |
|
160 | + $paypal_args = apply_filters('give_paypal_redirect_args', $paypal_args, $purchase_data); |
|
161 | 161 | |
162 | 162 | // Build query |
163 | - $paypal_redirect .= http_build_query( $paypal_args ); |
|
163 | + $paypal_redirect .= http_build_query($paypal_args); |
|
164 | 164 | |
165 | 165 | // Fix for some sites that encode the entities |
166 | - $paypal_redirect = str_replace( '&', '&', $paypal_redirect ); |
|
166 | + $paypal_redirect = str_replace('&', '&', $paypal_redirect); |
|
167 | 167 | |
168 | 168 | // Redirect to PayPal |
169 | - wp_redirect( $paypal_redirect ); |
|
169 | + wp_redirect($paypal_redirect); |
|
170 | 170 | exit; |
171 | 171 | } |
172 | 172 | |
173 | 173 | } |
174 | 174 | |
175 | -add_action( 'give_gateway_paypal', 'give_process_paypal_purchase' ); |
|
175 | +add_action('give_gateway_paypal', 'give_process_paypal_purchase'); |
|
176 | 176 | |
177 | 177 | /** |
178 | 178 | * Listens for a PayPal IPN requests and then sends to the processing function |
@@ -182,12 +182,12 @@ discard block |
||
182 | 182 | */ |
183 | 183 | function give_listen_for_paypal_ipn() { |
184 | 184 | // Regular PayPal IPN |
185 | - if ( isset( $_GET['give-listener'] ) && $_GET['give-listener'] == 'IPN' ) { |
|
186 | - do_action( 'give_verify_paypal_ipn' ); |
|
185 | + if (isset($_GET['give-listener']) && $_GET['give-listener'] == 'IPN') { |
|
186 | + do_action('give_verify_paypal_ipn'); |
|
187 | 187 | } |
188 | 188 | } |
189 | 189 | |
190 | -add_action( 'init', 'give_listen_for_paypal_ipn' ); |
|
190 | +add_action('init', 'give_listen_for_paypal_ipn'); |
|
191 | 191 | |
192 | 192 | /** |
193 | 193 | * Process PayPal IPN |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | function give_process_paypal_ipn() { |
199 | 199 | |
200 | 200 | // Check the request method is POST |
201 | - if ( isset( $_SERVER['REQUEST_METHOD'] ) && $_SERVER['REQUEST_METHOD'] != 'POST' ) { |
|
201 | + if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] != 'POST') { |
|
202 | 202 | return; |
203 | 203 | } |
204 | 204 | |
@@ -206,11 +206,11 @@ discard block |
||
206 | 206 | $post_data = ''; |
207 | 207 | |
208 | 208 | // Fallback just in case post_max_size is lower than needed |
209 | - if ( ini_get( 'allow_url_fopen' ) ) { |
|
210 | - $post_data = file_get_contents( 'php://input' ); |
|
209 | + if (ini_get('allow_url_fopen')) { |
|
210 | + $post_data = file_get_contents('php://input'); |
|
211 | 211 | } else { |
212 | 212 | // If allow_url_fopen is not enabled, then make sure that post_max_size is large enough |
213 | - ini_set( 'post_max_size', '12M' ); |
|
213 | + ini_set('post_max_size', '12M'); |
|
214 | 214 | } |
215 | 215 | // Start the encoded data collection with notification command |
216 | 216 | $encoded_data = 'cmd=_notify-validate'; |
@@ -219,40 +219,40 @@ discard block |
||
219 | 219 | $arg_separator = give_get_php_arg_separator_output(); |
220 | 220 | |
221 | 221 | // Verify there is a post_data |
222 | - if ( $post_data || strlen( $post_data ) > 0 ) { |
|
222 | + if ($post_data || strlen($post_data) > 0) { |
|
223 | 223 | // Append the data |
224 | - $encoded_data .= $arg_separator . $post_data; |
|
224 | + $encoded_data .= $arg_separator.$post_data; |
|
225 | 225 | } else { |
226 | 226 | // Check if POST is empty |
227 | - if ( empty( $_POST ) ) { |
|
227 | + if (empty($_POST)) { |
|
228 | 228 | // Nothing to do |
229 | 229 | return; |
230 | 230 | } else { |
231 | 231 | // Loop through each POST |
232 | - foreach ( $_POST as $key => $value ) { |
|
232 | + foreach ($_POST as $key => $value) { |
|
233 | 233 | // Encode the value and append the data |
234 | - $encoded_data .= $arg_separator . "$key=" . urlencode( $value ); |
|
234 | + $encoded_data .= $arg_separator."$key=".urlencode($value); |
|
235 | 235 | } |
236 | 236 | } |
237 | 237 | } |
238 | 238 | |
239 | 239 | // Convert collected post data to an array |
240 | - parse_str( $encoded_data, $encoded_data_array ); |
|
240 | + parse_str($encoded_data, $encoded_data_array); |
|
241 | 241 | |
242 | - foreach ( $encoded_data_array as $key => $value ) { |
|
242 | + foreach ($encoded_data_array as $key => $value) { |
|
243 | 243 | |
244 | - if ( false !== strpos( $key, 'amp;' ) ) { |
|
245 | - $new_key = str_replace( '&', '&', $key ); |
|
246 | - $new_key = str_replace( 'amp;', '&' , $new_key ); |
|
244 | + if (false !== strpos($key, 'amp;')) { |
|
245 | + $new_key = str_replace('&', '&', $key); |
|
246 | + $new_key = str_replace('amp;', '&', $new_key); |
|
247 | 247 | |
248 | - unset( $encoded_data_array[ $key ] ); |
|
249 | - $encoded_data_array[ $new_key ] = $value; |
|
248 | + unset($encoded_data_array[$key]); |
|
249 | + $encoded_data_array[$new_key] = $value; |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | } |
253 | 253 | |
254 | 254 | //Validate IPN request w/ PayPal if user hasn't disabled this security measure |
255 | - if ( ! give_get_option( 'disable_paypal_verification' ) ) { |
|
255 | + if ( ! give_get_option('disable_paypal_verification')) { |
|
256 | 256 | |
257 | 257 | $remote_post_vars = array( |
258 | 258 | 'method' => 'POST', |
@@ -272,27 +272,27 @@ discard block |
||
272 | 272 | ); |
273 | 273 | |
274 | 274 | // Validate the IPN |
275 | - $api_response = wp_remote_post( give_get_paypal_redirect(), $remote_post_vars ); |
|
275 | + $api_response = wp_remote_post(give_get_paypal_redirect(), $remote_post_vars); |
|
276 | 276 | |
277 | - if ( is_wp_error( $api_response ) ) { |
|
277 | + if (is_wp_error($api_response)) { |
|
278 | 278 | give_record_gateway_error( |
279 | - esc_html__( 'IPN Error', 'give' ), |
|
279 | + esc_html__('IPN Error', 'give'), |
|
280 | 280 | sprintf( |
281 | 281 | /* translators: %s: Paypal IPN response */ |
282 | - __( 'Invalid IPN verification response. IPN data: %s', 'give' ), |
|
283 | - json_encode( $api_response ) |
|
282 | + __('Invalid IPN verification response. IPN data: %s', 'give'), |
|
283 | + json_encode($api_response) |
|
284 | 284 | ) |
285 | 285 | ); |
286 | 286 | return; // Something went wrong |
287 | 287 | } |
288 | 288 | |
289 | - if ( $api_response['body'] !== 'VERIFIED' && give_get_option( 'disable_paypal_verification', false ) ) { |
|
289 | + if ($api_response['body'] !== 'VERIFIED' && give_get_option('disable_paypal_verification', false)) { |
|
290 | 290 | give_record_gateway_error( |
291 | - esc_html__( 'IPN Error', 'give' ), |
|
291 | + esc_html__('IPN Error', 'give'), |
|
292 | 292 | sprintf( |
293 | 293 | /* translators: %s: Paypal IPN response */ |
294 | - __( 'Invalid IPN verification response. IPN data: %s', 'give' ), |
|
295 | - json_encode( $api_response ) |
|
294 | + __('Invalid IPN verification response. IPN data: %s', 'give'), |
|
295 | + json_encode($api_response) |
|
296 | 296 | ) |
297 | 297 | ); |
298 | 298 | return; // Response not okay |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | } |
302 | 302 | |
303 | 303 | // Check if $post_data_array has been populated |
304 | - if ( ! is_array( $encoded_data_array ) && ! empty( $encoded_data_array ) ) { |
|
304 | + if ( ! is_array($encoded_data_array) && ! empty($encoded_data_array)) { |
|
305 | 305 | return; |
306 | 306 | } |
307 | 307 | |
@@ -310,21 +310,21 @@ discard block |
||
310 | 310 | 'payment_status' => '' |
311 | 311 | ); |
312 | 312 | |
313 | - $encoded_data_array = wp_parse_args( $encoded_data_array, $defaults ); |
|
313 | + $encoded_data_array = wp_parse_args($encoded_data_array, $defaults); |
|
314 | 314 | |
315 | - $payment_id = isset( $encoded_data_array['custom'] ) ? absint( $encoded_data_array['custom'] ) : 0; |
|
315 | + $payment_id = isset($encoded_data_array['custom']) ? absint($encoded_data_array['custom']) : 0; |
|
316 | 316 | |
317 | - if ( has_action( 'give_paypal_' . $encoded_data_array['txn_type'] ) ) { |
|
317 | + if (has_action('give_paypal_'.$encoded_data_array['txn_type'])) { |
|
318 | 318 | // Allow PayPal IPN types to be processed separately |
319 | - do_action( 'give_paypal_' . $encoded_data_array['txn_type'], $encoded_data_array, $payment_id ); |
|
319 | + do_action('give_paypal_'.$encoded_data_array['txn_type'], $encoded_data_array, $payment_id); |
|
320 | 320 | } else { |
321 | 321 | // Fallback to web accept just in case the txn_type isn't present |
322 | - do_action( 'give_paypal_web_accept', $encoded_data_array, $payment_id ); |
|
322 | + do_action('give_paypal_web_accept', $encoded_data_array, $payment_id); |
|
323 | 323 | } |
324 | 324 | exit; |
325 | 325 | } |
326 | 326 | |
327 | -add_action( 'give_verify_paypal_ipn', 'give_process_paypal_ipn' ); |
|
327 | +add_action('give_verify_paypal_ipn', 'give_process_paypal_ipn'); |
|
328 | 328 | |
329 | 329 | /** |
330 | 330 | * Process web accept (one time) payment IPNs |
@@ -335,224 +335,224 @@ discard block |
||
335 | 335 | * |
336 | 336 | * @return void |
337 | 337 | */ |
338 | -function give_process_paypal_web_accept_and_cart( $data, $payment_id ) { |
|
338 | +function give_process_paypal_web_accept_and_cart($data, $payment_id) { |
|
339 | 339 | |
340 | - if ( $data['txn_type'] != 'web_accept' && $data['txn_type'] != 'cart' && $data['payment_status'] != 'Refunded' ) { |
|
340 | + if ($data['txn_type'] != 'web_accept' && $data['txn_type'] != 'cart' && $data['payment_status'] != 'Refunded') { |
|
341 | 341 | return; |
342 | 342 | } |
343 | 343 | |
344 | - if ( empty( $payment_id ) ) { |
|
344 | + if (empty($payment_id)) { |
|
345 | 345 | return; |
346 | 346 | } |
347 | 347 | |
348 | 348 | // Collect payment details |
349 | - $purchase_key = isset( $data['invoice'] ) ? $data['invoice'] : $data['item_number']; |
|
349 | + $purchase_key = isset($data['invoice']) ? $data['invoice'] : $data['item_number']; |
|
350 | 350 | $paypal_amount = $data['mc_gross']; |
351 | - $payment_status = strtolower( $data['payment_status'] ); |
|
352 | - $currency_code = strtolower( $data['mc_currency'] ); |
|
353 | - $business_email = isset( $data['business'] ) && is_email( $data['business'] ) ? trim( $data['business'] ) : trim( $data['receiver_email'] ); |
|
354 | - $payment_meta = give_get_payment_meta( $payment_id ); |
|
351 | + $payment_status = strtolower($data['payment_status']); |
|
352 | + $currency_code = strtolower($data['mc_currency']); |
|
353 | + $business_email = isset($data['business']) && is_email($data['business']) ? trim($data['business']) : trim($data['receiver_email']); |
|
354 | + $payment_meta = give_get_payment_meta($payment_id); |
|
355 | 355 | |
356 | 356 | |
357 | - if ( give_get_payment_gateway( $payment_id ) != 'paypal' ) { |
|
357 | + if (give_get_payment_gateway($payment_id) != 'paypal') { |
|
358 | 358 | return; // this isn't a PayPal standard IPN |
359 | 359 | } |
360 | 360 | |
361 | 361 | // Verify payment recipient |
362 | - if ( strcasecmp( $business_email, trim( give_get_option( 'paypal_email' ) ) ) != 0 ) { |
|
362 | + if (strcasecmp($business_email, trim(give_get_option('paypal_email'))) != 0) { |
|
363 | 363 | |
364 | 364 | give_record_gateway_error( |
365 | - esc_html__( 'IPN Error', 'give' ), |
|
365 | + esc_html__('IPN Error', 'give'), |
|
366 | 366 | sprintf( |
367 | 367 | /* translators: %s: Paypal IPN response */ |
368 | - __( 'Invalid business email in IPN response. IPN data: %s', 'give' ), |
|
369 | - json_encode( $data ) |
|
368 | + __('Invalid business email in IPN response. IPN data: %s', 'give'), |
|
369 | + json_encode($data) |
|
370 | 370 | ), |
371 | 371 | $payment_id |
372 | 372 | ); |
373 | - give_update_payment_status( $payment_id, 'failed' ); |
|
374 | - give_insert_payment_note( $payment_id, esc_html__( 'Payment failed due to invalid PayPal business email.', 'give' ) ); |
|
373 | + give_update_payment_status($payment_id, 'failed'); |
|
374 | + give_insert_payment_note($payment_id, esc_html__('Payment failed due to invalid PayPal business email.', 'give')); |
|
375 | 375 | |
376 | 376 | return; |
377 | 377 | } |
378 | 378 | |
379 | 379 | // Verify payment currency |
380 | - if ( $currency_code != strtolower( $payment_meta['currency'] ) ) { |
|
380 | + if ($currency_code != strtolower($payment_meta['currency'])) { |
|
381 | 381 | |
382 | 382 | give_record_gateway_error( |
383 | - esc_html__( 'IPN Error', 'give' ), |
|
383 | + esc_html__('IPN Error', 'give'), |
|
384 | 384 | sprintf( |
385 | 385 | /* translators: %s: Paypal IPN response */ |
386 | - __( 'Invalid currency in IPN response. IPN data: %s', 'give' ), |
|
387 | - json_encode( $data ) |
|
386 | + __('Invalid currency in IPN response. IPN data: %s', 'give'), |
|
387 | + json_encode($data) |
|
388 | 388 | ), |
389 | 389 | $payment_id |
390 | 390 | ); |
391 | - give_update_payment_status( $payment_id, 'failed' ); |
|
392 | - give_insert_payment_note( $payment_id, esc_html__( 'Payment failed due to invalid currency in PayPal IPN.', 'give' ) ); |
|
391 | + give_update_payment_status($payment_id, 'failed'); |
|
392 | + give_insert_payment_note($payment_id, esc_html__('Payment failed due to invalid currency in PayPal IPN.', 'give')); |
|
393 | 393 | |
394 | 394 | return; |
395 | 395 | } |
396 | 396 | |
397 | - if ( ! give_get_payment_user_email( $payment_id ) ) { |
|
397 | + if ( ! give_get_payment_user_email($payment_id)) { |
|
398 | 398 | |
399 | 399 | // No email associated with purchase, so store from PayPal |
400 | - give_update_payment_meta( $payment_id, '_give_payment_user_email', $data['payer_email'] ); |
|
400 | + give_update_payment_meta($payment_id, '_give_payment_user_email', $data['payer_email']); |
|
401 | 401 | |
402 | 402 | // Setup and store the donors's details |
403 | 403 | $address = array(); |
404 | - $address['line1'] = ! empty( $data['address_street'] ) ? sanitize_text_field( $data['address_street'] ) : false; |
|
405 | - $address['city'] = ! empty( $data['address_city'] ) ? sanitize_text_field( $data['address_city'] ) : false; |
|
406 | - $address['state'] = ! empty( $data['address_state'] ) ? sanitize_text_field( $data['address_state'] ) : false; |
|
407 | - $address['country'] = ! empty( $data['address_country_code'] ) ? sanitize_text_field( $data['address_country_code'] ) : false; |
|
408 | - $address['zip'] = ! empty( $data['address_zip'] ) ? sanitize_text_field( $data['address_zip'] ) : false; |
|
404 | + $address['line1'] = ! empty($data['address_street']) ? sanitize_text_field($data['address_street']) : false; |
|
405 | + $address['city'] = ! empty($data['address_city']) ? sanitize_text_field($data['address_city']) : false; |
|
406 | + $address['state'] = ! empty($data['address_state']) ? sanitize_text_field($data['address_state']) : false; |
|
407 | + $address['country'] = ! empty($data['address_country_code']) ? sanitize_text_field($data['address_country_code']) : false; |
|
408 | + $address['zip'] = ! empty($data['address_zip']) ? sanitize_text_field($data['address_zip']) : false; |
|
409 | 409 | |
410 | 410 | $user_info = array( |
411 | 411 | 'id' => '-1', |
412 | - 'email' => sanitize_text_field( $data['payer_email'] ), |
|
413 | - 'first_name' => sanitize_text_field( $data['first_name'] ), |
|
414 | - 'last_name' => sanitize_text_field( $data['last_name'] ), |
|
412 | + 'email' => sanitize_text_field($data['payer_email']), |
|
413 | + 'first_name' => sanitize_text_field($data['first_name']), |
|
414 | + 'last_name' => sanitize_text_field($data['last_name']), |
|
415 | 415 | 'discount' => '', |
416 | 416 | 'address' => $address |
417 | 417 | ); |
418 | 418 | |
419 | 419 | $payment_meta['user_info'] = $user_info; |
420 | - give_update_payment_meta( $payment_id, '_give_payment_meta', $payment_meta ); |
|
420 | + give_update_payment_meta($payment_id, '_give_payment_meta', $payment_meta); |
|
421 | 421 | } |
422 | 422 | |
423 | - if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) { |
|
423 | + if ($payment_status == 'refunded' || $payment_status == 'reversed') { |
|
424 | 424 | |
425 | 425 | // Process a refund |
426 | - give_process_paypal_refund( $data, $payment_id ); |
|
426 | + give_process_paypal_refund($data, $payment_id); |
|
427 | 427 | |
428 | 428 | } else { |
429 | 429 | |
430 | - if ( get_post_status( $payment_id ) == 'publish' ) { |
|
430 | + if (get_post_status($payment_id) == 'publish') { |
|
431 | 431 | return; // Only complete payments once |
432 | 432 | } |
433 | 433 | |
434 | 434 | // Retrieve the total purchase amount (before PayPal) |
435 | - $payment_amount = give_get_payment_amount( $payment_id ); |
|
435 | + $payment_amount = give_get_payment_amount($payment_id); |
|
436 | 436 | |
437 | - if ( number_format( (float) $paypal_amount, 2 ) < number_format( (float) $payment_amount, 2 ) ) { |
|
437 | + if (number_format((float) $paypal_amount, 2) < number_format((float) $payment_amount, 2)) { |
|
438 | 438 | // The prices don't match |
439 | 439 | give_record_gateway_error( |
440 | - esc_html__( 'IPN Error', 'give' ), |
|
440 | + esc_html__('IPN Error', 'give'), |
|
441 | 441 | sprintf( |
442 | 442 | /* translators: %s: Paypal IPN response */ |
443 | - __( 'Invalid payment amount in IPN response. IPN data: %s', 'give' ), |
|
444 | - json_encode( $data ) |
|
443 | + __('Invalid payment amount in IPN response. IPN data: %s', 'give'), |
|
444 | + json_encode($data) |
|
445 | 445 | ), |
446 | 446 | $payment_id |
447 | 447 | ); |
448 | - give_update_payment_status( $payment_id, 'failed' ); |
|
449 | - give_insert_payment_note( $payment_id, esc_html__( 'Payment failed due to invalid amount in PayPal IPN.', 'give' ) ); |
|
448 | + give_update_payment_status($payment_id, 'failed'); |
|
449 | + give_insert_payment_note($payment_id, esc_html__('Payment failed due to invalid amount in PayPal IPN.', 'give')); |
|
450 | 450 | |
451 | 451 | return; |
452 | 452 | } |
453 | - if ( $purchase_key != give_get_payment_key( $payment_id ) ) { |
|
453 | + if ($purchase_key != give_get_payment_key($payment_id)) { |
|
454 | 454 | // Purchase keys don't match |
455 | 455 | give_record_gateway_error( |
456 | - esc_html__( 'IPN Error', 'give' ), |
|
456 | + esc_html__('IPN Error', 'give'), |
|
457 | 457 | sprintf( |
458 | 458 | /* translators: %s: Paypal IPN response */ |
459 | - __( 'Invalid purchase key in IPN response. IPN data: %s', 'give' ), |
|
460 | - json_encode( $data ) |
|
459 | + __('Invalid purchase key in IPN response. IPN data: %s', 'give'), |
|
460 | + json_encode($data) |
|
461 | 461 | ), |
462 | 462 | $payment_id |
463 | 463 | ); |
464 | - give_update_payment_status( $payment_id, 'failed' ); |
|
465 | - give_insert_payment_note( $payment_id, esc_html__( 'Payment failed due to invalid purchase key in PayPal IPN.', 'give' ) ); |
|
464 | + give_update_payment_status($payment_id, 'failed'); |
|
465 | + give_insert_payment_note($payment_id, esc_html__('Payment failed due to invalid purchase key in PayPal IPN.', 'give')); |
|
466 | 466 | |
467 | 467 | return; |
468 | 468 | } |
469 | 469 | |
470 | - if ( $payment_status == 'completed' || give_is_test_mode() ) { |
|
470 | + if ($payment_status == 'completed' || give_is_test_mode()) { |
|
471 | 471 | give_insert_payment_note( |
472 | 472 | $payment_id, |
473 | 473 | sprintf( |
474 | 474 | /* translators: %s: Paypal transaction ID */ |
475 | - esc_html__( 'PayPal Transaction ID: %s', 'give' ), |
|
475 | + esc_html__('PayPal Transaction ID: %s', 'give'), |
|
476 | 476 | $data['txn_id'] |
477 | 477 | ) |
478 | 478 | ); |
479 | - give_set_payment_transaction_id( $payment_id, $data['txn_id'] ); |
|
480 | - give_update_payment_status( $payment_id, 'publish' ); |
|
481 | - } else if ( 'pending' == $payment_status && isset( $data['pending_reason'] ) ) { |
|
479 | + give_set_payment_transaction_id($payment_id, $data['txn_id']); |
|
480 | + give_update_payment_status($payment_id, 'publish'); |
|
481 | + } else if ('pending' == $payment_status && isset($data['pending_reason'])) { |
|
482 | 482 | |
483 | 483 | // Look for possible pending reasons, such as an echeck |
484 | 484 | |
485 | 485 | $note = ''; |
486 | 486 | |
487 | - switch ( strtolower( $data['pending_reason'] ) ) { |
|
487 | + switch (strtolower($data['pending_reason'])) { |
|
488 | 488 | |
489 | 489 | case 'echeck' : |
490 | 490 | |
491 | - $note = esc_html__( 'Payment made via eCheck and will clear automatically in 5-8 days.', 'give' ); |
|
491 | + $note = esc_html__('Payment made via eCheck and will clear automatically in 5-8 days.', 'give'); |
|
492 | 492 | |
493 | 493 | break; |
494 | 494 | |
495 | 495 | case 'address' : |
496 | 496 | |
497 | - $note = esc_html__( 'Payment requires a confirmed donor address and must be accepted manually through PayPal.', 'give' ); |
|
497 | + $note = esc_html__('Payment requires a confirmed donor address and must be accepted manually through PayPal.', 'give'); |
|
498 | 498 | |
499 | 499 | break; |
500 | 500 | |
501 | 501 | case 'intl' : |
502 | 502 | |
503 | - $note = esc_html__( 'Payment must be accepted manually through PayPal due to international account regulations.', 'give' ); |
|
503 | + $note = esc_html__('Payment must be accepted manually through PayPal due to international account regulations.', 'give'); |
|
504 | 504 | |
505 | 505 | break; |
506 | 506 | |
507 | 507 | case 'multi-currency' : |
508 | 508 | |
509 | - $note = esc_html__( 'Payment received in non-shop currency and must be accepted manually through PayPal.', 'give' ); |
|
509 | + $note = esc_html__('Payment received in non-shop currency and must be accepted manually through PayPal.', 'give'); |
|
510 | 510 | |
511 | 511 | break; |
512 | 512 | |
513 | 513 | case 'paymentreview' : |
514 | 514 | case 'regulatory_review' : |
515 | 515 | |
516 | - $note = esc_html__( 'Payment is being reviewed by PayPal staff as high-risk or in possible violation of government regulations.', 'give' ); |
|
516 | + $note = esc_html__('Payment is being reviewed by PayPal staff as high-risk or in possible violation of government regulations.', 'give'); |
|
517 | 517 | |
518 | 518 | break; |
519 | 519 | |
520 | 520 | case 'unilateral' : |
521 | 521 | |
522 | - $note = esc_html__( 'Payment was sent to non-confirmed or non-registered email address.', 'give' ); |
|
522 | + $note = esc_html__('Payment was sent to non-confirmed or non-registered email address.', 'give'); |
|
523 | 523 | |
524 | 524 | break; |
525 | 525 | |
526 | 526 | case 'upgrade' : |
527 | 527 | |
528 | - $note = esc_html__( 'PayPal account must be upgraded before this payment can be accepted.', 'give' ); |
|
528 | + $note = esc_html__('PayPal account must be upgraded before this payment can be accepted.', 'give'); |
|
529 | 529 | |
530 | 530 | break; |
531 | 531 | |
532 | 532 | case 'verify' : |
533 | 533 | |
534 | - $note = esc_html__( 'PayPal account is not verified. Verify account in order to accept this payment.', 'give' ); |
|
534 | + $note = esc_html__('PayPal account is not verified. Verify account in order to accept this payment.', 'give'); |
|
535 | 535 | |
536 | 536 | break; |
537 | 537 | |
538 | 538 | case 'other' : |
539 | 539 | |
540 | - $note = esc_html__( 'Payment is pending for unknown reasons. Contact PayPal support for assistance.', 'give' ); |
|
540 | + $note = esc_html__('Payment is pending for unknown reasons. Contact PayPal support for assistance.', 'give'); |
|
541 | 541 | |
542 | 542 | break; |
543 | 543 | |
544 | 544 | } |
545 | 545 | |
546 | - if ( ! empty( $note ) ) { |
|
546 | + if ( ! empty($note)) { |
|
547 | 547 | |
548 | - give_insert_payment_note( $payment_id, $note ); |
|
548 | + give_insert_payment_note($payment_id, $note); |
|
549 | 549 | |
550 | 550 | } |
551 | 551 | } |
552 | 552 | } |
553 | 553 | } |
554 | 554 | |
555 | -add_action( 'give_paypal_web_accept', 'give_process_paypal_web_accept_and_cart', 10, 2 ); |
|
555 | +add_action('give_paypal_web_accept', 'give_process_paypal_web_accept_and_cart', 10, 2); |
|
556 | 556 | |
557 | 557 | /** |
558 | 558 | * Process PayPal IPN Refunds |
@@ -563,28 +563,28 @@ discard block |
||
563 | 563 | * |
564 | 564 | * @return void |
565 | 565 | */ |
566 | -function give_process_paypal_refund( $data, $payment_id = 0 ) { |
|
566 | +function give_process_paypal_refund($data, $payment_id = 0) { |
|
567 | 567 | |
568 | 568 | // Collect payment details |
569 | 569 | |
570 | - if ( empty( $payment_id ) ) { |
|
570 | + if (empty($payment_id)) { |
|
571 | 571 | return; |
572 | 572 | } |
573 | 573 | |
574 | - if ( get_post_status( $payment_id ) == 'refunded' ) { |
|
574 | + if (get_post_status($payment_id) == 'refunded') { |
|
575 | 575 | return; // Only refund payments once |
576 | 576 | } |
577 | 577 | |
578 | - $payment_amount = give_get_payment_amount( $payment_id ); |
|
578 | + $payment_amount = give_get_payment_amount($payment_id); |
|
579 | 579 | $refund_amount = $data['payment_gross'] * - 1; |
580 | 580 | |
581 | - if ( number_format( (float) $refund_amount, 2 ) < number_format( (float) $payment_amount, 2 ) ) { |
|
581 | + if (number_format((float) $refund_amount, 2) < number_format((float) $payment_amount, 2)) { |
|
582 | 582 | |
583 | 583 | give_insert_payment_note( |
584 | 584 | $payment_id, |
585 | 585 | sprintf( |
586 | 586 | /* translators: %s: Paypal parent transaction ID */ |
587 | - esc_html__( 'Partial PayPal refund processed: %s', 'give' ), |
|
587 | + esc_html__('Partial PayPal refund processed: %s', 'give'), |
|
588 | 588 | $data['parent_txn_id'] |
589 | 589 | ) |
590 | 590 | ); |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | $payment_id, |
598 | 598 | sprintf( |
599 | 599 | /* translators: 1: Paypal parent transaction ID. 2: Reason code */ |
600 | - esc_html__( 'PayPal Payment #%s Refunded for reason: %s', 'give' ), |
|
600 | + esc_html__('PayPal Payment #%s Refunded for reason: %s', 'give'), |
|
601 | 601 | $data['parent_txn_id'], |
602 | 602 | $data['reason_code'] |
603 | 603 | ) |
@@ -606,11 +606,11 @@ discard block |
||
606 | 606 | $payment_id, |
607 | 607 | sprintf( |
608 | 608 | /* translators: %s: Paypal transaction ID */ |
609 | - esc_html__( 'PayPal Refund Transaction ID: %s', 'give' ), |
|
609 | + esc_html__('PayPal Refund Transaction ID: %s', 'give'), |
|
610 | 610 | $data['txn_id'] |
611 | 611 | ) |
612 | 612 | ); |
613 | - give_update_payment_status( $payment_id, 'refunded' ); |
|
613 | + give_update_payment_status($payment_id, 'refunded'); |
|
614 | 614 | } |
615 | 615 | |
616 | 616 | /** |
@@ -622,24 +622,24 @@ discard block |
||
622 | 622 | * |
623 | 623 | * @return string |
624 | 624 | */ |
625 | -function give_get_paypal_redirect( $ssl_check = false ) { |
|
625 | +function give_get_paypal_redirect($ssl_check = false) { |
|
626 | 626 | |
627 | - if ( is_ssl() || ! $ssl_check ) { |
|
627 | + if (is_ssl() || ! $ssl_check) { |
|
628 | 628 | $protocal = 'https://'; |
629 | 629 | } else { |
630 | 630 | $protocal = 'http://'; |
631 | 631 | } |
632 | 632 | |
633 | 633 | // Check the current payment mode |
634 | - if ( give_is_test_mode() ) { |
|
634 | + if (give_is_test_mode()) { |
|
635 | 635 | // Test mode |
636 | - $paypal_uri = $protocal . 'www.sandbox.paypal.com/cgi-bin/webscr'; |
|
636 | + $paypal_uri = $protocal.'www.sandbox.paypal.com/cgi-bin/webscr'; |
|
637 | 637 | } else { |
638 | 638 | // Live mode |
639 | - $paypal_uri = $protocal . 'www.paypal.com/cgi-bin/webscr'; |
|
639 | + $paypal_uri = $protocal.'www.paypal.com/cgi-bin/webscr'; |
|
640 | 640 | } |
641 | 641 | |
642 | - return apply_filters( 'give_paypal_uri', $paypal_uri ); |
|
642 | + return apply_filters('give_paypal_uri', $paypal_uri); |
|
643 | 643 | } |
644 | 644 | |
645 | 645 | /** |
@@ -649,8 +649,8 @@ discard block |
||
649 | 649 | * @return string |
650 | 650 | */ |
651 | 651 | function give_get_paypal_page_style() { |
652 | - $page_style = trim( give_get_option( 'paypal_page_style', 'PayPal' ) ); |
|
653 | - return apply_filters( 'give_paypal_page_style', $page_style ); |
|
652 | + $page_style = trim(give_get_option('paypal_page_style', 'PayPal')); |
|
653 | + return apply_filters('give_paypal_page_style', $page_style); |
|
654 | 654 | } |
655 | 655 | |
656 | 656 | /** |
@@ -665,27 +665,27 @@ discard block |
||
665 | 665 | * @return string |
666 | 666 | * |
667 | 667 | */ |
668 | -function give_paypal_success_page_content( $content ) { |
|
668 | +function give_paypal_success_page_content($content) { |
|
669 | 669 | |
670 | - if ( ! isset( $_GET['payment-id'] ) && ! give_get_purchase_session() ) { |
|
670 | + if ( ! isset($_GET['payment-id']) && ! give_get_purchase_session()) { |
|
671 | 671 | return $content; |
672 | 672 | } |
673 | 673 | |
674 | - $payment_id = isset( $_GET['payment-id'] ) ? absint( $_GET['payment-id'] ) : false; |
|
674 | + $payment_id = isset($_GET['payment-id']) ? absint($_GET['payment-id']) : false; |
|
675 | 675 | |
676 | - if ( ! $payment_id ) { |
|
676 | + if ( ! $payment_id) { |
|
677 | 677 | $session = give_get_purchase_session(); |
678 | - $payment_id = give_get_purchase_id_by_key( $session['purchase_key'] ); |
|
678 | + $payment_id = give_get_purchase_id_by_key($session['purchase_key']); |
|
679 | 679 | } |
680 | 680 | |
681 | - $payment = get_post( $payment_id ); |
|
681 | + $payment = get_post($payment_id); |
|
682 | 682 | |
683 | - if ( $payment && 'pending' == $payment->post_status ) { |
|
683 | + if ($payment && 'pending' == $payment->post_status) { |
|
684 | 684 | |
685 | 685 | // Payment is still pending so show processing indicator to fix the Race Condition |
686 | 686 | ob_start(); |
687 | 687 | |
688 | - give_get_template_part( 'payment', 'processing' ); |
|
688 | + give_get_template_part('payment', 'processing'); |
|
689 | 689 | |
690 | 690 | $content = ob_get_clean(); |
691 | 691 | |
@@ -695,7 +695,7 @@ discard block |
||
695 | 695 | |
696 | 696 | } |
697 | 697 | |
698 | -add_filter( 'give_payment_confirm_paypal', 'give_paypal_success_page_content' ); |
|
698 | +add_filter('give_payment_confirm_paypal', 'give_paypal_success_page_content'); |
|
699 | 699 | |
700 | 700 | /** |
701 | 701 | * Given a Payment ID, extract the transaction ID |
@@ -706,22 +706,22 @@ discard block |
||
706 | 706 | * |
707 | 707 | * @return string Transaction ID |
708 | 708 | */ |
709 | -function give_paypal_get_payment_transaction_id( $payment_id ) { |
|
709 | +function give_paypal_get_payment_transaction_id($payment_id) { |
|
710 | 710 | |
711 | 711 | $transaction_id = ''; |
712 | - $notes = give_get_payment_notes( $payment_id ); |
|
712 | + $notes = give_get_payment_notes($payment_id); |
|
713 | 713 | |
714 | - foreach ( $notes as $note ) { |
|
715 | - if ( preg_match( '/^PayPal Transaction ID: ([^\s]+)/', $note->comment_content, $match ) ) { |
|
714 | + foreach ($notes as $note) { |
|
715 | + if (preg_match('/^PayPal Transaction ID: ([^\s]+)/', $note->comment_content, $match)) { |
|
716 | 716 | $transaction_id = $match[1]; |
717 | 717 | continue; |
718 | 718 | } |
719 | 719 | } |
720 | 720 | |
721 | - return apply_filters( 'give_paypal_set_payment_transaction_id', $transaction_id, $payment_id ); |
|
721 | + return apply_filters('give_paypal_set_payment_transaction_id', $transaction_id, $payment_id); |
|
722 | 722 | } |
723 | 723 | |
724 | -add_filter( 'give_get_payment_transaction_id-paypal', 'give_paypal_get_payment_transaction_id', 10, 1 ); |
|
724 | +add_filter('give_get_payment_transaction_id-paypal', 'give_paypal_get_payment_transaction_id', 10, 1); |
|
725 | 725 | |
726 | 726 | /** |
727 | 727 | * Given a transaction ID, generate a link to the PayPal transaction ID details |
@@ -733,13 +733,13 @@ discard block |
||
733 | 733 | * |
734 | 734 | * @return string A link to the PayPal transaction details |
735 | 735 | */ |
736 | -function give_paypal_link_transaction_id( $transaction_id, $payment_id ) { |
|
736 | +function give_paypal_link_transaction_id($transaction_id, $payment_id) { |
|
737 | 737 | |
738 | 738 | $paypal_base_url = 'https://history.paypal.com/cgi-bin/webscr?cmd=_history-details-from-hub&id='; |
739 | - $transaction_url = '<a href="' . esc_url( $paypal_base_url . $transaction_id ) . '" target="_blank">' . $transaction_id . '</a>'; |
|
739 | + $transaction_url = '<a href="'.esc_url($paypal_base_url.$transaction_id).'" target="_blank">'.$transaction_id.'</a>'; |
|
740 | 740 | |
741 | - return apply_filters( 'give_paypal_link_payment_details_transaction_id', $transaction_url ); |
|
741 | + return apply_filters('give_paypal_link_payment_details_transaction_id', $transaction_url); |
|
742 | 742 | |
743 | 743 | } |
744 | 744 | |
745 | -add_filter( 'give_payment_details_transaction_id-paypal', 'give_paypal_link_transaction_id', 10, 2 ); |
|
745 | +add_filter('give_payment_details_transaction_id-paypal', 'give_paypal_link_transaction_id', 10, 2); |
@@ -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 | |
@@ -24,15 +24,15 @@ discard block |
||
24 | 24 | * @global $wp_version |
25 | 25 | * @return void |
26 | 26 | */ |
27 | -function give_install( $network_wide = false ) { |
|
27 | +function give_install($network_wide = false) { |
|
28 | 28 | |
29 | 29 | global $wpdb; |
30 | 30 | |
31 | - if ( is_multisite() && $network_wide ) { |
|
31 | + if (is_multisite() && $network_wide) { |
|
32 | 32 | |
33 | - foreach ( $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs LIMIT 100" ) as $blog_id ) { |
|
33 | + foreach ($wpdb->get_col("SELECT blog_id FROM $wpdb->blogs LIMIT 100") as $blog_id) { |
|
34 | 34 | |
35 | - switch_to_blog( $blog_id ); |
|
35 | + switch_to_blog($blog_id); |
|
36 | 36 | give_run_install(); |
37 | 37 | restore_current_blog(); |
38 | 38 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | } |
48 | 48 | |
49 | -register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' ); |
|
49 | +register_activation_hook(GIVE_PLUGIN_FILE, 'give_install'); |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * Run the Give Install process |
@@ -62,25 +62,25 @@ discard block |
||
62 | 62 | give_setup_post_types(); |
63 | 63 | |
64 | 64 | // Clear the permalinks |
65 | - flush_rewrite_rules( false ); |
|
65 | + flush_rewrite_rules(false); |
|
66 | 66 | |
67 | 67 | // Add Upgraded From Option |
68 | - $current_version = get_option( 'give_version' ); |
|
69 | - if ( $current_version ) { |
|
70 | - update_option( 'give_version_upgraded_from', $current_version ); |
|
68 | + $current_version = get_option('give_version'); |
|
69 | + if ($current_version) { |
|
70 | + update_option('give_version_upgraded_from', $current_version); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | // Setup some default options |
74 | 74 | $options = array(); |
75 | 75 | |
76 | 76 | // Checks if the Success Page option exists AND that the page exists |
77 | - if ( ! get_post( give_get_option( 'success_page' ) ) ) { |
|
77 | + if ( ! get_post(give_get_option('success_page'))) { |
|
78 | 78 | |
79 | 79 | // Purchase Confirmation (Success) Page |
80 | 80 | $success = wp_insert_post( |
81 | 81 | array( |
82 | - 'post_title' => esc_html__( 'Donation Confirmation', 'give' ), |
|
83 | - 'post_content' => esc_html__( '[give_receipt]', 'give' ), |
|
82 | + 'post_title' => esc_html__('Donation Confirmation', 'give'), |
|
83 | + 'post_content' => esc_html__('[give_receipt]', 'give'), |
|
84 | 84 | 'post_status' => 'publish', |
85 | 85 | 'post_author' => 1, |
86 | 86 | 'post_type' => 'page', |
@@ -93,13 +93,13 @@ discard block |
||
93 | 93 | } |
94 | 94 | |
95 | 95 | // Checks if the Failure Page option exists AND that the page exists |
96 | - if ( ! get_post( give_get_option( 'failure_page' ) ) ) { |
|
96 | + if ( ! get_post(give_get_option('failure_page'))) { |
|
97 | 97 | |
98 | 98 | // Failed Purchase Page |
99 | 99 | $failed = wp_insert_post( |
100 | 100 | array( |
101 | - 'post_title' => esc_html__( 'Transaction Failed', 'give' ), |
|
102 | - 'post_content' => esc_html__( 'We\'re sorry, your transaction failed to process. Please try again or contact site support.', 'give' ), |
|
101 | + 'post_title' => esc_html__('Transaction Failed', 'give'), |
|
102 | + 'post_content' => esc_html__('We\'re sorry, your transaction failed to process. Please try again or contact site support.', 'give'), |
|
103 | 103 | 'post_status' => 'publish', |
104 | 104 | 'post_author' => 1, |
105 | 105 | 'post_type' => 'page', |
@@ -111,11 +111,11 @@ discard block |
||
111 | 111 | } |
112 | 112 | |
113 | 113 | // Checks if the History Page option exists AND that the page exists |
114 | - if ( ! get_post( give_get_option( 'history_page' ) ) ) { |
|
114 | + if ( ! get_post(give_get_option('history_page'))) { |
|
115 | 115 | // Purchase History (History) Page |
116 | 116 | $history = wp_insert_post( |
117 | 117 | array( |
118 | - 'post_title' => esc_html__( 'Donation History', 'give' ), |
|
118 | + 'post_title' => esc_html__('Donation History', 'give'), |
|
119 | 119 | 'post_content' => '[donation_history]', |
120 | 120 | 'post_status' => 'publish', |
121 | 121 | 'post_author' => 1, |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | } |
129 | 129 | |
130 | 130 | //Fresh Install? Setup Test Mode, Base Country (US), Test Gateway, Currency |
131 | - if ( empty( $current_version ) ) { |
|
131 | + if (empty($current_version)) { |
|
132 | 132 | $options['base_country'] = 'US'; |
133 | 133 | $options['test_mode'] = 1; |
134 | 134 | $options['currency'] = 'USD'; |
@@ -145,12 +145,12 @@ discard block |
||
145 | 145 | } |
146 | 146 | |
147 | 147 | // Populate some default values |
148 | - update_option( 'give_settings', array_merge( $give_options, $options ) ); |
|
149 | - update_option( 'give_version', GIVE_VERSION ); |
|
148 | + update_option('give_settings', array_merge($give_options, $options)); |
|
149 | + update_option('give_version', GIVE_VERSION); |
|
150 | 150 | |
151 | 151 | //Update Version Number |
152 | - if ( $current_version ) { |
|
153 | - update_option( 'give_version_upgraded_from', $current_version ); |
|
152 | + if ($current_version) { |
|
153 | + update_option('give_version_upgraded_from', $current_version); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | // Create Give roles |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | $roles->add_caps(); |
160 | 160 | |
161 | 161 | $api = new Give_API(); |
162 | - update_option( 'give_default_api_version', 'v' . $api->get_version() ); |
|
162 | + update_option('give_default_api_version', 'v'.$api->get_version()); |
|
163 | 163 | |
164 | 164 | // Create the customers database |
165 | 165 | @Give()->customers->create_table(); |
@@ -168,11 +168,11 @@ discard block |
||
168 | 168 | Give()->session->use_php_sessions(); |
169 | 169 | |
170 | 170 | // Add a temporary option to note that Give pages have been created |
171 | - set_transient( '_give_installed', $options, 30 ); |
|
171 | + set_transient('_give_installed', $options, 30); |
|
172 | 172 | |
173 | - if ( ! $current_version ) { |
|
173 | + if ( ! $current_version) { |
|
174 | 174 | |
175 | - require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php'; |
|
175 | + require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrade-functions.php'; |
|
176 | 176 | |
177 | 177 | // When new upgrade routines are added, mark them as complete on fresh install |
178 | 178 | $upgrade_routines = array( |
@@ -181,22 +181,22 @@ discard block |
||
181 | 181 | 'upgrade_give_offline_status' |
182 | 182 | ); |
183 | 183 | |
184 | - foreach ( $upgrade_routines as $upgrade ) { |
|
185 | - give_set_upgrade_complete( $upgrade ); |
|
184 | + foreach ($upgrade_routines as $upgrade) { |
|
185 | + give_set_upgrade_complete($upgrade); |
|
186 | 186 | } |
187 | 187 | } |
188 | 188 | |
189 | 189 | // Bail if activating from network, or bulk |
190 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
190 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
191 | 191 | return; |
192 | 192 | } |
193 | 193 | |
194 | 194 | // Add the transient to redirect |
195 | - set_transient( '_give_activation_redirect', true, 30 ); |
|
195 | + set_transient('_give_activation_redirect', true, 30); |
|
196 | 196 | |
197 | 197 | } |
198 | 198 | |
199 | -register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' ); |
|
199 | +register_activation_hook(GIVE_PLUGIN_FILE, 'give_install'); |
|
200 | 200 | |
201 | 201 | /** |
202 | 202 | * Network Activated New Site Setup |
@@ -212,11 +212,11 @@ discard block |
||
212 | 212 | * @param int $site_id The Site ID |
213 | 213 | * @param array $meta Blog Meta |
214 | 214 | */ |
215 | -function on_create_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) { |
|
215 | +function on_create_blog($blog_id, $user_id, $domain, $path, $site_id, $meta) { |
|
216 | 216 | |
217 | - if ( is_plugin_active_for_network( GIVE_PLUGIN_BASENAME ) ) { |
|
217 | + if (is_plugin_active_for_network(GIVE_PLUGIN_BASENAME)) { |
|
218 | 218 | |
219 | - switch_to_blog( $blog_id ); |
|
219 | + switch_to_blog($blog_id); |
|
220 | 220 | give_install(); |
221 | 221 | restore_current_blog(); |
222 | 222 | |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | |
225 | 225 | } |
226 | 226 | |
227 | -add_action( 'wpmu_new_blog', 'on_create_blog', 10, 6 ); |
|
227 | +add_action('wpmu_new_blog', 'on_create_blog', 10, 6); |
|
228 | 228 | |
229 | 229 | |
230 | 230 | /** |
@@ -237,11 +237,11 @@ discard block |
||
237 | 237 | * |
238 | 238 | * @return array The tables to drop |
239 | 239 | */ |
240 | -function give_wpmu_drop_tables( $tables, $blog_id ) { |
|
240 | +function give_wpmu_drop_tables($tables, $blog_id) { |
|
241 | 241 | |
242 | - switch_to_blog( $blog_id ); |
|
242 | + switch_to_blog($blog_id); |
|
243 | 243 | $customers_db = new Give_DB_Customers(); |
244 | - if ( $customers_db->installed() ) { |
|
244 | + if ($customers_db->installed()) { |
|
245 | 245 | $tables[] = $customers_db->table_name; |
246 | 246 | } |
247 | 247 | restore_current_blog(); |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | |
251 | 251 | } |
252 | 252 | |
253 | -add_filter( 'wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2 ); |
|
253 | +add_filter('wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2); |
|
254 | 254 | |
255 | 255 | /** |
256 | 256 | * Post-installation |
@@ -262,35 +262,35 @@ discard block |
||
262 | 262 | */ |
263 | 263 | function give_after_install() { |
264 | 264 | |
265 | - if ( ! is_admin() ) { |
|
265 | + if ( ! is_admin()) { |
|
266 | 266 | return; |
267 | 267 | } |
268 | 268 | |
269 | - $give_options = get_transient( '_give_installed' ); |
|
270 | - $give_table_check = get_option( '_give_table_check', false ); |
|
269 | + $give_options = get_transient('_give_installed'); |
|
270 | + $give_table_check = get_option('_give_table_check', false); |
|
271 | 271 | |
272 | - if ( false === $give_table_check || current_time( 'timestamp' ) > $give_table_check ) { |
|
272 | + if (false === $give_table_check || current_time('timestamp') > $give_table_check) { |
|
273 | 273 | |
274 | - if ( ! @Give()->customers->installed() ) { |
|
274 | + if ( ! @Give()->customers->installed()) { |
|
275 | 275 | // Create the customers database (this ensures it creates it on multisite instances where it is network activated) |
276 | 276 | @Give()->customers->create_table(); |
277 | 277 | |
278 | - do_action( 'give_after_install', $give_options ); |
|
278 | + do_action('give_after_install', $give_options); |
|
279 | 279 | } |
280 | 280 | |
281 | - update_option( '_give_table_check', ( current_time( 'timestamp' ) + WEEK_IN_SECONDS ) ); |
|
281 | + update_option('_give_table_check', (current_time('timestamp') + WEEK_IN_SECONDS)); |
|
282 | 282 | |
283 | 283 | } |
284 | 284 | |
285 | 285 | // Delete the transient |
286 | - if ( false !== $give_options ) { |
|
287 | - delete_transient( '_give_installed' ); |
|
286 | + if (false !== $give_options) { |
|
287 | + delete_transient('_give_installed'); |
|
288 | 288 | } |
289 | 289 | |
290 | 290 | |
291 | 291 | } |
292 | 292 | |
293 | -add_action( 'admin_init', 'give_after_install' ); |
|
293 | +add_action('admin_init', 'give_after_install'); |
|
294 | 294 | |
295 | 295 | |
296 | 296 | /** |
@@ -305,11 +305,11 @@ discard block |
||
305 | 305 | |
306 | 306 | global $wp_roles; |
307 | 307 | |
308 | - if ( ! is_object( $wp_roles ) ) { |
|
308 | + if ( ! is_object($wp_roles)) { |
|
309 | 309 | return; |
310 | 310 | } |
311 | 311 | |
312 | - if ( ! array_key_exists( 'give_manager', $wp_roles->roles ) ) { |
|
312 | + if ( ! array_key_exists('give_manager', $wp_roles->roles)) { |
|
313 | 313 | |
314 | 314 | // Create Give plugin roles |
315 | 315 | $roles = new Give_Roles(); |
@@ -320,4 +320,4 @@ discard block |
||
320 | 320 | |
321 | 321 | } |
322 | 322 | |
323 | -add_action( 'admin_init', 'give_install_roles_on_network' ); |
|
324 | 323 | \ No newline at end of file |
324 | +add_action('admin_init', 'give_install_roles_on_network'); |
|
325 | 325 | \ 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 | |
@@ -50,50 +50,50 @@ discard block |
||
50 | 50 | */ |
51 | 51 | |
52 | 52 | // https://gist.github.com/justinph/5197810 |
53 | - function validate_gravatar( $id_or_email ) { |
|
53 | + function validate_gravatar($id_or_email) { |
|
54 | 54 | //id or email code borrowed from wp-includes/pluggable.php |
55 | 55 | $email = ''; |
56 | - if ( is_numeric( $id_or_email ) ) { |
|
56 | + if (is_numeric($id_or_email)) { |
|
57 | 57 | $id = (int) $id_or_email; |
58 | - $user = get_userdata( $id ); |
|
59 | - if ( $user ) { |
|
58 | + $user = get_userdata($id); |
|
59 | + if ($user) { |
|
60 | 60 | $email = $user->user_email; |
61 | 61 | } |
62 | - } elseif ( is_object( $id_or_email ) ) { |
|
62 | + } elseif (is_object($id_or_email)) { |
|
63 | 63 | // No avatar for pingbacks or trackbacks |
64 | - $allowed_comment_types = apply_filters( 'get_avatar_comment_types', array( 'comment' ) ); |
|
65 | - if ( ! empty( $id_or_email->comment_type ) && ! in_array( $id_or_email->comment_type, (array) $allowed_comment_types ) ) { |
|
64 | + $allowed_comment_types = apply_filters('get_avatar_comment_types', array('comment')); |
|
65 | + if ( ! empty($id_or_email->comment_type) && ! in_array($id_or_email->comment_type, (array) $allowed_comment_types)) { |
|
66 | 66 | return false; |
67 | 67 | } |
68 | 68 | |
69 | - if ( ! empty( $id_or_email->user_id ) ) { |
|
69 | + if ( ! empty($id_or_email->user_id)) { |
|
70 | 70 | $id = (int) $id_or_email->user_id; |
71 | - $user = get_userdata( $id ); |
|
72 | - if ( $user ) { |
|
71 | + $user = get_userdata($id); |
|
72 | + if ($user) { |
|
73 | 73 | $email = $user->user_email; |
74 | 74 | } |
75 | - } elseif ( ! empty( $id_or_email->comment_author_email ) ) { |
|
75 | + } elseif ( ! empty($id_or_email->comment_author_email)) { |
|
76 | 76 | $email = $id_or_email->comment_author_email; |
77 | 77 | } |
78 | 78 | } else { |
79 | 79 | $email = $id_or_email; |
80 | 80 | } |
81 | 81 | |
82 | - $hashkey = md5( strtolower( trim( $email ) ) ); |
|
83 | - $uri = 'http://www.gravatar.com/avatar/' . $hashkey . '?d=404'; |
|
82 | + $hashkey = md5(strtolower(trim($email))); |
|
83 | + $uri = 'http://www.gravatar.com/avatar/'.$hashkey.'?d=404'; |
|
84 | 84 | |
85 | - $data = wp_cache_get( $hashkey ); |
|
86 | - if ( false === $data ) { |
|
87 | - $response = wp_remote_head( $uri ); |
|
88 | - if ( is_wp_error( $response ) ) { |
|
85 | + $data = wp_cache_get($hashkey); |
|
86 | + if (false === $data) { |
|
87 | + $response = wp_remote_head($uri); |
|
88 | + if (is_wp_error($response)) { |
|
89 | 89 | $data = 'not200'; |
90 | 90 | } else { |
91 | 91 | $data = $response['response']['code']; |
92 | 92 | } |
93 | - wp_cache_set( $hashkey, $data, $group = '', $expire = 60 * 5 ); |
|
93 | + wp_cache_set($hashkey, $data, $group = '', $expire = 60 * 5); |
|
94 | 94 | |
95 | 95 | } |
96 | - if ( $data == '200' ) { |
|
96 | + if ($data == '200') { |
|
97 | 97 | return true; |
98 | 98 | } else { |
99 | 99 | return false; |
@@ -108,17 +108,17 @@ discard block |
||
108 | 108 | * |
109 | 109 | * @param int $form_id |
110 | 110 | */ |
111 | - function get_log_ids( $form_id = '' ) { |
|
111 | + function get_log_ids($form_id = '') { |
|
112 | 112 | |
113 | 113 | // get Give_Logging class |
114 | 114 | global $give_logs; |
115 | 115 | |
116 | 116 | // get log for this form |
117 | - $logs = $give_logs->get_logs( $form_id ); |
|
117 | + $logs = $give_logs->get_logs($form_id); |
|
118 | 118 | |
119 | - if ( $logs ) { |
|
119 | + if ($logs) { |
|
120 | 120 | // make an array with all the donor IDs |
121 | - foreach ( $logs as $log ) { |
|
121 | + foreach ($logs as $log) { |
|
122 | 122 | $log_ids[] = $log->ID; |
123 | 123 | } |
124 | 124 | |
@@ -135,49 +135,49 @@ discard block |
||
135 | 135 | * |
136 | 136 | * @since 1.0 |
137 | 137 | */ |
138 | - function get_payment_ids( $form_id = '' ) { |
|
138 | + function get_payment_ids($form_id = '') { |
|
139 | 139 | |
140 | 140 | global $give_options; |
141 | 141 | |
142 | - $log_ids = $this->get_log_ids( $form_id ); |
|
142 | + $log_ids = $this->get_log_ids($form_id); |
|
143 | 143 | |
144 | - if ( $log_ids ) { |
|
144 | + if ($log_ids) { |
|
145 | 145 | |
146 | 146 | $payment_ids = array(); |
147 | 147 | |
148 | - foreach ( $log_ids as $id ) { |
|
148 | + foreach ($log_ids as $id) { |
|
149 | 149 | // get the payment ID for each corresponding log ID |
150 | - $payment_ids[] = get_post_meta( $id, '_give_log_payment_id', true ); |
|
150 | + $payment_ids[] = get_post_meta($id, '_give_log_payment_id', true); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | // remove donors who have purchased more than once so we can have unique avatars |
154 | 154 | $unique_emails = array(); |
155 | 155 | |
156 | - foreach ( $payment_ids as $key => $id ) { |
|
156 | + foreach ($payment_ids as $key => $id) { |
|
157 | 157 | |
158 | - $email = get_post_meta( $id, '_give_payment_user_email', true ); |
|
158 | + $email = get_post_meta($id, '_give_payment_user_email', true); |
|
159 | 159 | |
160 | - if ( isset ( $give_options['give_donators_gravatars_has_gravatar_account'] ) ) { |
|
161 | - if ( ! $this->validate_gravatar( $email ) ) { |
|
160 | + if (isset ($give_options['give_donators_gravatars_has_gravatar_account'])) { |
|
161 | + if ( ! $this->validate_gravatar($email)) { |
|
162 | 162 | continue; |
163 | 163 | } |
164 | 164 | } |
165 | 165 | |
166 | - $unique_emails[ $id ] = get_post_meta( $id, '_give_payment_user_email', true ); |
|
166 | + $unique_emails[$id] = get_post_meta($id, '_give_payment_user_email', true); |
|
167 | 167 | |
168 | 168 | } |
169 | 169 | |
170 | 170 | // strip duplicate emails |
171 | - $unique_emails = array_unique( $unique_emails ); |
|
171 | + $unique_emails = array_unique($unique_emails); |
|
172 | 172 | |
173 | 173 | // convert the unique IDs back into simple array |
174 | - foreach ( $unique_emails as $id => $email ) { |
|
174 | + foreach ($unique_emails as $id => $email) { |
|
175 | 175 | $unique_ids[] = $id; |
176 | 176 | } |
177 | 177 | |
178 | 178 | // randomize the payment IDs if enabled |
179 | - if ( isset( $give_options['give_donators_gravatars_random_gravatars'] ) ) { |
|
180 | - shuffle( $unique_ids ); |
|
179 | + if (isset($give_options['give_donators_gravatars_random_gravatars'])) { |
|
180 | + shuffle($unique_ids); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | // return our unique IDs |
@@ -193,22 +193,22 @@ discard block |
||
193 | 193 | * |
194 | 194 | * @since 1.0 |
195 | 195 | */ |
196 | - function gravatars( $form_id = false, $title = '' ) { |
|
196 | + function gravatars($form_id = false, $title = '') { |
|
197 | 197 | |
198 | 198 | // unique $payment_ids |
199 | - $payment_ids = $this->get_payment_ids( $form_id ); |
|
199 | + $payment_ids = $this->get_payment_ids($form_id); |
|
200 | 200 | |
201 | 201 | global $give_options; |
202 | 202 | |
203 | 203 | // return if no ID |
204 | - if ( ! $form_id ) { |
|
204 | + if ( ! $form_id) { |
|
205 | 205 | return; |
206 | 206 | } |
207 | 207 | |
208 | 208 | // minimum amount of purchases before showing gravatars |
209 | 209 | // if the number of items in array is not greater or equal to the number specified, then exit |
210 | - if ( isset( $give_options['give_donators_gravatars_min_purchases_required'] ) && '' != $give_options['give_donators_gravatars_min_purchases_required'] ) { |
|
211 | - if ( ! ( count( $payment_ids ) >= $give_options['give_donators_gravatars_min_purchases_required'] ) ) { |
|
210 | + if (isset($give_options['give_donators_gravatars_min_purchases_required']) && '' != $give_options['give_donators_gravatars_min_purchases_required']) { |
|
211 | + if ( ! (count($payment_ids) >= $give_options['give_donators_gravatars_min_purchases_required'])) { |
|
212 | 212 | return; |
213 | 213 | } |
214 | 214 | } |
@@ -219,51 +219,51 @@ discard block |
||
219 | 219 | echo '<div id="give-purchase-gravatars">'; |
220 | 220 | |
221 | 221 | |
222 | - if ( isset ( $title ) ) { |
|
222 | + if (isset ($title)) { |
|
223 | 223 | |
224 | - if ( $title ) { |
|
225 | - echo apply_filters( 'give_donators_gravatars_title', '<h3 class="give-gravatars-title">' . esc_attr( $title ) . '</h3>' ); |
|
226 | - } elseif ( isset( $give_options['give_donators_gravatars_heading'] ) ) { |
|
227 | - echo apply_filters( 'give_donators_gravatars_title', '<h3 class="give-gravatars-title">' . esc_attr( $give_options['give_donators_gravatars_heading'] ) . '</h2>' ); |
|
224 | + if ($title) { |
|
225 | + echo apply_filters('give_donators_gravatars_title', '<h3 class="give-gravatars-title">'.esc_attr($title).'</h3>'); |
|
226 | + } elseif (isset($give_options['give_donators_gravatars_heading'])) { |
|
227 | + echo apply_filters('give_donators_gravatars_title', '<h3 class="give-gravatars-title">'.esc_attr($give_options['give_donators_gravatars_heading']).'</h2>'); |
|
228 | 228 | } |
229 | 229 | |
230 | 230 | } |
231 | 231 | echo '<ul class="give-purchase-gravatars-list">'; |
232 | 232 | $i = 0; |
233 | 233 | |
234 | - if ( $payment_ids ) { |
|
235 | - foreach ( $payment_ids as $id ) { |
|
234 | + if ($payment_ids) { |
|
235 | + foreach ($payment_ids as $id) { |
|
236 | 236 | |
237 | 237 | // Give saves a blank option even when the control is turned off, hence the extra check |
238 | - if ( isset( $give_options['give_donators_gravatars_maximum_number'] ) && '' != $give_options['give_donators_gravatars_maximum_number'] && $i == $give_options['give_donators_gravatars_maximum_number'] ) { |
|
238 | + if (isset($give_options['give_donators_gravatars_maximum_number']) && '' != $give_options['give_donators_gravatars_maximum_number'] && $i == $give_options['give_donators_gravatars_maximum_number']) { |
|
239 | 239 | continue; |
240 | 240 | } |
241 | 241 | |
242 | 242 | // get the payment meta |
243 | - $payment_meta = get_post_meta( $id, '_give_payment_meta', true ); |
|
243 | + $payment_meta = get_post_meta($id, '_give_payment_meta', true); |
|
244 | 244 | |
245 | 245 | // unserialize the payment meta |
246 | - $user_info = maybe_unserialize( $payment_meta['user_info'] ); |
|
246 | + $user_info = maybe_unserialize($payment_meta['user_info']); |
|
247 | 247 | |
248 | 248 | // get donor's first name |
249 | 249 | $name = $user_info['first_name']; |
250 | 250 | |
251 | 251 | // get donor's email |
252 | - $email = get_post_meta( $id, '_give_payment_user_email', true ); |
|
252 | + $email = get_post_meta($id, '_give_payment_user_email', true); |
|
253 | 253 | |
254 | 254 | // set gravatar size and provide filter |
255 | - $size = isset( $give_options['give_donators_gravatars_gravatar_size'] ) ? apply_filters( 'give_donators_gravatars_gravatar_size', $give_options['give_donators_gravatars_gravatar_size'] ) : ''; |
|
255 | + $size = isset($give_options['give_donators_gravatars_gravatar_size']) ? apply_filters('give_donators_gravatars_gravatar_size', $give_options['give_donators_gravatars_gravatar_size']) : ''; |
|
256 | 256 | |
257 | 257 | // default image |
258 | - $default_image = apply_filters( 'give_donators_gravatars_gravatar_default_image', false ); |
|
258 | + $default_image = apply_filters('give_donators_gravatars_gravatar_default_image', false); |
|
259 | 259 | |
260 | 260 | // assemble output |
261 | 261 | $output .= '<li>'; |
262 | 262 | |
263 | - $output .= get_avatar( $email, $size, $default_image, $name ); |
|
263 | + $output .= get_avatar($email, $size, $default_image, $name); |
|
264 | 264 | $output .= '</li>'; |
265 | 265 | |
266 | - $i ++; |
|
266 | + $i++; |
|
267 | 267 | |
268 | 268 | } // end foreach |
269 | 269 | } |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | echo '</ul>'; |
273 | 273 | echo '</div>'; |
274 | 274 | |
275 | - return apply_filters( 'give_donators_gravatars', ob_get_clean() ); |
|
275 | + return apply_filters('give_donators_gravatars', ob_get_clean()); |
|
276 | 276 | } |
277 | 277 | |
278 | 278 | /** |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | * @since 1.0 |
282 | 282 | */ |
283 | 283 | function register_widget() { |
284 | - register_widget( 'Give_Donators_Gravatars_Widget' ); |
|
284 | + register_widget('Give_Donators_Gravatars_Widget'); |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | /** |
@@ -290,19 +290,19 @@ discard block |
||
290 | 290 | * @since 1.0 |
291 | 291 | * @todo set the ID to get_the_ID() if ID parameter is not passed through. Otherwise it will incorrectly get other gravatars |
292 | 292 | */ |
293 | - function shortcode( $atts, $content = null ) { |
|
293 | + function shortcode($atts, $content = null) { |
|
294 | 294 | |
295 | - $atts = shortcode_atts( array( |
|
295 | + $atts = shortcode_atts(array( |
|
296 | 296 | 'id' => '', |
297 | 297 | 'title' => '' |
298 | - ), $atts, 'give_donators_gravatars' ); |
|
298 | + ), $atts, 'give_donators_gravatars'); |
|
299 | 299 | |
300 | 300 | // if no ID is passed on single give_forms pages, get the correct ID |
301 | - if ( is_singular( 'give_forms' ) ) { |
|
301 | + if (is_singular('give_forms')) { |
|
302 | 302 | $id = get_the_ID(); |
303 | 303 | } |
304 | 304 | |
305 | - $content = $this->gravatars( $atts['id'], $atts['title'] ); |
|
305 | + $content = $this->gravatars($atts['id'], $atts['title']); |
|
306 | 306 | |
307 | 307 | return $content; |
308 | 308 | |
@@ -313,57 +313,57 @@ discard block |
||
313 | 313 | * |
314 | 314 | * @since 1.0 |
315 | 315 | */ |
316 | - function settings( $settings ) { |
|
316 | + function settings($settings) { |
|
317 | 317 | |
318 | 318 | $give_gravatar_settings = array( |
319 | 319 | array( |
320 | - 'name' => esc_html__( 'Donator Gravatars', 'give' ), |
|
320 | + 'name' => esc_html__('Donator Gravatars', 'give'), |
|
321 | 321 | 'desc' => '<hr>', |
322 | 322 | 'id' => 'give_title', |
323 | 323 | 'type' => 'give_title' |
324 | 324 | ), |
325 | 325 | array( |
326 | - 'name' => esc_html__( 'Heading', 'give' ), |
|
327 | - 'desc' => esc_html__( 'The heading to display above the Gravatars', 'give' ), |
|
326 | + 'name' => esc_html__('Heading', 'give'), |
|
327 | + 'desc' => esc_html__('The heading to display above the Gravatars', 'give'), |
|
328 | 328 | 'type' => 'text', |
329 | 329 | 'id' => 'give_donators_gravatars_heading' |
330 | 330 | ), |
331 | 331 | array( |
332 | - 'name' => esc_html__( 'Gravatar Size', 'give' ), |
|
333 | - 'desc' => esc_html__( 'The size of each Gravatar in pixels (512px maximum)', 'give' ), |
|
332 | + 'name' => esc_html__('Gravatar Size', 'give'), |
|
333 | + 'desc' => esc_html__('The size of each Gravatar in pixels (512px maximum)', 'give'), |
|
334 | 334 | 'type' => 'text_small', |
335 | 335 | 'id' => 'give_donators_gravatars_gravatar_size', |
336 | 336 | 'default' => '64' |
337 | 337 | ), |
338 | 338 | array( |
339 | - 'name' => esc_html__( 'Minimum Unique Purchases Required', 'give' ), |
|
339 | + 'name' => esc_html__('Minimum Unique Purchases Required', 'give'), |
|
340 | 340 | /* translators: %s: form singular label */ |
341 | - 'desc' => sprintf( esc_html__( 'The minimum number of unique purchases a %s must have before the Gravatars are shown. Leave blank for no minimum.', 'give' ), strtolower( give_get_forms_label_singular() ) ), |
|
341 | + 'desc' => sprintf(esc_html__('The minimum number of unique purchases a %s must have before the Gravatars are shown. Leave blank for no minimum.', 'give'), strtolower(give_get_forms_label_singular())), |
|
342 | 342 | 'type' => 'text_small', |
343 | 343 | 'id' => 'give_donators_gravatars_min_purchases_required', |
344 | 344 | ), |
345 | 345 | array( |
346 | - 'name' => esc_html__( 'Maximum Gravatars To Show', 'give' ), |
|
347 | - 'desc' => esc_html__( 'The maximum number of gravatars to show. Leave blank for no limit.', 'give' ), |
|
346 | + 'name' => esc_html__('Maximum Gravatars To Show', 'give'), |
|
347 | + 'desc' => esc_html__('The maximum number of gravatars to show. Leave blank for no limit.', 'give'), |
|
348 | 348 | 'type' => 'text', |
349 | 349 | 'id' => 'give_donators_gravatars_maximum_number', |
350 | 350 | 'default' => '20', |
351 | 351 | ), |
352 | 352 | array( |
353 | - 'name' => esc_html__( 'Gravatar Visibility', 'give' ), |
|
354 | - 'desc' => esc_html__( 'Only show donators with a Gravatar account', 'give' ), |
|
353 | + 'name' => esc_html__('Gravatar Visibility', 'give'), |
|
354 | + 'desc' => esc_html__('Only show donators with a Gravatar account', 'give'), |
|
355 | 355 | 'id' => 'give_donators_gravatars_has_gravatar_account', |
356 | 356 | 'type' => 'checkbox', |
357 | 357 | ), |
358 | 358 | array( |
359 | - 'name' => esc_html__( 'Randomize Gravatars', 'give' ), |
|
360 | - 'desc' => esc_html__( 'Randomize the Gravatars', 'give' ), |
|
359 | + 'name' => esc_html__('Randomize Gravatars', 'give'), |
|
360 | + 'desc' => esc_html__('Randomize the Gravatars', 'give'), |
|
361 | 361 | 'id' => 'give_donators_gravatars_random_gravatars', |
362 | 362 | 'type' => 'checkbox', |
363 | 363 | ), |
364 | 364 | ); |
365 | 365 | |
366 | - return array_merge( $settings, $give_gravatar_settings ); |
|
366 | + return array_merge($settings, $give_gravatar_settings); |
|
367 | 367 | } |
368 | 368 | |
369 | 369 | } |
@@ -381,13 +381,13 @@ discard block |
||
381 | 381 | */ |
382 | 382 | public function __construct() { |
383 | 383 | |
384 | - $give_label_singular = function_exists( 'give_get_forms_label_singular' ) ? strtolower( give_get_forms_label_singular() ) : null; |
|
384 | + $give_label_singular = function_exists('give_get_forms_label_singular') ? strtolower(give_get_forms_label_singular()) : null; |
|
385 | 385 | |
386 | 386 | // widget settings |
387 | 387 | $widget_ops = array( |
388 | 388 | 'classname' => 'give-donators-gravatars', |
389 | 389 | /* translators: 1: form singular label 2: form singular label */ |
390 | - 'description' => sprintf( esc_html__( 'Displays gravatars of people who have donated using your your %1$s. Will only show on the single %2$s page.', 'give' ), $give_label_singular, $give_label_singular ) |
|
390 | + 'description' => sprintf(esc_html__('Displays gravatars of people who have donated using your your %1$s. Will only show on the single %2$s page.', 'give'), $give_label_singular, $give_label_singular) |
|
391 | 391 | ); |
392 | 392 | |
393 | 393 | // widget control settings |
@@ -400,7 +400,7 @@ discard block |
||
400 | 400 | // create the widget |
401 | 401 | parent::__construct( |
402 | 402 | 'give_donators_gravatars_widget', |
403 | - esc_html__( 'Give Donators Gravatars', 'give' ), |
|
403 | + esc_html__('Give Donators Gravatars', 'give'), |
|
404 | 404 | $widget_ops, |
405 | 405 | $control_ops |
406 | 406 | ); |
@@ -411,30 +411,30 @@ discard block |
||
411 | 411 | /* |
412 | 412 | * Outputs the content of the widget |
413 | 413 | */ |
414 | - function widget( $args, $instance ) { |
|
414 | + function widget($args, $instance) { |
|
415 | 415 | global $give_options; |
416 | 416 | |
417 | 417 | //@TODO: Don't extract it!!! |
418 | - extract( $args ); |
|
418 | + extract($args); |
|
419 | 419 | |
420 | - if ( ! is_singular( 'give_forms' ) ) { |
|
420 | + if ( ! is_singular('give_forms')) { |
|
421 | 421 | return; |
422 | 422 | } |
423 | 423 | |
424 | 424 | // Variables from widget settings |
425 | - $title = apply_filters( 'widget_title', $instance['title'] ); |
|
425 | + $title = apply_filters('widget_title', $instance['title']); |
|
426 | 426 | |
427 | 427 | // Used by themes. Opens the widget |
428 | 428 | echo $before_widget; |
429 | 429 | |
430 | 430 | // Display the widget title |
431 | - if ( $title ) { |
|
432 | - echo $before_title . $title . $after_title; |
|
431 | + if ($title) { |
|
432 | + echo $before_title.$title.$after_title; |
|
433 | 433 | } |
434 | 434 | |
435 | 435 | $gravatars = new Give_Donators_Gravatars(); |
436 | 436 | |
437 | - echo $gravatars->gravatars( get_the_ID(), null ); // remove title |
|
437 | + echo $gravatars->gravatars(get_the_ID(), null); // remove title |
|
438 | 438 | |
439 | 439 | // Used by themes. Closes the widget |
440 | 440 | echo $after_widget; |
@@ -444,11 +444,11 @@ discard block |
||
444 | 444 | /* |
445 | 445 | * Update function. Processes widget options to be saved |
446 | 446 | */ |
447 | - function update( $new_instance, $old_instance ) { |
|
447 | + function update($new_instance, $old_instance) { |
|
448 | 448 | |
449 | 449 | $instance = $old_instance; |
450 | 450 | |
451 | - $instance['title'] = strip_tags( $new_instance['title'] ); |
|
451 | + $instance['title'] = strip_tags($new_instance['title']); |
|
452 | 452 | |
453 | 453 | return $instance; |
454 | 454 | |
@@ -457,19 +457,19 @@ discard block |
||
457 | 457 | /* |
458 | 458 | * Form function. Displays the actual form on the widget page |
459 | 459 | */ |
460 | - function form( $instance ) { |
|
460 | + function form($instance) { |
|
461 | 461 | |
462 | 462 | // Set up some default widget settings. |
463 | 463 | $defaults = array( |
464 | 464 | 'title' => '', |
465 | 465 | ); |
466 | 466 | |
467 | - $instance = wp_parse_args( (array) $instance, $defaults ); ?> |
|
467 | + $instance = wp_parse_args((array) $instance, $defaults); ?> |
|
468 | 468 | |
469 | 469 | <!-- Title --> |
470 | 470 | <p> |
471 | - <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:', 'give' ) ?></label> |
|
472 | - <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $instance['title']; ?>" /> |
|
471 | + <label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'give') ?></label> |
|
472 | + <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $instance['title']; ?>" /> |
|
473 | 473 | </p> |
474 | 474 | |
475 | 475 |
@@ -238,23 +238,23 @@ discard block |
||
238 | 238 | wp_enqueue_script( 'give-admin-forms-scripts' ); |
239 | 239 | } |
240 | 240 | |
241 | - //Settings Scripts |
|
242 | - if (isset($_GET['page']) && $_GET['page'] == 'give-settings' ) { |
|
243 | - wp_register_script( 'give-admin-settings-scripts', $js_dir . 'admin-settings' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, false ); |
|
244 | - wp_enqueue_script( 'give-admin-settings-scripts' ); |
|
245 | - } |
|
241 | + //Settings Scripts |
|
242 | + if (isset($_GET['page']) && $_GET['page'] == 'give-settings' ) { |
|
243 | + wp_register_script( 'give-admin-settings-scripts', $js_dir . 'admin-settings' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, false ); |
|
244 | + wp_enqueue_script( 'give-admin-settings-scripts' ); |
|
245 | + } |
|
246 | 246 | |
247 | - // Price Separators. |
|
248 | - $thousand_separator = give_get_price_thousand_separator(); |
|
249 | - $decimal_separator = give_get_price_decimal_separator(); |
|
247 | + // Price Separators. |
|
248 | + $thousand_separator = give_get_price_thousand_separator(); |
|
249 | + $decimal_separator = give_get_price_decimal_separator(); |
|
250 | 250 | |
251 | - //Localize strings & variables for JS |
|
251 | + //Localize strings & variables for JS |
|
252 | 252 | wp_localize_script( 'give-admin-scripts', 'give_vars', array( |
253 | 253 | 'post_id' => isset( $post->ID ) ? $post->ID : null, |
254 | 254 | 'give_version' => GIVE_VERSION, |
255 | - 'thousands_separator' => $thousand_separator, |
|
256 | - 'decimal_separator' => $decimal_separator, |
|
257 | - 'quick_edit_warning' => esc_html__( 'Sorry, not available for variable priced forms.', 'give' ), |
|
255 | + 'thousands_separator' => $thousand_separator, |
|
256 | + 'decimal_separator' => $decimal_separator, |
|
257 | + 'quick_edit_warning' => esc_html__( 'Sorry, not available for variable priced forms.', 'give' ), |
|
258 | 258 | 'delete_payment' => esc_html__( 'Are you sure you wish to delete this payment?', 'give' ), |
259 | 259 | 'delete_payment_note' => esc_html__( 'Are you sure you wish to delete this note?', 'give' ), |
260 | 260 | 'revoke_api_key' => esc_html__( 'Are you sure you wish to revoke this API key?', 'give' ), |
@@ -282,8 +282,8 @@ discard block |
||
282 | 282 | 'batch_export_no_class' => esc_html__( 'You must choose a method.', 'give' ), |
283 | 283 | 'batch_export_no_reqs' => esc_html__( 'Required fields not completed.', 'give' ), |
284 | 284 | 'reset_stats_warn' => __( 'Are you sure you want to reset Give? This process is <strong><em>not reversible</em></strong> and will delete all data regardless of test or live mode. Please be sure you have a recent backup before proceeding.', 'give' ), |
285 | - 'price_format_guide' => sprintf( esc_html__( 'Please enter amount in monetary decimal ( %1$s ) format without thousand separator ( %2$s ).', 'give' ), $decimal_separator, $thousand_separator ) |
|
286 | - ) ); |
|
285 | + 'price_format_guide' => sprintf( esc_html__( 'Please enter amount in monetary decimal ( %1$s ) format without thousand separator ( %2$s ).', 'give' ), $decimal_separator, $thousand_separator ) |
|
286 | + ) ); |
|
287 | 287 | |
288 | 288 | if ( function_exists( 'wp_enqueue_media' ) && version_compare( $wp_version, '3.5', '>=' ) ) { |
289 | 289 | //call for new media manager |
@@ -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,94 +28,94 @@ discard block |
||
28 | 28 | |
29 | 29 | global $give_options; |
30 | 30 | |
31 | - $js_dir = GIVE_PLUGIN_URL . 'assets/js/frontend/'; |
|
32 | - $js_plugins = GIVE_PLUGIN_URL . 'assets/js/plugins/'; |
|
33 | - $scripts_footer = ( give_get_option( 'scripts_footer' ) == 'on' ) ? true : false; |
|
31 | + $js_dir = GIVE_PLUGIN_URL.'assets/js/frontend/'; |
|
32 | + $js_plugins = GIVE_PLUGIN_URL.'assets/js/plugins/'; |
|
33 | + $scripts_footer = (give_get_option('scripts_footer') == 'on') ? true : false; |
|
34 | 34 | |
35 | 35 | // Use minified libraries if SCRIPT_DEBUG is turned off |
36 | - $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
36 | + $suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
37 | 37 | |
38 | 38 | //Localize / PHP to AJAX vars |
39 | - $localize_give_checkout = apply_filters( 'give_global_script_vars', array( |
|
39 | + $localize_give_checkout = apply_filters('give_global_script_vars', array( |
|
40 | 40 | 'ajaxurl' => give_get_ajax_url(), |
41 | - 'checkout_nonce' => wp_create_nonce( 'give_checkout_nonce' ), |
|
42 | - 'currency_sign' => give_currency_filter( '' ), |
|
41 | + 'checkout_nonce' => wp_create_nonce('give_checkout_nonce'), |
|
42 | + 'currency_sign' => give_currency_filter(''), |
|
43 | 43 | 'currency_pos' => give_get_currency_position(), |
44 | 44 | 'thousands_separator' => give_get_price_thousand_separator(), |
45 | 45 | 'decimal_separator' => give_get_price_decimal_separator(), |
46 | - 'no_gateway' => esc_html__( 'Please select a payment method.', 'give' ), |
|
47 | - 'bad_minimum' => esc_html__( 'The minimum donation amount for this form is', 'give' ), |
|
48 | - 'general_loading' => esc_html__( 'Loading...', 'give' ), |
|
49 | - 'purchase_loading' => esc_html__( 'Please Wait...', 'give' ), |
|
46 | + 'no_gateway' => esc_html__('Please select a payment method.', 'give'), |
|
47 | + 'bad_minimum' => esc_html__('The minimum donation amount for this form is', 'give'), |
|
48 | + 'general_loading' => esc_html__('Loading...', 'give'), |
|
49 | + 'purchase_loading' => esc_html__('Please Wait...', 'give'), |
|
50 | 50 | 'number_decimals' => give_get_price_decimals(), |
51 | 51 | 'give_version' => GIVE_VERSION |
52 | - ) ); |
|
53 | - $localize_give_ajax = apply_filters( 'give_global_ajax_vars', array( |
|
52 | + )); |
|
53 | + $localize_give_ajax = apply_filters('give_global_ajax_vars', array( |
|
54 | 54 | 'ajaxurl' => give_get_ajax_url(), |
55 | - 'loading' => esc_html__( 'Loading', 'give' ), |
|
55 | + 'loading' => esc_html__('Loading', 'give'), |
|
56 | 56 | // General loading message |
57 | - 'select_option' => esc_html__( 'Please select an option', 'give' ), |
|
57 | + 'select_option' => esc_html__('Please select an option', 'give'), |
|
58 | 58 | // Variable pricing error with multi-purchase option enabled |
59 | - 'default_gateway' => give_get_default_gateway( null ), |
|
60 | - 'permalinks' => get_option( 'permalink_structure' ) ? '1' : '0', |
|
59 | + 'default_gateway' => give_get_default_gateway(null), |
|
60 | + 'permalinks' => get_option('permalink_structure') ? '1' : '0', |
|
61 | 61 | 'number_decimals' => give_get_price_decimals() |
62 | - ) ); |
|
62 | + )); |
|
63 | 63 | |
64 | 64 | //DEBUG is On |
65 | - if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) { |
|
65 | + if (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) { |
|
66 | 66 | |
67 | - if ( give_is_cc_verify_enabled() ) { |
|
68 | - wp_register_script( 'give-cc-validator', $js_plugins . 'jquery.payment' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
69 | - wp_enqueue_script( 'give-cc-validator' ); |
|
67 | + if (give_is_cc_verify_enabled()) { |
|
68 | + wp_register_script('give-cc-validator', $js_plugins.'jquery.payment'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
69 | + wp_enqueue_script('give-cc-validator'); |
|
70 | 70 | } |
71 | 71 | |
72 | - wp_register_script( 'give-float-labels', $js_plugins . 'float-labels' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
73 | - wp_enqueue_script( 'give-float-labels' ); |
|
72 | + wp_register_script('give-float-labels', $js_plugins.'float-labels'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
73 | + wp_enqueue_script('give-float-labels'); |
|
74 | 74 | |
75 | - wp_register_script( 'give-blockui', $js_plugins . 'jquery.blockUI' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
76 | - wp_enqueue_script( 'give-blockui' ); |
|
75 | + wp_register_script('give-blockui', $js_plugins.'jquery.blockUI'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
76 | + wp_enqueue_script('give-blockui'); |
|
77 | 77 | |
78 | - wp_register_script( 'give-qtip', $js_plugins . 'jquery.qtip' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
79 | - wp_enqueue_script( 'give-qtip' ); |
|
78 | + wp_register_script('give-qtip', $js_plugins.'jquery.qtip'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
79 | + wp_enqueue_script('give-qtip'); |
|
80 | 80 | |
81 | - wp_register_script( 'give-accounting', $js_plugins . 'accounting' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
82 | - wp_enqueue_script( 'give-accounting' ); |
|
81 | + wp_register_script('give-accounting', $js_plugins.'accounting'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
82 | + wp_enqueue_script('give-accounting'); |
|
83 | 83 | |
84 | - wp_register_script( 'give-magnific', $js_plugins . 'jquery.magnific-popup' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
85 | - wp_enqueue_script( 'give-magnific' ); |
|
84 | + wp_register_script('give-magnific', $js_plugins.'jquery.magnific-popup'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
85 | + wp_enqueue_script('give-magnific'); |
|
86 | 86 | |
87 | - wp_register_script( 'give-checkout-global', $js_dir . 'give-checkout-global' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
88 | - wp_enqueue_script( 'give-checkout-global' ); |
|
87 | + wp_register_script('give-checkout-global', $js_dir.'give-checkout-global'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
88 | + wp_enqueue_script('give-checkout-global'); |
|
89 | 89 | |
90 | 90 | //General scripts |
91 | - wp_register_script( 'give-scripts', $js_dir . 'give' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
92 | - wp_enqueue_script( 'give-scripts' ); |
|
91 | + wp_register_script('give-scripts', $js_dir.'give'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
92 | + wp_enqueue_script('give-scripts'); |
|
93 | 93 | |
94 | 94 | // Load AJAX scripts, if enabled |
95 | - wp_register_script( 'give-ajax', $js_dir . 'give-ajax' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
96 | - wp_enqueue_script( 'give-ajax' ); |
|
95 | + wp_register_script('give-ajax', $js_dir.'give-ajax'.$suffix.'.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
96 | + wp_enqueue_script('give-ajax'); |
|
97 | 97 | |
98 | 98 | //Localize / Pass AJAX vars from PHP |
99 | - wp_localize_script( 'give-checkout-global', 'give_global_vars', $localize_give_checkout ); |
|
100 | - wp_localize_script( 'give-ajax', 'give_scripts', $localize_give_ajax ); |
|
99 | + wp_localize_script('give-checkout-global', 'give_global_vars', $localize_give_checkout); |
|
100 | + wp_localize_script('give-ajax', 'give_scripts', $localize_give_ajax); |
|
101 | 101 | |
102 | 102 | |
103 | 103 | } else { |
104 | 104 | |
105 | 105 | //DEBUG is OFF (one JS file to rule them all!) |
106 | - wp_register_script( 'give', $js_dir . 'give.all.min.js', array( 'jquery' ), GIVE_VERSION, $scripts_footer ); |
|
107 | - wp_enqueue_script( 'give' ); |
|
106 | + wp_register_script('give', $js_dir.'give.all.min.js', array('jquery'), GIVE_VERSION, $scripts_footer); |
|
107 | + wp_enqueue_script('give'); |
|
108 | 108 | |
109 | 109 | //Localize / Pass AJAX vars from PHP |
110 | - wp_localize_script( 'give', 'give_global_vars', $localize_give_checkout ); |
|
111 | - wp_localize_script( 'give', 'give_scripts', $localize_give_ajax ); |
|
110 | + wp_localize_script('give', 'give_global_vars', $localize_give_checkout); |
|
111 | + wp_localize_script('give', 'give_scripts', $localize_give_ajax); |
|
112 | 112 | |
113 | 113 | } |
114 | 114 | |
115 | 115 | |
116 | 116 | } |
117 | 117 | |
118 | -add_action( 'wp_enqueue_scripts', 'give_load_scripts' ); |
|
118 | +add_action('wp_enqueue_scripts', 'give_load_scripts'); |
|
119 | 119 | |
120 | 120 | /** |
121 | 121 | * Register Styles |
@@ -127,47 +127,47 @@ discard block |
||
127 | 127 | */ |
128 | 128 | function give_register_styles() { |
129 | 129 | |
130 | - if ( give_get_option( 'disable_css', false ) ) { |
|
130 | + if (give_get_option('disable_css', false)) { |
|
131 | 131 | return; |
132 | 132 | } |
133 | 133 | |
134 | 134 | // Use minified libraries if SCRIPT_DEBUG is turned off |
135 | - $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
135 | + $suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
136 | 136 | |
137 | - $file = 'give' . $suffix . '.css'; |
|
137 | + $file = 'give'.$suffix.'.css'; |
|
138 | 138 | $templates_dir = give_get_theme_template_dir_name(); |
139 | 139 | |
140 | - $child_theme_style_sheet = trailingslashit( get_stylesheet_directory() ) . $templates_dir . $file; |
|
141 | - $child_theme_style_sheet_2 = trailingslashit( get_stylesheet_directory() ) . $templates_dir . 'give.css'; |
|
142 | - $parent_theme_style_sheet = trailingslashit( get_template_directory() ) . $templates_dir . $file; |
|
143 | - $parent_theme_style_sheet_2 = trailingslashit( get_template_directory() ) . $templates_dir . 'give.css'; |
|
144 | - $give_plugin_style_sheet = trailingslashit( give_get_templates_dir() ) . $file; |
|
140 | + $child_theme_style_sheet = trailingslashit(get_stylesheet_directory()).$templates_dir.$file; |
|
141 | + $child_theme_style_sheet_2 = trailingslashit(get_stylesheet_directory()).$templates_dir.'give.css'; |
|
142 | + $parent_theme_style_sheet = trailingslashit(get_template_directory()).$templates_dir.$file; |
|
143 | + $parent_theme_style_sheet_2 = trailingslashit(get_template_directory()).$templates_dir.'give.css'; |
|
144 | + $give_plugin_style_sheet = trailingslashit(give_get_templates_dir()).$file; |
|
145 | 145 | |
146 | 146 | // Look in the child theme directory first, followed by the parent theme, followed by the Give core templates directory |
147 | 147 | // Also look for the min version first, followed by non minified version, even if SCRIPT_DEBUG is not enabled. |
148 | 148 | // This allows users to copy just give.css to their theme |
149 | - if ( file_exists( $child_theme_style_sheet ) || ( ! empty( $suffix ) && ( $nonmin = file_exists( $child_theme_style_sheet_2 ) ) ) ) { |
|
150 | - if ( ! empty( $nonmin ) ) { |
|
151 | - $url = trailingslashit( get_stylesheet_directory_uri() ) . $templates_dir . 'give.css'; |
|
149 | + if (file_exists($child_theme_style_sheet) || ( ! empty($suffix) && ($nonmin = file_exists($child_theme_style_sheet_2)))) { |
|
150 | + if ( ! empty($nonmin)) { |
|
151 | + $url = trailingslashit(get_stylesheet_directory_uri()).$templates_dir.'give.css'; |
|
152 | 152 | } else { |
153 | - $url = trailingslashit( get_stylesheet_directory_uri() ) . $templates_dir . $file; |
|
153 | + $url = trailingslashit(get_stylesheet_directory_uri()).$templates_dir.$file; |
|
154 | 154 | } |
155 | - } elseif ( file_exists( $parent_theme_style_sheet ) || ( ! empty( $suffix ) && ( $nonmin = file_exists( $parent_theme_style_sheet_2 ) ) ) ) { |
|
156 | - if ( ! empty( $nonmin ) ) { |
|
157 | - $url = trailingslashit( get_template_directory_uri() ) . $templates_dir . 'give.css'; |
|
155 | + } elseif (file_exists($parent_theme_style_sheet) || ( ! empty($suffix) && ($nonmin = file_exists($parent_theme_style_sheet_2)))) { |
|
156 | + if ( ! empty($nonmin)) { |
|
157 | + $url = trailingslashit(get_template_directory_uri()).$templates_dir.'give.css'; |
|
158 | 158 | } else { |
159 | - $url = trailingslashit( get_template_directory_uri() ) . $templates_dir . $file; |
|
159 | + $url = trailingslashit(get_template_directory_uri()).$templates_dir.$file; |
|
160 | 160 | } |
161 | - } elseif ( file_exists( $give_plugin_style_sheet ) || file_exists( $give_plugin_style_sheet ) ) { |
|
162 | - $url = trailingslashit( give_get_templates_url() ) . $file; |
|
161 | + } elseif (file_exists($give_plugin_style_sheet) || file_exists($give_plugin_style_sheet)) { |
|
162 | + $url = trailingslashit(give_get_templates_url()).$file; |
|
163 | 163 | } |
164 | 164 | |
165 | - wp_register_style( 'give-styles', $url, array(), GIVE_VERSION, 'all' ); |
|
166 | - wp_enqueue_style( 'give-styles' ); |
|
165 | + wp_register_style('give-styles', $url, array(), GIVE_VERSION, 'all'); |
|
166 | + wp_enqueue_style('give-styles'); |
|
167 | 167 | |
168 | 168 | } |
169 | 169 | |
170 | -add_action( 'wp_enqueue_scripts', 'give_register_styles' ); |
|
170 | +add_action('wp_enqueue_scripts', 'give_register_styles'); |
|
171 | 171 | |
172 | 172 | /** |
173 | 173 | * Load Admin Scripts |
@@ -183,65 +183,65 @@ discard block |
||
183 | 183 | * |
184 | 184 | * @return void |
185 | 185 | */ |
186 | -function give_load_admin_scripts( $hook ) { |
|
186 | +function give_load_admin_scripts($hook) { |
|
187 | 187 | |
188 | 188 | global $wp_version, $post, $post_type, $give_options; |
189 | 189 | |
190 | 190 | //Directories of assets |
191 | - $js_dir = GIVE_PLUGIN_URL . 'assets/js/admin/'; |
|
192 | - $js_plugins = GIVE_PLUGIN_URL . 'assets/js/plugins/'; |
|
193 | - $css_dir = GIVE_PLUGIN_URL . 'assets/css/'; |
|
191 | + $js_dir = GIVE_PLUGIN_URL.'assets/js/admin/'; |
|
192 | + $js_plugins = GIVE_PLUGIN_URL.'assets/js/plugins/'; |
|
193 | + $css_dir = GIVE_PLUGIN_URL.'assets/css/'; |
|
194 | 194 | |
195 | 195 | // Use minified libraries if SCRIPT_DEBUG is turned off |
196 | - $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
196 | + $suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
197 | 197 | |
198 | 198 | //Global Admin: |
199 | - wp_register_style( 'give-admin-bar-notification', $css_dir . 'adminbar-style.css' ); |
|
200 | - wp_enqueue_style( 'give-admin-bar-notification' ); |
|
199 | + wp_register_style('give-admin-bar-notification', $css_dir.'adminbar-style.css'); |
|
200 | + wp_enqueue_style('give-admin-bar-notification'); |
|
201 | 201 | |
202 | 202 | //Give Admin Only: |
203 | - if ( ! apply_filters( 'give_load_admin_scripts', give_is_admin_page(), $hook ) ) { |
|
203 | + if ( ! apply_filters('give_load_admin_scripts', give_is_admin_page(), $hook)) { |
|
204 | 204 | return; |
205 | 205 | } |
206 | 206 | |
207 | 207 | //CSS |
208 | - wp_register_style( 'jquery-ui-css', $css_dir . 'jquery-ui-fresh' . $suffix . '.css' ); |
|
209 | - wp_enqueue_style( 'jquery-ui-css' ); |
|
210 | - wp_register_style( 'give-admin', $css_dir . 'give-admin' . $suffix . '.css', GIVE_VERSION ); |
|
211 | - wp_enqueue_style( 'give-admin' ); |
|
212 | - wp_register_style( 'jquery-chosen', $css_dir . 'chosen' . $suffix . '.css', array(), GIVE_VERSION ); |
|
213 | - wp_enqueue_style( 'jquery-chosen' ); |
|
214 | - wp_enqueue_style( 'thickbox' ); |
|
208 | + wp_register_style('jquery-ui-css', $css_dir.'jquery-ui-fresh'.$suffix.'.css'); |
|
209 | + wp_enqueue_style('jquery-ui-css'); |
|
210 | + wp_register_style('give-admin', $css_dir.'give-admin'.$suffix.'.css', GIVE_VERSION); |
|
211 | + wp_enqueue_style('give-admin'); |
|
212 | + wp_register_style('jquery-chosen', $css_dir.'chosen'.$suffix.'.css', array(), GIVE_VERSION); |
|
213 | + wp_enqueue_style('jquery-chosen'); |
|
214 | + wp_enqueue_style('thickbox'); |
|
215 | 215 | |
216 | 216 | //JS |
217 | - wp_register_script( 'jquery-chosen', $js_plugins . 'chosen.jquery' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION ); |
|
218 | - wp_enqueue_script( 'jquery-chosen' ); |
|
217 | + wp_register_script('jquery-chosen', $js_plugins.'chosen.jquery'.$suffix.'.js', array('jquery'), GIVE_VERSION); |
|
218 | + wp_enqueue_script('jquery-chosen'); |
|
219 | 219 | |
220 | - wp_register_script( 'give-accounting', $js_plugins . 'accounting' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, false ); |
|
221 | - wp_enqueue_script( 'give-accounting' ); |
|
220 | + wp_register_script('give-accounting', $js_plugins.'accounting'.$suffix.'.js', array('jquery'), GIVE_VERSION, false); |
|
221 | + wp_enqueue_script('give-accounting'); |
|
222 | 222 | |
223 | - wp_register_script( 'give-admin-scripts', $js_dir . 'admin-scripts' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, false ); |
|
224 | - wp_enqueue_script( 'give-admin-scripts' ); |
|
223 | + wp_register_script('give-admin-scripts', $js_dir.'admin-scripts'.$suffix.'.js', array('jquery'), GIVE_VERSION, false); |
|
224 | + wp_enqueue_script('give-admin-scripts'); |
|
225 | 225 | |
226 | - wp_register_script( 'jquery-flot', $js_plugins . 'jquery.flot' . $suffix . '.js' ); |
|
227 | - wp_enqueue_script( 'jquery-flot' ); |
|
226 | + wp_register_script('jquery-flot', $js_plugins.'jquery.flot'.$suffix.'.js'); |
|
227 | + wp_enqueue_script('jquery-flot'); |
|
228 | 228 | |
229 | - wp_register_script( 'give-qtip', $js_plugins . 'jquery.qtip' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, false ); |
|
230 | - wp_enqueue_script( 'give-qtip' ); |
|
229 | + wp_register_script('give-qtip', $js_plugins.'jquery.qtip'.$suffix.'.js', array('jquery'), GIVE_VERSION, false); |
|
230 | + wp_enqueue_script('give-qtip'); |
|
231 | 231 | |
232 | - wp_enqueue_script( 'jquery-ui-datepicker' ); |
|
233 | - wp_enqueue_script( 'thickbox' ); |
|
232 | + wp_enqueue_script('jquery-ui-datepicker'); |
|
233 | + wp_enqueue_script('thickbox'); |
|
234 | 234 | |
235 | 235 | // Forms CPT Script. |
236 | - if ( $post_type === 'give_forms' ) { |
|
237 | - wp_register_script( 'give-admin-forms-scripts', $js_dir . 'admin-forms' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, false ); |
|
238 | - wp_enqueue_script( 'give-admin-forms-scripts' ); |
|
236 | + if ($post_type === 'give_forms') { |
|
237 | + wp_register_script('give-admin-forms-scripts', $js_dir.'admin-forms'.$suffix.'.js', array('jquery'), GIVE_VERSION, false); |
|
238 | + wp_enqueue_script('give-admin-forms-scripts'); |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | //Settings Scripts |
242 | - if (isset($_GET['page']) && $_GET['page'] == 'give-settings' ) { |
|
243 | - wp_register_script( 'give-admin-settings-scripts', $js_dir . 'admin-settings' . $suffix . '.js', array( 'jquery' ), GIVE_VERSION, false ); |
|
244 | - wp_enqueue_script( 'give-admin-settings-scripts' ); |
|
242 | + if (isset($_GET['page']) && $_GET['page'] == 'give-settings') { |
|
243 | + wp_register_script('give-admin-settings-scripts', $js_dir.'admin-settings'.$suffix.'.js', array('jquery'), GIVE_VERSION, false); |
|
244 | + wp_enqueue_script('give-admin-settings-scripts'); |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | // Price Separators. |
@@ -249,50 +249,50 @@ discard block |
||
249 | 249 | $decimal_separator = give_get_price_decimal_separator(); |
250 | 250 | |
251 | 251 | //Localize strings & variables for JS |
252 | - wp_localize_script( 'give-admin-scripts', 'give_vars', array( |
|
253 | - 'post_id' => isset( $post->ID ) ? $post->ID : null, |
|
252 | + wp_localize_script('give-admin-scripts', 'give_vars', array( |
|
253 | + 'post_id' => isset($post->ID) ? $post->ID : null, |
|
254 | 254 | 'give_version' => GIVE_VERSION, |
255 | 255 | 'thousands_separator' => $thousand_separator, |
256 | 256 | 'decimal_separator' => $decimal_separator, |
257 | - 'quick_edit_warning' => esc_html__( 'Sorry, not available for variable priced forms.', 'give' ), |
|
258 | - 'delete_payment' => esc_html__( 'Are you sure you wish to delete this payment?', 'give' ), |
|
259 | - 'delete_payment_note' => esc_html__( 'Are you sure you wish to delete this note?', 'give' ), |
|
260 | - 'revoke_api_key' => esc_html__( 'Are you sure you wish to revoke this API key?', 'give' ), |
|
261 | - 'regenerate_api_key' => esc_html__( 'Are you sure you wish to regenerate this API key?', 'give' ), |
|
262 | - 'resend_receipt' => esc_html__( 'Are you sure you wish to resend the donation receipt?', 'give' ), |
|
263 | - 'copy_download_link_text' => esc_html__( 'Copy these links to your clipboard and give them to your donor.', 'give' ), |
|
257 | + 'quick_edit_warning' => esc_html__('Sorry, not available for variable priced forms.', 'give'), |
|
258 | + 'delete_payment' => esc_html__('Are you sure you wish to delete this payment?', 'give'), |
|
259 | + 'delete_payment_note' => esc_html__('Are you sure you wish to delete this note?', 'give'), |
|
260 | + 'revoke_api_key' => esc_html__('Are you sure you wish to revoke this API key?', 'give'), |
|
261 | + 'regenerate_api_key' => esc_html__('Are you sure you wish to regenerate this API key?', 'give'), |
|
262 | + 'resend_receipt' => esc_html__('Are you sure you wish to resend the donation receipt?', 'give'), |
|
263 | + 'copy_download_link_text' => esc_html__('Copy these links to your clipboard and give them to your donor.', 'give'), |
|
264 | 264 | /* translators: %s: form singular label */ |
265 | - 'delete_payment_download' => sprintf( esc_html__( 'Are you sure you wish to delete this %s?', 'give' ), give_get_forms_label_singular() ), |
|
266 | - 'one_price_min' => esc_html__( 'You must have at least one price.', 'give' ), |
|
267 | - 'one_file_min' => esc_html__( 'You must have at least one file.', 'give' ), |
|
268 | - 'one_field_min' => esc_html__( 'You must have at least one field.', 'give' ), |
|
265 | + 'delete_payment_download' => sprintf(esc_html__('Are you sure you wish to delete this %s?', 'give'), give_get_forms_label_singular()), |
|
266 | + 'one_price_min' => esc_html__('You must have at least one price.', 'give'), |
|
267 | + 'one_file_min' => esc_html__('You must have at least one file.', 'give'), |
|
268 | + 'one_field_min' => esc_html__('You must have at least one field.', 'give'), |
|
269 | 269 | /* translators: %s: form singular label */ |
270 | - 'one_option' => sprintf( esc_html__( 'Choose a %s', 'give' ), give_get_forms_label_singular() ), |
|
270 | + 'one_option' => sprintf(esc_html__('Choose a %s', 'give'), give_get_forms_label_singular()), |
|
271 | 271 | /* translators: %s: form plural label */ |
272 | - 'one_or_more_option' => sprintf( esc_html__( 'Choose one or more %s', 'give' ), give_get_forms_label_plural() ), |
|
273 | - 'numeric_item_price' => esc_html__( 'Item price must be numeric.', 'give' ), |
|
274 | - 'numeric_quantity' => esc_html__( 'Quantity must be numeric.', 'give' ), |
|
275 | - 'currency_sign' => give_currency_filter( '' ), |
|
276 | - 'currency_pos' => isset( $give_options['currency_position'] ) ? $give_options['currency_position'] : 'before', |
|
272 | + 'one_or_more_option' => sprintf(esc_html__('Choose one or more %s', 'give'), give_get_forms_label_plural()), |
|
273 | + 'numeric_item_price' => esc_html__('Item price must be numeric.', 'give'), |
|
274 | + 'numeric_quantity' => esc_html__('Quantity must be numeric.', 'give'), |
|
275 | + 'currency_sign' => give_currency_filter(''), |
|
276 | + 'currency_pos' => isset($give_options['currency_position']) ? $give_options['currency_position'] : 'before', |
|
277 | 277 | 'currency_decimals' => give_currency_decimal_filter(), |
278 | - 'new_media_ui' => apply_filters( 'give_use_35_media_ui', 1 ), |
|
279 | - 'remove_text' => esc_html__( 'Remove', 'give' ), |
|
278 | + 'new_media_ui' => apply_filters('give_use_35_media_ui', 1), |
|
279 | + 'remove_text' => esc_html__('Remove', 'give'), |
|
280 | 280 | /* translators: %s: form plural label */ |
281 | - 'type_to_search' => sprintf( esc_html__( 'Type to search %s', 'give' ), give_get_forms_label_plural() ), |
|
282 | - 'batch_export_no_class' => esc_html__( 'You must choose a method.', 'give' ), |
|
283 | - 'batch_export_no_reqs' => esc_html__( 'Required fields not completed.', 'give' ), |
|
284 | - 'reset_stats_warn' => __( 'Are you sure you want to reset Give? This process is <strong><em>not reversible</em></strong> and will delete all data regardless of test or live mode. Please be sure you have a recent backup before proceeding.', 'give' ), |
|
285 | - 'price_format_guide' => sprintf( esc_html__( 'Please enter amount in monetary decimal ( %1$s ) format without thousand separator ( %2$s ).', 'give' ), $decimal_separator, $thousand_separator ) |
|
286 | - ) ); |
|
287 | - |
|
288 | - if ( function_exists( 'wp_enqueue_media' ) && version_compare( $wp_version, '3.5', '>=' ) ) { |
|
281 | + 'type_to_search' => sprintf(esc_html__('Type to search %s', 'give'), give_get_forms_label_plural()), |
|
282 | + 'batch_export_no_class' => esc_html__('You must choose a method.', 'give'), |
|
283 | + 'batch_export_no_reqs' => esc_html__('Required fields not completed.', 'give'), |
|
284 | + 'reset_stats_warn' => __('Are you sure you want to reset Give? This process is <strong><em>not reversible</em></strong> and will delete all data regardless of test or live mode. Please be sure you have a recent backup before proceeding.', 'give'), |
|
285 | + 'price_format_guide' => sprintf(esc_html__('Please enter amount in monetary decimal ( %1$s ) format without thousand separator ( %2$s ).', 'give'), $decimal_separator, $thousand_separator) |
|
286 | + )); |
|
287 | + |
|
288 | + if (function_exists('wp_enqueue_media') && version_compare($wp_version, '3.5', '>=')) { |
|
289 | 289 | //call for new media manager |
290 | 290 | wp_enqueue_media(); |
291 | 291 | } |
292 | 292 | |
293 | 293 | } |
294 | 294 | |
295 | -add_action( 'admin_enqueue_scripts', 'give_load_admin_scripts', 100 ); |
|
295 | +add_action('admin_enqueue_scripts', 'give_load_admin_scripts', 100); |
|
296 | 296 | |
297 | 297 | /** |
298 | 298 | * Admin Give Icon |
@@ -309,14 +309,14 @@ discard block |
||
309 | 309 | ?> |
310 | 310 | <style type="text/css" media="screen"> |
311 | 311 | |
312 | - <?php if( version_compare( $wp_version, '3.8-RC', '>=' ) || version_compare( $wp_version, '3.8', '>=' ) ) { ?> |
|
312 | + <?php if (version_compare($wp_version, '3.8-RC', '>=') || version_compare($wp_version, '3.8', '>=')) { ?> |
|
313 | 313 | @font-face { |
314 | 314 | font-family: 'give-icomoon'; |
315 | - src: url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.eot?-ngjl88'; ?>'); |
|
316 | - src: url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.eot?#iefix-ngjl88'?>') format('embedded-opentype'), |
|
317 | - url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.woff?-ngjl88'; ?>') format('woff'), |
|
318 | - url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.ttf?-ngjl88'; ?>') format('truetype'), |
|
319 | - url('<?php echo GIVE_PLUGIN_URL . '/assets/fonts/icomoon.svg?-ngjl88#icomoon'; ?>') format('svg'); |
|
315 | + src: url('<?php echo GIVE_PLUGIN_URL.'/assets/fonts/icomoon.eot?-ngjl88'; ?>'); |
|
316 | + src: url('<?php echo GIVE_PLUGIN_URL.'/assets/fonts/icomoon.eot?#iefix-ngjl88'?>') format('embedded-opentype'), |
|
317 | + url('<?php echo GIVE_PLUGIN_URL.'/assets/fonts/icomoon.woff?-ngjl88'; ?>') format('woff'), |
|
318 | + url('<?php echo GIVE_PLUGIN_URL.'/assets/fonts/icomoon.ttf?-ngjl88'; ?>') format('truetype'), |
|
319 | + url('<?php echo GIVE_PLUGIN_URL.'/assets/fonts/icomoon.svg?-ngjl88#icomoon'; ?>') format('svg'); |
|
320 | 320 | font-weight: normal; |
321 | 321 | font-style: normal; |
322 | 322 | } |
@@ -335,4 +335,4 @@ discard block |
||
335 | 335 | <?php |
336 | 336 | } |
337 | 337 | |
338 | -add_action( 'admin_head', 'give_admin_icon' ); |
|
338 | +add_action('admin_head', 'give_admin_icon'); |