Completed
Pull Request — master (#553)
by Devin
30:13 queued 13:44
created
includes/template-functions.php 1 patch
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
  * @return string
22 22
  */
23 23
 function give_get_templates_dir() {
24
-	return GIVE_PLUGIN_DIR . 'templates';
24
+	return GIVE_PLUGIN_DIR.'templates';
25 25
 }
26 26
 
27 27
 /**
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  * @return string
32 32
  */
33 33
 function give_get_templates_url() {
34
-	return GIVE_PLUGIN_URL . 'templates';
34
+	return GIVE_PLUGIN_URL.'templates';
35 35
 }
36 36
 
37 37
 /**
@@ -51,23 +51,23 @@  discard block
 block discarded – undo
51 51
  * @uses  load_template()
52 52
  * @uses  get_template_part()
53 53
  */
54
-function give_get_template_part( $slug, $name = null, $load = true ) {
54
+function give_get_template_part($slug, $name = null, $load = true) {
55 55
 
56 56
 	// Execute code for this part
57
-	do_action( 'get_template_part_' . $slug, $slug, $name );
57
+	do_action('get_template_part_'.$slug, $slug, $name);
58 58
 
59 59
 	// Setup possible parts
60 60
 	$templates = array();
61
-	if ( isset( $name ) ) {
62
-		$templates[] = $slug . '-' . $name . '.php';
61
+	if (isset($name)) {
62
+		$templates[] = $slug.'-'.$name.'.php';
63 63
 	}
64
-	$templates[] = $slug . '.php';
64
+	$templates[] = $slug.'.php';
65 65
 
66 66
 	// Allow template parts to be filtered
67
-	$templates = apply_filters( 'give_get_template_part', $templates, $slug, $name );
67
+	$templates = apply_filters('give_get_template_part', $templates, $slug, $name);
68 68
 
69 69
 	// Return the part that is found
70
-	return give_locate_template( $templates, $load, false );
70
+	return give_locate_template($templates, $load, false);
71 71
 }
72 72
 
73 73
 /**
@@ -88,37 +88,37 @@  discard block
 block discarded – undo
88 88
  *
89 89
  * @return string The template filename if one is located.
90 90
  */
91
-function give_locate_template( $template_names, $load = false, $require_once = true ) {
91
+function give_locate_template($template_names, $load = false, $require_once = true) {
92 92
 	// No file found yet
93 93
 	$located = false;
94 94
 
95 95
 	// Try to find a template file
96
-	foreach ( (array) $template_names as $template_name ) {
96
+	foreach ((array) $template_names as $template_name) {
97 97
 
98 98
 		// Continue if template is empty
99
-		if ( empty( $template_name ) ) {
99
+		if (empty($template_name)) {
100 100
 			continue;
101 101
 		}
102 102
 
103 103
 		// Trim off any slashes from the template name
104
-		$template_name = ltrim( $template_name, '/' );
104
+		$template_name = ltrim($template_name, '/');
105 105
 
106 106
 		// try locating this template file by looping through the template paths
107
-		foreach ( give_get_theme_template_paths() as $template_path ) {
107
+		foreach (give_get_theme_template_paths() as $template_path) {
108 108
 
109
-			if ( file_exists( $template_path . $template_name ) ) {
110
-				$located = $template_path . $template_name;
109
+			if (file_exists($template_path.$template_name)) {
110
+				$located = $template_path.$template_name;
111 111
 				break;
112 112
 			}
113 113
 		}
114 114
 
115
-		if ( $located ) {
115
+		if ($located) {
116 116
 			break;
117 117
 		}
118 118
 	}
119 119
 
120
-	if ( ( true == $load ) && ! empty( $located ) ) {
121
-		load_template( $located, $require_once );
120
+	if ((true == $load) && ! empty($located)) {
121
+		load_template($located, $require_once);
122 122
 	}
123 123
 
124 124
 	return $located;
@@ -135,17 +135,17 @@  discard block
 block discarded – undo
135 135
 	$template_dir = give_get_theme_template_dir_name();
136 136
 
137 137
 	$file_paths = array(
138
-		1   => trailingslashit( get_stylesheet_directory() ) . $template_dir,
139
-		10  => trailingslashit( get_template_directory() ) . $template_dir,
138
+		1   => trailingslashit(get_stylesheet_directory()).$template_dir,
139
+		10  => trailingslashit(get_template_directory()).$template_dir,
140 140
 		100 => give_get_templates_dir()
141 141
 	);
142 142
 
143
-	$file_paths = apply_filters( 'give_template_paths', $file_paths );
143
+	$file_paths = apply_filters('give_template_paths', $file_paths);
144 144
 
145 145
 	// sort the file paths based on priority
146
-	ksort( $file_paths, SORT_NUMERIC );
146
+	ksort($file_paths, SORT_NUMERIC);
147 147
 
148
-	return array_map( 'trailingslashit', $file_paths );
148
+	return array_map('trailingslashit', $file_paths);
149 149
 }
150 150
 
151 151
 /**
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
  * @return string
158 158
  */
159 159
 function give_get_theme_template_dir_name() {
160
-	return trailingslashit( apply_filters( 'give_templates_dir', 'give' ) );
160
+	return trailingslashit(apply_filters('give_templates_dir', 'give'));
161 161
 }
162 162
 
163 163
 /**
@@ -167,10 +167,10 @@  discard block
 block discarded – undo
167 167
  * @return void
168 168
  */
169 169
 function give_version_in_header() {
170
-	echo '<meta name="generator" content="Give v' . GIVE_VERSION . '" />' . "\n";
170
+	echo '<meta name="generator" content="Give v'.GIVE_VERSION.'" />'."\n";
171 171
 }
172 172
 
173
-add_action( 'wp_head', 'give_version_in_header' );
173
+add_action('wp_head', 'give_version_in_header');
174 174
 
175 175
 /**
176 176
  * Determines if we're currently on the Donations History page.
@@ -180,9 +180,9 @@  discard block
 block discarded – undo
180 180
  */
181 181
 function give_is_donation_history_page() {
182 182
 
183
-	$ret = is_page( give_get_option( 'history_page' ) );
183
+	$ret = is_page(give_get_option('history_page'));
184 184
 
185
-	return apply_filters( 'give_is_donation_history_page', $ret );
185
+	return apply_filters('give_is_donation_history_page', $ret);
186 186
 }
187 187
 
188 188
 /**
@@ -194,25 +194,25 @@  discard block
 block discarded – undo
194 194
  *
195 195
  * @return array Modified array of classes
196 196
  */
197
-function give_add_body_classes( $class ) {
197
+function give_add_body_classes($class) {
198 198
 	$classes = (array) $class;
199 199
 
200
-	if ( give_is_success_page() ) {
200
+	if (give_is_success_page()) {
201 201
 		$classes[] = 'give-success';
202 202
 		$classes[] = 'give-page';
203 203
 	}
204 204
 
205
-	if ( give_is_failed_transaction_page() ) {
205
+	if (give_is_failed_transaction_page()) {
206 206
 		$classes[] = 'give-failed-transaction';
207 207
 		$classes[] = 'give-page';
208 208
 	}
209 209
 
210
-	if ( give_is_donation_history_page() ) {
210
+	if (give_is_donation_history_page()) {
211 211
 		$classes[] = 'give-donation-history';
212 212
 		$classes[] = 'give-page';
213 213
 	}
214 214
 
215
-	if ( give_is_test_mode() ) {
215
+	if (give_is_test_mode()) {
216 216
 		$classes[] = 'give-test-mode';
217 217
 		$classes[] = 'give-page';
218 218
 	}
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	//Theme-specific Classes used to prevent conflicts via CSS
221 221
 	$current_theme = wp_get_theme();
222 222
 
223
-	switch ( $current_theme->template ) {
223
+	switch ($current_theme->template) {
224 224
 
225 225
 		case 'Divi':
226 226
 			$classes[] = 'give-divi';
@@ -234,10 +234,10 @@  discard block
 block discarded – undo
234 234
 
235 235
 	}
236 236
 
237
-	return array_unique( $classes );
237
+	return array_unique($classes);
238 238
 }
239 239
 
240
-add_filter( 'body_class', 'give_add_body_classes' );
240
+add_filter('body_class', 'give_add_body_classes');
241 241
 
242 242
 
243 243
 /**
@@ -253,22 +253,22 @@  discard block
 block discarded – undo
253 253
  *
254 254
  * @return array
255 255
  */
256
-function give_add_post_class( $classes, $class = '', $post_id = '' ) {
257
-	if ( ! $post_id || 'give_forms' !== get_post_type( $post_id ) ) {
256
+function give_add_post_class($classes, $class = '', $post_id = '') {
257
+	if ( ! $post_id || 'give_forms' !== get_post_type($post_id)) {
258 258
 		return $classes;
259 259
 	}
260 260
 
261 261
 	//@TODO: Add classes for custom taxonomy and form configurations (multi vs single donations, etc).
262 262
 
263
-	if ( false !== ( $key = array_search( 'hentry', $classes ) ) ) {
264
-		unset( $classes[ $key ] );
263
+	if (false !== ($key = array_search('hentry', $classes))) {
264
+		unset($classes[$key]);
265 265
 	}
266 266
 
267 267
 	return $classes;
268 268
 }
269 269
 
270 270
 
271
-add_filter( 'post_class', 'give_add_post_class', 20, 3 );
271
+add_filter('post_class', 'give_add_post_class', 20, 3);
272 272
 
273 273
 /**
274 274
  * Get the placeholder image URL for forms etc
@@ -278,84 +278,84 @@  discard block
 block discarded – undo
278 278
  */
279 279
 function give_get_placeholder_img_src() {
280 280
 
281
-	$placeholder_url = 'http://placehold.it/600x600&text=' . urlencode( esc_attr__( 'Give Placeholder Image', 'give' ) );
281
+	$placeholder_url = 'http://placehold.it/600x600&text='.urlencode(esc_attr__('Give Placeholder Image', 'give'));
282 282
 
283
-	return apply_filters( 'give_placeholder_img_src', $placeholder_url );
283
+	return apply_filters('give_placeholder_img_src', $placeholder_url);
284 284
 }
285 285
 
286 286
 
287 287
 /**
288 288
  * Global
289 289
  */
290
-if ( ! function_exists( 'give_output_content_wrapper' ) ) {
290
+if ( ! function_exists('give_output_content_wrapper')) {
291 291
 
292 292
 	/**
293 293
 	 * Output the start of the page wrapper.
294 294
 	 */
295 295
 	function give_output_content_wrapper() {
296
-		give_get_template_part( 'global/wrapper-start' );
296
+		give_get_template_part('global/wrapper-start');
297 297
 	}
298 298
 }
299
-if ( ! function_exists( 'give_output_content_wrapper_end' ) ) {
299
+if ( ! function_exists('give_output_content_wrapper_end')) {
300 300
 
301 301
 	/**
302 302
 	 * Output the end of the page wrapper.
303 303
 	 */
304 304
 	function give_output_content_wrapper_end() {
305
-		give_get_template_part( 'global/wrapper-end' );
305
+		give_get_template_part('global/wrapper-end');
306 306
 	}
307 307
 }
308 308
 
309 309
 /**
310 310
  * Single Give Form
311 311
  */
312
-if ( ! function_exists( 'give_left_sidebar_pre_wrap' ) ) {
312
+if ( ! function_exists('give_left_sidebar_pre_wrap')) {
313 313
 	function give_left_sidebar_pre_wrap() {
314
-		echo apply_filters( 'give_left_sidebar_pre_wrap', '<div id="give-sidebar-left" class="give-sidebar give-single-form-sidebar-left">' );
314
+		echo apply_filters('give_left_sidebar_pre_wrap', '<div id="give-sidebar-left" class="give-sidebar give-single-form-sidebar-left">');
315 315
 	}
316 316
 }
317 317
 
318
-if ( ! function_exists( 'give_left_sidebar_post_wrap' ) ) {
318
+if ( ! function_exists('give_left_sidebar_post_wrap')) {
319 319
 	function give_left_sidebar_post_wrap() {
320
-		echo apply_filters( 'give_left_sidebar_post_wrap', '</div>' );
320
+		echo apply_filters('give_left_sidebar_post_wrap', '</div>');
321 321
 	}
322 322
 }
323 323
 
324
-if ( ! function_exists( 'give_get_forms_sidebar' ) ) {
324
+if ( ! function_exists('give_get_forms_sidebar')) {
325 325
 	function give_get_forms_sidebar() {
326
-		give_get_template_part( 'single-give-form/sidebar' );
326
+		give_get_template_part('single-give-form/sidebar');
327 327
 	}
328 328
 }
329 329
 
330
-if ( ! function_exists( 'give_show_form_images' ) ) {
330
+if ( ! function_exists('give_show_form_images')) {
331 331
 
332 332
 	/**
333 333
 	 * Output the product image before the single product summary.
334 334
 	 */
335 335
 	function give_show_form_images() {
336
-		$featured_image_option = give_get_option( 'disable_form_featured_img' );
337
-		if ( $featured_image_option !== 'on' ) {
338
-			give_get_template_part( 'single-give-form/featured-image' );
336
+		$featured_image_option = give_get_option('disable_form_featured_img');
337
+		if ($featured_image_option !== 'on') {
338
+			give_get_template_part('single-give-form/featured-image');
339 339
 		}
340 340
 	}
341 341
 }
342 342
 
343
-if ( ! function_exists( 'give_template_single_title' ) ) {
343
+if ( ! function_exists('give_template_single_title')) {
344 344
 
345 345
 	/**
346 346
 	 * Output the product title.
347 347
 	 */
348 348
 	function give_template_single_title() {
349
-		give_get_template_part( 'single-give-form/title' );
349
+		give_get_template_part('single-give-form/title');
350 350
 	}
351 351
 }
352 352
 
353
-if ( ! function_exists( 'give_show_avatars' ) ) {
353
+if ( ! function_exists('give_show_avatars')) {
354 354
 
355 355
 	/**
356 356
 	 * Output the product title.
357 357
 	 */
358 358
 	function give_show_avatars() {
359
-		echo do_shortcode( '[give_donators_gravatars]' );
359
+		echo do_shortcode('[give_donators_gravatars]');
360 360
 	}
361 361
 }
362 362
\ No newline at end of file
Please login to merge, or discard this patch.
includes/user-functions.php 1 patch
Spacing   +95 added lines, -95 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 
@@ -30,36 +30,36 @@  discard block
 block discarded – undo
30 30
  *
31 31
  * @return bool|object List of all user purchases
32 32
  */
33
-function give_get_users_purchases( $user = 0, $number = 20, $pagination = false, $status = 'complete' ) {
33
+function give_get_users_purchases($user = 0, $number = 20, $pagination = false, $status = 'complete') {
34 34
 
35
-	if ( empty( $user ) ) {
35
+	if (empty($user)) {
36 36
 		$user = get_current_user_id();
37 37
 	}
38 38
 
39
-	if ( 0 === $user && !Give()->email_access->token_exists ) {
39
+	if (0 === $user && ! Give()->email_access->token_exists) {
40 40
 		return false;
41 41
 	}
42 42
 
43 43
 	$status = $status === 'complete' ? 'publish' : $status;
44 44
 
45
-	if ( $pagination ) {
46
-		if ( get_query_var( 'paged' ) ) {
47
-			$paged = get_query_var( 'paged' );
48
-		} else if ( get_query_var( 'page' ) ) {
49
-			$paged = get_query_var( 'page' );
45
+	if ($pagination) {
46
+		if (get_query_var('paged')) {
47
+			$paged = get_query_var('paged');
48
+		} else if (get_query_var('page')) {
49
+			$paged = get_query_var('page');
50 50
 		} else {
51 51
 			$paged = 1;
52 52
 		}
53 53
 	}
54 54
 
55
-	$args = apply_filters( 'give_get_users_purchases_args', array(
55
+	$args = apply_filters('give_get_users_purchases_args', array(
56 56
 		'user'    => $user,
57 57
 		'number'  => $number,
58 58
 		'status'  => $status,
59 59
 		'orderby' => 'date'
60
-	) );
60
+	));
61 61
 
62
-	if ( $pagination ) {
62
+	if ($pagination) {
63 63
 
64 64
 		$args['page'] = $paged;
65 65
 
@@ -69,20 +69,20 @@  discard block
 block discarded – undo
69 69
 
70 70
 	}
71 71
 
72
-	$by_user_id = is_numeric( $user ) ? true : false;
73
-	$customer   = new Give_Customer( $user, $by_user_id );
72
+	$by_user_id = is_numeric($user) ? true : false;
73
+	$customer   = new Give_Customer($user, $by_user_id);
74 74
 
75
-	if ( ! empty( $customer->payment_ids ) ) {
75
+	if ( ! empty($customer->payment_ids)) {
76 76
 
77
-		unset( $args['user'] );
78
-		$args['post__in'] = array_map( 'absint', explode( ',', $customer->payment_ids ) );
77
+		unset($args['user']);
78
+		$args['post__in'] = array_map('absint', explode(',', $customer->payment_ids));
79 79
 
80 80
 	}
81 81
 
82
-	$purchases = give_get_payments( apply_filters( 'give_get_users_purchases_args', $args ) );
82
+	$purchases = give_get_payments(apply_filters('give_get_users_purchases_args', $args));
83 83
 
84 84
 	// No purchases
85
-	if ( ! $purchases ) {
85
+	if ( ! $purchases) {
86 86
 		return false;
87 87
 	}
88 88
 
@@ -101,64 +101,64 @@  discard block
 block discarded – undo
101 101
  *
102 102
  * @return bool|object List of unique forms purchased by user
103 103
  */
104
-function give_get_users_completed_donations( $user = 0, $status = 'complete' ) {
105
-	if ( empty( $user ) ) {
104
+function give_get_users_completed_donations($user = 0, $status = 'complete') {
105
+	if (empty($user)) {
106 106
 		$user = get_current_user_id();
107 107
 	}
108 108
 
109
-	if ( empty( $user ) ) {
109
+	if (empty($user)) {
110 110
 		return false;
111 111
 	}
112 112
 
113
-	$by_user_id = is_numeric( $user ) ? true : false;
113
+	$by_user_id = is_numeric($user) ? true : false;
114 114
 
115
-	$customer = new Give_Customer( $user, $by_user_id );
115
+	$customer = new Give_Customer($user, $by_user_id);
116 116
 
117
-	if ( empty( $customer->payment_ids ) ) {
117
+	if (empty($customer->payment_ids)) {
118 118
 		return false;
119 119
 	}
120 120
 
121 121
 	// Get all the items purchased
122
-	$payment_ids    = array_reverse( explode( ',', $customer->payment_ids ) );
123
-	$limit_payments = apply_filters( 'give_users_completed_donations_payments', 50 );
124
-	if ( ! empty( $limit_payments ) ) {
125
-		$payment_ids = array_slice( $payment_ids, 0, $limit_payments );
122
+	$payment_ids    = array_reverse(explode(',', $customer->payment_ids));
123
+	$limit_payments = apply_filters('give_users_completed_donations_payments', 50);
124
+	if ( ! empty($limit_payments)) {
125
+		$payment_ids = array_slice($payment_ids, 0, $limit_payments);
126 126
 	}
127 127
 	$donation_data = array();
128
-	foreach ( $payment_ids as $payment_id ) {
129
-		$donation_data[] = give_get_payment_meta( $payment_id );
128
+	foreach ($payment_ids as $payment_id) {
129
+		$donation_data[] = give_get_payment_meta($payment_id);
130 130
 	}
131 131
 
132
-	if ( empty( $donation_data ) ) {
132
+	if (empty($donation_data)) {
133 133
 		return false;
134 134
 	}
135 135
 
136 136
 	// Grab only the post ids "form_id" of the forms purchased on this order
137 137
 	$completed_donations_ids = array();
138
-	foreach ( $donation_data as $purchase_meta ) {
138
+	foreach ($donation_data as $purchase_meta) {
139 139
 		$completed_donations_ids[] = $purchase_meta['form_id'];
140 140
 	}
141
-	if ( empty( $completed_donations_ids ) ) {
141
+	if (empty($completed_donations_ids)) {
142 142
 		return false;
143 143
 	}
144 144
 
145 145
 	// Only include each product purchased once
146
-	$form_ids = array_unique( $completed_donations_ids );
146
+	$form_ids = array_unique($completed_donations_ids);
147 147
 
148 148
 	// Make sure we still have some products and a first item
149
-	if ( empty ( $form_ids ) || ! isset( $form_ids[0] ) ) {
149
+	if (empty ($form_ids) || ! isset($form_ids[0])) {
150 150
 		return false;
151 151
 	}
152 152
 
153
-	$post_type = get_post_type( $form_ids[0] );
153
+	$post_type = get_post_type($form_ids[0]);
154 154
 
155
-	$args = apply_filters( 'give_get_users_completed_donations_args', array(
155
+	$args = apply_filters('give_get_users_completed_donations_args', array(
156 156
 		'include'        => $form_ids,
157 157
 		'post_type'      => $post_type,
158
-		'posts_per_page' => - 1
159
-	) );
158
+		'posts_per_page' => -1
159
+	));
160 160
 
161
-	return apply_filters( 'give_users_completed_donations_list', get_posts( $args ) );
161
+	return apply_filters('give_users_completed_donations_list', get_posts($args));
162 162
 }
163 163
 
164 164
 
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
  *
175 175
  * @return      bool - true if has purchased, false other wise.
176 176
  */
177
-function give_has_purchases( $user_id = null ) {
178
-	if ( empty( $user_id ) ) {
177
+function give_has_purchases($user_id = null) {
178
+	if (empty($user_id)) {
179 179
 		$user_id = get_current_user_id();
180 180
 	}
181 181
 
182
-	if ( give_get_users_purchases( $user_id, 1 ) ) {
182
+	if (give_get_users_purchases($user_id, 1)) {
183 183
 		return true; // User has at least one purchase
184 184
 	}
185 185
 
@@ -199,32 +199,32 @@  discard block
 block discarded – undo
199 199
  *
200 200
  * @return      array
201 201
  */
202
-function give_get_purchase_stats_by_user( $user = '' ) {
202
+function give_get_purchase_stats_by_user($user = '') {
203 203
 
204
-	if ( is_email( $user ) ) {
204
+	if (is_email($user)) {
205 205
 
206 206
 		$field = 'email';
207 207
 
208
-	} elseif ( is_numeric( $user ) ) {
208
+	} elseif (is_numeric($user)) {
209 209
 
210 210
 		$field = 'user_id';
211 211
 
212 212
 	}
213 213
 
214 214
 	$stats    = array();
215
-	$customer = Give()->customers->get_customer_by( $field, $user );
215
+	$customer = Give()->customers->get_customer_by($field, $user);
216 216
 
217
-	if ( $customer ) {
217
+	if ($customer) {
218 218
 
219
-		$customer = new Give_Customer( $customer->id );
219
+		$customer = new Give_Customer($customer->id);
220 220
 
221
-		$stats['purchases']   = absint( $customer->purchase_count );
222
-		$stats['total_spent'] = give_sanitize_amount( $customer->purchase_value );
221
+		$stats['purchases']   = absint($customer->purchase_count);
222
+		$stats['total_spent'] = give_sanitize_amount($customer->purchase_value);
223 223
 
224 224
 	}
225 225
 
226 226
 
227
-	return (array) apply_filters( 'give_purchase_stats_by_user', $stats, $user );
227
+	return (array) apply_filters('give_purchase_stats_by_user', $stats, $user);
228 228
 }
229 229
 
230 230
 
@@ -240,14 +240,14 @@  discard block
 block discarded – undo
240 240
  *
241 241
  * @return      int - the total number of purchases
242 242
  */
243
-function give_count_purchases_of_customer( $user = null ) {
244
-	if ( empty( $user ) ) {
243
+function give_count_purchases_of_customer($user = null) {
244
+	if (empty($user)) {
245 245
 		$user = get_current_user_id();
246 246
 	}
247 247
 
248
-	$stats = ! empty( $user ) ? give_get_purchase_stats_by_user( $user ) : false;
248
+	$stats = ! empty($user) ? give_get_purchase_stats_by_user($user) : false;
249 249
 
250
-	return isset( $stats['purchases'] ) ? $stats['purchases'] : 0;
250
+	return isset($stats['purchases']) ? $stats['purchases'] : 0;
251 251
 }
252 252
 
253 253
 /**
@@ -260,9 +260,9 @@  discard block
 block discarded – undo
260 260
  *
261 261
  * @return      float - the total amount the user has spent
262 262
  */
263
-function give_purchase_total_of_user( $user = null ) {
263
+function give_purchase_total_of_user($user = null) {
264 264
 
265
-	$stats = give_get_purchase_stats_by_user( $user );
265
+	$stats = give_get_purchase_stats_by_user($user);
266 266
 
267 267
 	return $stats['total_spent'];
268 268
 }
@@ -278,11 +278,11 @@  discard block
 block discarded – undo
278 278
  *
279 279
  * @return      bool
280 280
  */
281
-function give_validate_username( $username ) {
282
-	$sanitized = sanitize_user( $username, false );
283
-	$valid     = ( $sanitized == $username );
281
+function give_validate_username($username) {
282
+	$sanitized = sanitize_user($username, false);
283
+	$valid     = ($sanitized == $username);
284 284
 
285
-	return (bool) apply_filters( 'give_validate_username', $valid, $username );
285
+	return (bool) apply_filters('give_validate_username', $valid, $username);
286 286
 }
287 287
 
288 288
 
@@ -299,32 +299,32 @@  discard block
 block discarded – undo
299 299
  *
300 300
  * @return      void
301 301
  */
302
-function give_add_past_purchases_to_new_user( $user_id ) {
302
+function give_add_past_purchases_to_new_user($user_id) {
303 303
 
304
-	$email = get_the_author_meta( 'user_email', $user_id );
304
+	$email = get_the_author_meta('user_email', $user_id);
305 305
 
306
-	$payments = give_get_payments( array( 's' => $email ) );
306
+	$payments = give_get_payments(array('s' => $email));
307 307
 
308
-	if ( $payments ) {
309
-		foreach ( $payments as $payment ) {
310
-			if ( intval( give_get_payment_user_id( $payment->ID ) ) > 0 ) {
308
+	if ($payments) {
309
+		foreach ($payments as $payment) {
310
+			if (intval(give_get_payment_user_id($payment->ID)) > 0) {
311 311
 				continue;
312 312
 			} // This payment already associated with an account
313 313
 
314
-			$meta                    = give_get_payment_meta( $payment->ID );
315
-			$meta['user_info']       = maybe_unserialize( $meta['user_info'] );
314
+			$meta                    = give_get_payment_meta($payment->ID);
315
+			$meta['user_info']       = maybe_unserialize($meta['user_info']);
316 316
 			$meta['user_info']['id'] = $user_id;
317 317
 			$meta['user_info']       = $meta['user_info'];
318 318
 
319 319
 			// Store the updated user ID in the payment meta
320
-			give_update_payment_meta( $payment->ID, '_give_payment_meta', $meta );
321
-			give_update_payment_meta( $payment->ID, '_give_payment_user_id', $user_id );
320
+			give_update_payment_meta($payment->ID, '_give_payment_meta', $meta);
321
+			give_update_payment_meta($payment->ID, '_give_payment_user_id', $user_id);
322 322
 		}
323 323
 	}
324 324
 
325 325
 }
326 326
 
327
-add_action( 'user_register', 'give_add_past_purchases_to_new_user' );
327
+add_action('user_register', 'give_add_past_purchases_to_new_user');
328 328
 
329 329
 
330 330
 /**
@@ -346,34 +346,34 @@  discard block
 block discarded – undo
346 346
  * @since         1.0
347 347
  * @return        array - The donor's address, if any
348 348
  */
349
-function give_get_donor_address( $user_id = 0 ) {
350
-	if ( empty( $user_id ) ) {
349
+function give_get_donor_address($user_id = 0) {
350
+	if (empty($user_id)) {
351 351
 		$user_id = get_current_user_id();
352 352
 	}
353 353
 
354
-	$address = get_user_meta( $user_id, '_give_user_address', true );
354
+	$address = get_user_meta($user_id, '_give_user_address', true);
355 355
 
356
-	if ( ! isset( $address['line1'] ) ) {
356
+	if ( ! isset($address['line1'])) {
357 357
 		$address['line1'] = '';
358 358
 	}
359 359
 
360
-	if ( ! isset( $address['line2'] ) ) {
360
+	if ( ! isset($address['line2'])) {
361 361
 		$address['line2'] = '';
362 362
 	}
363 363
 
364
-	if ( ! isset( $address['city'] ) ) {
364
+	if ( ! isset($address['city'])) {
365 365
 		$address['city'] = '';
366 366
 	}
367 367
 
368
-	if ( ! isset( $address['zip'] ) ) {
368
+	if ( ! isset($address['zip'])) {
369 369
 		$address['zip'] = '';
370 370
 	}
371 371
 
372
-	if ( ! isset( $address['country'] ) ) {
372
+	if ( ! isset($address['country'])) {
373 373
 		$address['country'] = '';
374 374
 	}
375 375
 
376
-	if ( ! isset( $address['state'] ) ) {
376
+	if ( ! isset($address['state'])) {
377 377
 		$address['state'] = '';
378 378
 	}
379 379
 
@@ -393,25 +393,25 @@  discard block
 block discarded – undo
393 393
  *
394 394
  * @return        void
395 395
  */
396
-function give_new_user_notification( $user_id = 0, $user_data = array() ) {
396
+function give_new_user_notification($user_id = 0, $user_data = array()) {
397 397
 
398
-	if ( empty( $user_id ) || empty( $user_data ) ) {
398
+	if (empty($user_id) || empty($user_data)) {
399 399
 		return;
400 400
 	}
401
-	$blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
402
-	$message  = sprintf( esc_attr__( 'New user registration on your site %s:' ), $blogname ) . "\r\n\r\n";
403
-	$message .= sprintf( esc_attr__( 'Username: %s' ), $user_data['user_login'] ) . "\r\n\r\n";
404
-	$message .= sprintf( esc_attr__( 'E-mail: %s' ), $user_data['user_email'] ) . "\r\n";
401
+	$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
402
+	$message  = sprintf(esc_attr__('New user registration on your site %s:'), $blogname)."\r\n\r\n";
403
+	$message .= sprintf(esc_attr__('Username: %s'), $user_data['user_login'])."\r\n\r\n";
404
+	$message .= sprintf(esc_attr__('E-mail: %s'), $user_data['user_email'])."\r\n";
405 405
 
406
-	@wp_mail( get_option( 'admin_email' ), sprintf( esc_attr__( '[%s] New User Registration' ), $blogname ), $message );
406
+	@wp_mail(get_option('admin_email'), sprintf(esc_attr__('[%s] New User Registration'), $blogname), $message);
407 407
 
408
-	$message = sprintf( esc_attr__( 'Username: %s' ), $user_data['user_login'] ) . "\r\n";
409
-	$message .= sprintf( esc_attr__( 'Password: %s' ), esc_attr__( '[Password entered during donation]', 'give' ) ) . "\r\n";
408
+	$message = sprintf(esc_attr__('Username: %s'), $user_data['user_login'])."\r\n";
409
+	$message .= sprintf(esc_attr__('Password: %s'), esc_attr__('[Password entered during donation]', 'give'))."\r\n";
410 410
 
411
-	$message .= '<a href="' . wp_login_url() . '"> ' . esc_attr__( 'Click Here to Login', 'give' ) . ' &raquo;</a>' . "\r\n";
411
+	$message .= '<a href="'.wp_login_url().'"> '.esc_attr__('Click Here to Login', 'give').' &raquo;</a>'."\r\n";
412 412
 
413
-	wp_mail( $user_data['user_email'], sprintf( esc_attr__( '[%s] Your username and password' ), $blogname ), $message );
413
+	wp_mail($user_data['user_email'], sprintf(esc_attr__('[%s] Your username and password'), $blogname), $message);
414 414
 
415 415
 }
416 416
 
417
-add_action( 'give_insert_user', 'give_new_user_notification', 10, 2 );
417
+add_action('give_insert_user', 'give_new_user_notification', 10, 2);
Please login to merge, or discard this patch.
includes/shortcodes.php 1 patch
Spacing   +108 added lines, -108 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 
@@ -25,28 +25,28 @@  discard block
 block discarded – undo
25 25
  */
26 26
 function give_donation_history() {
27 27
 
28
-	$email_access = give_get_option( 'email_access' );
28
+	$email_access = give_get_option('email_access');
29 29
 
30 30
 	//Is user logged in? Does an email-access token exist?
31
-	if ( is_user_logged_in() || ( $email_access == 'on' && Give()->email_access->token_exists ) ) {
31
+	if (is_user_logged_in() || ($email_access == 'on' && Give()->email_access->token_exists)) {
32 32
 		ob_start();
33
-		give_get_template_part( 'history', 'donations' );
33
+		give_get_template_part('history', 'donations');
34 34
 
35 35
 		return ob_get_clean();
36 36
 	} //Is Email-based access enabled?
37
-	elseif ( $email_access == 'on' ) {
37
+	elseif ($email_access == 'on') {
38 38
 
39 39
 		ob_start();
40
-		give_get_template_part( 'email', 'login-form' );
40
+		give_get_template_part('email', 'login-form');
41 41
 
42 42
 		return ob_get_clean();
43 43
 	} else {
44
-		$message = __( 'You must be logged in to view your donation history. Please login using your account or create an account using the same email you used to donate with.', 'give' );
45
-		echo apply_filters( 'give_donation_history_nonuser_message', give_output_error( $message, false ), $message );
44
+		$message = __('You must be logged in to view your donation history. Please login using your account or create an account using the same email you used to donate with.', 'give');
45
+		echo apply_filters('give_donation_history_nonuser_message', give_output_error($message, false), $message);
46 46
 	}
47 47
 }
48 48
 
49
-add_shortcode( 'donation_history', 'give_donation_history' );
49
+add_shortcode('donation_history', 'give_donation_history');
50 50
 
51 51
 /**
52 52
  * Donation Form Shortcode
@@ -60,53 +60,53 @@  discard block
 block discarded – undo
60 60
  *
61 61
  * @return string
62 62
  */
63
-function give_form_shortcode( $atts, $content = null ) {
64
-	$atts = shortcode_atts( array(
63
+function give_form_shortcode($atts, $content = null) {
64
+	$atts = shortcode_atts(array(
65 65
 		'id'            => '',
66 66
 		'show_title'    => true,
67 67
 		'show_goal'     => true,
68 68
 		'show_content'  => '',
69 69
 		'float_labels'  => '',
70 70
 		'display_style' => '',
71
-	), $atts, 'give_form' );
71
+	), $atts, 'give_form');
72 72
 
73
-	foreach ( $atts as $key => $value ) {
73
+	foreach ($atts as $key => $value) {
74 74
 		//convert shortcode_atts values to booleans
75
-		if ( $key == 'show_title' ) {
76
-			$atts[ $key ] = filter_var( $atts[ $key ], FILTER_VALIDATE_BOOLEAN );
77
-		} elseif ( $key == 'show_goal' ) {
78
-			$atts[ $key ] = filter_var( $atts[ $key ], FILTER_VALIDATE_BOOLEAN );
75
+		if ($key == 'show_title') {
76
+			$atts[$key] = filter_var($atts[$key], FILTER_VALIDATE_BOOLEAN);
77
+		} elseif ($key == 'show_goal') {
78
+			$atts[$key] = filter_var($atts[$key], FILTER_VALIDATE_BOOLEAN);
79 79
 		}
80 80
 
81 81
 		//validate show_content value
82
-		if ( $key == 'show_content' ) {
83
-			if ( ! in_array( $value, array( 'none', 'above', 'below' ) ) ) {
84
-				$atts[ $key ] = '';
85
-			} else if ( $value == 'above' ) {
86
-				$atts[ $key ] = 'give_pre_form';
87
-			} else if ( $value == 'below' ) {
88
-				$atts[ $key ] = 'give_post_form';
82
+		if ($key == 'show_content') {
83
+			if ( ! in_array($value, array('none', 'above', 'below'))) {
84
+				$atts[$key] = '';
85
+			} else if ($value == 'above') {
86
+				$atts[$key] = 'give_pre_form';
87
+			} else if ($value == 'below') {
88
+				$atts[$key] = 'give_post_form';
89 89
 			}
90 90
 		}
91 91
 
92 92
 		//validate display_style and float_labels value
93
-		if ( ( $key == 'display_style' && ! in_array( $value, array( 'onpage', 'reveal', 'modal' ) ) )
94
-		     || ( $key == 'float_labels' && ! in_array( $value, array( 'enabled', 'disabled' ) ) )
93
+		if (($key == 'display_style' && ! in_array($value, array('onpage', 'reveal', 'modal')))
94
+		     || ($key == 'float_labels' && ! in_array($value, array('enabled', 'disabled')))
95 95
 		) {
96 96
 
97
-			$atts[ $key ] = '';
97
+			$atts[$key] = '';
98 98
 		}
99 99
 	}
100 100
 
101 101
 	//get the Give Form
102 102
 	ob_start();
103
-	give_get_donation_form( $atts );
103
+	give_get_donation_form($atts);
104 104
 	$final_output = ob_get_clean();
105 105
 
106
-	return apply_filters( 'give_donate_form', $final_output, $atts );
106
+	return apply_filters('give_donate_form', $final_output, $atts);
107 107
 }
108 108
 
109
-add_shortcode( 'give_form', 'give_form_shortcode' );
109
+add_shortcode('give_form', 'give_form_shortcode');
110 110
 
111 111
 /**
112 112
  * Donation Form Goal Shortcode
@@ -120,37 +120,37 @@  discard block
 block discarded – undo
120 120
  *
121 121
  * @return string
122 122
  */
123
-function give_goal_shortcode( $atts, $content = null ) {
124
-	$atts = shortcode_atts( array(
123
+function give_goal_shortcode($atts, $content = null) {
124
+	$atts = shortcode_atts(array(
125 125
 		'id'        => '',
126 126
 		'show_text' => true,
127 127
 		'show_bar'  => true,
128
-	), $atts, 'give_goal' );
128
+	), $atts, 'give_goal');
129 129
 
130 130
 
131 131
 	//get the Give Form
132 132
 	ob_start();
133 133
 
134 134
 	//Sanity check 1: ensure there is an ID Provided
135
-	if ( empty( $atts['id'] ) ) {
136
-		give_output_error( __( 'Error: No Donation form ID for the shortcode provided.', 'give' ), true );
135
+	if (empty($atts['id'])) {
136
+		give_output_error(__('Error: No Donation form ID for the shortcode provided.', 'give'), true);
137 137
 	}
138 138
 
139 139
 	//Sanity check 2: Check that this form even has Goals enabled
140
-	$goal_option = get_post_meta( $atts['id'], '_give_goal_option', true );
141
-	if ( empty( $goal_option ) || $goal_option !== 'yes' ) {
142
-		give_output_error( __( 'Error: This form does not have Goals enabled.', 'give' ), true );
140
+	$goal_option = get_post_meta($atts['id'], '_give_goal_option', true);
141
+	if (empty($goal_option) || $goal_option !== 'yes') {
142
+		give_output_error(__('Error: This form does not have Goals enabled.', 'give'), true);
143 143
 	} else {
144 144
 		//Passed all sanity checks: output Goal
145
-		give_show_goal_progress( $atts['id'], $atts );
145
+		give_show_goal_progress($atts['id'], $atts);
146 146
 	}
147 147
 
148 148
 	$final_output = ob_get_clean();
149 149
 
150
-	return apply_filters( 'give_goal_shortcode_output', $final_output, $atts );
150
+	return apply_filters('give_goal_shortcode_output', $final_output, $atts);
151 151
 }
152 152
 
153
-add_shortcode( 'give_goal', 'give_goal_shortcode' );
153
+add_shortcode('give_goal', 'give_goal_shortcode');
154 154
 
155 155
 
156 156
 /**
@@ -167,15 +167,15 @@  discard block
 block discarded – undo
167 167
  * @uses  give_login_form()
168 168
  * @return string
169 169
  */
170
-function give_login_form_shortcode( $atts, $content = null ) {
171
-	$atts = shortcode_atts( array(
170
+function give_login_form_shortcode($atts, $content = null) {
171
+	$atts = shortcode_atts(array(
172 172
 		'redirect' => '',
173
-	), $atts, 'give_login' );
173
+	), $atts, 'give_login');
174 174
 
175
-	return give_login_form( $atts['redirect'] );
175
+	return give_login_form($atts['redirect']);
176 176
 }
177 177
 
178
-add_shortcode( 'give_login', 'give_login_form_shortcode' );
178
+add_shortcode('give_login', 'give_login_form_shortcode');
179 179
 
180 180
 /**
181 181
  * Register Shortcode
@@ -190,15 +190,15 @@  discard block
 block discarded – undo
190 190
  * @uses  give_register_form()
191 191
  * @return string
192 192
  */
193
-function give_register_form_shortcode( $atts, $content = null ) {
194
-	$atts = shortcode_atts( array(
193
+function give_register_form_shortcode($atts, $content = null) {
194
+	$atts = shortcode_atts(array(
195 195
 		'redirect' => '',
196
-	), $atts, 'give_register' );
196
+	), $atts, 'give_register');
197 197
 
198
-	return give_register_form( $atts['redirect'] );
198
+	return give_register_form($atts['redirect']);
199 199
 }
200 200
 
201
-add_shortcode( 'give_register', 'give_register_form_shortcode' );
201
+add_shortcode('give_register', 'give_register_form_shortcode');
202 202
 
203 203
 
204 204
 /**
@@ -213,61 +213,61 @@  discard block
 block discarded – undo
213 213
  *
214 214
  * @return string
215 215
  */
216
-function give_receipt_shortcode( $atts, $content = null ) {
216
+function give_receipt_shortcode($atts, $content = null) {
217 217
 
218 218
 	global $give_receipt_args, $payment;
219 219
 
220
-	$give_receipt_args = shortcode_atts( array(
221
-		'error'          => esc_html__( 'Sorry, you are missing the payment key to view this donation receipt.', 'give' ),
220
+	$give_receipt_args = shortcode_atts(array(
221
+		'error'          => esc_html__('Sorry, you are missing the payment key to view this donation receipt.', 'give'),
222 222
 		'price'          => true,
223 223
 		'date'           => true,
224 224
 		'payment_key'    => false,
225 225
 		'payment_method' => true,
226 226
 		'payment_id'     => true
227
-	), $atts, 'give_receipt' );
227
+	), $atts, 'give_receipt');
228 228
 
229 229
 	//set $session var
230 230
 	$session = give_get_purchase_session();
231 231
 
232 232
 	//set payment key var
233
-	if ( isset( $_GET['payment_key'] ) ) {
234
-		$payment_key = urldecode( $_GET['payment_key'] );
235
-	} elseif ( $session ) {
233
+	if (isset($_GET['payment_key'])) {
234
+		$payment_key = urldecode($_GET['payment_key']);
235
+	} elseif ($session) {
236 236
 		$payment_key = $session['purchase_key'];
237
-	} elseif ( $give_receipt_args['payment_key'] ) {
237
+	} elseif ($give_receipt_args['payment_key']) {
238 238
 		$payment_key = $give_receipt_args['payment_key'];
239 239
 	}
240 240
 
241
-	$email_access = give_get_option( 'email_access' );
241
+	$email_access = give_get_option('email_access');
242 242
 
243 243
 	// No payment_key found & Email Access is Turned on:
244
-	if ( ! isset( $payment_key ) && $email_access == 'on' && ! Give()->email_access->token_exists ) {
244
+	if ( ! isset($payment_key) && $email_access == 'on' && ! Give()->email_access->token_exists) {
245 245
 
246 246
 		ob_start();
247 247
 
248
-		give_get_template_part( 'email-login-form' );
248
+		give_get_template_part('email-login-form');
249 249
 
250 250
 		return ob_get_clean();
251 251
 
252
-	} elseif ( ! isset( $payment_key ) ) {
252
+	} elseif ( ! isset($payment_key)) {
253 253
 
254
-		return give_output_error( $give_receipt_args['error'], false, 'error' );
254
+		return give_output_error($give_receipt_args['error'], false, 'error');
255 255
 
256 256
 	}
257 257
 
258
-	$payment_id    = give_get_purchase_id_by_key( $payment_key );
259
-	$user_can_view = give_can_view_receipt( $payment_key );
258
+	$payment_id    = give_get_purchase_id_by_key($payment_key);
259
+	$user_can_view = give_can_view_receipt($payment_key);
260 260
 
261 261
 	// Key was provided, but user is logged out. Offer them the ability to login and view the receipt
262
-	if ( ! $user_can_view && $email_access == 'on' && ! Give()->email_access->token_exists ) {
262
+	if ( ! $user_can_view && $email_access == 'on' && ! Give()->email_access->token_exists) {
263 263
 
264 264
 		ob_start();
265 265
 
266
-		give_get_template_part( 'email-login-form' );
266
+		give_get_template_part('email-login-form');
267 267
 
268 268
 		return ob_get_clean();
269 269
 
270
-	} elseif ( ! $user_can_view ) {
270
+	} elseif ( ! $user_can_view) {
271 271
 
272 272
 		global $give_login_redirect;
273 273
 
@@ -275,9 +275,9 @@  discard block
 block discarded – undo
275 275
 
276 276
 		ob_start();
277 277
 
278
-		give_output_error( apply_filters( 'give_must_be_logged_in_error_message', esc_html__( 'You must be logged in to view this donation payment receipt.', 'give' ) ) );
278
+		give_output_error(apply_filters('give_must_be_logged_in_error_message', esc_html__('You must be logged in to view this donation payment receipt.', 'give')));
279 279
 
280
-		give_get_template_part( 'shortcode', 'login' );
280
+		give_get_template_part('shortcode', 'login');
281 281
 
282 282
 		$login_form = ob_get_clean();
283 283
 
@@ -294,13 +294,13 @@  discard block
 block discarded – undo
294 294
 	 * Or if user is logged in and the user can view sensitive shop data
295 295
 	 *
296 296
 	 */
297
-	if ( ! apply_filters( 'give_user_can_view_receipt', $user_can_view, $give_receipt_args ) ) {
298
-		return give_output_error( $give_receipt_args['error'], false, 'error' );
297
+	if ( ! apply_filters('give_user_can_view_receipt', $user_can_view, $give_receipt_args)) {
298
+		return give_output_error($give_receipt_args['error'], false, 'error');
299 299
 	}
300 300
 
301 301
 	ob_start();
302 302
 
303
-	give_get_template_part( 'shortcode', 'receipt' );
303
+	give_get_template_part('shortcode', 'receipt');
304 304
 
305 305
 	$display = ob_get_clean();
306 306
 
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 
310 310
 }
311 311
 
312
-add_shortcode( 'give_receipt', 'give_receipt_shortcode' );
312
+add_shortcode('give_receipt', 'give_receipt_shortcode');
313 313
 
314 314
 /**
315 315
  * Profile Editor Shortcode
@@ -329,18 +329,18 @@  discard block
 block discarded – undo
329 329
  *
330 330
  * @return string Output generated from the profile editor
331 331
  */
332
-function give_profile_editor_shortcode( $atts, $content = null ) {
332
+function give_profile_editor_shortcode($atts, $content = null) {
333 333
 
334 334
 	ob_start();
335 335
 
336
-	give_get_template_part( 'shortcode', 'profile-editor' );
336
+	give_get_template_part('shortcode', 'profile-editor');
337 337
 
338 338
 	$display = ob_get_clean();
339 339
 
340 340
 	return $display;
341 341
 }
342 342
 
343
-add_shortcode( 'give_profile_editor', 'give_profile_editor_shortcode' );
343
+add_shortcode('give_profile_editor', 'give_profile_editor_shortcode');
344 344
 
345 345
 /**
346 346
  * Process Profile Updater Form
@@ -353,30 +353,30 @@  discard block
 block discarded – undo
353 353
  *
354 354
  * @return false
355 355
  */
356
-function give_process_profile_editor_updates( $data ) {
356
+function give_process_profile_editor_updates($data) {
357 357
 	// Profile field change request
358
-	if ( empty( $_POST['give_profile_editor_submit'] ) && ! is_user_logged_in() ) {
358
+	if (empty($_POST['give_profile_editor_submit']) && ! is_user_logged_in()) {
359 359
 		return false;
360 360
 	}
361 361
 
362 362
 	// Nonce security
363
-	if ( ! wp_verify_nonce( $data['give_profile_editor_nonce'], 'give-profile-editor-nonce' ) ) {
363
+	if ( ! wp_verify_nonce($data['give_profile_editor_nonce'], 'give-profile-editor-nonce')) {
364 364
 		return false;
365 365
 	}
366 366
 
367 367
 	$user_id       = get_current_user_id();
368
-	$old_user_data = get_userdata( $user_id );
369
-
370
-	$display_name = isset( $data['give_display_name'] ) ? sanitize_text_field( $data['give_display_name'] ) : $old_user_data->display_name;
371
-	$first_name   = isset( $data['give_first_name'] ) ? sanitize_text_field( $data['give_first_name'] ) : $old_user_data->first_name;
372
-	$last_name    = isset( $data['give_last_name'] ) ? sanitize_text_field( $data['give_last_name'] ) : $old_user_data->last_name;
373
-	$email        = isset( $data['give_email'] ) ? sanitize_email( $data['give_email'] ) : $old_user_data->user_email;
374
-	$line1        = ( isset( $data['give_address_line1'] ) ? sanitize_text_field( $data['give_address_line1'] ) : '' );
375
-	$line2        = ( isset( $data['give_address_line2'] ) ? sanitize_text_field( $data['give_address_line2'] ) : '' );
376
-	$city         = ( isset( $data['give_address_city'] ) ? sanitize_text_field( $data['give_address_city'] ) : '' );
377
-	$state        = ( isset( $data['give_address_state'] ) ? sanitize_text_field( $data['give_address_state'] ) : '' );
378
-	$zip          = ( isset( $data['give_address_zip'] ) ? sanitize_text_field( $data['give_address_zip'] ) : '' );
379
-	$country      = ( isset( $data['give_address_country'] ) ? sanitize_text_field( $data['give_address_country'] ) : '' );
368
+	$old_user_data = get_userdata($user_id);
369
+
370
+	$display_name = isset($data['give_display_name']) ? sanitize_text_field($data['give_display_name']) : $old_user_data->display_name;
371
+	$first_name   = isset($data['give_first_name']) ? sanitize_text_field($data['give_first_name']) : $old_user_data->first_name;
372
+	$last_name    = isset($data['give_last_name']) ? sanitize_text_field($data['give_last_name']) : $old_user_data->last_name;
373
+	$email        = isset($data['give_email']) ? sanitize_email($data['give_email']) : $old_user_data->user_email;
374
+	$line1        = (isset($data['give_address_line1']) ? sanitize_text_field($data['give_address_line1']) : '');
375
+	$line2        = (isset($data['give_address_line2']) ? sanitize_text_field($data['give_address_line2']) : '');
376
+	$city         = (isset($data['give_address_city']) ? sanitize_text_field($data['give_address_city']) : '');
377
+	$state        = (isset($data['give_address_state']) ? sanitize_text_field($data['give_address_state']) : '');
378
+	$zip          = (isset($data['give_address_zip']) ? sanitize_text_field($data['give_address_zip']) : '');
379
+	$country      = (isset($data['give_address_country']) ? sanitize_text_field($data['give_address_country']) : '');
380 380
 
381 381
 	$userdata = array(
382 382
 		'ID'           => $user_id,
@@ -396,45 +396,45 @@  discard block
 block discarded – undo
396 396
 		'country' => $country
397 397
 	);
398 398
 
399
-	do_action( 'give_pre_update_user_profile', $user_id, $userdata );
399
+	do_action('give_pre_update_user_profile', $user_id, $userdata);
400 400
 
401 401
 	// New password
402
-	if ( ! empty( $data['give_new_user_pass1'] ) ) {
403
-		if ( $data['give_new_user_pass1'] !== $data['give_new_user_pass2'] ) {
404
-			give_set_error( 'password_mismatch', __( 'The passwords you entered do not match. Please try again.', 'give' ) );
402
+	if ( ! empty($data['give_new_user_pass1'])) {
403
+		if ($data['give_new_user_pass1'] !== $data['give_new_user_pass2']) {
404
+			give_set_error('password_mismatch', __('The passwords you entered do not match. Please try again.', 'give'));
405 405
 		} else {
406 406
 			$userdata['user_pass'] = $data['give_new_user_pass1'];
407 407
 		}
408 408
 	}
409 409
 
410 410
 	// Make sure the new email doesn't belong to another user
411
-	if ( $email != $old_user_data->user_email ) {
412
-		if ( email_exists( $email ) ) {
413
-			give_set_error( 'email_exists', __( 'The email you entered belongs to another user. Please use another.', 'give' ) );
411
+	if ($email != $old_user_data->user_email) {
412
+		if (email_exists($email)) {
413
+			give_set_error('email_exists', __('The email you entered belongs to another user. Please use another.', 'give'));
414 414
 		}
415 415
 	}
416 416
 
417 417
 	// Check for errors
418 418
 	$errors = give_get_errors();
419 419
 
420
-	if ( $errors ) {
420
+	if ($errors) {
421 421
 		// Send back to the profile editor if there are errors
422
-		wp_redirect( $data['give_redirect'] );
422
+		wp_redirect($data['give_redirect']);
423 423
 		give_die();
424 424
 	}
425 425
 
426 426
 	// Update the user
427
-	$meta    = update_user_meta( $user_id, '_give_user_address', $address );
428
-	$updated = wp_update_user( $userdata );
427
+	$meta    = update_user_meta($user_id, '_give_user_address', $address);
428
+	$updated = wp_update_user($userdata);
429 429
 
430
-	if ( $updated ) {
431
-		do_action( 'give_user_profile_updated', $user_id, $userdata );
432
-		wp_redirect( add_query_arg( 'updated', 'true', $data['give_redirect'] ) );
430
+	if ($updated) {
431
+		do_action('give_user_profile_updated', $user_id, $userdata);
432
+		wp_redirect(add_query_arg('updated', 'true', $data['give_redirect']));
433 433
 		give_die();
434 434
 	}
435 435
 
436 436
 	return false;
437 437
 }
438 438
 
439
-add_action( 'give_edit_user_profile', 'give_process_profile_editor_updates' );
439
+add_action('give_edit_user_profile', 'give_process_profile_editor_updates');
440 440
 
Please login to merge, or discard this patch.
includes/process-purchase.php 1 patch
Spacing   +238 added lines, -238 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 
@@ -25,34 +25,34 @@  discard block
 block discarded – undo
25 25
  */
26 26
 function give_process_purchase_form() {
27 27
 
28
-	do_action( 'give_pre_process_purchase' );
28
+	do_action('give_pre_process_purchase');
29 29
 
30 30
 	// Validate the form $_POST data
31 31
 	$valid_data = give_purchase_form_validate_fields();
32 32
 
33 33
 	// Allow themes and plugins to hook to errors
34
-	do_action( 'give_checkout_error_checks', $valid_data, $_POST );
34
+	do_action('give_checkout_error_checks', $valid_data, $_POST);
35 35
 
36
-	$is_ajax = isset( $_POST['give_ajax'] );
36
+	$is_ajax = isset($_POST['give_ajax']);
37 37
 
38 38
 	// Process the login form
39
-	if ( isset( $_POST['give_login_submit'] ) ) {
39
+	if (isset($_POST['give_login_submit'])) {
40 40
 		give_process_form_login();
41 41
 	}
42 42
 
43 43
 	// Validate the user
44
-	$user = give_get_purchase_form_user( $valid_data );
44
+	$user = give_get_purchase_form_user($valid_data);
45 45
 
46
-	if ( give_get_errors() || ! $user ) {
47
-		if ( $is_ajax ) {
48
-			do_action( 'give_ajax_checkout_errors' );
46
+	if (give_get_errors() || ! $user) {
47
+		if ($is_ajax) {
48
+			do_action('give_ajax_checkout_errors');
49 49
 			give_die();
50 50
 		} else {
51 51
 			return false;
52 52
 		}
53 53
 	}
54 54
 
55
-	if ( $is_ajax ) {
55
+	if ($is_ajax) {
56 56
 		echo 'success';
57 57
 		give_die();
58 58
 	}
@@ -66,15 +66,15 @@  discard block
 block discarded – undo
66 66
 		'address'    => $user['address']
67 67
 	);
68 68
 
69
-	$auth_key = defined( 'AUTH_KEY' ) ? AUTH_KEY : '';
69
+	$auth_key = defined('AUTH_KEY') ? AUTH_KEY : '';
70 70
 
71 71
 	// Setup purchase information
72 72
 	$purchase_data = array(
73
-		'price'        => ( isset( $_POST['give-amount'] ) ? (float) apply_filters( 'give_donation_total', give_sanitize_amount( give_format_amount( $_POST['give-amount'] ) ) ) : '0.00' ),
74
-		'purchase_key' => strtolower( md5( $user['user_email'] . date( 'Y-m-d H:i:s' ) . $auth_key . uniqid( 'give', true ) ) ),
73
+		'price'        => (isset($_POST['give-amount']) ? (float) apply_filters('give_donation_total', give_sanitize_amount(give_format_amount($_POST['give-amount']))) : '0.00'),
74
+		'purchase_key' => strtolower(md5($user['user_email'].date('Y-m-d H:i:s').$auth_key.uniqid('give', true))),
75 75
 		'user_email'   => $user['user_email'],
76
-		'date'         => date( 'Y-m-d H:i:s', current_time( 'timestamp' ) ),
77
-		'user_info'    => stripslashes_deep( $user_info ),
76
+		'date'         => date('Y-m-d H:i:s', current_time('timestamp')),
77
+		'user_info'    => stripslashes_deep($user_info),
78 78
 		'post_data'    => $_POST,
79 79
 		'gateway'      => $valid_data['gateway'],
80 80
 		'card_info'    => $valid_data['cc_info']
@@ -84,36 +84,36 @@  discard block
 block discarded – undo
84 84
 	$valid_data['user'] = $user;
85 85
 
86 86
 	// Allow themes and plugins to hook before the gateway
87
-	do_action( 'give_checkout_before_gateway', $_POST, $user_info, $valid_data );
87
+	do_action('give_checkout_before_gateway', $_POST, $user_info, $valid_data);
88 88
 
89 89
 	//Sanity check for price
90
-	if ( ! $purchase_data['price'] ) {
90
+	if ( ! $purchase_data['price']) {
91 91
 		// Revert to manual
92 92
 		$purchase_data['gateway'] = 'manual';
93 93
 		$_POST['give-gateway']    = 'manual';
94 94
 	}
95 95
 
96 96
 	// Allow the purchase data to be modified before it is sent to the gateway
97
-	$purchase_data = apply_filters( 'give_purchase_data_before_gateway', $purchase_data, $valid_data );
97
+	$purchase_data = apply_filters('give_purchase_data_before_gateway', $purchase_data, $valid_data);
98 98
 
99 99
 	// Setup the data we're storing in the purchase session
100 100
 	$session_data = $purchase_data;
101 101
 
102 102
 	// Make sure credit card numbers are never stored in sessions
103
-	unset( $session_data['card_info']['card_number'] );
103
+	unset($session_data['card_info']['card_number']);
104 104
 
105 105
 	// Used for showing data to non logged-in users after purchase, and for other plugins needing purchase data.
106
-	give_set_purchase_session( $session_data );
106
+	give_set_purchase_session($session_data);
107 107
 
108 108
 	// Send info to the gateway for payment processing
109
-	give_send_to_gateway( $purchase_data['gateway'], $purchase_data );
109
+	give_send_to_gateway($purchase_data['gateway'], $purchase_data);
110 110
 	give_die();
111 111
 
112 112
 }
113 113
 
114
-add_action( 'give_purchase', 'give_process_purchase_form' );
115
-add_action( 'wp_ajax_give_process_checkout', 'give_process_purchase_form' );
116
-add_action( 'wp_ajax_nopriv_give_process_checkout', 'give_process_purchase_form' );
114
+add_action('give_purchase', 'give_process_purchase_form');
115
+add_action('wp_ajax_give_process_checkout', 'give_process_purchase_form');
116
+add_action('wp_ajax_nopriv_give_process_checkout', 'give_process_purchase_form');
117 117
 
118 118
 /**
119 119
  * Process the checkout login form
@@ -124,32 +124,32 @@  discard block
 block discarded – undo
124 124
  */
125 125
 function give_process_form_login() {
126 126
 
127
-	$is_ajax = isset( $_POST['give_ajax'] );
127
+	$is_ajax = isset($_POST['give_ajax']);
128 128
 
129 129
 	$user_data = give_purchase_form_validate_user_login();
130 130
 
131
-	if ( give_get_errors() || $user_data['user_id'] < 1 ) {
132
-		if ( $is_ajax ) {
133
-			do_action( 'give_ajax_checkout_errors' );
131
+	if (give_get_errors() || $user_data['user_id'] < 1) {
132
+		if ($is_ajax) {
133
+			do_action('give_ajax_checkout_errors');
134 134
 			give_die();
135 135
 		} else {
136
-			wp_redirect( $_SERVER['HTTP_REFERER'] );
136
+			wp_redirect($_SERVER['HTTP_REFERER']);
137 137
 			exit;
138 138
 		}
139 139
 	}
140 140
 
141
-	give_log_user_in( $user_data['user_id'], $user_data['user_login'], $user_data['user_pass'] );
141
+	give_log_user_in($user_data['user_id'], $user_data['user_login'], $user_data['user_pass']);
142 142
 
143
-	if ( $is_ajax ) {
143
+	if ($is_ajax) {
144 144
 		echo 'success';
145 145
 		give_die();
146 146
 	} else {
147
-		wp_redirect( $_SERVER['HTTP_REFERER'] );
147
+		wp_redirect($_SERVER['HTTP_REFERER']);
148 148
 	}
149 149
 }
150 150
 
151
-add_action( 'wp_ajax_give_process_checkout_login', 'give_process_form_login' );
152
-add_action( 'wp_ajax_nopriv_give_process_checkout_login', 'give_process_form_login' );
151
+add_action('wp_ajax_give_process_checkout_login', 'give_process_form_login');
152
+add_action('wp_ajax_nopriv_give_process_checkout_login', 'give_process_form_login');
153 153
 
154 154
 /**
155 155
  * Purchase Form Validate Fields
@@ -161,40 +161,40 @@  discard block
 block discarded – undo
161 161
 function give_purchase_form_validate_fields() {
162 162
 
163 163
 	// Check if there is $_POST
164
-	if ( empty( $_POST ) ) {
164
+	if (empty($_POST)) {
165 165
 		return false;
166 166
 	}
167 167
 
168
-	$form_id = isset( $_POST['give-form-id'] ) ? $_POST['give-form-id'] : '';
168
+	$form_id = isset($_POST['give-form-id']) ? $_POST['give-form-id'] : '';
169 169
 
170 170
 	// Start an array to collect valid data
171 171
 	$valid_data = array(
172 172
 		'gateway'          => give_purchase_form_validate_gateway(), // Gateway fallback (amount is validated here)
173
-		'need_new_user'    => false,     // New user flag
174
-		'need_user_login'  => false,     // Login user flag
175
-		'logged_user_data' => array(),   // Logged user collected data
176
-		'new_user_data'    => array(),   // New user collected data
177
-		'login_user_data'  => array(),   // Login user collected data
178
-		'guest_user_data'  => array(),   // Guest user collected data
173
+		'need_new_user'    => false, // New user flag
174
+		'need_user_login'  => false, // Login user flag
175
+		'logged_user_data' => array(), // Logged user collected data
176
+		'new_user_data'    => array(), // New user collected data
177
+		'login_user_data'  => array(), // Login user collected data
178
+		'guest_user_data'  => array(), // Guest user collected data
179 179
 		'cc_info'          => give_purchase_form_validate_cc()    // Credit card info
180 180
 	);
181 181
 
182 182
 	// Validate agree to terms
183
-	$terms_option = get_post_meta( $form_id, '_give_terms_option', true );
184
-	if ( isset( $terms_option ) && $terms_option === 'yes' ) {
183
+	$terms_option = get_post_meta($form_id, '_give_terms_option', true);
184
+	if (isset($terms_option) && $terms_option === 'yes') {
185 185
 		give_purchase_form_validate_agree_to_terms();
186 186
 	}
187 187
 
188
-	if ( is_user_logged_in() ) {
188
+	if (is_user_logged_in()) {
189 189
 		// Collect logged in user data
190 190
 		$valid_data['logged_in_user'] = give_purchase_form_validate_logged_in_user();
191
-	} else if ( isset( $_POST['give-purchase-var'] ) && $_POST['give-purchase-var'] == 'needs-to-register' ) {
191
+	} else if (isset($_POST['give-purchase-var']) && $_POST['give-purchase-var'] == 'needs-to-register') {
192 192
 		// Set new user registration as required
193 193
 		$valid_data['need_new_user'] = true;
194 194
 		// Validate new user data
195 195
 		$valid_data['new_user_data'] = give_purchase_form_validate_new_user();
196 196
 		// Check if login validation is needed
197
-	} else if ( isset( $_POST['give-purchase-var'] ) && $_POST['give-purchase-var'] == 'needs-to-login' ) {
197
+	} else if (isset($_POST['give-purchase-var']) && $_POST['give-purchase-var'] == 'needs-to-login') {
198 198
 		// Set user login as required
199 199
 		$valid_data['need_user_login'] = true;
200 200
 		// Validate users login info
@@ -217,35 +217,35 @@  discard block
 block discarded – undo
217 217
  */
218 218
 function give_purchase_form_validate_gateway() {
219 219
 
220
-	$gateway = give_get_default_gateway( $_REQUEST['give-form-id'] );
220
+	$gateway = give_get_default_gateway($_REQUEST['give-form-id']);
221 221
 
222 222
 	// Check if a gateway value is present
223
-	if ( ! empty( $_REQUEST['give-gateway'] ) ) {
223
+	if ( ! empty($_REQUEST['give-gateway'])) {
224 224
 
225
-		$gateway = sanitize_text_field( $_REQUEST['give-gateway'] );
225
+		$gateway = sanitize_text_field($_REQUEST['give-gateway']);
226 226
 
227 227
 		//Is amount being donated in LIVE mode above 0.00?
228
-		if ( '0.00' == $_REQUEST['give-amount'] && ! give_is_test_mode() ) {
228
+		if ('0.00' == $_REQUEST['give-amount'] && ! give_is_test_mode()) {
229 229
 
230
-			give_set_error( 'invalid_donation_amount', __( 'Please insert a valid donation amount.', 'give' ) );
230
+			give_set_error('invalid_donation_amount', __('Please insert a valid donation amount.', 'give'));
231 231
 
232 232
 		} //Check for a minimum custom amount
233
-		elseif ( ! give_verify_minimum_price() ) {
233
+		elseif ( ! give_verify_minimum_price()) {
234 234
 
235
-			$minimum       = give_currency_filter( give_format_amount( give_get_form_minimum_price( $_REQUEST['give-form-id'] ) ) );
236
-			$error_message = __( 'This form has a minimum donation amount of %s', 'give' );
235
+			$minimum       = give_currency_filter(give_format_amount(give_get_form_minimum_price($_REQUEST['give-form-id'])));
236
+			$error_message = __('This form has a minimum donation amount of %s', 'give');
237 237
 
238
-			give_set_error( 'invalid_donation_minimum', sprintf( $error_message, $minimum ) );
238
+			give_set_error('invalid_donation_minimum', sprintf($error_message, $minimum));
239 239
 
240 240
 		} //Is this test mode zero donation? Let it through but set to manual gateway
241
-		elseif ( '0.00' == $_REQUEST['give-amount'] && give_is_test_mode() ) {
241
+		elseif ('0.00' == $_REQUEST['give-amount'] && give_is_test_mode()) {
242 242
 
243 243
 			$gateway = 'manual';
244 244
 
245 245
 		} //Check if this gateway is active
246
-		elseif ( ! give_is_gateway_active( $gateway ) ) {
246
+		elseif ( ! give_is_gateway_active($gateway)) {
247 247
 
248
-			give_set_error( 'invalid_gateway', __( 'The selected payment gateway is not enabled', 'give' ) );
248
+			give_set_error('invalid_gateway', __('The selected payment gateway is not enabled', 'give'));
249 249
 
250 250
 		}
251 251
 
@@ -264,23 +264,23 @@  discard block
 block discarded – undo
264 264
  */
265 265
 function give_verify_minimum_price() {
266 266
 
267
-	$amount          = give_sanitize_amount( $_REQUEST['give-amount'] );
267
+	$amount          = give_sanitize_amount($_REQUEST['give-amount']);
268 268
 	$form_id         = $_REQUEST['give-form-id'];
269
-	$price_id        = isset( $_REQUEST['give-price-id'] ) ? $_REQUEST['give-price-id'] : 0;
270
-	$variable_prices = give_has_variable_prices( $form_id );
269
+	$price_id        = isset($_REQUEST['give-price-id']) ? $_REQUEST['give-price-id'] : 0;
270
+	$variable_prices = give_has_variable_prices($form_id);
271 271
 
272
-	if ( $variable_prices && ! empty( $price_id ) ) {
272
+	if ($variable_prices && ! empty($price_id)) {
273 273
 
274
-		$price_level_amount = give_get_price_option_amount( $form_id, $price_id );
274
+		$price_level_amount = give_get_price_option_amount($form_id, $price_id);
275 275
 
276
-		if ( $price_level_amount == $amount ) {
276
+		if ($price_level_amount == $amount) {
277 277
 			return true;
278 278
 		}
279 279
 	}
280 280
 
281
-	$minimum = give_get_form_minimum_price( $form_id );
281
+	$minimum = give_get_form_minimum_price($form_id);
282 282
 
283
-	if ( $minimum > $amount ) {
283
+	if ($minimum > $amount) {
284 284
 		return false;
285 285
 	}
286 286
 
@@ -296,9 +296,9 @@  discard block
 block discarded – undo
296 296
  */
297 297
 function give_purchase_form_validate_agree_to_terms() {
298 298
 	// Validate agree to terms
299
-	if ( ! isset( $_POST['give_agree_to_terms'] ) || $_POST['give_agree_to_terms'] != 1 ) {
299
+	if ( ! isset($_POST['give_agree_to_terms']) || $_POST['give_agree_to_terms'] != 1) {
300 300
 		// User did not agree
301
-		give_set_error( 'agree_to_terms', apply_filters( 'give_agree_to_terms_text', __( 'You must agree to the terms of use', 'give' ) ) );
301
+		give_set_error('agree_to_terms', apply_filters('give_agree_to_terms_text', __('You must agree to the terms of use', 'give')));
302 302
 	}
303 303
 }
304 304
 
@@ -312,47 +312,47 @@  discard block
 block discarded – undo
312 312
  *
313 313
  * @return      array
314 314
  */
315
-function give_purchase_form_required_fields( $form_id ) {
315
+function give_purchase_form_required_fields($form_id) {
316 316
 
317
-	$payment_mode = give_get_chosen_gateway( $form_id );
317
+	$payment_mode = give_get_chosen_gateway($form_id);
318 318
 
319 319
 	$required_fields = array(
320 320
 		'give_email' => array(
321 321
 			'error_id'      => 'invalid_email',
322
-			'error_message' => __( 'Please enter a valid email address', 'give' )
322
+			'error_message' => __('Please enter a valid email address', 'give')
323 323
 		),
324 324
 		'give_first' => array(
325 325
 			'error_id'      => 'invalid_first_name',
326
-			'error_message' => __( 'Please enter your first name', 'give' )
326
+			'error_message' => __('Please enter your first name', 'give')
327 327
 		)
328 328
 	);
329 329
 
330
-	$require_address = give_require_billing_address( $payment_mode );
330
+	$require_address = give_require_billing_address($payment_mode);
331 331
 
332
-	if ( $require_address ) {
333
-		$required_fields['card_address']    = array(
332
+	if ($require_address) {
333
+		$required_fields['card_address'] = array(
334 334
 			'error_id'      => 'invalid_card_address',
335
-			'error_message' => __( 'Please enter your primary billing address', 'give' )
335
+			'error_message' => __('Please enter your primary billing address', 'give')
336 336
 		);
337
-		$required_fields['card_zip']        = array(
337
+		$required_fields['card_zip'] = array(
338 338
 			'error_id'      => 'invalid_zip_code',
339
-			'error_message' => __( 'Please enter your zip / postal code', 'give' )
339
+			'error_message' => __('Please enter your zip / postal code', 'give')
340 340
 		);
341
-		$required_fields['card_city']       = array(
341
+		$required_fields['card_city'] = array(
342 342
 			'error_id'      => 'invalid_city',
343
-			'error_message' => __( 'Please enter your billing city', 'give' )
343
+			'error_message' => __('Please enter your billing city', 'give')
344 344
 		);
345 345
 		$required_fields['billing_country'] = array(
346 346
 			'error_id'      => 'invalid_country',
347
-			'error_message' => __( 'Please select your billing country', 'give' )
347
+			'error_message' => __('Please select your billing country', 'give')
348 348
 		);
349
-		$required_fields['card_state']      = array(
349
+		$required_fields['card_state'] = array(
350 350
 			'error_id'      => 'invalid_state',
351
-			'error_message' => __( 'Please enter billing state / province', 'give' )
351
+			'error_message' => __('Please enter billing state / province', 'give')
352 352
 		);
353 353
 	}
354 354
 
355
-	return apply_filters( 'give_purchase_form_required_fields', $required_fields, $form_id );
355
+	return apply_filters('give_purchase_form_required_fields', $required_fields, $form_id);
356 356
 
357 357
 }
358 358
 
@@ -365,16 +365,16 @@  discard block
 block discarded – undo
365 365
  *
366 366
  * @return mixed|void
367 367
  */
368
-function give_require_billing_address( $payment_mode ) {
368
+function give_require_billing_address($payment_mode) {
369 369
 
370 370
 	$return = false;
371 371
 
372
-	if ( isset( $_POST['billing_country'] ) || did_action( "give_{$payment_mode}_cc_form" ) || did_action( 'give_cc_form' ) ) {
372
+	if (isset($_POST['billing_country']) || did_action("give_{$payment_mode}_cc_form") || did_action('give_cc_form')) {
373 373
 		$return = true;
374 374
 	}
375 375
 
376 376
 	// Let payment gateways and other extensions determine if address fields should be required
377
-	return apply_filters( 'give_require_billing_address', $return );
377
+	return apply_filters('give_require_billing_address', $return);
378 378
 
379 379
 }
380 380
 
@@ -388,43 +388,43 @@  discard block
 block discarded – undo
388 388
 function give_purchase_form_validate_logged_in_user() {
389 389
 	global $user_ID;
390 390
 
391
-	$form_id = isset( $_POST['give-form-id'] ) ? $_POST['give-form-id'] : '';
391
+	$form_id = isset($_POST['give-form-id']) ? $_POST['give-form-id'] : '';
392 392
 
393 393
 	// Start empty array to collect valid user data
394 394
 	$valid_user_data = array(
395 395
 		// Assume there will be errors
396
-		'user_id' => - 1
396
+		'user_id' => -1
397 397
 	);
398 398
 
399 399
 	// Verify there is a user_ID
400
-	if ( $user_ID > 0 ) {
400
+	if ($user_ID > 0) {
401 401
 		// Get the logged in user data
402
-		$user_data = get_userdata( $user_ID );
402
+		$user_data = get_userdata($user_ID);
403 403
 
404 404
 		// Loop through required fields and show error messages
405
-		foreach ( give_purchase_form_required_fields( $form_id ) as $field_name => $value ) {
406
-			if ( in_array( $value, give_purchase_form_required_fields( $form_id ) ) && empty( $_POST[ $field_name ] ) ) {
407
-				give_set_error( $value['error_id'], $value['error_message'] );
405
+		foreach (give_purchase_form_required_fields($form_id) as $field_name => $value) {
406
+			if (in_array($value, give_purchase_form_required_fields($form_id)) && empty($_POST[$field_name])) {
407
+				give_set_error($value['error_id'], $value['error_message']);
408 408
 			}
409 409
 		}
410 410
 
411 411
 		// Verify data
412
-		if ( $user_data ) {
412
+		if ($user_data) {
413 413
 			// Collected logged in user data
414 414
 			$valid_user_data = array(
415 415
 				'user_id'    => $user_ID,
416
-				'user_email' => isset( $_POST['give_email'] ) ? sanitize_email( $_POST['give_email'] ) : $user_data->user_email,
417
-				'user_first' => isset( $_POST['give_first'] ) && ! empty( $_POST['give_first'] ) ? sanitize_text_field( $_POST['give_first'] ) : $user_data->first_name,
418
-				'user_last'  => isset( $_POST['give_last'] ) && ! empty( $_POST['give_last'] ) ? sanitize_text_field( $_POST['give_last'] ) : $user_data->last_name,
416
+				'user_email' => isset($_POST['give_email']) ? sanitize_email($_POST['give_email']) : $user_data->user_email,
417
+				'user_first' => isset($_POST['give_first']) && ! empty($_POST['give_first']) ? sanitize_text_field($_POST['give_first']) : $user_data->first_name,
418
+				'user_last'  => isset($_POST['give_last']) && ! empty($_POST['give_last']) ? sanitize_text_field($_POST['give_last']) : $user_data->last_name,
419 419
 			);
420 420
 
421
-			if ( ! is_email( $valid_user_data['user_email'] ) ) {
422
-				give_set_error( 'email_invalid', __( 'Invalid email', 'give' ) );
421
+			if ( ! is_email($valid_user_data['user_email'])) {
422
+				give_set_error('email_invalid', __('Invalid email', 'give'));
423 423
 			}
424 424
 
425 425
 		} else {
426 426
 			// Set invalid user error
427
-			give_set_error( 'invalid_user', __( 'The user information is invalid', 'give' ) );
427
+			give_set_error('invalid_user', __('The user information is invalid', 'give'));
428 428
 		}
429 429
 	}
430 430
 
@@ -442,92 +442,92 @@  discard block
 block discarded – undo
442 442
 function give_purchase_form_validate_new_user() {
443 443
 
444 444
 	$registering_new_user = false;
445
-	$form_id              = isset( $_POST['give-form-id'] ) ? $_POST['give-form-id'] : '';
445
+	$form_id              = isset($_POST['give-form-id']) ? $_POST['give-form-id'] : '';
446 446
 
447 447
 	// Start an empty array to collect valid user data
448 448
 	$valid_user_data = array(
449 449
 		// Assume there will be errors
450
-		'user_id'    => - 1,
450
+		'user_id'    => -1,
451 451
 		// Get first name
452
-		'user_first' => isset( $_POST['give_first'] ) ? sanitize_text_field( $_POST['give_first'] ) : '',
452
+		'user_first' => isset($_POST['give_first']) ? sanitize_text_field($_POST['give_first']) : '',
453 453
 		// Get last name
454
-		'user_last'  => isset( $_POST['give_last'] ) ? sanitize_text_field( $_POST['give_last'] ) : '',
454
+		'user_last'  => isset($_POST['give_last']) ? sanitize_text_field($_POST['give_last']) : '',
455 455
 	);
456 456
 
457 457
 	// Check the new user's credentials against existing ones
458
-	$user_login   = isset( $_POST['give_user_login'] ) ? trim( $_POST['give_user_login'] ) : false;
459
-	$user_email   = isset( $_POST['give_email'] ) ? trim( $_POST['give_email'] ) : false;
460
-	$user_pass    = isset( $_POST['give_user_pass'] ) ? trim( $_POST['give_user_pass'] ) : false;
461
-	$pass_confirm = isset( $_POST['give_user_pass_confirm'] ) ? trim( $_POST['give_user_pass_confirm'] ) : false;
458
+	$user_login   = isset($_POST['give_user_login']) ? trim($_POST['give_user_login']) : false;
459
+	$user_email   = isset($_POST['give_email']) ? trim($_POST['give_email']) : false;
460
+	$user_pass    = isset($_POST['give_user_pass']) ? trim($_POST['give_user_pass']) : false;
461
+	$pass_confirm = isset($_POST['give_user_pass_confirm']) ? trim($_POST['give_user_pass_confirm']) : false;
462 462
 
463 463
 	// Loop through required fields and show error messages
464
-	foreach ( give_purchase_form_required_fields( $form_id ) as $field_name => $value ) {
465
-		if ( in_array( $value, give_purchase_form_required_fields( $form_id ) ) && empty( $_POST[ $field_name ] ) ) {
466
-			give_set_error( $value['error_id'], $value['error_message'] );
464
+	foreach (give_purchase_form_required_fields($form_id) as $field_name => $value) {
465
+		if (in_array($value, give_purchase_form_required_fields($form_id)) && empty($_POST[$field_name])) {
466
+			give_set_error($value['error_id'], $value['error_message']);
467 467
 		}
468 468
 	}
469 469
 
470 470
 	// Check if we have an username to register
471
-	if ( $user_login && strlen( $user_login ) > 0 ) {
471
+	if ($user_login && strlen($user_login) > 0) {
472 472
 		$registering_new_user = true;
473 473
 
474 474
 		// We have an user name, check if it already exists
475
-		if ( username_exists( $user_login ) ) {
475
+		if (username_exists($user_login)) {
476 476
 			// Username already registered
477
-			give_set_error( 'username_unavailable', __( 'Username already taken', 'give' ) );
477
+			give_set_error('username_unavailable', __('Username already taken', 'give'));
478 478
 			// Check if it's valid
479
-		} else if ( ! give_validate_username( $user_login ) ) {
479
+		} else if ( ! give_validate_username($user_login)) {
480 480
 			// Invalid username
481
-			if ( is_multisite() ) {
482
-				give_set_error( 'username_invalid', __( 'Invalid username. Only lowercase letters (a-z) and numbers are allowed', 'give' ) );
481
+			if (is_multisite()) {
482
+				give_set_error('username_invalid', __('Invalid username. Only lowercase letters (a-z) and numbers are allowed', 'give'));
483 483
 			} else {
484
-				give_set_error( 'username_invalid', __( 'Invalid username', 'give' ) );
484
+				give_set_error('username_invalid', __('Invalid username', 'give'));
485 485
 			}
486 486
 		} else {
487 487
 			// All the checks have run and it's good to go
488 488
 			$valid_user_data['user_login'] = $user_login;
489 489
 		}
490 490
 	} else {
491
-		if ( give_no_guest_checkout( $form_id ) ) {
492
-			give_set_error( 'registration_required', esc_html__( 'You must register or login to complete your donation', 'give' ) );
491
+		if (give_no_guest_checkout($form_id)) {
492
+			give_set_error('registration_required', esc_html__('You must register or login to complete your donation', 'give'));
493 493
 		}
494 494
 	}
495 495
 
496 496
 	// Check if we have an email to verify
497
-	if ( $user_email && strlen( $user_email ) > 0 ) {
497
+	if ($user_email && strlen($user_email) > 0) {
498 498
 		// Validate email
499
-		if ( ! is_email( $user_email ) ) {
500
-			give_set_error( 'email_invalid', __( 'Invalid email', 'give' ) );
499
+		if ( ! is_email($user_email)) {
500
+			give_set_error('email_invalid', __('Invalid email', 'give'));
501 501
 			// Check if email exists
502
-		} else if ( email_exists( $user_email ) && $registering_new_user ) {
503
-			give_set_error( 'email_used', __( 'Email already used', 'give' ) );
502
+		} else if (email_exists($user_email) && $registering_new_user) {
503
+			give_set_error('email_used', __('Email already used', 'give'));
504 504
 		} else {
505 505
 			// All the checks have run and it's good to go
506 506
 			$valid_user_data['user_email'] = $user_email;
507 507
 		}
508 508
 	} else {
509 509
 		// No email
510
-		give_set_error( 'email_empty', __( 'Enter an email', 'give' ) );
510
+		give_set_error('email_empty', __('Enter an email', 'give'));
511 511
 	}
512 512
 
513 513
 	// Check password
514
-	if ( $user_pass && $pass_confirm ) {
514
+	if ($user_pass && $pass_confirm) {
515 515
 		// Verify confirmation matches
516
-		if ( $user_pass != $pass_confirm ) {
516
+		if ($user_pass != $pass_confirm) {
517 517
 			// Passwords do not match
518
-			give_set_error( 'password_mismatch', __( 'Passwords don\'t match', 'give' ) );
518
+			give_set_error('password_mismatch', __('Passwords don\'t match', 'give'));
519 519
 		} else {
520 520
 			// All is good to go
521 521
 			$valid_user_data['user_pass'] = $user_pass;
522 522
 		}
523 523
 	} else {
524 524
 		// Password or confirmation missing
525
-		if ( ! $user_pass && $registering_new_user ) {
525
+		if ( ! $user_pass && $registering_new_user) {
526 526
 			// The password is invalid
527
-			give_set_error( 'password_empty', __( 'Enter a password', 'give' ) );
528
-		} else if ( ! $pass_confirm && $registering_new_user ) {
527
+			give_set_error('password_empty', __('Enter a password', 'give'));
528
+		} else if ( ! $pass_confirm && $registering_new_user) {
529 529
 			// Confirmation password is invalid
530
-			give_set_error( 'confirmation_empty', __( 'Enter the password confirmation', 'give' ) );
530
+			give_set_error('confirmation_empty', __('Enter the password confirmation', 'give'));
531 531
 		}
532 532
 	}
533 533
 
@@ -546,34 +546,34 @@  discard block
 block discarded – undo
546 546
 	// Start an array to collect valid user data
547 547
 	$valid_user_data = array(
548 548
 		// Assume there will be errors
549
-		'user_id' => - 1
549
+		'user_id' => -1
550 550
 	);
551 551
 
552 552
 	// Username
553
-	if ( ! isset( $_POST['give_user_login'] ) || $_POST['give_user_login'] == '' ) {
554
-		give_set_error( 'must_log_in', __( 'You must login or register to complete your donation', 'give' ) );
553
+	if ( ! isset($_POST['give_user_login']) || $_POST['give_user_login'] == '') {
554
+		give_set_error('must_log_in', __('You must login or register to complete your donation', 'give'));
555 555
 
556 556
 		return $valid_user_data;
557 557
 	}
558 558
 
559 559
 	// Get the user by login
560
-	$user_data = get_user_by( 'login', strip_tags( $_POST['give_user_login'] ) );
560
+	$user_data = get_user_by('login', strip_tags($_POST['give_user_login']));
561 561
 
562 562
 	// Check if user exists
563
-	if ( $user_data ) {
563
+	if ($user_data) {
564 564
 		// Get password
565
-		$user_pass = isset( $_POST['give_user_pass'] ) ? $_POST['give_user_pass'] : false;
565
+		$user_pass = isset($_POST['give_user_pass']) ? $_POST['give_user_pass'] : false;
566 566
 
567 567
 		// Check user_pass
568
-		if ( $user_pass ) {
568
+		if ($user_pass) {
569 569
 			// Check if password is valid
570
-			if ( ! wp_check_password( $user_pass, $user_data->user_pass, $user_data->ID ) ) {
570
+			if ( ! wp_check_password($user_pass, $user_data->user_pass, $user_data->ID)) {
571 571
 				// Incorrect password
572 572
 				give_set_error(
573 573
 					'password_incorrect',
574 574
 					sprintf(
575
-						__( 'The password you entered is incorrect. %sReset Password%s', 'give' ),
576
-						'<a href="' . wp_lostpassword_url( "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]" ) . '" title="' . __( 'Lost Password', 'give' ) . '">',
575
+						__('The password you entered is incorrect. %sReset Password%s', 'give'),
576
+						'<a href="'.wp_lostpassword_url("http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]").'" title="'.__('Lost Password', 'give').'">',
577 577
 						'</a>'
578 578
 					)
579 579
 				);
@@ -591,11 +591,11 @@  discard block
 block discarded – undo
591 591
 			}
592 592
 		} else {
593 593
 			// Empty password
594
-			give_set_error( 'password_empty', __( 'Enter a password', 'give' ) );
594
+			give_set_error('password_empty', __('Enter a password', 'give'));
595 595
 		}
596 596
 	} else {
597 597
 		// no username
598
-		give_set_error( 'username_incorrect', __( 'The username you entered does not exist', 'give' ) );
598
+		give_set_error('username_incorrect', __('The username you entered does not exist', 'give'));
599 599
 	}
600 600
 
601 601
 	return $valid_user_data;
@@ -610,7 +610,7 @@  discard block
 block discarded – undo
610 610
  */
611 611
 function give_purchase_form_validate_guest_user() {
612 612
 
613
-	$form_id = isset( $_POST['give-form-id'] ) ? $_POST['give-form-id'] : '';
613
+	$form_id = isset($_POST['give-form-id']) ? $_POST['give-form-id'] : '';
614 614
 
615 615
 	// Start an array to collect valid user data
616 616
 	$valid_user_data = array(
@@ -619,32 +619,32 @@  discard block
 block discarded – undo
619 619
 	);
620 620
 
621 621
 	// Show error message if user must be logged in
622
-	if ( give_logged_in_only() ) {
623
-		give_set_error( 'logged_in_only', __( 'You must be logged into to donate', 'give' ) );
622
+	if (give_logged_in_only()) {
623
+		give_set_error('logged_in_only', __('You must be logged into to donate', 'give'));
624 624
 	}
625 625
 
626 626
 	// Get the guest email
627
-	$guest_email = isset( $_POST['give_email'] ) ? $_POST['give_email'] : false;
627
+	$guest_email = isset($_POST['give_email']) ? $_POST['give_email'] : false;
628 628
 
629 629
 	// Check email
630
-	if ( $guest_email && strlen( $guest_email ) > 0 ) {
630
+	if ($guest_email && strlen($guest_email) > 0) {
631 631
 		// Validate email
632
-		if ( ! is_email( $guest_email ) ) {
632
+		if ( ! is_email($guest_email)) {
633 633
 			// Invalid email
634
-			give_set_error( 'email_invalid', __( 'Invalid email', 'give' ) );
634
+			give_set_error('email_invalid', __('Invalid email', 'give'));
635 635
 		} else {
636 636
 			// All is good to go
637 637
 			$valid_user_data['user_email'] = $guest_email;
638 638
 		}
639 639
 	} else {
640 640
 		// No email
641
-		give_set_error( 'email_empty', __( 'Enter an email', 'give' ) );
641
+		give_set_error('email_empty', __('Enter an email', 'give'));
642 642
 	}
643 643
 
644 644
 	// Loop through required fields and show error messages
645
-	foreach ( give_purchase_form_required_fields( $form_id ) as $field_name => $value ) {
646
-		if ( in_array( $value, give_purchase_form_required_fields( $form_id ) ) && empty( $_POST[ $field_name ] ) ) {
647
-			give_set_error( $value['error_id'], $value['error_message'] );
645
+	foreach (give_purchase_form_required_fields($form_id) as $field_name => $value) {
646
+		if (in_array($value, give_purchase_form_required_fields($form_id)) && empty($_POST[$field_name])) {
647
+			give_set_error($value['error_id'], $value['error_message']);
648 648
 		}
649 649
 	}
650 650
 
@@ -660,42 +660,42 @@  discard block
 block discarded – undo
660 660
  * @since   1.0
661 661
  * @return  integer
662 662
  */
663
-function give_register_and_login_new_user( $user_data = array() ) {
663
+function give_register_and_login_new_user($user_data = array()) {
664 664
 	// Verify the array
665
-	if ( empty( $user_data ) ) {
666
-		return - 1;
665
+	if (empty($user_data)) {
666
+		return -1;
667 667
 	}
668 668
 
669
-	if ( give_get_errors() ) {
670
-		return - 1;
669
+	if (give_get_errors()) {
670
+		return -1;
671 671
 	}
672 672
 
673
-	$user_args = apply_filters( 'give_insert_user_args', array(
674
-		'user_login'      => isset( $user_data['user_login'] ) ? $user_data['user_login'] : '',
675
-		'user_pass'       => isset( $user_data['user_pass'] ) ? $user_data['user_pass'] : '',
676
-		'user_email'      => isset( $user_data['user_email'] ) ? $user_data['user_email'] : '',
677
-		'first_name'      => isset( $user_data['user_first'] ) ? $user_data['user_first'] : '',
678
-		'last_name'       => isset( $user_data['user_last'] ) ? $user_data['user_last'] : '',
679
-		'user_registered' => date( 'Y-m-d H:i:s' ),
680
-		'role'            => get_option( 'default_role' )
681
-	), $user_data );
673
+	$user_args = apply_filters('give_insert_user_args', array(
674
+		'user_login'      => isset($user_data['user_login']) ? $user_data['user_login'] : '',
675
+		'user_pass'       => isset($user_data['user_pass']) ? $user_data['user_pass'] : '',
676
+		'user_email'      => isset($user_data['user_email']) ? $user_data['user_email'] : '',
677
+		'first_name'      => isset($user_data['user_first']) ? $user_data['user_first'] : '',
678
+		'last_name'       => isset($user_data['user_last']) ? $user_data['user_last'] : '',
679
+		'user_registered' => date('Y-m-d H:i:s'),
680
+		'role'            => get_option('default_role')
681
+	), $user_data);
682 682
 
683 683
 	// Insert new user
684
-	$user_id = wp_insert_user( $user_args );
684
+	$user_id = wp_insert_user($user_args);
685 685
 
686 686
 	// Validate inserted user
687
-	if ( is_wp_error( $user_id ) ) {
688
-		return - 1;
687
+	if (is_wp_error($user_id)) {
688
+		return -1;
689 689
 	}
690 690
 
691 691
 	// Allow themes and plugins to filter the user data
692
-	$user_data = apply_filters( 'give_insert_user_data', $user_data, $user_args );
692
+	$user_data = apply_filters('give_insert_user_data', $user_data, $user_args);
693 693
 
694 694
 	// Allow themes and plugins to hook
695
-	do_action( 'give_insert_user', $user_id, $user_data );
695
+	do_action('give_insert_user', $user_id, $user_data);
696 696
 
697 697
 	// Login new user
698
-	give_log_user_in( $user_id, $user_data['user_login'], $user_data['user_pass'] );
698
+	give_log_user_in($user_id, $user_data['user_login'], $user_data['user_pass']);
699 699
 
700 700
 	// Return user id
701 701
 	return $user_id;
@@ -710,26 +710,26 @@  discard block
 block discarded – undo
710 710
  * @since   1.0
711 711
  * @return  array
712 712
  */
713
-function give_get_purchase_form_user( $valid_data = array() ) {
713
+function give_get_purchase_form_user($valid_data = array()) {
714 714
 	// Initialize user
715 715
 	$user    = false;
716
-	$is_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX;
716
+	$is_ajax = defined('DOING_AJAX') && DOING_AJAX;
717 717
 
718
-	if ( $is_ajax ) {
718
+	if ($is_ajax) {
719 719
 		// Do not create or login the user during the ajax submission (check for errors only)
720 720
 		return true;
721
-	} else if ( is_user_logged_in() ) {
721
+	} else if (is_user_logged_in()) {
722 722
 		// Set the valid user as the logged in collected data
723 723
 		$user = $valid_data['logged_in_user'];
724
-	} else if ( $valid_data['need_new_user'] === true || $valid_data['need_user_login'] === true ) {
724
+	} else if ($valid_data['need_new_user'] === true || $valid_data['need_user_login'] === true) {
725 725
 		// New user registration
726
-		if ( $valid_data['need_new_user'] === true ) {
726
+		if ($valid_data['need_new_user'] === true) {
727 727
 			// Set user
728 728
 			$user = $valid_data['new_user_data'];
729 729
 			// Register and login new user
730
-			$user['user_id'] = give_register_and_login_new_user( $user );
730
+			$user['user_id'] = give_register_and_login_new_user($user);
731 731
 			// User login
732
-		} else if ( $valid_data['need_user_login'] === true && ! $is_ajax ) {
732
+		} else if ($valid_data['need_user_login'] === true && ! $is_ajax) {
733 733
 
734 734
 			/*
735 735
 			 * The login form is now processed in the give_process_purchase_login() function.
@@ -744,48 +744,48 @@  discard block
 block discarded – undo
744 744
 			// Set user
745 745
 			$user = $valid_data['login_user_data'];
746 746
 			// Login user
747
-			give_log_user_in( $user['user_id'], $user['user_login'], $user['user_pass'] );
747
+			give_log_user_in($user['user_id'], $user['user_login'], $user['user_pass']);
748 748
 		}
749 749
 	}
750 750
 
751 751
 	// Check guest checkout
752
-	if ( false === $user && false === give_no_guest_checkout( $_POST['give-form-id'] ) ) {
752
+	if (false === $user && false === give_no_guest_checkout($_POST['give-form-id'])) {
753 753
 		// Set user
754 754
 		$user = $valid_data['guest_user_data'];
755 755
 	}
756 756
 
757 757
 	// Verify we have an user
758
-	if ( false === $user || empty( $user ) ) {
758
+	if (false === $user || empty($user)) {
759 759
 		// Return false
760 760
 		return false;
761 761
 	}
762 762
 
763 763
 	// Get user first name
764
-	if ( ! isset( $user['user_first'] ) || strlen( trim( $user['user_first'] ) ) < 1 ) {
765
-		$user['user_first'] = isset( $_POST["give_first"] ) ? strip_tags( trim( $_POST["give_first"] ) ) : '';
764
+	if ( ! isset($user['user_first']) || strlen(trim($user['user_first'])) < 1) {
765
+		$user['user_first'] = isset($_POST["give_first"]) ? strip_tags(trim($_POST["give_first"])) : '';
766 766
 	}
767 767
 
768 768
 	// Get user last name
769
-	if ( ! isset( $user['user_last'] ) || strlen( trim( $user['user_last'] ) ) < 1 ) {
770
-		$user['user_last'] = isset( $_POST["give_last"] ) ? strip_tags( trim( $_POST["give_last"] ) ) : '';
769
+	if ( ! isset($user['user_last']) || strlen(trim($user['user_last'])) < 1) {
770
+		$user['user_last'] = isset($_POST["give_last"]) ? strip_tags(trim($_POST["give_last"])) : '';
771 771
 	}
772 772
 
773 773
 	// Get the user's billing address details
774 774
 	$user['address']            = array();
775
-	$user['address']['line1']   = ! empty( $_POST['card_address'] ) ? sanitize_text_field( $_POST['card_address'] ) : false;
776
-	$user['address']['line2']   = ! empty( $_POST['card_address_2'] ) ? sanitize_text_field( $_POST['card_address_2'] ) : false;
777
-	$user['address']['city']    = ! empty( $_POST['card_city'] ) ? sanitize_text_field( $_POST['card_city'] ) : false;
778
-	$user['address']['state']   = ! empty( $_POST['card_state'] ) ? sanitize_text_field( $_POST['card_state'] ) : false;
779
-	$user['address']['country'] = ! empty( $_POST['billing_country'] ) ? sanitize_text_field( $_POST['billing_country'] ) : false;
780
-	$user['address']['zip']     = ! empty( $_POST['card_zip'] ) ? sanitize_text_field( $_POST['card_zip'] ) : false;
781
-
782
-	if ( empty( $user['address']['country'] ) ) {
775
+	$user['address']['line1']   = ! empty($_POST['card_address']) ? sanitize_text_field($_POST['card_address']) : false;
776
+	$user['address']['line2']   = ! empty($_POST['card_address_2']) ? sanitize_text_field($_POST['card_address_2']) : false;
777
+	$user['address']['city']    = ! empty($_POST['card_city']) ? sanitize_text_field($_POST['card_city']) : false;
778
+	$user['address']['state']   = ! empty($_POST['card_state']) ? sanitize_text_field($_POST['card_state']) : false;
779
+	$user['address']['country'] = ! empty($_POST['billing_country']) ? sanitize_text_field($_POST['billing_country']) : false;
780
+	$user['address']['zip']     = ! empty($_POST['card_zip']) ? sanitize_text_field($_POST['card_zip']) : false;
781
+
782
+	if (empty($user['address']['country'])) {
783 783
 		$user['address'] = false;
784 784
 	} // Country will always be set if address fields are present
785 785
 
786
-	if ( ! empty( $user['user_id'] ) && $user['user_id'] > 0 && ! empty( $user['address'] ) ) {
786
+	if ( ! empty($user['user_id']) && $user['user_id'] > 0 && ! empty($user['address'])) {
787 787
 		// Store the address in the user's meta so the cart can be pre-populated with it on return purchases
788
-		update_user_meta( $user['user_id'], '_give_user_address', $user['address'] );
788
+		update_user_meta($user['user_id'], '_give_user_address', $user['address']);
789 789
 	}
790 790
 
791 791
 	// Return valid user
@@ -804,16 +804,16 @@  discard block
 block discarded – undo
804 804
 	$card_data = give_get_purchase_cc_info();
805 805
 
806 806
 	// Validate the card zip
807
-	if ( ! empty( $card_data['card_zip'] ) ) {
808
-		if ( ! give_purchase_form_validate_cc_zip( $card_data['card_zip'], $card_data['card_country'] ) ) {
809
-			give_set_error( 'invalid_cc_zip', __( 'The zip / postal code you entered for your billing address is invalid', 'give' ) );
807
+	if ( ! empty($card_data['card_zip'])) {
808
+		if ( ! give_purchase_form_validate_cc_zip($card_data['card_zip'], $card_data['card_country'])) {
809
+			give_set_error('invalid_cc_zip', __('The zip / postal code you entered for your billing address is invalid', 'give'));
810 810
 		}
811 811
 	}
812 812
 
813 813
 	//Ensure no spaces
814
-	if ( ! empty( $card_data['card_number'] ) ) {
815
-		$card_data['card_number'] = str_replace( '+', '', $card_data['card_number'] ); //no "+" signs
816
-		$card_data['card_number'] = str_replace( ' ', '', $card_data['card_number'] ); // No spaces
814
+	if ( ! empty($card_data['card_number'])) {
815
+		$card_data['card_number'] = str_replace('+', '', $card_data['card_number']); //no "+" signs
816
+		$card_data['card_number'] = str_replace(' ', '', $card_data['card_number']); // No spaces
817 817
 	}
818 818
 
819 819
 	// This should validate card numbers at some point too
@@ -829,17 +829,17 @@  discard block
 block discarded – undo
829 829
  */
830 830
 function give_get_purchase_cc_info() {
831 831
 	$cc_info                   = array();
832
-	$cc_info['card_name']      = isset( $_POST['card_name'] ) ? sanitize_text_field( $_POST['card_name'] ) : '';
833
-	$cc_info['card_number']    = isset( $_POST['card_number'] ) ? sanitize_text_field( $_POST['card_number'] ) : '';
834
-	$cc_info['card_cvc']       = isset( $_POST['card_cvc'] ) ? sanitize_text_field( $_POST['card_cvc'] ) : '';
835
-	$cc_info['card_exp_month'] = isset( $_POST['card_exp_month'] ) ? sanitize_text_field( $_POST['card_exp_month'] ) : '';
836
-	$cc_info['card_exp_year']  = isset( $_POST['card_exp_year'] ) ? sanitize_text_field( $_POST['card_exp_year'] ) : '';
837
-	$cc_info['card_address']   = isset( $_POST['card_address'] ) ? sanitize_text_field( $_POST['card_address'] ) : '';
838
-	$cc_info['card_address_2'] = isset( $_POST['card_address_2'] ) ? sanitize_text_field( $_POST['card_address_2'] ) : '';
839
-	$cc_info['card_city']      = isset( $_POST['card_city'] ) ? sanitize_text_field( $_POST['card_city'] ) : '';
840
-	$cc_info['card_state']     = isset( $_POST['card_state'] ) ? sanitize_text_field( $_POST['card_state'] ) : '';
841
-	$cc_info['card_country']   = isset( $_POST['billing_country'] ) ? sanitize_text_field( $_POST['billing_country'] ) : '';
842
-	$cc_info['card_zip']       = isset( $_POST['card_zip'] ) ? sanitize_text_field( $_POST['card_zip'] ) : '';
832
+	$cc_info['card_name']      = isset($_POST['card_name']) ? sanitize_text_field($_POST['card_name']) : '';
833
+	$cc_info['card_number']    = isset($_POST['card_number']) ? sanitize_text_field($_POST['card_number']) : '';
834
+	$cc_info['card_cvc']       = isset($_POST['card_cvc']) ? sanitize_text_field($_POST['card_cvc']) : '';
835
+	$cc_info['card_exp_month'] = isset($_POST['card_exp_month']) ? sanitize_text_field($_POST['card_exp_month']) : '';
836
+	$cc_info['card_exp_year']  = isset($_POST['card_exp_year']) ? sanitize_text_field($_POST['card_exp_year']) : '';
837
+	$cc_info['card_address']   = isset($_POST['card_address']) ? sanitize_text_field($_POST['card_address']) : '';
838
+	$cc_info['card_address_2'] = isset($_POST['card_address_2']) ? sanitize_text_field($_POST['card_address_2']) : '';
839
+	$cc_info['card_city']      = isset($_POST['card_city']) ? sanitize_text_field($_POST['card_city']) : '';
840
+	$cc_info['card_state']     = isset($_POST['card_state']) ? sanitize_text_field($_POST['card_state']) : '';
841
+	$cc_info['card_country']   = isset($_POST['billing_country']) ? sanitize_text_field($_POST['billing_country']) : '';
842
+	$cc_info['card_zip']       = isset($_POST['card_zip']) ? sanitize_text_field($_POST['card_zip']) : '';
843 843
 
844 844
 	// Return cc info
845 845
 	return $cc_info;
@@ -855,14 +855,14 @@  discard block
 block discarded – undo
855 855
  *
856 856
  * @return bool|mixed|void
857 857
  */
858
-function give_purchase_form_validate_cc_zip( $zip = 0, $country_code = '' ) {
858
+function give_purchase_form_validate_cc_zip($zip = 0, $country_code = '') {
859 859
 	$ret = false;
860 860
 
861
-	if ( empty( $zip ) || empty( $country_code ) ) {
861
+	if (empty($zip) || empty($country_code)) {
862 862
 		return $ret;
863 863
 	}
864 864
 
865
-	$country_code = strtoupper( $country_code );
865
+	$country_code = strtoupper($country_code);
866 866
 
867 867
 	$zip_regex = array(
868 868
 		"AD" => "AD\d{3}",
@@ -1022,11 +1022,11 @@  discard block
 block discarded – undo
1022 1022
 		"ZM" => "\d{5}"
1023 1023
 	);
1024 1024
 
1025
-	if ( ! isset ( $zip_regex[ $country_code ] ) || preg_match( "/" . $zip_regex[ $country_code ] . "/i", $zip ) ) {
1025
+	if ( ! isset ($zip_regex[$country_code]) || preg_match("/".$zip_regex[$country_code]."/i", $zip)) {
1026 1026
 		$ret = true;
1027 1027
 	}
1028 1028
 
1029
-	return apply_filters( 'give_is_zip_valid', $ret, $zip, $country_code );
1029
+	return apply_filters('give_is_zip_valid', $ret, $zip, $country_code);
1030 1030
 }
1031 1031
 
1032 1032
 
@@ -1036,48 +1036,48 @@  discard block
 block discarded – undo
1036 1036
  * @since       1.0
1037 1037
  * @return      void
1038 1038
  */
1039
-function give_check_purchase_email( $valid_data, $posted ) {
1039
+function give_check_purchase_email($valid_data, $posted) {
1040 1040
 	$is_banned = false;
1041 1041
 	$banned    = give_get_banned_emails();
1042 1042
 
1043
-	if ( empty( $banned ) ) {
1043
+	if (empty($banned)) {
1044 1044
 		return;
1045 1045
 	}
1046 1046
 
1047
-	if ( is_user_logged_in() ) {
1047
+	if (is_user_logged_in()) {
1048 1048
 
1049 1049
 		// The user is logged in, check that their account email is not banned
1050
-		$user_data = get_userdata( get_current_user_id() );
1051
-		if ( give_is_email_banned( $user_data->user_email ) ) {
1050
+		$user_data = get_userdata(get_current_user_id());
1051
+		if (give_is_email_banned($user_data->user_email)) {
1052 1052
 
1053 1053
 			$is_banned = true;
1054 1054
 		}
1055 1055
 
1056
-		if ( give_is_email_banned( $posted['give_email'] ) ) {
1056
+		if (give_is_email_banned($posted['give_email'])) {
1057 1057
 			$is_banned = true;
1058 1058
 		}
1059 1059
 
1060
-	} elseif ( isset( $posted['give-purchase-var'] ) && $posted['give-purchase-var'] == 'needs-to-login' ) {
1060
+	} elseif (isset($posted['give-purchase-var']) && $posted['give-purchase-var'] == 'needs-to-login') {
1061 1061
 
1062 1062
 		// The user is logging in, check that their email is not banned
1063
-		$user_data = get_user_by( 'login', $posted['give_user_login'] );
1064
-		if ( $user_data && give_is_email_banned( $user_data->user_email ) ) {
1063
+		$user_data = get_user_by('login', $posted['give_user_login']);
1064
+		if ($user_data && give_is_email_banned($user_data->user_email)) {
1065 1065
 			$is_banned = true;
1066 1066
 		}
1067 1067
 
1068 1068
 	} else {
1069 1069
 
1070 1070
 		// Guest purchase, check that the email is not banned
1071
-		if ( give_is_email_banned( $posted['give_email'] ) ) {
1071
+		if (give_is_email_banned($posted['give_email'])) {
1072 1072
 			$is_banned = true;
1073 1073
 		}
1074 1074
 
1075 1075
 	}
1076 1076
 
1077
-	if ( $is_banned ) {
1077
+	if ($is_banned) {
1078 1078
 		// Set an error and give the donor a general error (don't alert them that they were banned)
1079
-		give_set_error( 'email_banned', __( 'An internal error has occurred, please try again or contact support.', 'give' ) );
1079
+		give_set_error('email_banned', __('An internal error has occurred, please try again or contact support.', 'give'));
1080 1080
 	}
1081 1081
 }
1082 1082
 
1083
-add_action( 'give_checkout_error_checks', 'give_check_purchase_email', 10, 2 );
1083
+add_action('give_checkout_error_checks', 'give_check_purchase_email', 10, 2);
Please login to merge, or discard this patch.
includes/class-give-email-access.php 1 patch
Spacing   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  * @since       1.4
11 11
  */
12 12
 
13
-defined( 'ABSPATH' ) or exit;
13
+defined('ABSPATH') or exit;
14 14
 
15 15
 /**
16 16
  * Class Give_Email_Access
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	function __construct() {
33 33
 
34 34
 		// get it started
35
-		add_action( 'init', array( $this, 'init' ) );
35
+		add_action('init', array($this, 'init'));
36 36
 	}
37 37
 
38 38
 
@@ -41,31 +41,31 @@  discard block
 block discarded – undo
41 41
 	 */
42 42
 	function init() {
43 43
 
44
-		$is_enabled = give_get_option( 'email_access' );
44
+		$is_enabled = give_get_option('email_access');
45 45
 
46 46
 		//Non-logged in users only
47
-		if ( is_user_logged_in() || $is_enabled !== 'on' || is_admin() ) {
47
+		if (is_user_logged_in() || $is_enabled !== 'on' || is_admin()) {
48 48
 			return;
49 49
 		}
50 50
 
51 51
 		//Are db columns setup?
52
-		$is_setup = give_get_option( 'email_access_installed' );
53
-		if ( empty( $is_setup ) ) {
52
+		$is_setup = give_get_option('email_access_installed');
53
+		if (empty($is_setup)) {
54 54
 			$this->create_columns();
55 55
 		}
56 56
 
57 57
 		// Timeouts
58
-		$this->verify_throttle  = apply_filters( 'give_nl_verify_throttle', 300 );
59
-		$this->token_expiration = apply_filters( 'give_nl_token_expiration', 7200 );
58
+		$this->verify_throttle  = apply_filters('give_nl_verify_throttle', 300);
59
+		$this->token_expiration = apply_filters('give_nl_token_expiration', 7200);
60 60
 
61 61
 		// Setup login
62 62
 		$this->check_for_token();
63 63
 
64
-		if ( $this->token_exists ) {
65
-			add_filter( 'give_can_view_receipt', '__return_true' );
66
-			add_filter( 'give_user_pending_verification', '__return_false' );
67
-			add_filter( 'give_get_success_page_uri', array( $this, 'give_success_page_uri' ) );
68
-			add_filter( 'give_get_users_purchases_args', array( $this, 'users_purchases_args' ) );
64
+		if ($this->token_exists) {
65
+			add_filter('give_can_view_receipt', '__return_true');
66
+			add_filter('give_user_pending_verification', '__return_false');
67
+			add_filter('give_get_success_page_uri', array($this, 'give_success_page_uri'));
68
+			add_filter('give_get_users_purchases_args', array($this, 'users_purchases_args'));
69 69
 		}
70 70
 	}
71 71
 
@@ -76,24 +76,24 @@  discard block
 block discarded – undo
76 76
 	 *
77 77
 	 * @return bool
78 78
 	 */
79
-	function can_send_email( $customer_id ) {
79
+	function can_send_email($customer_id) {
80 80
 		global $wpdb;
81 81
 
82 82
 		// Prevent multiple emails within X minutes
83
-		$throttle = date( 'Y-m-d H:i:s', time() - $this->verify_throttle );
83
+		$throttle = date('Y-m-d H:i:s', time() - $this->verify_throttle);
84 84
 
85 85
 		// Does a user row exist?
86 86
 		$exists = (int) $wpdb->get_var(
87
-			$wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id )
87
+			$wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id)
88 88
 		);
89 89
 
90
-		if ( 0 < $exists ) {
90
+		if (0 < $exists) {
91 91
 			$row_id = (int) $wpdb->get_var(
92
-				$wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle )
92
+				$wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle)
93 93
 			);
94 94
 
95
-			if ( $row_id < 1 ) {
96
-				give_set_error( 'give_email_access_attempts_exhausted', __( 'Please wait a few minutes before requesting a new email access link.', 'give' ) );
95
+			if ($row_id < 1) {
96
+				give_set_error('give_email_access_attempts_exhausted', __('Please wait a few minutes before requesting a new email access link.', 'give'));
97 97
 
98 98
 				return false;
99 99
 			}
@@ -109,38 +109,38 @@  discard block
 block discarded – undo
109 109
 	 * @param $customer_id
110 110
 	 * @param $email
111 111
 	 */
112
-	function send_email( $customer_id, $email ) {
112
+	function send_email($customer_id, $email) {
113 113
 
114
-		$verify_key = wp_generate_password( 20, false );
114
+		$verify_key = wp_generate_password(20, false);
115 115
 
116 116
 		// Generate a new verify key
117
-		$this->set_verify_key( $customer_id, $email, $verify_key );
117
+		$this->set_verify_key($customer_id, $email, $verify_key);
118 118
 
119 119
 		// Get the purchase history URL
120
-		$page_id = give_get_option( 'history_page' );
120
+		$page_id = give_get_option('history_page');
121 121
 
122
-		$access_url = add_query_arg( array(
122
+		$access_url = add_query_arg(array(
123 123
 			'give_nl' => $verify_key,
124
-		), get_permalink( $page_id ) );
124
+		), get_permalink($page_id));
125 125
 
126 126
 		//Nice subject and message
127
-		$subject = apply_filters( 'give_email_access_token_subject', sprintf( __( 'Your Access Link to %1$s', 'give' ), get_bloginfo( 'name' ) ) );
127
+		$subject = apply_filters('give_email_access_token_subject', sprintf(__('Your Access Link to %1$s', 'give'), get_bloginfo('name')));
128 128
 
129
-		$message = __( 'You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give' ) . "\n\n";
129
+		$message = __('You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give')."\n\n";
130 130
 
131
-		$message .= '<a href="' . esc_url( $access_url ) . '" target="_blank">' . __( 'Access My Donation Details', 'give' ) . ' &raquo;</a>';
131
+		$message .= '<a href="'.esc_url($access_url).'" target="_blank">'.__('Access My Donation Details', 'give').' &raquo;</a>';
132 132
 
133 133
 		$message .= "\n\n";
134 134
 		$message .= "\n\n";
135
-		$message .= __( 'Sincerely,', 'give' );
136
-		$message .= "\n" . get_bloginfo( 'name' ) . "\n";
135
+		$message .= __('Sincerely,', 'give');
136
+		$message .= "\n".get_bloginfo('name')."\n";
137 137
 
138
-		$message = apply_filters( 'give_email_access_token_message', $message );
138
+		$message = apply_filters('give_email_access_token_message', $message);
139 139
 
140 140
 
141 141
 		// Send the email
142
-		Give()->emails->__set( 'heading', apply_filters( 'give_email_access_token_heading', __( 'Your Access Link', 'give' ) ) );
143
-		Give()->emails->send( $email, $subject, $message );
142
+		Give()->emails->__set('heading', apply_filters('give_email_access_token_heading', __('Your Access Link', 'give')));
143
+		Give()->emails->send($email, $subject, $message);
144 144
 
145 145
 	}
146 146
 
@@ -150,23 +150,23 @@  discard block
 block discarded – undo
150 150
 	 */
151 151
 	function check_for_token() {
152 152
 
153
-		$token = isset( $_GET['give_nl'] ) ? $_GET['give_nl'] : '';
153
+		$token = isset($_GET['give_nl']) ? $_GET['give_nl'] : '';
154 154
 
155 155
 		// Check for cookie
156
-		if ( empty( $token ) ) {
157
-			$token = isset( $_COOKIE['give_nl'] ) ? $_COOKIE['give_nl'] : '';
156
+		if (empty($token)) {
157
+			$token = isset($_COOKIE['give_nl']) ? $_COOKIE['give_nl'] : '';
158 158
 		}
159 159
 
160
-		if ( ! empty( $token ) ) {
161
-			if ( ! $this->is_valid_token( $token ) ) {
162
-				if ( ! $this->is_valid_verify_key( $token ) ) {
160
+		if ( ! empty($token)) {
161
+			if ( ! $this->is_valid_token($token)) {
162
+				if ( ! $this->is_valid_verify_key($token)) {
163 163
 					return;
164 164
 				}
165 165
 			}
166 166
 
167 167
 			$this->token_exists = true;
168 168
 			// Set cookie
169
-			setcookie( 'give_nl', $token );
169
+			setcookie('give_nl', $token);
170 170
 		}
171 171
 	}
172 172
 
@@ -177,18 +177,18 @@  discard block
 block discarded – undo
177 177
 	 *
178 178
 	 * @return bool
179 179
 	 */
180
-	function is_valid_token( $token ) {
180
+	function is_valid_token($token) {
181 181
 
182 182
 		global $wpdb;
183 183
 
184 184
 		// Make sure token isn't expired
185
-		$expires = date( 'Y-m-d H:i:s', time() - $this->token_expiration );
185
+		$expires = date('Y-m-d H:i:s', time() - $this->token_expiration);
186 186
 
187 187
 		$email = $wpdb->get_var(
188
-			$wpdb->prepare( "SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires )
188
+			$wpdb->prepare("SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires)
189 189
 		);
190 190
 
191
-		if ( ! empty( $email ) ) {
191
+		if ( ! empty($email)) {
192 192
 			$this->token_email = $email;
193 193
 			$this->token       = $token;
194 194
 
@@ -196,8 +196,8 @@  discard block
 block discarded – undo
196 196
 		}
197 197
 
198 198
 		//Set error only if email access form isn't being submitted
199
-		if ( ! isset( $_POST['give_email'] ) && ! isset( $_POST['_wpnonce'] ) ) {
200
-			give_set_error( 'give_email_token_expired', apply_filters( 'give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give' ) );
199
+		if ( ! isset($_POST['give_email']) && ! isset($_POST['_wpnonce'])) {
200
+			give_set_error('give_email_token_expired', apply_filters('give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give'));
201 201
 		}
202 202
 
203 203
 
@@ -212,25 +212,25 @@  discard block
 block discarded – undo
212 212
 	 * @param $email
213 213
 	 * @param $verify_key
214 214
 	 */
215
-	function set_verify_key( $customer_id, $email, $verify_key ) {
215
+	function set_verify_key($customer_id, $email, $verify_key) {
216 216
 		global $wpdb;
217 217
 
218
-		$now = date( 'Y-m-d H:i:s' );
218
+		$now = date('Y-m-d H:i:s');
219 219
 
220 220
 		// Insert or update?
221 221
 		$row_id = (int) $wpdb->get_var(
222
-			$wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id )
222
+			$wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id)
223 223
 		);
224 224
 
225 225
 		// Update
226
-		if ( ! empty( $row_id ) ) {
226
+		if ( ! empty($row_id)) {
227 227
 			$wpdb->query(
228
-				$wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id )
228
+				$wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id)
229 229
 			);
230 230
 		} // Insert
231 231
 		else {
232 232
 			$wpdb->query(
233
-				$wpdb->prepare( "INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now )
233
+				$wpdb->prepare("INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now)
234 234
 			);
235 235
 		}
236 236
 	}
@@ -238,20 +238,20 @@  discard block
 block discarded – undo
238 238
 	/**
239 239
 	 * Is this a valid verify key?
240 240
 	 */
241
-	function is_valid_verify_key( $token ) {
241
+	function is_valid_verify_key($token) {
242 242
 		global $wpdb;
243 243
 
244 244
 		// See if the verify_key exists
245 245
 		$row = $wpdb->get_row(
246
-			$wpdb->prepare( "SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token )
246
+			$wpdb->prepare("SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token)
247 247
 		);
248 248
 
249
-		$now = date( 'Y-m-d H:i:s' );
249
+		$now = date('Y-m-d H:i:s');
250 250
 
251 251
 		// Set token
252
-		if ( ! empty( $row ) ) {
252
+		if ( ! empty($row)) {
253 253
 			$wpdb->query(
254
-				$wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id )
254
+				$wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id)
255 255
 			);
256 256
 
257 257
 			$this->token_email = $row->email;
@@ -271,9 +271,9 @@  discard block
 block discarded – undo
271 271
 	 *
272 272
 	 * @return string
273 273
 	 */
274
-	function give_success_page_uri( $uri ) {
275
-		if ( $this->token_exists ) {
276
-			return add_query_arg( array( 'give_nl' => $this->token ), $uri );
274
+	function give_success_page_uri($uri) {
275
+		if ($this->token_exists) {
276
+			return add_query_arg(array('give_nl' => $this->token), $uri);
277 277
 		}
278 278
 	}
279 279
 
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 	 *
286 286
 	 * @return mixed
287 287
 	 */
288
-	function users_purchases_args( $args ) {
288
+	function users_purchases_args($args) {
289 289
 		$args['user'] = $this->token_email;
290 290
 
291 291
 		return $args;
@@ -302,11 +302,11 @@  discard block
 block discarded – undo
302 302
 		global $wpdb;
303 303
 
304 304
 		//Create columns in customers table
305
-		$query = $wpdb->query( "ALTER TABLE {$wpdb->prefix}give_customers ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`" );
305
+		$query = $wpdb->query("ALTER TABLE {$wpdb->prefix}give_customers ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`");
306 306
 
307 307
 		//Columns added properly
308
-		if ( $query ) {
309
-			give_update_option( 'email_access_installed', 1 );
308
+		if ($query) {
309
+			give_update_option('email_access_installed', 1);
310 310
 		}
311 311
 
312 312
 	}
Please login to merge, or discard this patch.
includes/emails/class-give-email-tags.php 1 patch
Spacing   +89 added lines, -89 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
  */
24 24
 
25 25
 // Exit if accessed directly
26
-if ( ! defined( 'ABSPATH' ) ) {
26
+if ( ! defined('ABSPATH')) {
27 27
 	exit;
28 28
 }
29 29
 
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
 	 * @param string $tag Email tag to be replace in email
52 52
 	 * @param callable $func Hook to run when email tag is found
53 53
 	 */
54
-	public function add( $tag, $description, $func ) {
55
-		if ( is_callable( $func ) ) {
56
-			$this->tags[ $tag ] = array(
54
+	public function add($tag, $description, $func) {
55
+		if (is_callable($func)) {
56
+			$this->tags[$tag] = array(
57 57
 				'tag'         => $tag,
58 58
 				'description' => $description,
59 59
 				'func'        => $func
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @param string $tag Email tag to remove hook from
70 70
 	 */
71
-	public function remove( $tag ) {
72
-		unset( $this->tags[ $tag ] );
71
+	public function remove($tag) {
72
+		unset($this->tags[$tag]);
73 73
 	}
74 74
 
75 75
 	/**
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
 	 *
82 82
 	 * @return bool
83 83
 	 */
84
-	public function email_tag_exists( $tag ) {
85
-		return array_key_exists( $tag, $this->tags );
84
+	public function email_tag_exists($tag) {
85
+		return array_key_exists($tag, $this->tags);
86 86
 	}
87 87
 
88 88
 	/**
@@ -106,16 +106,16 @@  discard block
 block discarded – undo
106 106
 	 *
107 107
 	 * @return string Content with email tags filtered out.
108 108
 	 */
109
-	public function do_tags( $content, $payment_id ) {
109
+	public function do_tags($content, $payment_id) {
110 110
 
111 111
 		// Check if there is atleast one tag added
112
-		if ( empty( $this->tags ) || ! is_array( $this->tags ) ) {
112
+		if (empty($this->tags) || ! is_array($this->tags)) {
113 113
 			return $content;
114 114
 		}
115 115
 
116 116
 		$this->payment_id = $payment_id;
117 117
 
118
-		$new_content = preg_replace_callback( "/{([A-z0-9\-\_]+)}/s", array( $this, 'do_tag' ), $content );
118
+		$new_content = preg_replace_callback("/{([A-z0-9\-\_]+)}/s", array($this, 'do_tag'), $content);
119 119
 
120 120
 		$this->payment_id = null;
121 121
 
@@ -131,17 +131,17 @@  discard block
 block discarded – undo
131 131
 	 *
132 132
 	 * @return mixed
133 133
 	 */
134
-	public function do_tag( $m ) {
134
+	public function do_tag($m) {
135 135
 
136 136
 		// Get tag
137 137
 		$tag = $m[1];
138 138
 
139 139
 		// Return tag if tag not set
140
-		if ( ! $this->email_tag_exists( $tag ) ) {
140
+		if ( ! $this->email_tag_exists($tag)) {
141 141
 			return $m[0];
142 142
 		}
143 143
 
144
-		return call_user_func( $this->tags[ $tag ]['func'], $this->payment_id, $tag );
144
+		return call_user_func($this->tags[$tag]['func'], $this->payment_id, $tag);
145 145
 	}
146 146
 
147 147
 }
@@ -155,8 +155,8 @@  discard block
 block discarded – undo
155 155
  * @param string $description Description of the email tag added
156 156
  * @param callable $func Hook to run when email tag is found
157 157
  */
158
-function give_add_email_tag( $tag, $description, $func ) {
159
-	Give()->email_tags->add( $tag, $description, $func );
158
+function give_add_email_tag($tag, $description, $func) {
159
+	Give()->email_tags->add($tag, $description, $func);
160 160
 }
161 161
 
162 162
 /**
@@ -166,8 +166,8 @@  discard block
 block discarded – undo
166 166
  *
167 167
  * @param string $tag Email tag to remove hook from
168 168
  */
169
-function give_remove_email_tag( $tag ) {
170
-	Give()->email_tags->remove( $tag );
169
+function give_remove_email_tag($tag) {
170
+	Give()->email_tags->remove($tag);
171 171
 }
172 172
 
173 173
 /**
@@ -179,8 +179,8 @@  discard block
 block discarded – undo
179 179
  *
180 180
  * @return bool
181 181
  */
182
-function give_email_tag_exists( $tag ) {
183
-	return Give()->email_tags->email_tag_exists( $tag );
182
+function give_email_tag_exists($tag) {
183
+	return Give()->email_tags->email_tag_exists($tag);
184 184
 }
185 185
 
186 186
 /**
@@ -209,13 +209,13 @@  discard block
 block discarded – undo
209 209
 	$email_tags = give_get_email_tags();
210 210
 
211 211
 	// Check
212
-	if ( count( $email_tags ) > 0 ) {
212
+	if (count($email_tags) > 0) {
213 213
 
214 214
 		// Loop
215
-		foreach ( $email_tags as $email_tag ) {
215
+		foreach ($email_tags as $email_tag) {
216 216
 
217 217
 			// Add email tag to list
218
-			$list .= '<code>{' . $email_tag['tag'] . '}</code> - ' . $email_tag['description'] . '<br/>';
218
+			$list .= '<code>{'.$email_tag['tag'].'}</code> - '.$email_tag['description'].'<br/>';
219 219
 
220 220
 		}
221 221
 
@@ -235,13 +235,13 @@  discard block
 block discarded – undo
235 235
  *
236 236
  * @return string Content with email tags filtered out.
237 237
  */
238
-function give_do_email_tags( $content, $payment_id ) {
238
+function give_do_email_tags($content, $payment_id) {
239 239
 
240 240
 	// Replace all tags
241
-	$content = Give()->email_tags->do_tags( $content, $payment_id );
241
+	$content = Give()->email_tags->do_tags($content, $payment_id);
242 242
 
243 243
 	// Maintaining backwards compatibility
244
-	$content = apply_filters( 'give_email_template_tags', $content, give_get_payment_meta( $payment_id ), $payment_id );
244
+	$content = apply_filters('give_email_template_tags', $content, give_get_payment_meta($payment_id), $payment_id);
245 245
 
246 246
 	// Return content
247 247
 	return $content;
@@ -253,10 +253,10 @@  discard block
 block discarded – undo
253 253
  * @since 1.0
254 254
  */
255 255
 function give_load_email_tags() {
256
-	do_action( 'give_add_email_tags' );
256
+	do_action('give_add_email_tags');
257 257
 }
258 258
 
259
-add_action( 'init', 'give_load_email_tags', - 999 );
259
+add_action('init', 'give_load_email_tags', - 999);
260 260
 
261 261
 /**
262 262
  * Add default Give email template tags
@@ -269,82 +269,82 @@  discard block
 block discarded – undo
269 269
 	$email_tags = array(
270 270
 		array(
271 271
 			'tag'         => 'donation',
272
-			'description' => __( 'The name of completed donation form', 'give' ),
272
+			'description' => __('The name of completed donation form', 'give'),
273 273
 			'function'    => 'give_email_tag_donation'
274 274
 		),
275 275
 		array(
276 276
 			'tag'         => 'name',
277
-			'description' => __( 'The donor\'s first name', 'give' ),
277
+			'description' => __('The donor\'s first name', 'give'),
278 278
 			'function'    => 'give_email_tag_first_name'
279 279
 		),
280 280
 		array(
281 281
 			'tag'         => 'fullname',
282
-			'description' => __( 'The donor\'s full name, first and last', 'give' ),
282
+			'description' => __('The donor\'s full name, first and last', 'give'),
283 283
 			'function'    => 'give_email_tag_fullname'
284 284
 		),
285 285
 		array(
286 286
 			'tag'         => 'username',
287
-			'description' => __( 'The donor\'s user name on the site, if they registered an account', 'give' ),
287
+			'description' => __('The donor\'s user name on the site, if they registered an account', 'give'),
288 288
 			'function'    => 'give_email_tag_username'
289 289
 		),
290 290
 		array(
291 291
 			'tag'         => 'user_email',
292
-			'description' => __( 'The donor\'s email address', 'give' ),
292
+			'description' => __('The donor\'s email address', 'give'),
293 293
 			'function'    => 'give_email_tag_user_email'
294 294
 		),
295 295
 		array(
296 296
 			'tag'         => 'billing_address',
297
-			'description' => __( 'The donor\'s billing address', 'give' ),
297
+			'description' => __('The donor\'s billing address', 'give'),
298 298
 			'function'    => 'give_email_tag_billing_address'
299 299
 		),
300 300
 		array(
301 301
 			'tag'         => 'date',
302
-			'description' => __( 'The date of the donation', 'give' ),
302
+			'description' => __('The date of the donation', 'give'),
303 303
 			'function'    => 'give_email_tag_date'
304 304
 		),
305 305
 		array(
306 306
 			'tag'         => 'price',
307
-			'description' => __( 'The total price of the donation', 'give' ),
307
+			'description' => __('The total price of the donation', 'give'),
308 308
 			'function'    => 'give_email_tag_price'
309 309
 		),
310 310
 		array(
311 311
 			'tag'         => 'payment_id',
312
-			'description' => __( 'The unique ID number for this donation', 'give' ),
312
+			'description' => __('The unique ID number for this donation', 'give'),
313 313
 			'function'    => 'give_email_tag_payment_id'
314 314
 		),
315 315
 		array(
316 316
 			'tag'         => 'receipt_id',
317
-			'description' => __( 'The unique ID number for this donation receipt', 'give' ),
317
+			'description' => __('The unique ID number for this donation receipt', 'give'),
318 318
 			'function'    => 'give_email_tag_receipt_id'
319 319
 		),
320 320
 		array(
321 321
 			'tag'         => 'payment_method',
322
-			'description' => __( 'The method of payment used for this donation', 'give' ),
322
+			'description' => __('The method of payment used for this donation', 'give'),
323 323
 			'function'    => 'give_email_tag_payment_method'
324 324
 		),
325 325
 		array(
326 326
 			'tag'         => 'sitename',
327
-			'description' => __( 'Your site name', 'give' ),
327
+			'description' => __('Your site name', 'give'),
328 328
 			'function'    => 'give_email_tag_sitename'
329 329
 		),
330 330
 		array(
331 331
 			'tag'         => 'receipt_link',
332
-			'description' => __( 'Adds a link so users can view their receipt directly on your website if they are unable to view it in the browser correctly.', 'give' ),
332
+			'description' => __('Adds a link so users can view their receipt directly on your website if they are unable to view it in the browser correctly.', 'give'),
333 333
 			'function'    => 'give_email_tag_receipt_link'
334 334
 		),
335 335
 	);
336 336
 
337 337
 	// Apply give_email_tags filter
338
-	$email_tags = apply_filters( 'give_email_tags', $email_tags );
338
+	$email_tags = apply_filters('give_email_tags', $email_tags);
339 339
 
340 340
 	// Add email tags
341
-	foreach ( $email_tags as $email_tag ) {
342
-		give_add_email_tag( $email_tag['tag'], $email_tag['description'], $email_tag['function'] );
341
+	foreach ($email_tags as $email_tag) {
342
+		give_add_email_tag($email_tag['tag'], $email_tag['description'], $email_tag['function']);
343 343
 	}
344 344
 
345 345
 }
346 346
 
347
-add_action( 'give_add_email_tags', 'give_setup_email_tags' );
347
+add_action('give_add_email_tags', 'give_setup_email_tags');
348 348
 
349 349
 
350 350
 /**
@@ -355,12 +355,12 @@  discard block
 block discarded – undo
355 355
  *
356 356
  * @return string name
357 357
  */
358
-function give_email_tag_first_name( $payment_id ) {
359
-	$payment_data = give_get_payment_meta( $payment_id );
360
-	if ( empty( $payment_data['user_info'] ) ) {
358
+function give_email_tag_first_name($payment_id) {
359
+	$payment_data = give_get_payment_meta($payment_id);
360
+	if (empty($payment_data['user_info'])) {
361 361
 		return '';
362 362
 	}
363
-	$email_name = give_get_email_names( $payment_data['user_info'] );
363
+	$email_name = give_get_email_names($payment_data['user_info']);
364 364
 
365 365
 	return $email_name['name'];
366 366
 }
@@ -373,12 +373,12 @@  discard block
 block discarded – undo
373 373
  *
374 374
  * @return string fullname
375 375
  */
376
-function give_email_tag_fullname( $payment_id ) {
377
-	$payment_data = give_get_payment_meta( $payment_id );
378
-	if ( empty( $payment_data['user_info'] ) ) {
376
+function give_email_tag_fullname($payment_id) {
377
+	$payment_data = give_get_payment_meta($payment_id);
378
+	if (empty($payment_data['user_info'])) {
379 379
 		return '';
380 380
 	}
381
-	$email_name = give_get_email_names( $payment_data['user_info'] );
381
+	$email_name = give_get_email_names($payment_data['user_info']);
382 382
 
383 383
 	return $email_name['fullname'];
384 384
 }
@@ -391,12 +391,12 @@  discard block
 block discarded – undo
391 391
  *
392 392
  * @return string username
393 393
  */
394
-function give_email_tag_username( $payment_id ) {
395
-	$payment_data = give_get_payment_meta( $payment_id );
396
-	if ( empty( $payment_data['user_info'] ) ) {
394
+function give_email_tag_username($payment_id) {
395
+	$payment_data = give_get_payment_meta($payment_id);
396
+	if (empty($payment_data['user_info'])) {
397 397
 		return '';
398 398
 	}
399
-	$email_name = give_get_email_names( $payment_data['user_info'] );
399
+	$email_name = give_get_email_names($payment_data['user_info']);
400 400
 
401 401
 	return $email_name['username'];
402 402
 }
@@ -409,8 +409,8 @@  discard block
 block discarded – undo
409 409
  *
410 410
  * @return string user_email
411 411
  */
412
-function give_email_tag_user_email( $payment_id ) {
413
-	return give_get_payment_user_email( $payment_id );
412
+function give_email_tag_user_email($payment_id) {
413
+	return give_get_payment_user_email($payment_id);
414 414
 }
415 415
 
416 416
 /**
@@ -421,10 +421,10 @@  discard block
 block discarded – undo
421 421
  *
422 422
  * @return string billing_address
423 423
  */
424
-function give_email_tag_billing_address( $payment_id ) {
424
+function give_email_tag_billing_address($payment_id) {
425 425
 
426
-	$user_info    = give_get_payment_meta_user_info( $payment_id );
427
-	$user_address = ! empty( $user_info['address'] ) ? $user_info['address'] : array(
426
+	$user_info    = give_get_payment_meta_user_info($payment_id);
427
+	$user_address = ! empty($user_info['address']) ? $user_info['address'] : array(
428 428
 		'line1'   => '',
429 429
 		'line2'   => '',
430 430
 		'city'    => '',
@@ -433,11 +433,11 @@  discard block
 block discarded – undo
433 433
 		'zip'     => ''
434 434
 	);
435 435
 
436
-	$return = $user_address['line1'] . "\n";
437
-	if ( ! empty( $user_address['line2'] ) ) {
438
-		$return .= $user_address['line2'] . "\n";
436
+	$return = $user_address['line1']."\n";
437
+	if ( ! empty($user_address['line2'])) {
438
+		$return .= $user_address['line2']."\n";
439 439
 	}
440
-	$return .= $user_address['city'] . ' ' . $user_address['zip'] . ' ' . $user_address['state'] . "\n";
440
+	$return .= $user_address['city'].' '.$user_address['zip'].' '.$user_address['state']."\n";
441 441
 	$return .= $user_address['country'];
442 442
 
443 443
 	return $return;
@@ -451,10 +451,10 @@  discard block
 block discarded – undo
451 451
  *
452 452
  * @return string date
453 453
  */
454
-function give_email_tag_date( $payment_id ) {
455
-	$payment_data = give_get_payment_meta( $payment_id );
454
+function give_email_tag_date($payment_id) {
455
+	$payment_data = give_get_payment_meta($payment_id);
456 456
 
457
-	return date_i18n( get_option( 'date_format' ), strtotime( $payment_data['date'] ) );
457
+	return date_i18n(get_option('date_format'), strtotime($payment_data['date']));
458 458
 }
459 459
 
460 460
 /**
@@ -465,10 +465,10 @@  discard block
 block discarded – undo
465 465
  *
466 466
  * @return string price
467 467
  */
468
-function give_email_tag_price( $payment_id ) {
469
-	$price = give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ), give_get_payment_currency_code( $payment_id ) );
468
+function give_email_tag_price($payment_id) {
469
+	$price = give_currency_filter(give_format_amount(give_get_payment_amount($payment_id)), give_get_payment_currency_code($payment_id));
470 470
 
471
-	return html_entity_decode( $price, ENT_COMPAT, 'UTF-8' );
471
+	return html_entity_decode($price, ENT_COMPAT, 'UTF-8');
472 472
 }
473 473
 
474 474
 /**
@@ -479,8 +479,8 @@  discard block
 block discarded – undo
479 479
  *
480 480
  * @return int payment_id
481 481
  */
482
-function give_email_tag_payment_id( $payment_id ) {
483
-	return give_get_payment_number( $payment_id );
482
+function give_email_tag_payment_id($payment_id) {
483
+	return give_get_payment_number($payment_id);
484 484
 }
485 485
 
486 486
 /**
@@ -491,8 +491,8 @@  discard block
 block discarded – undo
491 491
  *
492 492
  * @return string receipt_id
493 493
  */
494
-function give_email_tag_receipt_id( $payment_id ) {
495
-	return give_get_payment_key( $payment_id );
494
+function give_email_tag_receipt_id($payment_id) {
495
+	return give_get_payment_key($payment_id);
496 496
 }
497 497
 
498 498
 /**
@@ -503,9 +503,9 @@  discard block
 block discarded – undo
503 503
  *
504 504
  * @return string $form_title
505 505
  */
506
-function give_email_tag_donation( $payment_id ) {
507
-	$payment_data = give_get_payment_meta( $payment_id );
508
-	$form_title   = ( ! empty( $payment_data['form_title'] ) ? $payment_data['form_title'] : __( 'There was an error retrieving this donation title', 'give' ) );
506
+function give_email_tag_donation($payment_id) {
507
+	$payment_data = give_get_payment_meta($payment_id);
508
+	$form_title   = ( ! empty($payment_data['form_title']) ? $payment_data['form_title'] : __('There was an error retrieving this donation title', 'give'));
509 509
 
510 510
 	return $form_title;
511 511
 }
@@ -518,8 +518,8 @@  discard block
 block discarded – undo
518 518
  *
519 519
  * @return string gateway
520 520
  */
521
-function give_email_tag_payment_method( $payment_id ) {
522
-	return give_get_gateway_checkout_label( give_get_payment_gateway( $payment_id ) );
521
+function give_email_tag_payment_method($payment_id) {
522
+	return give_get_gateway_checkout_label(give_get_payment_gateway($payment_id));
523 523
 }
524 524
 
525 525
 /**
@@ -530,8 +530,8 @@  discard block
 block discarded – undo
530 530
  *
531 531
  * @return string sitename
532 532
  */
533
-function give_email_tag_sitename( $payment_id ) {
534
-	return wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES );
533
+function give_email_tag_sitename($payment_id) {
534
+	return wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES);
535 535
 }
536 536
 
537 537
 /**
@@ -543,15 +543,15 @@  discard block
 block discarded – undo
543 543
  *
544 544
  * @return string receipt_link
545 545
  */
546
-function give_email_tag_receipt_link( $payment_id ) {
546
+function give_email_tag_receipt_link($payment_id) {
547 547
 
548
-	$receipt_url = esc_url( add_query_arg( array(
549
-		'payment_key' => give_get_payment_key( $payment_id ),
548
+	$receipt_url = esc_url(add_query_arg(array(
549
+		'payment_key' => give_get_payment_key($payment_id),
550 550
 		'give_action' => 'view_receipt'
551
-	), home_url() ) );
552
-	$formatted   = sprintf( __( '%1$sView it in your browser %2$s', 'give' ), '<a href="' . $receipt_url . '">', '&raquo;</a>' );
551
+	), home_url()));
552
+	$formatted = sprintf(__('%1$sView it in your browser %2$s', 'give'), '<a href="'.$receipt_url.'">', '&raquo;</a>');
553 553
 
554
-	if ( give_get_option( 'email_template' ) !== 'none' ) {
554
+	if (give_get_option('email_template') !== 'none') {
555 555
 		return $formatted;
556 556
 	} else {
557 557
 		return $receipt_url;
Please login to merge, or discard this patch.
includes/emails/template.php 1 patch
Spacing   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
  *
42 42
  * @return string $message Fully formatted message
43 43
  */
44
-function give_email_template_tags( $message, $payment_data, $payment_id, $admin_notice = false ) {
45
-	return give_do_email_tags( $message, $payment_id );
44
+function give_email_template_tags($message, $payment_data, $payment_id, $admin_notice = false) {
45
+	return give_do_email_tags($message, $payment_id);
46 46
 }
47 47
 
48 48
 /**
@@ -55,38 +55,38 @@  discard block
 block discarded – undo
55 55
  *
56 56
  * @return string $message Fully formatted message
57 57
  */
58
-function give_email_preview_template_tags( $message ) {
58
+function give_email_preview_template_tags($message) {
59 59
 	global $give_options;
60 60
 
61
-	$price = give_currency_filter( give_format_amount( 10.50 ) );
61
+	$price = give_currency_filter(give_format_amount(10.50));
62 62
 
63 63
 	$gateway = 'PayPal';
64 64
 
65
-	$receipt_id = strtolower( md5( uniqid() ) );
65
+	$receipt_id = strtolower(md5(uniqid()));
66 66
 
67
-	$notes = __( 'These are some sample notes added to a donation.', 'give' );
67
+	$notes = __('These are some sample notes added to a donation.', 'give');
68 68
 
69
-	$payment_id = rand( 1, 100 );
69
+	$payment_id = rand(1, 100);
70 70
 
71 71
 	$user = wp_get_current_user();
72 72
 
73
-	$message = str_replace( '{name}', $user->display_name, $message );
74
-	$message = str_replace( '{fullname}', $user->display_name, $message );
75
-	$message = str_replace( '{username}', $user->user_login, $message );
76
-	$message = str_replace( '{date}', date( get_option( 'date_format' ), current_time( 'timestamp' ) ), $message );
77
-	$message = str_replace( '{price}', $price, $message );
78
-	$message = str_replace( '{donation}', 'Sample Donation Form Title', $message );
79
-	$message = str_replace( '{receipt_id}', $receipt_id, $message );
80
-	$message = str_replace( '{payment_method}', $gateway, $message );
81
-	$message = str_replace( '{sitename}', get_bloginfo( 'name' ), $message );
82
-	$message = str_replace( '{product_notes}', $notes, $message );
83
-	$message = str_replace( '{payment_id}', $payment_id, $message );
84
-	$message = str_replace( '{receipt_link}', sprintf( __( '%1$sView the receipt in your browser %2$s', 'give' ), '<a href="' . esc_url( add_query_arg( array(
73
+	$message = str_replace('{name}', $user->display_name, $message);
74
+	$message = str_replace('{fullname}', $user->display_name, $message);
75
+	$message = str_replace('{username}', $user->user_login, $message);
76
+	$message = str_replace('{date}', date(get_option('date_format'), current_time('timestamp')), $message);
77
+	$message = str_replace('{price}', $price, $message);
78
+	$message = str_replace('{donation}', 'Sample Donation Form Title', $message);
79
+	$message = str_replace('{receipt_id}', $receipt_id, $message);
80
+	$message = str_replace('{payment_method}', $gateway, $message);
81
+	$message = str_replace('{sitename}', get_bloginfo('name'), $message);
82
+	$message = str_replace('{product_notes}', $notes, $message);
83
+	$message = str_replace('{payment_id}', $payment_id, $message);
84
+	$message = str_replace('{receipt_link}', sprintf(__('%1$sView the receipt in your browser %2$s', 'give'), '<a href="'.esc_url(add_query_arg(array(
85 85
 			'payment_key' => $receipt_id,
86 86
 			'give_action' => 'view_receipt'
87
-		), home_url() ) ) . '">', '&raquo;</a>' ), $message );
87
+		), home_url())).'">', '&raquo;</a>'), $message);
88 88
 
89
-	return wpautop( apply_filters( 'give_email_preview_template_tags', $message ) );
89
+	return wpautop(apply_filters('give_email_preview_template_tags', $message));
90 90
 }
91 91
 
92 92
 /**
@@ -99,20 +99,20 @@  discard block
 block discarded – undo
99 99
  * @since  1.0
100 100
  * @return array|bool
101 101
  */
102
-add_filter( 'give_settings_emails', 'give_email_template_preview' );
102
+add_filter('give_settings_emails', 'give_email_template_preview');
103 103
 
104
-function give_email_template_preview( $array ) {
104
+function give_email_template_preview($array) {
105 105
 
106
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
106
+	if ( ! current_user_can('manage_give_settings')) {
107 107
 		return false;
108 108
 	}
109 109
 	$custom_field = array(
110
-		'name' => __( 'Preview Email', 'give' ),
111
-		'desc' => __( 'Click the buttons to preview emails.', 'give' ),
110
+		'name' => __('Preview Email', 'give'),
111
+		'desc' => __('Click the buttons to preview emails.', 'give'),
112 112
 		'id'   => 'give_email_preview_buttons',
113 113
 		'type' => 'email_preview_buttons'
114 114
 	);
115
-	array_splice( $array, 5, 0, array( $custom_field ) );
115
+	array_splice($array, 5, 0, array($custom_field));
116 116
 
117 117
 	return $array; // splice in at position 3;
118 118
 }
@@ -128,11 +128,11 @@  discard block
 block discarded – undo
128 128
 function give_email_preview_buttons_callback() {
129 129
 	ob_start();
130 130
 	?>
131
-	<a href="<?php echo esc_url( add_query_arg( array( 'give_action' => 'preview_email' ), home_url() ) ); ?>" class="button-secondary" target="_blank" title="<?php _e( 'Donation Receipt Preview', 'give' ); ?> "><?php _e( 'Preview Donation Receipt', 'give' ); ?></a>
132
-	<a href="<?php echo wp_nonce_url( add_query_arg( array(
131
+	<a href="<?php echo esc_url(add_query_arg(array('give_action' => 'preview_email'), home_url())); ?>" class="button-secondary" target="_blank" title="<?php _e('Donation Receipt Preview', 'give'); ?> "><?php _e('Preview Donation Receipt', 'give'); ?></a>
132
+	<a href="<?php echo wp_nonce_url(add_query_arg(array(
133 133
 		'give_action'  => 'send_test_email',
134 134
 		'give-message' => 'sent-test-email'
135
-	) ), 'give-test-email' ); ?>" title="<?php _e( 'This will send a demo donation receipt to the emails listed below.', 'give' ); ?>" class="button-secondary"><?php _e( 'Send Test Email', 'give' ); ?></a>
135
+	)), 'give-test-email'); ?>" title="<?php _e('This will send a demo donation receipt to the emails listed below.', 'give'); ?>" class="button-secondary"><?php _e('Send Test Email', 'give'); ?></a>
136 136
 	<?php
137 137
 	echo ob_get_clean();
138 138
 }
@@ -145,27 +145,27 @@  discard block
 block discarded – undo
145 145
  */
146 146
 function give_display_email_template_preview() {
147 147
 
148
-	if ( empty( $_GET['give_action'] ) ) {
148
+	if (empty($_GET['give_action'])) {
149 149
 		return;
150 150
 	}
151 151
 
152
-	if ( 'preview_email' !== $_GET['give_action'] ) {
152
+	if ('preview_email' !== $_GET['give_action']) {
153 153
 		return;
154 154
 	}
155 155
 
156
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
156
+	if ( ! current_user_can('manage_give_settings')) {
157 157
 		return;
158 158
 	}
159 159
 
160
-	Give()->emails->heading = __( 'Donation Receipt', 'give' );
160
+	Give()->emails->heading = __('Donation Receipt', 'give');
161 161
 
162
-	echo Give()->emails->build_email( give_email_preview_template_tags( give_get_email_body_content( 0, array() ) ) );
162
+	echo Give()->emails->build_email(give_email_preview_template_tags(give_get_email_body_content(0, array())));
163 163
 
164 164
 	exit;
165 165
 
166 166
 }
167 167
 
168
-add_action( 'template_redirect', 'give_display_email_template_preview' );
168
+add_action('template_redirect', 'give_display_email_template_preview');
169 169
 
170 170
 /**
171 171
  * Email Template Body
@@ -177,19 +177,19 @@  discard block
 block discarded – undo
177 177
  *
178 178
  * @return string $email_body Body of the email
179 179
  */
180
-function give_get_email_body_content( $payment_id = 0, $payment_data = array() ) {
180
+function give_get_email_body_content($payment_id = 0, $payment_data = array()) {
181 181
 
182 182
 	global $give_options;
183 183
 
184 184
 	$default_email_body = give_get_default_donation_receipt_email();
185 185
 
186
-	$email = isset( $give_options['donation_receipt'] ) ? stripslashes( $give_options['donation_receipt'] ) : $default_email_body;
186
+	$email = isset($give_options['donation_receipt']) ? stripslashes($give_options['donation_receipt']) : $default_email_body;
187 187
 
188
-	$email_body = wpautop( $email );
188
+	$email_body = wpautop($email);
189 189
 
190
-	$email_body = apply_filters( 'give_donation_receipt_' . Give()->emails->get_template(), $email_body, $payment_id, $payment_data );
190
+	$email_body = apply_filters('give_donation_receipt_'.Give()->emails->get_template(), $email_body, $payment_id, $payment_data);
191 191
 
192
-	return apply_filters( 'give_donation_receipt', $email_body, $payment_id, $payment_data );
192
+	return apply_filters('give_donation_receipt', $email_body, $payment_id, $payment_data);
193 193
 }
194 194
 
195 195
 
@@ -205,37 +205,37 @@  discard block
 block discarded – undo
205 205
  *
206 206
  * @return string $email_body Body of the email
207 207
  */
208
-function give_get_donation_notification_body_content( $payment_id = 0, $payment_data = array() ) {
208
+function give_get_donation_notification_body_content($payment_id = 0, $payment_data = array()) {
209 209
 	global $give_options;
210 210
 
211
-	$user_info = maybe_unserialize( $payment_data['user_info'] );
212
-	$email     = give_get_payment_user_email( $payment_id );
211
+	$user_info = maybe_unserialize($payment_data['user_info']);
212
+	$email     = give_get_payment_user_email($payment_id);
213 213
 
214
-	if ( isset( $user_info['id'] ) && $user_info['id'] > 0 ) {
215
-		$user_data = get_userdata( $user_info['id'] );
214
+	if (isset($user_info['id']) && $user_info['id'] > 0) {
215
+		$user_data = get_userdata($user_info['id']);
216 216
 		$name      = $user_data->display_name;
217
-	} elseif ( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) {
218
-		$name = $user_info['first_name'] . ' ' . $user_info['last_name'];
217
+	} elseif (isset($user_info['first_name']) && isset($user_info['last_name'])) {
218
+		$name = $user_info['first_name'].' '.$user_info['last_name'];
219 219
 	} else {
220 220
 		$name = $email;
221 221
 	}
222 222
 
223
-	$gateway = give_get_gateway_admin_label( get_post_meta( $payment_id, '_give_payment_gateway', true ) );
223
+	$gateway = give_get_gateway_admin_label(get_post_meta($payment_id, '_give_payment_gateway', true));
224 224
 
225
-	$default_email_body = __( 'Hello', 'give' ) . "\n\n" . __( 'A donation has been made', 'give' ) . ".\n\n";
226
-	$default_email_body .= sprintf( __( '%s sold:', 'give' ), give_get_forms_label_plural() ) . "\n\n";
225
+	$default_email_body = __('Hello', 'give')."\n\n".__('A donation has been made', 'give').".\n\n";
226
+	$default_email_body .= sprintf(__('%s sold:', 'give'), give_get_forms_label_plural())."\n\n";
227 227
 
228
-	$default_email_body .= __( 'Donor: ', 'give' ) . " " . html_entity_decode( $name, ENT_COMPAT, 'UTF-8' ) . "\n";
229
-	$default_email_body .= __( 'Amount: ', 'give' ) . " " . html_entity_decode( give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) ), ENT_COMPAT, 'UTF-8' ) . "\n";
230
-	$default_email_body .= __( 'Payment Method: ', 'give' ) . " " . $gateway . "\n\n";
228
+	$default_email_body .= __('Donor: ', 'give')." ".html_entity_decode($name, ENT_COMPAT, 'UTF-8')."\n";
229
+	$default_email_body .= __('Amount: ', 'give')." ".html_entity_decode(give_currency_filter(give_format_amount(give_get_payment_amount($payment_id))), ENT_COMPAT, 'UTF-8')."\n";
230
+	$default_email_body .= __('Payment Method: ', 'give')." ".$gateway."\n\n";
231 231
 
232
-	$default_email_body .= __( 'Thank you', 'give' );
232
+	$default_email_body .= __('Thank you', 'give');
233 233
 
234
-	$email = isset( $give_options['donation_notification'] ) ? stripslashes( $give_options['donation_notification'] ) : $default_email_body;
234
+	$email = isset($give_options['donation_notification']) ? stripslashes($give_options['donation_notification']) : $default_email_body;
235 235
 
236
-	$email_body = give_do_email_tags( $email, $payment_id );
236
+	$email_body = give_do_email_tags($email, $payment_id);
237 237
 
238
-	return apply_filters( 'give_donation_notification', wpautop( $email_body ), $payment_id, $payment_data );
238
+	return apply_filters('give_donation_notification', wpautop($email_body), $payment_id, $payment_data);
239 239
 }
240 240
 
241 241
 /**
@@ -248,15 +248,15 @@  discard block
 block discarded – undo
248 248
  * @since  1.0
249 249
  */
250 250
 function give_render_receipt_in_browser() {
251
-	if ( ! isset( $_GET['payment_key'] ) ) {
252
-		wp_die( __( 'Missing donation payment key.', 'give' ), __( 'Error', 'give' ) );
251
+	if ( ! isset($_GET['payment_key'])) {
252
+		wp_die(__('Missing donation payment key.', 'give'), __('Error', 'give'));
253 253
 	}
254 254
 
255
-	$key = urlencode( $_GET['payment_key'] );
255
+	$key = urlencode($_GET['payment_key']);
256 256
 
257 257
 	ob_start();
258 258
 	//Disallows caching of the page
259
-	header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
259
+	header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
260 260
 	header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
261 261
 	header("Cache-Control: post-check=0, pre-check=0", false);
262 262
 	header("Pragma: no-cache"); // HTTP/1.0
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 	<!DOCTYPE html>
266 266
 	<html lang="en">
267 267
 		<head>
268
-			<title><?php _e( 'Donation Receipt', 'give' ); ?></title>
268
+			<title><?php _e('Donation Receipt', 'give'); ?></title>
269 269
 			<meta charset="utf-8" />
270 270
 
271 271
 			<!-- Further disallowing of caching of this page -->
@@ -279,12 +279,12 @@  discard block
 block discarded – undo
279 279
 
280 280
 			<?php wp_head(); ?>
281 281
 		</head>
282
-		<body class="<?php echo apply_filters( 'give_receipt_page_body_class', 'give_receipt_page' ); ?>">
282
+		<body class="<?php echo apply_filters('give_receipt_page_body_class', 'give_receipt_page'); ?>">
283 283
 
284 284
 			<div id="give_receipt_wrapper">
285
-				<?php do_action( 'give_render_receipt_in_browser_before' ); ?>
286
-				<?php echo do_shortcode( '[give_receipt payment_key=' . $key . ']' ); ?>
287
-				<?php do_action( 'give_render_receipt_in_browser_after' ); ?>
285
+				<?php do_action('give_render_receipt_in_browser_before'); ?>
286
+				<?php echo do_shortcode('[give_receipt payment_key='.$key.']'); ?>
287
+				<?php do_action('give_render_receipt_in_browser_after'); ?>
288 288
 			</div>
289 289
 
290 290
 			<?php wp_footer(); ?>
@@ -295,4 +295,4 @@  discard block
 block discarded – undo
295 295
 	die();
296 296
 }
297 297
 
298
-add_action( 'give_view_receipt', 'give_render_receipt_in_browser' );
298
+add_action('give_view_receipt', 'give_render_receipt_in_browser');
Please login to merge, or discard this patch.
includes/emails/functions.php 1 patch
Spacing   +93 added lines, -93 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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,39 +24,39 @@  discard block
 block discarded – undo
24 24
  *
25 25
  * @return void
26 26
  */
27
-function give_email_donation_receipt( $payment_id, $admin_notice = true ) {
27
+function give_email_donation_receipt($payment_id, $admin_notice = true) {
28 28
 
29
-	$payment_data = give_get_payment_meta( $payment_id );
29
+	$payment_data = give_get_payment_meta($payment_id);
30 30
 
31
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
32
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data );
31
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
32
+	$from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data);
33 33
 
34
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
35
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data );
34
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
35
+	$from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data);
36 36
 
37
-	$to_email = give_get_payment_user_email( $payment_id );
37
+	$to_email = give_get_payment_user_email($payment_id);
38 38
 
39
-	$subject = give_get_option( 'donation_subject', __( 'Donation Receipt', 'give' ) );
40
-	$subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), $payment_id );
41
-	$subject = give_do_email_tags( $subject, $payment_id );
39
+	$subject = give_get_option('donation_subject', __('Donation Receipt', 'give'));
40
+	$subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), $payment_id);
41
+	$subject = give_do_email_tags($subject, $payment_id);
42 42
 
43
-	$attachments = apply_filters( 'give_receipt_attachments', array(), $payment_id, $payment_data );
44
-	$message     = give_do_email_tags( give_get_email_body_content( $payment_id, $payment_data ), $payment_id );
43
+	$attachments = apply_filters('give_receipt_attachments', array(), $payment_id, $payment_data);
44
+	$message     = give_do_email_tags(give_get_email_body_content($payment_id, $payment_data), $payment_id);
45 45
 
46 46
 	$emails = Give()->emails;
47 47
 
48
-	$emails->__set( 'from_name', $from_name );
49
-	$emails->__set( 'from_email', $from_email );
50
-	$emails->__set( 'heading', __( 'Donation Receipt', 'give' ) );
48
+	$emails->__set('from_name', $from_name);
49
+	$emails->__set('from_email', $from_email);
50
+	$emails->__set('heading', __('Donation Receipt', 'give'));
51 51
 
52 52
 
53
-	$headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data );
54
-	$emails->__set( 'headers', $headers );
53
+	$headers = apply_filters('give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data);
54
+	$emails->__set('headers', $headers);
55 55
 
56
-	$emails->send( $to_email, $subject, $message, $attachments );
56
+	$emails->send($to_email, $subject, $message, $attachments);
57 57
 
58
-	if ( $admin_notice && ! give_admin_notices_disabled( $payment_id ) ) {
59
-		do_action( 'give_admin_sale_notice', $payment_id, $payment_data );
58
+	if ($admin_notice && ! give_admin_notices_disabled($payment_id)) {
59
+		do_action('give_admin_sale_notice', $payment_id, $payment_data);
60 60
 	}
61 61
 }
62 62
 
@@ -69,29 +69,29 @@  discard block
 block discarded – undo
69 69
  */
70 70
 function give_email_test_donation_receipt() {
71 71
 
72
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
73
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, 0, array() );
72
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
73
+	$from_name = apply_filters('give_purchase_from_name', $from_name, 0, array());
74 74
 
75
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
76
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, 0, array() );
75
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
76
+	$from_email = apply_filters('give_purchase_from_address', $from_email, 0, array());
77 77
 
78
-	$subject = give_get_option( 'donation_subject', __( 'Donation Receipt', 'give' ) );
79
-	$subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), 0 );
80
-	$subject = give_do_email_tags( $subject, 0 );
78
+	$subject = give_get_option('donation_subject', __('Donation Receipt', 'give'));
79
+	$subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), 0);
80
+	$subject = give_do_email_tags($subject, 0);
81 81
 
82
-	$attachments = apply_filters( 'give_receipt_attachments', array(), 0, array() );
82
+	$attachments = apply_filters('give_receipt_attachments', array(), 0, array());
83 83
 
84
-	$message = give_email_preview_template_tags( give_get_email_body_content( 0, array() ), 0 );
84
+	$message = give_email_preview_template_tags(give_get_email_body_content(0, array()), 0);
85 85
 
86 86
 	$emails = Give()->emails;
87
-	$emails->__set( 'from_name', $from_name );
88
-	$emails->__set( 'from_email', $from_email );
89
-	$emails->__set( 'heading', __( 'Donation Receipt', 'give' ) );
87
+	$emails->__set('from_name', $from_name);
88
+	$emails->__set('from_email', $from_email);
89
+	$emails->__set('heading', __('Donation Receipt', 'give'));
90 90
 
91
-	$headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), 0, array() );
92
-	$emails->__set( 'headers', $headers );
91
+	$headers = apply_filters('give_receipt_headers', $emails->get_headers(), 0, array());
92
+	$emails->__set('headers', $headers);
93 93
 
94
-	$emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments );
94
+	$emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments);
95 95
 
96 96
 }
97 97
 
@@ -105,49 +105,49 @@  discard block
 block discarded – undo
105 105
  *
106 106
  * @return void
107 107
  */
108
-function give_admin_email_notice( $payment_id = 0, $payment_data = array() ) {
108
+function give_admin_email_notice($payment_id = 0, $payment_data = array()) {
109 109
 
110
-	$payment_id = absint( $payment_id );
110
+	$payment_id = absint($payment_id);
111 111
 
112
-	if ( empty( $payment_id ) ) {
112
+	if (empty($payment_id)) {
113 113
 		return;
114 114
 	}
115 115
 
116
-	if ( ! give_get_payment_by( 'id', $payment_id ) ) {
116
+	if ( ! give_get_payment_by('id', $payment_id)) {
117 117
 		return;
118 118
 	}
119 119
 
120
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
121
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data );
120
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
121
+	$from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data);
122 122
 
123
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
124
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data );
123
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
124
+	$from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data);
125 125
 
126
-	$subject = give_get_option( 'donation_notification_subject', sprintf( __( 'New Donation - Payment #%1$s', 'give' ), $payment_id ) );
127
-	$subject = apply_filters( 'give_admin_donation_notification_subject', wp_strip_all_tags( $subject ), $payment_id );
128
-	$subject = give_do_email_tags( $subject, $payment_id );
126
+	$subject = give_get_option('donation_notification_subject', sprintf(__('New Donation - Payment #%1$s', 'give'), $payment_id));
127
+	$subject = apply_filters('give_admin_donation_notification_subject', wp_strip_all_tags($subject), $payment_id);
128
+	$subject = give_do_email_tags($subject, $payment_id);
129 129
 
130
-	$headers = "From: " . stripslashes_deep( html_entity_decode( $from_name, ENT_COMPAT, 'UTF-8' ) ) . " <$from_email>\r\n";
131
-	$headers .= "Reply-To: " . $from_email . "\r\n";
130
+	$headers = "From: ".stripslashes_deep(html_entity_decode($from_name, ENT_COMPAT, 'UTF-8'))." <$from_email>\r\n";
131
+	$headers .= "Reply-To: ".$from_email."\r\n";
132 132
 	//$headers  .= "MIME-Version: 1.0\r\n";
133 133
 	$headers .= "Content-Type: text/html; charset=utf-8\r\n";
134
-	$headers = apply_filters( 'give_admin_donation_notification_headers', $headers, $payment_id, $payment_data );
134
+	$headers = apply_filters('give_admin_donation_notification_headers', $headers, $payment_id, $payment_data);
135 135
 
136
-	$attachments = apply_filters( 'give_admin_donation_notification_attachments', array(), $payment_id, $payment_data );
136
+	$attachments = apply_filters('give_admin_donation_notification_attachments', array(), $payment_id, $payment_data);
137 137
 
138
-	$message = give_get_donation_notification_body_content( $payment_id, $payment_data );
138
+	$message = give_get_donation_notification_body_content($payment_id, $payment_data);
139 139
 
140 140
 	$emails = Give()->emails;
141
-	$emails->__set( 'from_name', $from_name );
142
-	$emails->__set( 'from_email', $from_email );
143
-	$emails->__set( 'headers', $headers );
144
-	$emails->__set( 'heading', __( 'New Donation!', 'give' ) );
141
+	$emails->__set('from_name', $from_name);
142
+	$emails->__set('from_email', $from_email);
143
+	$emails->__set('headers', $headers);
144
+	$emails->__set('heading', __('New Donation!', 'give'));
145 145
 
146
-	$emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments );
146
+	$emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments);
147 147
 
148 148
 }
149 149
 
150
-add_action( 'give_admin_sale_notice', 'give_admin_email_notice', 10, 2 );
150
+add_action('give_admin_sale_notice', 'give_admin_email_notice', 10, 2);
151 151
 
152 152
 /**
153 153
  * Retrieves the emails for which admin notifications are sent to (these can be
@@ -160,10 +160,10 @@  discard block
 block discarded – undo
160 160
 function give_get_admin_notice_emails() {
161 161
 	global $give_options;
162 162
 
163
-	$emails = isset( $give_options['admin_notice_emails'] ) && strlen( trim( $give_options['admin_notice_emails'] ) ) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo( 'admin_email' );
164
-	$emails = array_map( 'trim', explode( "\n", $emails ) );
163
+	$emails = isset($give_options['admin_notice_emails']) && strlen(trim($give_options['admin_notice_emails'])) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo('admin_email');
164
+	$emails = array_map('trim', explode("\n", $emails));
165 165
 
166
-	return apply_filters( 'give_admin_notice_emails', $emails );
166
+	return apply_filters('give_admin_notice_emails', $emails);
167 167
 }
168 168
 
169 169
 /**
@@ -175,11 +175,11 @@  discard block
 block discarded – undo
175 175
  *
176 176
  * @return mixed
177 177
  */
178
-function give_admin_notices_disabled( $payment_id = 0 ) {
178
+function give_admin_notices_disabled($payment_id = 0) {
179 179
 	global $give_options;
180
-	$retval = isset( $give_options['disable_admin_notices'] );
180
+	$retval = isset($give_options['disable_admin_notices']);
181 181
 
182
-	return apply_filters( 'give_admin_notices_disabled', $retval, $payment_id );
182
+	return apply_filters('give_admin_notices_disabled', $retval, $payment_id);
183 183
 }
184 184
 
185 185
 /**
@@ -193,16 +193,16 @@  discard block
 block discarded – undo
193 193
 function give_get_default_donation_notification_email() {
194 194
 	global $give_options;
195 195
 
196
-	$default_email_body = __( 'Hi there,', 'give' ) . "\n\n" . __( 'This email is to inform you that a new donation has been made on your website: ', 'give' ) . '<a href="' . get_bloginfo( 'url' ) . '" target="_blank">' . get_bloginfo( 'url' ) . '</a>' . ".\n\n";
197
-	$default_email_body .= '<strong>' . __( 'Donor: ', 'give' ) . '</strong> ' . ' {name}' . "\n";
198
-	$default_email_body .= '<strong>' . __( 'Donation: ', 'give' ) . '</strong> ' . ' {donation}' . "\n";
199
-	$default_email_body .= '<strong>' . __( 'Amount: ', 'give' ) . '</strong> ' . ' {price}' . "\n";
200
-	$default_email_body .= '<strong>' . __( 'Payment Method: ', 'give' ) . '</strong> ' . ' {payment_method}' . "\n\n";
201
-	$default_email_body .= __( 'Thank you,', 'give' ) . "\n\n" . '{sitename}';
196
+	$default_email_body = __('Hi there,', 'give')."\n\n".__('This email is to inform you that a new donation has been made on your website: ', 'give').'<a href="'.get_bloginfo('url').'" target="_blank">'.get_bloginfo('url').'</a>'.".\n\n";
197
+	$default_email_body .= '<strong>'.__('Donor: ', 'give').'</strong> '.' {name}'."\n";
198
+	$default_email_body .= '<strong>'.__('Donation: ', 'give').'</strong> '.' {donation}'."\n";
199
+	$default_email_body .= '<strong>'.__('Amount: ', 'give').'</strong> '.' {price}'."\n";
200
+	$default_email_body .= '<strong>'.__('Payment Method: ', 'give').'</strong> '.' {payment_method}'."\n\n";
201
+	$default_email_body .= __('Thank you,', 'give')."\n\n".'{sitename}';
202 202
 
203
-	$message = ( isset( $give_options['donation_notification'] ) && ! empty( $give_options['donation_notification'] ) ) ? $give_options['donation_notification'] : $default_email_body;
203
+	$message = (isset($give_options['donation_notification']) && ! empty($give_options['donation_notification'])) ? $give_options['donation_notification'] : $default_email_body;
204 204
 
205
-	return apply_filters( 'give_default_donation_notification_email', $message );
205
+	return apply_filters('give_default_donation_notification_email', $message);
206 206
 }
207 207
 
208 208
 
@@ -217,24 +217,24 @@  discard block
 block discarded – undo
217 217
 function give_get_default_donation_receipt_email() {
218 218
 	global $give_options;
219 219
 
220
-	$default_email_body = __( 'Dear', 'give' ) . " {name},\n\n";
221
-	$default_email_body .= __( 'Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give' ) . "\n\n";
222
-	$default_email_body .= '<strong>' . __( 'Donor', 'give' ) . ':</strong> ' . '{fullname}' . "\n";
223
-	$default_email_body .= '<strong>' . __( 'Donation', 'give' ) . ':</strong> ' . '{donation}' . "\n";
224
-	$default_email_body .= '<strong>' . __( 'Donation Date', 'give' ) . ':</strong> ' . '{date}' . "\n";
225
-	$default_email_body .= '<strong>' . __( 'Amount', 'give' ) . ':</strong> ' . '{price}' . "\n";
226
-	$default_email_body .= '<strong>' . __( 'Payment Method', 'give' ) . ':</strong> ' . '{payment_method}' . "\n";
227
-	$default_email_body .= '<strong>' . __( 'Payment ID', 'give' ) . ':</strong> ' . '{payment_id}' . "\n";
228
-	$default_email_body .= '<strong>' . __( 'Receipt ID', 'give' ) . ':</strong> ' . '{receipt_id}' . "\n\n";
229
-	$default_email_body .= '{receipt_link}' . "\n\n";
220
+	$default_email_body = __('Dear', 'give')." {name},\n\n";
221
+	$default_email_body .= __('Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give')."\n\n";
222
+	$default_email_body .= '<strong>'.__('Donor', 'give').':</strong> '.'{fullname}'."\n";
223
+	$default_email_body .= '<strong>'.__('Donation', 'give').':</strong> '.'{donation}'."\n";
224
+	$default_email_body .= '<strong>'.__('Donation Date', 'give').':</strong> '.'{date}'."\n";
225
+	$default_email_body .= '<strong>'.__('Amount', 'give').':</strong> '.'{price}'."\n";
226
+	$default_email_body .= '<strong>'.__('Payment Method', 'give').':</strong> '.'{payment_method}'."\n";
227
+	$default_email_body .= '<strong>'.__('Payment ID', 'give').':</strong> '.'{payment_id}'."\n";
228
+	$default_email_body .= '<strong>'.__('Receipt ID', 'give').':</strong> '.'{receipt_id}'."\n\n";
229
+	$default_email_body .= '{receipt_link}'."\n\n";
230 230
 
231 231
 	$default_email_body .= "\n\n";
232
-	$default_email_body .= __( 'Sincerely,', 'give' );
233
-	$default_email_body .= "\n" . '{sitename}' . "\n";
232
+	$default_email_body .= __('Sincerely,', 'give');
233
+	$default_email_body .= "\n".'{sitename}'."\n";
234 234
 
235
-	$message = ( isset( $give_options['donation_receipt'] ) && ! empty( $give_options['donation_receipt'] ) ) ? $give_options['donation_receipt'] : $default_email_body;
235
+	$message = (isset($give_options['donation_receipt']) && ! empty($give_options['donation_receipt'])) ? $give_options['donation_receipt'] : $default_email_body;
236 236
 
237
-	return apply_filters( 'give_default_donation_receipt_email', $message );
237
+	return apply_filters('give_default_donation_receipt_email', $message);
238 238
 }
239 239
 
240 240
 /**
@@ -246,19 +246,19 @@  discard block
 block discarded – undo
246 246
  *
247 247
  * @return array $email_names
248 248
  */
249
-function give_get_email_names( $user_info ) {
249
+function give_get_email_names($user_info) {
250 250
 	$email_names = array();
251
-	$user_info   = maybe_unserialize( $user_info );
251
+	$user_info   = maybe_unserialize($user_info);
252 252
 
253 253
 	$email_names['fullname'] = '';
254
-	if ( isset( $user_info['id'] ) && $user_info['id'] > 0 && isset( $user_info['first_name'] ) ) {
255
-		$user_data               = get_userdata( $user_info['id'] );
254
+	if (isset($user_info['id']) && $user_info['id'] > 0 && isset($user_info['first_name'])) {
255
+		$user_data               = get_userdata($user_info['id']);
256 256
 		$email_names['name']     = $user_info['first_name'];
257
-		$email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name'];
257
+		$email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name'];
258 258
 		$email_names['username'] = $user_data->user_login;
259
-	} elseif ( isset( $user_info['first_name'] ) ) {
259
+	} elseif (isset($user_info['first_name'])) {
260 260
 		$email_names['name']     = $user_info['first_name'];
261
-		$email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name'];
261
+		$email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name'];
262 262
 		$email_names['username'] = $user_info['first_name'];
263 263
 	} else {
264 264
 		$email_names['name']     = $user_info['email'];
Please login to merge, or discard this patch.
give.php 1 patch
Spacing   +124 added lines, -124 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
  */
41 41
 
42 42
 // Exit if accessed directly
43
-if ( ! defined( 'ABSPATH' ) ) {
43
+if ( ! defined('ABSPATH')) {
44 44
 	exit;
45 45
 }
46 46
 
47
-if ( ! class_exists( 'Give' ) ) : /**
47
+if ( ! class_exists('Give')) : /**
48 48
  * Main Give Class
49 49
  *
50 50
  * @since 1.0
@@ -158,11 +158,11 @@  discard block
 block discarded – undo
158 158
 		 * @return    Give
159 159
 		 */
160 160
 		public static function instance() {
161
-			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Give ) ) {
161
+			if ( ! isset(self::$instance) && ! (self::$instance instanceof Give)) {
162 162
 				self::$instance = new Give;
163 163
 				self::$instance->setup_constants();
164 164
 
165
-				add_action( 'plugins_loaded', array( self::$instance, 'load_textdomain' ) );
165
+				add_action('plugins_loaded', array(self::$instance, 'load_textdomain'));
166 166
 
167 167
 				self::$instance->includes();
168 168
 				self::$instance->roles         = new Give_Roles();
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 		 */
195 195
 		public function __clone() {
196 196
 			// Cloning instances of the class is forbidden
197
-			_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'give' ), '1.0' );
197
+			_doing_it_wrong(__FUNCTION__, __('Cheatin&#8217; huh?', 'give'), '1.0');
198 198
 		}
199 199
 
200 200
 		/**
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
 		 */
207 207
 		public function __wakeup() {
208 208
 			// Unserializing instances of the class is forbidden
209
-			_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'give' ), '1.0' );
209
+			_doing_it_wrong(__FUNCTION__, __('Cheatin&#8217; huh?', 'give'), '1.0');
210 210
 		}
211 211
 
212 212
 		/**
@@ -219,33 +219,33 @@  discard block
 block discarded – undo
219 219
 		private function setup_constants() {
220 220
 
221 221
 			// Plugin version
222
-			if ( ! defined( 'GIVE_VERSION' ) ) {
223
-				define( 'GIVE_VERSION', '1.3.6' );
222
+			if ( ! defined('GIVE_VERSION')) {
223
+				define('GIVE_VERSION', '1.3.6');
224 224
 			}
225 225
 
226 226
 			// Plugin Folder Path
227
-			if ( ! defined( 'GIVE_PLUGIN_DIR' ) ) {
228
-				define( 'GIVE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
227
+			if ( ! defined('GIVE_PLUGIN_DIR')) {
228
+				define('GIVE_PLUGIN_DIR', plugin_dir_path(__FILE__));
229 229
 			}
230 230
 
231 231
 			// Plugin Folder URL
232
-			if ( ! defined( 'GIVE_PLUGIN_URL' ) ) {
233
-				define( 'GIVE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
232
+			if ( ! defined('GIVE_PLUGIN_URL')) {
233
+				define('GIVE_PLUGIN_URL', plugin_dir_url(__FILE__));
234 234
 			}
235 235
 
236 236
 			// Plugin Basename aka: "give/give.php"
237
-			if ( ! defined( 'GIVE_PLUGIN_BASENAME' ) ) {
238
-				define( 'GIVE_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
237
+			if ( ! defined('GIVE_PLUGIN_BASENAME')) {
238
+				define('GIVE_PLUGIN_BASENAME', plugin_basename(__FILE__));
239 239
 			}
240 240
 
241 241
 			// Plugin Root File
242
-			if ( ! defined( 'GIVE_PLUGIN_FILE' ) ) {
243
-				define( 'GIVE_PLUGIN_FILE', __FILE__ );
242
+			if ( ! defined('GIVE_PLUGIN_FILE')) {
243
+				define('GIVE_PLUGIN_FILE', __FILE__);
244 244
 			}
245 245
 
246 246
 			// Make sure CAL_GREGORIAN is defined
247
-			if ( ! defined( 'CAL_GREGORIAN' ) ) {
248
-				define( 'CAL_GREGORIAN', 1 );
247
+			if ( ! defined('CAL_GREGORIAN')) {
248
+				define('CAL_GREGORIAN', 1);
249 249
 			}
250 250
 		}
251 251
 
@@ -259,106 +259,106 @@  discard block
 block discarded – undo
259 259
 		private function includes() {
260 260
 			global $give_options;
261 261
 
262
-			require_once GIVE_PLUGIN_DIR . 'includes/admin/register-settings.php';
262
+			require_once GIVE_PLUGIN_DIR.'includes/admin/register-settings.php';
263 263
 			$give_options = give_get_settings();
264 264
 
265
-			require_once GIVE_PLUGIN_DIR . 'includes/post-types.php';
266
-			require_once GIVE_PLUGIN_DIR . 'includes/scripts.php';
267
-			require_once GIVE_PLUGIN_DIR . 'includes/ajax-functions.php';
268
-			require_once GIVE_PLUGIN_DIR . 'includes/actions.php';
269
-			require_once GIVE_PLUGIN_DIR . 'includes/api/class-give-api.php';
270
-
271
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-roles.php';
272
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-template-loader.php';
273
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-donate-form.php';
274
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db.php';
275
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-customers.php';
276
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-customer.php';
277
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-stats.php';
278
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-session.php';
279
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-html-elements.php';
280
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-logging.php';
281
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-license-handler.php';
282
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-cron.php';
283
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-email-access.php';
284
-
285
-			require_once GIVE_PLUGIN_DIR . 'includes/country-functions.php';
286
-			require_once GIVE_PLUGIN_DIR . 'includes/template-functions.php';
287
-			require_once GIVE_PLUGIN_DIR . 'includes/misc-functions.php';
288
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/functions.php';
289
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/template.php';
290
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/widget.php';
291
-			require_once GIVE_PLUGIN_DIR . 'includes/shortcodes.php';
292
-			require_once GIVE_PLUGIN_DIR . 'includes/formatting.php';
293
-			require_once GIVE_PLUGIN_DIR . 'includes/price-functions.php';
294
-			require_once GIVE_PLUGIN_DIR . 'includes/error-tracking.php';
295
-			require_once GIVE_PLUGIN_DIR . 'includes/process-purchase.php';
296
-			require_once GIVE_PLUGIN_DIR . 'includes/login-register.php';
297
-			require_once GIVE_PLUGIN_DIR . 'includes/user-functions.php';
298
-			require_once GIVE_PLUGIN_DIR . 'includes/plugin-compatibility.php';
299
-
300
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/functions.php';
301
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/actions.php';
302
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-payment-stats.php';
303
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-payments-query.php';
304
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-donators-gravatars.php';
305
-
306
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/functions.php';
307
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/actions.php';
308
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/paypal-standard.php';
309
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/offline-donations.php';
310
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/manual.php';
311
-
312
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/class-give-emails.php';
313
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/class-give-email-tags.php';
314
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/functions.php';
315
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/template.php';
316
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/actions.php';
317
-
318
-			if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) {
319
-
320
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-footer.php';
321
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/welcome.php';
322
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-pages.php';
323
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/class-admin-notices.php';
324
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/class-api-keys-table.php';
325
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-actions.php';
326
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/system-info.php';
327
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/export-functions.php';
328
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/add-ons.php';
329
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/plugins.php';
330
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/dashboard-widgets.php';
331
-
332
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/actions.php';
333
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/payments-history.php';
334
-
335
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/customers/customers.php';
336
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/customers/customer-functions.php';
337
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/customers/customer-actions.php';
338
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/forms/metabox.php';
339
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/forms/dashboard-columns.php';
340
-
341
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reporting/reports.php';
342
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reporting/pdf-reports.php';
343
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reporting/class-give-graph.php';
344
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reporting/graphing.php';
345
-
346
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/abstract-shortcode-generator.php';
347
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/class-shortcode-button.php';
348
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-form.php';
349
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-goal.php';
350
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-login.php';
351
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-register.php';
352
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-profile-editor.php';
353
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-donation-history.php';
354
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-receipt.php';
355
-
356
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php';
357
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrades.php';
265
+			require_once GIVE_PLUGIN_DIR.'includes/post-types.php';
266
+			require_once GIVE_PLUGIN_DIR.'includes/scripts.php';
267
+			require_once GIVE_PLUGIN_DIR.'includes/ajax-functions.php';
268
+			require_once GIVE_PLUGIN_DIR.'includes/actions.php';
269
+			require_once GIVE_PLUGIN_DIR.'includes/api/class-give-api.php';
270
+
271
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-roles.php';
272
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-template-loader.php';
273
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-donate-form.php';
274
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-db.php';
275
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-db-customers.php';
276
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-customer.php';
277
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-stats.php';
278
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-session.php';
279
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-html-elements.php';
280
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-logging.php';
281
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-license-handler.php';
282
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-cron.php';
283
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-email-access.php';
284
+
285
+			require_once GIVE_PLUGIN_DIR.'includes/country-functions.php';
286
+			require_once GIVE_PLUGIN_DIR.'includes/template-functions.php';
287
+			require_once GIVE_PLUGIN_DIR.'includes/misc-functions.php';
288
+			require_once GIVE_PLUGIN_DIR.'includes/forms/functions.php';
289
+			require_once GIVE_PLUGIN_DIR.'includes/forms/template.php';
290
+			require_once GIVE_PLUGIN_DIR.'includes/forms/widget.php';
291
+			require_once GIVE_PLUGIN_DIR.'includes/shortcodes.php';
292
+			require_once GIVE_PLUGIN_DIR.'includes/formatting.php';
293
+			require_once GIVE_PLUGIN_DIR.'includes/price-functions.php';
294
+			require_once GIVE_PLUGIN_DIR.'includes/error-tracking.php';
295
+			require_once GIVE_PLUGIN_DIR.'includes/process-purchase.php';
296
+			require_once GIVE_PLUGIN_DIR.'includes/login-register.php';
297
+			require_once GIVE_PLUGIN_DIR.'includes/user-functions.php';
298
+			require_once GIVE_PLUGIN_DIR.'includes/plugin-compatibility.php';
299
+
300
+			require_once GIVE_PLUGIN_DIR.'includes/payments/functions.php';
301
+			require_once GIVE_PLUGIN_DIR.'includes/payments/actions.php';
302
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-payment-stats.php';
303
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-payments-query.php';
304
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-donators-gravatars.php';
305
+
306
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/functions.php';
307
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/actions.php';
308
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/paypal-standard.php';
309
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/offline-donations.php';
310
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/manual.php';
311
+
312
+			require_once GIVE_PLUGIN_DIR.'includes/emails/class-give-emails.php';
313
+			require_once GIVE_PLUGIN_DIR.'includes/emails/class-give-email-tags.php';
314
+			require_once GIVE_PLUGIN_DIR.'includes/emails/functions.php';
315
+			require_once GIVE_PLUGIN_DIR.'includes/emails/template.php';
316
+			require_once GIVE_PLUGIN_DIR.'includes/emails/actions.php';
317
+
318
+			if (is_admin() || (defined('WP_CLI') && WP_CLI)) {
319
+
320
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-footer.php';
321
+				require_once GIVE_PLUGIN_DIR.'includes/admin/welcome.php';
322
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-pages.php';
323
+				require_once GIVE_PLUGIN_DIR.'includes/admin/class-admin-notices.php';
324
+				require_once GIVE_PLUGIN_DIR.'includes/admin/class-api-keys-table.php';
325
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-actions.php';
326
+				require_once GIVE_PLUGIN_DIR.'includes/admin/system-info.php';
327
+				require_once GIVE_PLUGIN_DIR.'includes/admin/export-functions.php';
328
+				require_once GIVE_PLUGIN_DIR.'includes/admin/add-ons.php';
329
+				require_once GIVE_PLUGIN_DIR.'includes/admin/plugins.php';
330
+				require_once GIVE_PLUGIN_DIR.'includes/admin/dashboard-widgets.php';
331
+
332
+				require_once GIVE_PLUGIN_DIR.'includes/admin/payments/actions.php';
333
+				require_once GIVE_PLUGIN_DIR.'includes/admin/payments/payments-history.php';
334
+
335
+				require_once GIVE_PLUGIN_DIR.'includes/admin/customers/customers.php';
336
+				require_once GIVE_PLUGIN_DIR.'includes/admin/customers/customer-functions.php';
337
+				require_once GIVE_PLUGIN_DIR.'includes/admin/customers/customer-actions.php';
338
+				require_once GIVE_PLUGIN_DIR.'includes/admin/forms/metabox.php';
339
+				require_once GIVE_PLUGIN_DIR.'includes/admin/forms/dashboard-columns.php';
340
+
341
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reporting/reports.php';
342
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reporting/pdf-reports.php';
343
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reporting/class-give-graph.php';
344
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reporting/graphing.php';
345
+
346
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/abstract-shortcode-generator.php';
347
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/class-shortcode-button.php';
348
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-form.php';
349
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-goal.php';
350
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-login.php';
351
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-register.php';
352
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-profile-editor.php';
353
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-donation-history.php';
354
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-receipt.php';
355
+
356
+				require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrade-functions.php';
357
+				require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrades.php';
358 358
 
359 359
 			}
360 360
 
361
-			require_once GIVE_PLUGIN_DIR . 'includes/install.php';
361
+			require_once GIVE_PLUGIN_DIR.'includes/install.php';
362 362
 
363 363
 		}
364 364
 
@@ -371,26 +371,26 @@  discard block
 block discarded – undo
371 371
 		 */
372 372
 		public function load_textdomain() {
373 373
 			// Set filter for Give's languages directory
374
-			$give_lang_dir = dirname( plugin_basename( GIVE_PLUGIN_FILE ) ) . '/languages/';
375
-			$give_lang_dir = apply_filters( 'give_languages_directory', $give_lang_dir );
374
+			$give_lang_dir = dirname(plugin_basename(GIVE_PLUGIN_FILE)).'/languages/';
375
+			$give_lang_dir = apply_filters('give_languages_directory', $give_lang_dir);
376 376
 
377 377
 			// Traditional WordPress plugin locale filter
378
-			$locale = apply_filters( 'plugin_locale', get_locale(), 'give' );
379
-			$mofile = sprintf( '%1$s-%2$s.mo', 'give', $locale );
378
+			$locale = apply_filters('plugin_locale', get_locale(), 'give');
379
+			$mofile = sprintf('%1$s-%2$s.mo', 'give', $locale);
380 380
 
381 381
 			// Setup paths to current locale file
382
-			$mofile_local  = $give_lang_dir . $mofile;
383
-			$mofile_global = WP_LANG_DIR . '/give/' . $mofile;
382
+			$mofile_local  = $give_lang_dir.$mofile;
383
+			$mofile_global = WP_LANG_DIR.'/give/'.$mofile;
384 384
 
385
-			if ( file_exists( $mofile_global ) ) {
385
+			if (file_exists($mofile_global)) {
386 386
 				// Look in global /wp-content/languages/give folder
387
-				load_textdomain( 'give', $mofile_global );
388
-			} elseif ( file_exists( $mofile_local ) ) {
387
+				load_textdomain('give', $mofile_global);
388
+			} elseif (file_exists($mofile_local)) {
389 389
 				// Look in local location from filter `give_languages_directory`
390
-				load_textdomain( 'give', $mofile_local );
390
+				load_textdomain('give', $mofile_local);
391 391
 			} else {
392 392
 				// Load the default language files packaged up w/ Give
393
-				load_plugin_textdomain( 'give', false, $give_lang_dir );
393
+				load_plugin_textdomain('give', false, $give_lang_dir);
394 394
 			}
395 395
 		}
396 396
 	}
Please login to merge, or discard this patch.