Completed
Pull Request — master (#770)
by Devin
20:03
created
includes/admin/shortcodes/shortcode-give-goal.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * @since       1.3.0
10 10
  */
11 11
 
12
-defined( 'ABSPATH' ) or exit;
12
+defined('ABSPATH') or exit;
13 13
 
14 14
 class Give_Shortcode_Donation_Form_Goal extends Give_Shortcode_Generator {
15 15
 
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
 	 */
19 19
 	public function __construct() {
20 20
 
21
-		$this->shortcode['title'] = __( 'Donation Form Goal', 'give' );
22
-		$this->shortcode['label'] = __( 'Donation Form Goal', 'give' );
21
+		$this->shortcode['title'] = __('Donation Form Goal', 'give');
22
+		$this->shortcode['label'] = __('Donation Form Goal', 'give');
23 23
 
24
-		parent::__construct( 'give_goal' );
24
+		parent::__construct('give_goal');
25 25
 	}
26 26
 
27 27
 	/**
@@ -32,8 +32,8 @@  discard block
 block discarded – undo
32 32
 	public function define_fields() {
33 33
 
34 34
 		$create_form_link = sprintf(
35
-			__( '<a href="%s">Create</a> a new Donation Form.', 'give' ),
36
-			admin_url( 'post-new.php?post_type=give_forms' )
35
+			__('<a href="%s">Create</a> a new Donation Form.', 'give'),
36
+			admin_url('post-new.php?post_type=give_forms')
37 37
 		);
38 38
 
39 39
 		return array(
@@ -43,35 +43,35 @@  discard block
 block discarded – undo
43 43
 					'post_type' => 'give_forms',
44 44
 				),
45 45
 				'name'        => 'id',
46
-				'tooltip'     => __( 'Select a Donation Form', 'give' ),
47
-				'placeholder' => __( '- Select a Form -', 'give' ),
46
+				'tooltip'     => __('Select a Donation Form', 'give'),
47
+				'placeholder' => __('- Select a Form -', 'give'),
48 48
 				'required'    => array(
49
-					'alert' => __( 'You must first select a Form!', 'give' ),
50
-					'error' => sprintf( '<p class="strong">%s</p><p class="no-margin">%s</p>', __( 'No donation forms were found!', 'give' ), $create_form_link ),
49
+					'alert' => __('You must first select a Form!', 'give'),
50
+					'error' => sprintf('<p class="strong">%s</p><p class="no-margin">%s</p>', __('No donation forms were found!', 'give'), $create_form_link),
51 51
 				),
52 52
 			),
53 53
 			array(
54 54
 				'type' => 'container',
55
-				'html' => sprintf( '<p class="strong margin-top">%s</p>', __( 'Optional settings', 'give' ) ),
55
+				'html' => sprintf('<p class="strong margin-top">%s</p>', __('Optional settings', 'give')),
56 56
 			),
57 57
 			array(
58 58
 				'type'    => 'listbox',
59 59
 				'name'    => 'show_text',
60
-				'label'   => __( 'Show Text:', 'give' ),
61
-				'tooltip' => __( 'This text displays the amount of income raised compared to the goal.', 'give' ),
60
+				'label'   => __('Show Text:', 'give'),
61
+				'tooltip' => __('This text displays the amount of income raised compared to the goal.', 'give'),
62 62
 				'options' => array(
63
-					'true'  => __( 'Show', 'give' ),
64
-					'false' => __( 'Hide', 'give' ),
63
+					'true'  => __('Show', 'give'),
64
+					'false' => __('Hide', 'give'),
65 65
 				),
66 66
 			),
67 67
 			array(
68 68
 				'type'    => 'listbox',
69 69
 				'name'    => 'show_bar',
70
-				'label'   => __( 'Show Progress Bar:', 'give' ),
71
-				'tooltip' => __( 'Do you want to display the goal\'s progress bar?', 'give' ),
70
+				'label'   => __('Show Progress Bar:', 'give'),
71
+				'tooltip' => __('Do you want to display the goal\'s progress bar?', 'give'),
72 72
 				'options' => array(
73
-					'true'  => __( 'Show', 'give' ),
74
-					'false' => __( 'Hide', 'give' ),
73
+					'true'  => __('Show', 'give'),
74
+					'false' => __('Hide', 'give'),
75 75
 				),
76 76
 			),
77 77
 		);
Please login to merge, or discard this patch.
includes/post-types.php 1 patch
Spacing   +135 added lines, -135 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
 
@@ -23,40 +23,40 @@  discard block
 block discarded – undo
23 23
 function give_setup_post_types() {
24 24
 
25 25
 	/** Give Forms Post Type */
26
-	$give_forms_singular = give_get_option( 'disable_forms_singular' ) !== 'on' ? true : false;
26
+	$give_forms_singular = give_get_option('disable_forms_singular') !== 'on' ? true : false;
27 27
 
28
-	$give_forms_archives = give_get_option( 'disable_forms_archives' ) !== 'on' ? true : false;
28
+	$give_forms_archives = give_get_option('disable_forms_archives') !== 'on' ? true : false;
29 29
 
30
-	$give_forms_slug = defined( 'GIVE_SLUG' ) ? GIVE_SLUG : 'donations';
30
+	$give_forms_slug = defined('GIVE_SLUG') ? GIVE_SLUG : 'donations';
31 31
 	//support for old 'GIVE_FORMS_SLUG' constant
32
-	if ( defined( 'GIVE_FORMS_SLUG' ) ) {
32
+	if (defined('GIVE_FORMS_SLUG')) {
33 33
 		$give_forms_slug = GIVE_FORMS_SLUG;
34 34
 	}
35 35
 
36
-	$give_forms_rewrite = defined( 'GIVE_DISABLE_FORMS_REWRITE' ) && GIVE_DISABLE_FORMS_REWRITE ? false : array(
36
+	$give_forms_rewrite = defined('GIVE_DISABLE_FORMS_REWRITE') && GIVE_DISABLE_FORMS_REWRITE ? false : array(
37 37
 		'slug'       => $give_forms_slug,
38 38
 		'with_front' => false
39 39
 	);
40 40
 
41
-	$give_forms_labels = apply_filters( 'give_forms_labels', array(
42
-		'name'               => __( 'Donation %2$s', 'give' ),
41
+	$give_forms_labels = apply_filters('give_forms_labels', array(
42
+		'name'               => __('Donation %2$s', 'give'),
43 43
 		'singular_name'      => '%1$s',
44
-		'add_new'            => __( 'Add %1$s', 'give' ),
45
-		'add_new_item'       => __( 'Add New Donation %1$s', 'give' ),
46
-		'edit_item'          => __( 'Edit Donation %1$s', 'give' ),
47
-		'new_item'           => __( 'New %1$s', 'give' ),
48
-		'all_items'          => __( 'All %2$s', 'give' ),
49
-		'view_item'          => __( 'View %1$s', 'give' ),
50
-		'search_items'       => __( 'Search %2$s', 'give' ),
51
-		'not_found'          => __( 'No %2$s found', 'give' ),
52
-		'not_found_in_trash' => __( 'No %2$s found in Trash', 'give' ),
44
+		'add_new'            => __('Add %1$s', 'give'),
45
+		'add_new_item'       => __('Add New Donation %1$s', 'give'),
46
+		'edit_item'          => __('Edit Donation %1$s', 'give'),
47
+		'new_item'           => __('New %1$s', 'give'),
48
+		'all_items'          => __('All %2$s', 'give'),
49
+		'view_item'          => __('View %1$s', 'give'),
50
+		'search_items'       => __('Search %2$s', 'give'),
51
+		'not_found'          => __('No %2$s found', 'give'),
52
+		'not_found_in_trash' => __('No %2$s found in Trash', 'give'),
53 53
 		'parent_item_colon'  => '',
54
-		'menu_name'          => apply_filters( 'give_menu_name', __( 'Donations', 'give' ) ),
55
-		'name_admin_bar'     => apply_filters( 'give_name_admin_bar_name', __( 'Donation Form', 'give' ) )
56
-	) );
54
+		'menu_name'          => apply_filters('give_menu_name', __('Donations', 'give')),
55
+		'name_admin_bar'     => apply_filters('give_name_admin_bar_name', __('Donation Form', 'give'))
56
+	));
57 57
 
58
-	foreach ( $give_forms_labels as $key => $value ) {
59
-		$give_forms_labels[ $key ] = sprintf( $value, give_get_forms_label_singular(), give_get_forms_label_plural() );
58
+	foreach ($give_forms_labels as $key => $value) {
59
+		$give_forms_labels[$key] = sprintf($value, give_get_forms_label_singular(), give_get_forms_label_plural());
60 60
 	}
61 61
 
62 62
 	//Default give_forms supports
@@ -69,14 +69,14 @@  discard block
 block discarded – undo
69 69
 	);
70 70
 
71 71
 	//Has the user disabled the excerpt
72
-	if ( give_get_option( 'disable_forms_excerpt' ) === 'on' ) {
73
-		unset( $give_form_supports[2] );
72
+	if (give_get_option('disable_forms_excerpt') === 'on') {
73
+		unset($give_form_supports[2]);
74 74
 	}
75 75
 
76 76
 	//Has user disabled the featured image?
77
-	if ( give_get_option( 'disable_form_featured_img' ) === 'on' ) {
78
-		unset( $give_form_supports[1] );
79
-		remove_action( 'give_before_single_form_summary', 'give_show_form_images' );
77
+	if (give_get_option('disable_form_featured_img') === 'on') {
78
+		unset($give_form_supports[1]);
79
+		remove_action('give_before_single_form_summary', 'give_show_form_images');
80 80
 	}
81 81
 
82 82
 	$give_forms_args = array(
@@ -92,42 +92,42 @@  discard block
 block discarded – undo
92 92
 		'has_archive'        => $give_forms_archives,
93 93
 		'menu_icon'          => 'dashicons-give',
94 94
 		'hierarchical'       => false,
95
-		'supports'           => apply_filters( 'give_forms_supports', $give_form_supports ),
95
+		'supports'           => apply_filters('give_forms_supports', $give_form_supports),
96 96
 	);
97
-	register_post_type( 'give_forms', apply_filters( 'give_forms_post_type_args', $give_forms_args ) );
97
+	register_post_type('give_forms', apply_filters('give_forms_post_type_args', $give_forms_args));
98 98
 	
99 99
 	/** Payment Post Type */
100 100
 	$payment_labels = array(
101
-		'name'               => _x( 'Donations', 'post type general name', 'give' ),
102
-		'singular_name'      => _x( 'Donation', 'post type singular name', 'give' ),
103
-		'add_new'            => __( 'Add New', 'give' ),
104
-		'add_new_item'       => __( 'Add New Donation', 'give' ),
105
-		'edit_item'          => __( 'Edit Donation', 'give' ),
106
-		'new_item'           => __( 'New Donation', 'give' ),
107
-		'all_items'          => __( 'All Donations', 'give' ),
108
-		'view_item'          => __( 'View Donation', 'give' ),
109
-		'search_items'       => __( 'Search Donations', 'give' ),
110
-		'not_found'          => __( 'No Donations found', 'give' ),
111
-		'not_found_in_trash' => __( 'No Donations found in Trash', 'give' ),
101
+		'name'               => _x('Donations', 'post type general name', 'give'),
102
+		'singular_name'      => _x('Donation', 'post type singular name', 'give'),
103
+		'add_new'            => __('Add New', 'give'),
104
+		'add_new_item'       => __('Add New Donation', 'give'),
105
+		'edit_item'          => __('Edit Donation', 'give'),
106
+		'new_item'           => __('New Donation', 'give'),
107
+		'all_items'          => __('All Donations', 'give'),
108
+		'view_item'          => __('View Donation', 'give'),
109
+		'search_items'       => __('Search Donations', 'give'),
110
+		'not_found'          => __('No Donations found', 'give'),
111
+		'not_found_in_trash' => __('No Donations found in Trash', 'give'),
112 112
 		'parent_item_colon'  => '',
113
-		'menu_name'          => __( 'Transactions', 'give' )
113
+		'menu_name'          => __('Transactions', 'give')
114 114
 	);
115 115
 
116 116
 	$payment_args = array(
117
-		'labels'          => apply_filters( 'give_payment_labels', $payment_labels ),
117
+		'labels'          => apply_filters('give_payment_labels', $payment_labels),
118 118
 		'public'          => false,
119 119
 		'query_var'       => false,
120 120
 		'rewrite'         => false,
121 121
 		'map_meta_cap'    => true,
122 122
 		'capability_type' => 'give_payment',
123
-		'supports'        => array( 'title' ),
123
+		'supports'        => array('title'),
124 124
 		'can_export'      => true
125 125
 	);
126
-	register_post_type( 'give_payment', $payment_args );
126
+	register_post_type('give_payment', $payment_args);
127 127
 
128 128
 }
129 129
 
130
-add_action( 'init', 'give_setup_post_types', 1 );
130
+add_action('init', 'give_setup_post_types', 1);
131 131
 
132 132
 
133 133
 /**
@@ -140,32 +140,32 @@  discard block
 block discarded – undo
140 140
  */
141 141
 function give_setup_taxonomies() {
142 142
 
143
-	$slug = defined( 'GIVE_FORMS_SLUG' ) ? GIVE_FORMS_SLUG : 'donations';
143
+	$slug = defined('GIVE_FORMS_SLUG') ? GIVE_FORMS_SLUG : 'donations';
144 144
 
145 145
 	/** Categories */
146 146
 	$category_labels = array(
147 147
 		/* translators: %s: form singular label */
148
-		'name'              => sprintf( _x( '%s Categories', 'taxonomy general name', 'give' ), give_get_forms_label_singular() ),
149
-		'singular_name'     => _x( 'Category', 'taxonomy singular name', 'give' ),
150
-		'search_items'      => __( 'Search Categories', 'give' ),
151
-		'all_items'         => __( 'All Categories', 'give' ),
152
-		'parent_item'       => __( 'Parent Category', 'give' ),
153
-		'parent_item_colon' => __( 'Parent Category:', 'give' ),
154
-		'edit_item'         => __( 'Edit Category', 'give' ),
155
-		'update_item'       => __( 'Update Category', 'give' ),
148
+		'name'              => sprintf(_x('%s Categories', 'taxonomy general name', 'give'), give_get_forms_label_singular()),
149
+		'singular_name'     => _x('Category', 'taxonomy singular name', 'give'),
150
+		'search_items'      => __('Search Categories', 'give'),
151
+		'all_items'         => __('All Categories', 'give'),
152
+		'parent_item'       => __('Parent Category', 'give'),
153
+		'parent_item_colon' => __('Parent Category:', 'give'),
154
+		'edit_item'         => __('Edit Category', 'give'),
155
+		'update_item'       => __('Update Category', 'give'),
156 156
 		/* translators: %s: form singular label */
157
-		'add_new_item'      => sprintf( __( 'Add New %s Category', 'give' ), give_get_forms_label_singular() ),
158
-		'new_item_name'     => __( 'New Category Name', 'give' ),
159
-		'menu_name'         => __( 'Categories', 'give' ),
157
+		'add_new_item'      => sprintf(__('Add New %s Category', 'give'), give_get_forms_label_singular()),
158
+		'new_item_name'     => __('New Category Name', 'give'),
159
+		'menu_name'         => __('Categories', 'give'),
160 160
 	);
161 161
 
162
-	$category_args = apply_filters( 'give_forms_category_args', array(
162
+	$category_args = apply_filters('give_forms_category_args', array(
163 163
 			'hierarchical' => true,
164
-			'labels'       => apply_filters( 'give_forms_category_labels', $category_labels ),
164
+			'labels'       => apply_filters('give_forms_category_labels', $category_labels),
165 165
 			'show_ui'      => true,
166 166
 			'query_var'    => 'give_forms_category',
167 167
 			'rewrite'      => array(
168
-				'slug'         => $slug . '/category',
168
+				'slug'         => $slug.'/category',
169 169
 				'with_front'   => false,
170 170
 				'hierarchical' => true
171 171
 			),
@@ -179,36 +179,36 @@  discard block
 block discarded – undo
179 179
 	);
180 180
 
181 181
 	//Does the user want categories?
182
-	if ( give_get_option( 'enable_categories' ) == 'on' ) {
183
-		register_taxonomy( 'give_forms_category', array( 'give_forms' ), $category_args );
184
-		register_taxonomy_for_object_type( 'give_forms_category', 'give_forms' );
182
+	if (give_get_option('enable_categories') == 'on') {
183
+		register_taxonomy('give_forms_category', array('give_forms'), $category_args);
184
+		register_taxonomy_for_object_type('give_forms_category', 'give_forms');
185 185
 	}
186 186
 
187 187
 
188 188
 	/** Tags */
189 189
 	$tag_labels = array(
190 190
 		/* translators: %s: form singular label */
191
-		'name'                  => sprintf( _x( '%s Tags', 'taxonomy general name', 'give' ), give_get_forms_label_singular() ),
192
-		'singular_name'         => _x( 'Tag', 'taxonomy singular name', 'give' ),
193
-		'search_items'          => __( 'Search Tags', 'give' ),
194
-		'all_items'             => __( 'All Tags', 'give' ),
195
-		'parent_item'           => __( 'Parent Tag', 'give' ),
196
-		'parent_item_colon'     => __( 'Parent Tag:', 'give' ),
197
-		'edit_item'             => __( 'Edit Tag', 'give' ),
198
-		'update_item'           => __( 'Update Tag', 'give' ),
199
-		'add_new_item'          => __( 'Add New Tag', 'give' ),
200
-		'new_item_name'         => __( 'New Tag Name', 'give' ),
201
-		'menu_name'             => __( 'Tags', 'give' ),
191
+		'name'                  => sprintf(_x('%s Tags', 'taxonomy general name', 'give'), give_get_forms_label_singular()),
192
+		'singular_name'         => _x('Tag', 'taxonomy singular name', 'give'),
193
+		'search_items'          => __('Search Tags', 'give'),
194
+		'all_items'             => __('All Tags', 'give'),
195
+		'parent_item'           => __('Parent Tag', 'give'),
196
+		'parent_item_colon'     => __('Parent Tag:', 'give'),
197
+		'edit_item'             => __('Edit Tag', 'give'),
198
+		'update_item'           => __('Update Tag', 'give'),
199
+		'add_new_item'          => __('Add New Tag', 'give'),
200
+		'new_item_name'         => __('New Tag Name', 'give'),
201
+		'menu_name'             => __('Tags', 'give'),
202 202
 		/* translators: %s: form singular label */
203
-		'choose_from_most_used' => sprintf( __( 'Choose from most used %s tags.', 'give' ), give_get_forms_label_singular() ),
203
+		'choose_from_most_used' => sprintf(__('Choose from most used %s tags.', 'give'), give_get_forms_label_singular()),
204 204
 	);
205 205
 
206
-	$tag_args = apply_filters( 'give_forms_tag_args', array(
206
+	$tag_args = apply_filters('give_forms_tag_args', array(
207 207
 			'hierarchical' => false,
208
-			'labels'       => apply_filters( 'give_forms_tag_labels', $tag_labels ),
208
+			'labels'       => apply_filters('give_forms_tag_labels', $tag_labels),
209 209
 			'show_ui'      => true,
210 210
 			'query_var'    => 'give_forms_tag',
211
-			'rewrite'      => array( 'slug' => $slug . '/tag', 'with_front' => false, 'hierarchical' => true ),
211
+			'rewrite'      => array('slug' => $slug.'/tag', 'with_front' => false, 'hierarchical' => true),
212 212
 			'capabilities' => array(
213 213
 				'manage_terms' => 'manage_give_forms_terms',
214 214
 				'edit_terms'   => 'edit_give_forms_terms',
@@ -219,15 +219,15 @@  discard block
 block discarded – undo
219 219
 		)
220 220
 	);
221 221
 
222
-	if ( give_get_option( 'enable_tags' ) == 'on' ) {
223
-		register_taxonomy( 'give_forms_tag', array( 'give_forms' ), $tag_args );
224
-		register_taxonomy_for_object_type( 'give_forms_tag', 'give_forms' );
222
+	if (give_get_option('enable_tags') == 'on') {
223
+		register_taxonomy('give_forms_tag', array('give_forms'), $tag_args);
224
+		register_taxonomy_for_object_type('give_forms_tag', 'give_forms');
225 225
 	}
226 226
 
227 227
 
228 228
 }
229 229
 
230
-add_action( 'init', 'give_setup_taxonomies', 0 );
230
+add_action('init', 'give_setup_taxonomies', 0);
231 231
 
232 232
 
233 233
 /**
@@ -238,11 +238,11 @@  discard block
 block discarded – undo
238 238
  */
239 239
 function give_get_default_form_labels() {
240 240
 	$defaults = array(
241
-		'singular' => __( 'Form', 'give' ),
242
-		'plural'   => __( 'Forms', 'give' )
241
+		'singular' => __('Form', 'give'),
242
+		'plural'   => __('Forms', 'give')
243 243
 	);
244 244
 
245
-	return apply_filters( 'give_default_form_name', $defaults );
245
+	return apply_filters('give_default_form_name', $defaults);
246 246
 }
247 247
 
248 248
 /**
@@ -254,10 +254,10 @@  discard block
 block discarded – undo
254 254
  *
255 255
  * @return string $defaults['singular'] Singular label
256 256
  */
257
-function give_get_forms_label_singular( $lowercase = false ) {
257
+function give_get_forms_label_singular($lowercase = false) {
258 258
 	$defaults = give_get_default_form_labels();
259 259
 
260
-	return ( $lowercase ) ? strtolower( $defaults['singular'] ) : $defaults['singular'];
260
+	return ($lowercase) ? strtolower($defaults['singular']) : $defaults['singular'];
261 261
 }
262 262
 
263 263
 /**
@@ -266,10 +266,10 @@  discard block
 block discarded – undo
266 266
  * @since 1.0
267 267
  * @return string $defaults['plural'] Plural label
268 268
  */
269
-function give_get_forms_label_plural( $lowercase = false ) {
269
+function give_get_forms_label_plural($lowercase = false) {
270 270
 	$defaults = give_get_default_form_labels();
271 271
 
272
-	return ( $lowercase ) ? strtolower( $defaults['plural'] ) : $defaults['plural'];
272
+	return ($lowercase) ? strtolower($defaults['plural']) : $defaults['plural'];
273 273
 }
274 274
 
275 275
 /**
@@ -281,12 +281,12 @@  discard block
 block discarded – undo
281 281
  *
282 282
  * @return string $title New placeholder text
283 283
  */
284
-function give_change_default_title( $title ) {
284
+function give_change_default_title($title) {
285 285
 	// If a frontend plugin uses this filter (check extensions before changing this function)
286
-	if ( ! is_admin() ) {
286
+	if ( ! is_admin()) {
287 287
 		$title = sprintf(
288 288
 			/* translators: %s: form singular label */
289
-			__( 'Enter %s title here', 'give' ),
289
+			__('Enter %s title here', 'give'),
290 290
 			give_get_forms_label_singular()
291 291
 		);
292 292
 
@@ -295,10 +295,10 @@  discard block
 block discarded – undo
295 295
 
296 296
 	$screen = get_current_screen();
297 297
 
298
-	if ( 'give_forms' == $screen->post_type ) {
298
+	if ('give_forms' == $screen->post_type) {
299 299
 		$title = sprintf(
300 300
 			/* translators: %s: form singular label */
301
-			__( 'Enter %s title here', 'give' ),
301
+			__('Enter %s title here', 'give'),
302 302
 			give_get_forms_label_singular()
303 303
 		);
304 304
 	}
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 	return $title;
307 307
 }
308 308
 
309
-add_filter( 'enter_title_here', 'give_change_default_title' );
309
+add_filter('enter_title_here', 'give_change_default_title');
310 310
 
311 311
 /**
312 312
  * Registers Custom Post Statuses which are used by the Payments
@@ -316,50 +316,50 @@  discard block
 block discarded – undo
316 316
  */
317 317
 function give_register_post_type_statuses() {
318 318
 	// Payment Statuses
319
-	register_post_status( 'refunded', array(
320
-		'label'                     => _x( 'Refunded', 'Refunded payment status', 'give' ),
319
+	register_post_status('refunded', array(
320
+		'label'                     => _x('Refunded', 'Refunded payment status', 'give'),
321 321
 		'public'                    => true,
322 322
 		'exclude_from_search'       => false,
323 323
 		'show_in_admin_all_list'    => true,
324 324
 		'show_in_admin_status_list' => true,
325
-		'label_count'               => _n_noop( 'Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'give' )
326
-	) );
327
-	register_post_status( 'failed', array(
328
-		'label'                     => _x( 'Failed', 'Failed payment status', 'give' ),
325
+		'label_count'               => _n_noop('Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'give')
326
+	));
327
+	register_post_status('failed', array(
328
+		'label'                     => _x('Failed', 'Failed payment status', 'give'),
329 329
 		'public'                    => true,
330 330
 		'exclude_from_search'       => false,
331 331
 		'show_in_admin_all_list'    => true,
332 332
 		'show_in_admin_status_list' => true,
333
-		'label_count'               => _n_noop( 'Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'give' )
334
-	) );
335
-	register_post_status( 'revoked', array(
336
-		'label'                     => _x( 'Revoked', 'Revoked payment status', 'give' ),
333
+		'label_count'               => _n_noop('Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'give')
334
+	));
335
+	register_post_status('revoked', array(
336
+		'label'                     => _x('Revoked', 'Revoked payment status', 'give'),
337 337
 		'public'                    => true,
338 338
 		'exclude_from_search'       => false,
339 339
 		'show_in_admin_all_list'    => true,
340 340
 		'show_in_admin_status_list' => true,
341
-		'label_count'               => _n_noop( 'Revoked <span class="count">(%s)</span>', 'Revoked <span class="count">(%s)</span>', 'give' )
342
-	) );
343
-	register_post_status( 'cancelled', array(
344
-		'label'                     => _x( 'Cancelled', 'Cancelled payment status', 'give' ),
341
+		'label_count'               => _n_noop('Revoked <span class="count">(%s)</span>', 'Revoked <span class="count">(%s)</span>', 'give')
342
+	));
343
+	register_post_status('cancelled', array(
344
+		'label'                     => _x('Cancelled', 'Cancelled payment status', 'give'),
345 345
 		'public'                    => true,
346 346
 		'exclude_from_search'       => false,
347 347
 		'show_in_admin_all_list'    => true,
348 348
 		'show_in_admin_status_list' => true,
349
-		'label_count'               => _n_noop( 'Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'give' )
350
-	) );
351
-	register_post_status( 'abandoned', array(
352
-		'label'                     => _x( 'Abandoned', 'Abandoned payment status', 'give' ),
349
+		'label_count'               => _n_noop('Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'give')
350
+	));
351
+	register_post_status('abandoned', array(
352
+		'label'                     => _x('Abandoned', 'Abandoned payment status', 'give'),
353 353
 		'public'                    => true,
354 354
 		'exclude_from_search'       => false,
355 355
 		'show_in_admin_all_list'    => true,
356 356
 		'show_in_admin_status_list' => true,
357
-		'label_count'               => _n_noop( 'Abandoned <span class="count">(%s)</span>', 'Abandoned <span class="count">(%s)</span>', 'give' )
358
-	) );
357
+		'label_count'               => _n_noop('Abandoned <span class="count">(%s)</span>', 'Abandoned <span class="count">(%s)</span>', 'give')
358
+	));
359 359
 
360 360
 }
361 361
 
362
-add_action( 'init', 'give_register_post_type_statuses' );
362
+add_action('init', 'give_register_post_type_statuses');
363 363
 
364 364
 /**
365 365
  * Updated Messages
@@ -372,43 +372,43 @@  discard block
 block discarded – undo
372 372
  *
373 373
  * @return array $messages New post updated messages
374 374
  */
375
-function give_updated_messages( $messages ) {
375
+function give_updated_messages($messages) {
376 376
 	global $post, $post_ID;
377 377
 
378
-	$url1 = '<a href="' . get_permalink( $post_ID ) . '">';
378
+	$url1 = '<a href="'.get_permalink($post_ID).'">';
379 379
 	$url2 = give_get_forms_label_singular();
380 380
 	$url3 = '</a>';
381 381
 
382 382
 	$messages['give_forms'] = array(
383
-		1 => sprintf( __( '%2$s updated. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ),
384
-		4 => sprintf( __( '%2$s updated. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ),
385
-		6 => sprintf( __( '%2$s published. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ),
386
-		7 => sprintf( __( '%2$s saved. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ),
387
-		8 => sprintf( __( '%2$s submitted. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 )
383
+		1 => sprintf(__('%2$s updated. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3),
384
+		4 => sprintf(__('%2$s updated. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3),
385
+		6 => sprintf(__('%2$s published. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3),
386
+		7 => sprintf(__('%2$s saved. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3),
387
+		8 => sprintf(__('%2$s submitted. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3)
388 388
 	);
389 389
 
390 390
 	return $messages;
391 391
 }
392 392
 
393
-add_filter( 'post_updated_messages', 'give_updated_messages' );
393
+add_filter('post_updated_messages', 'give_updated_messages');
394 394
 
395 395
 
396 396
 /**
397 397
  * Setup Post Type Images
398 398
  */
399
-add_action( 'after_setup_theme', 'give_add_thumbnail_support', 10 );
399
+add_action('after_setup_theme', 'give_add_thumbnail_support', 10);
400 400
 
401 401
 /**
402 402
  * Ensure post thumbnail support is turned on
403 403
  */
404 404
 function give_add_thumbnail_support() {
405
-	if ( give_get_option( 'disable_form_featured_img' ) === 'on' ) {
405
+	if (give_get_option('disable_form_featured_img') === 'on') {
406 406
 		return;
407 407
 	}
408
-	if ( ! current_theme_supports( 'post-thumbnails' ) ) {
409
-		add_theme_support( 'post-thumbnails' );
408
+	if ( ! current_theme_supports('post-thumbnails')) {
409
+		add_theme_support('post-thumbnails');
410 410
 	}
411
-	add_post_type_support( 'give_forms', 'thumbnail' );
411
+	add_post_type_support('give_forms', 'thumbnail');
412 412
 }
413 413
 
414 414
 /**
@@ -420,19 +420,19 @@  discard block
 block discarded – undo
420 420
 function give_widgets_init() {
421 421
 
422 422
 	//Single Give Forms (disabled if single turned off in settings)
423
-	if ( give_get_option( 'disable_forms_singular' ) !== 'on' && give_get_option( 'disable_form_sidebar' ) !== 'on' ) {
423
+	if (give_get_option('disable_forms_singular') !== 'on' && give_get_option('disable_form_sidebar') !== 'on') {
424 424
 
425
-		register_sidebar( apply_filters( 'give_forms_single_sidebar', array(
426
-			'name'          => __( 'Give Single Form Sidebar', 'give' ),
425
+		register_sidebar(apply_filters('give_forms_single_sidebar', array(
426
+			'name'          => __('Give Single Form Sidebar', 'give'),
427 427
 			'id'            => 'give-forms-sidebar',
428
-			'description'   => __( 'Widgets in this area will be shown on the single Give forms aside area. This sidebar will not display for embedded forms.', 'give' ),
428
+			'description'   => __('Widgets in this area will be shown on the single Give forms aside area. This sidebar will not display for embedded forms.', 'give'),
429 429
 			'before_widget' => '<div id="%1$s" class="widget %2$s">',
430 430
 			'after_widget'  => '</div>',
431 431
 			'before_title'  => '<h3 class="widgettitle widget-title">',
432 432
 			'after_title'   => '</h3>',
433
-		) ) );
433
+		)));
434 434
 
435 435
 	}
436 436
 }
437 437
 
438
-add_action( 'widgets_init', 'give_widgets_init', 999 );
438
+add_action('widgets_init', 'give_widgets_init', 999);
Please login to merge, or discard this patch.
includes/gateways/manual.php 1 patch
Spacing   +14 added lines, -14 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
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
  * @since 1.0
21 21
  * @return void
22 22
  */
23
-add_action( 'give_manual_cc_form', '__return_false' );
23
+add_action('give_manual_cc_form', '__return_false');
24 24
 
25 25
 /**
26 26
  * Processes the purchase data and uses the Manual Payment gateway to record
@@ -32,17 +32,17 @@  discard block
 block discarded – undo
32 32
  *
33 33
  * @return void
34 34
  */
35
-function give_manual_payment( $purchase_data ) {
35
+function give_manual_payment($purchase_data) {
36 36
 
37
-	if ( ! wp_verify_nonce( $purchase_data['gateway_nonce'], 'give-gateway' ) ) {
38
-		wp_die( __( 'Nonce verification has failed', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) );
37
+	if ( ! wp_verify_nonce($purchase_data['gateway_nonce'], 'give-gateway')) {
38
+		wp_die(__('Nonce verification has failed', 'give'), __('Error', 'give'), array('response' => 403));
39 39
 	}
40 40
 	
41 41
 	//Create payment_data array
42 42
 	$payment_data = array(
43 43
 		'price'           => $purchase_data['price'],
44 44
 		'give_form_title' => $purchase_data['post_data']['give-form-title'],
45
-		'give_form_id'    => intval( $purchase_data['post_data']['give-form-id'] ),
45
+		'give_form_id'    => intval($purchase_data['post_data']['give-form-id']),
46 46
 		'give_price_id'   => isset($purchase_data['post_data']['give-price-id']) ? $purchase_data['post_data']['give-price-id'] : '',
47 47
 		'date'            => $purchase_data['date'],
48 48
 		'user_email'      => $purchase_data['user_email'],
@@ -52,24 +52,24 @@  discard block
 block discarded – undo
52 52
 		'status'          => 'pending'
53 53
 	);
54 54
 	// Record the pending payment
55
-	$payment = give_insert_payment( $payment_data );
55
+	$payment = give_insert_payment($payment_data);
56 56
 
57
-	if ( $payment ) {
58
-		give_update_payment_status( $payment, 'publish' );
57
+	if ($payment) {
58
+		give_update_payment_status($payment, 'publish');
59 59
 		give_send_to_success_page();
60 60
 	} else {
61 61
 		give_record_gateway_error(
62
-			__( 'Payment Error', 'give' ),
62
+			__('Payment Error', 'give'),
63 63
 			sprintf(
64 64
 				/* translators: %s: payment data */
65
-				__( 'The payment creation failed while processing a manual (free or test) donation. Payment data: %s', 'give' ),
66
-				json_encode( $payment_data )
65
+				__('The payment creation failed while processing a manual (free or test) donation. Payment data: %s', 'give'),
66
+				json_encode($payment_data)
67 67
 			),
68 68
 			$payment
69 69
 		);
70 70
 		// If errors are present, send the user back to the purchase page so they can be corrected
71
-		give_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['give-gateway'] );
71
+		give_send_back_to_checkout('?payment-mode='.$purchase_data['post_data']['give-gateway']);
72 72
 	}
73 73
 }
74 74
 
75
-add_action( 'give_gateway_manual', 'give_manual_payment' );
75
+add_action('give_gateway_manual', 'give_manual_payment');
Please login to merge, or discard this patch.
includes/gateways/offline-donations.php 1 patch
Spacing   +122 added lines, -122 removed lines patch added patch discarded remove patch
@@ -18,17 +18,17 @@  discard block
 block discarded – undo
18 18
  *
19 19
  * @return array
20 20
  */
21
-function give_offline_register_gateway( $gateways ) {
21
+function give_offline_register_gateway($gateways) {
22 22
 	// Format: ID => Name
23 23
 	$gateways['offline'] = array(
24
-		'admin_label'    => esc_attr__( 'Offline Donation', 'give' ),
25
-		'checkout_label' => esc_attr__( 'Offline Donation', 'give' )
24
+		'admin_label'    => esc_attr__('Offline Donation', 'give'),
25
+		'checkout_label' => esc_attr__('Offline Donation', 'give')
26 26
 	);
27 27
 
28 28
 	return $gateways;
29 29
 }
30 30
 
31
-add_filter( 'give_payment_gateways', 'give_offline_register_gateway', 1 );
31
+add_filter('give_payment_gateways', 'give_offline_register_gateway', 1);
32 32
 
33 33
 
34 34
 /**
@@ -40,56 +40,56 @@  discard block
 block discarded – undo
40 40
  *
41 41
  * @return void
42 42
  */
43
-function give_offline_payment_cc_form( $form_id ) {
43
+function give_offline_payment_cc_form($form_id) {
44 44
 
45
-	$post_offline_customization_option = get_post_meta( $form_id, '_give_customize_offline_donations', true );
46
-	$post_offline_instructions         = get_post_meta( $form_id, '_give_offline_checkout_notes', true );
47
-	$global_offline_instruction        = give_get_option( 'global_offline_donation_content' );
45
+	$post_offline_customization_option = get_post_meta($form_id, '_give_customize_offline_donations', true);
46
+	$post_offline_instructions         = get_post_meta($form_id, '_give_offline_checkout_notes', true);
47
+	$global_offline_instruction        = give_get_option('global_offline_donation_content');
48 48
 	$offline_instructions              = $global_offline_instruction;
49 49
 
50
-	if ( $post_offline_customization_option == 'yes' ) {
50
+	if ($post_offline_customization_option == 'yes') {
51 51
 		$offline_instructions = $post_offline_instructions;
52 52
 	}
53 53
 
54 54
 
55 55
 	ob_start(); ?>
56
-	<?php do_action( 'give_before_offline_info_fields', $form_id ); ?>
56
+	<?php do_action('give_before_offline_info_fields', $form_id); ?>
57 57
 	<fieldset id="give_offline_payment_info">
58 58
 		<?php
59
-		$settings_url         = admin_url( 'post.php?post=' . $form_id . '&action=edit&message=1' );
59
+		$settings_url         = admin_url('post.php?post='.$form_id.'&action=edit&message=1');
60 60
 		/* translators: %s: form settings url */
61
-		$offline_instructions = ! empty( $offline_instructions ) ? $offline_instructions : sprintf( esc_attr__( 'Please enter offline donation instructions in <a href="%s">this form\'s settings</a>.', 'give' ), $settings_url );
62
-		echo wpautop( stripslashes( $offline_instructions ) );
61
+		$offline_instructions = ! empty($offline_instructions) ? $offline_instructions : sprintf(esc_attr__('Please enter offline donation instructions in <a href="%s">this form\'s settings</a>.', 'give'), $settings_url);
62
+		echo wpautop(stripslashes($offline_instructions));
63 63
 		?>
64 64
 	</fieldset>
65
-	<?php do_action( 'give_after_offline_info_fields', $form_id ); ?>
65
+	<?php do_action('give_after_offline_info_fields', $form_id); ?>
66 66
 	<?php
67 67
 	echo ob_get_clean();
68 68
 }
69 69
 
70
-add_action( 'give_offline_cc_form', 'give_offline_payment_cc_form' );
70
+add_action('give_offline_cc_form', 'give_offline_payment_cc_form');
71 71
 
72 72
 /**
73 73
  * Give Offline Billing Field
74 74
  *
75 75
  * @param $form_id
76 76
  */
77
-function give_offline_billing_fields( $form_id ) {
77
+function give_offline_billing_fields($form_id) {
78 78
 	//Enable Default CC fields (billing info)
79
-	$post_offline_cc_fields        = get_post_meta( $form_id, '_give_offline_donation_enable_billing_fields_single', true );
80
-	$post_offline_customize_option = get_post_meta( $form_id, '_give_customize_offline_donations', true );
79
+	$post_offline_cc_fields        = get_post_meta($form_id, '_give_offline_donation_enable_billing_fields_single', true);
80
+	$post_offline_customize_option = get_post_meta($form_id, '_give_customize_offline_donations', true);
81 81
 
82
-	$global_offline_cc_fields      = give_get_option( 'give_offline_donation_enable_billing_fields' );
82
+	$global_offline_cc_fields      = give_get_option('give_offline_donation_enable_billing_fields');
83 83
 
84 84
 	//Output CC Address fields if global option is on and user hasn't elected to customize this form's offline donation options
85
-	if ( $global_offline_cc_fields == 'on' && $post_offline_customize_option !== 'yes' ) {
86
-		give_default_cc_address_fields( $form_id );
87
-	} elseif($post_offline_customize_option == 'yes' && $post_offline_cc_fields == 'on') {
88
-		give_default_cc_address_fields( $form_id );
85
+	if ($global_offline_cc_fields == 'on' && $post_offline_customize_option !== 'yes') {
86
+		give_default_cc_address_fields($form_id);
87
+	} elseif ($post_offline_customize_option == 'yes' && $post_offline_cc_fields == 'on') {
88
+		give_default_cc_address_fields($form_id);
89 89
 	}
90 90
 }
91 91
 
92
-add_action( 'give_before_offline_info_fields', 'give_offline_billing_fields', 10, 1 );
92
+add_action('give_before_offline_info_fields', 'give_offline_billing_fields', 10, 1);
93 93
 
94 94
 /**
95 95
  * Process the payment
@@ -100,16 +100,16 @@  discard block
 block discarded – undo
100 100
  *
101 101
  * @return void
102 102
  */
103
-function give_offline_process_payment( $purchase_data ) {
103
+function give_offline_process_payment($purchase_data) {
104 104
 
105
-	$purchase_summary = give_get_purchase_summary( $purchase_data );
105
+	$purchase_summary = give_get_purchase_summary($purchase_data);
106 106
 
107 107
 	// setup the payment details
108 108
 	$payment_data = array(
109 109
 		'price'           => $purchase_data['price'],
110 110
 		'give_form_title' => $purchase_data['post_data']['give-form-title'],
111
-		'give_form_id'    => intval( $purchase_data['post_data']['give-form-id'] ),
112
-		'give_price_id'   => isset( $purchase_data['post_data']['give-price-id'] ) ? $purchase_data['post_data']['give-price-id'] : '',
111
+		'give_form_id'    => intval($purchase_data['post_data']['give-form-id']),
112
+		'give_price_id'   => isset($purchase_data['post_data']['give-price-id']) ? $purchase_data['post_data']['give-price-id'] : '',
113 113
 		'date'            => $purchase_data['date'],
114 114
 		'user_email'      => $purchase_data['user_email'],
115 115
 		'purchase_key'    => $purchase_data['purchase_key'],
@@ -121,20 +121,20 @@  discard block
 block discarded – undo
121 121
 
122 122
 
123 123
 	// record the pending payment
124
-	$payment = give_insert_payment( $payment_data );
124
+	$payment = give_insert_payment($payment_data);
125 125
 
126
-	if ( $payment ) {
127
-		give_offline_send_admin_notice( $payment );
128
-		give_offline_send_donor_instructions( $payment );
126
+	if ($payment) {
127
+		give_offline_send_admin_notice($payment);
128
+		give_offline_send_donor_instructions($payment);
129 129
 		give_send_to_success_page();
130 130
 	} else {
131 131
 		// if errors are present, send the user back to the donation form so they can be corrected
132
-		give_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['give-gateway'] );
132
+		give_send_back_to_checkout('?payment-mode='.$purchase_data['post_data']['give-gateway']);
133 133
 	}
134 134
 
135 135
 }
136 136
 
137
-add_action( 'give_gateway_offline', 'give_offline_process_payment' );
137
+add_action('give_gateway_offline', 'give_offline_process_payment');
138 138
 
139 139
 
140 140
 /**
@@ -147,47 +147,47 @@  discard block
 block discarded – undo
147 147
  * @since       1.0
148 148
  * @return void
149 149
  */
150
-function give_offline_send_donor_instructions( $payment_id = 0 ) {
150
+function give_offline_send_donor_instructions($payment_id = 0) {
151 151
 
152
-	$payment_data                      = give_get_payment_meta( $payment_id );
153
-	$post_offline_customization_option = get_post_meta( $payment_data['form_id'], '_give_customize_offline_donations', true );
152
+	$payment_data                      = give_get_payment_meta($payment_id);
153
+	$post_offline_customization_option = get_post_meta($payment_data['form_id'], '_give_customize_offline_donations', true);
154 154
 
155 155
 	//Customize email content depending on whether the single form has been customized
156
-	$email_content = give_get_option( 'global_offline_donation_email' );
156
+	$email_content = give_get_option('global_offline_donation_email');
157 157
 
158
-	if ( $post_offline_customization_option === 'yes' ) {
159
-		$email_content = get_post_meta( $payment_data['form_id'], '_give_offline_donation_email', true );
158
+	if ($post_offline_customization_option === 'yes') {
159
+		$email_content = get_post_meta($payment_data['form_id'], '_give_offline_donation_email', true);
160 160
 	}
161 161
 
162
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
163
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data );
162
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
163
+	$from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data);
164 164
 
165
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
166
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data );
165
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
166
+	$from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data);
167 167
 
168
-	$to_email = give_get_payment_user_email( $payment_id );
168
+	$to_email = give_get_payment_user_email($payment_id);
169 169
 
170
-	$subject = give_get_option( 'offline_donation_subject', __( 'Offline Donation Instructions', 'give' ) );
171
-	if ( $post_offline_customization_option === 'yes' ) {
172
-		$subject = get_post_meta( $payment_data['form_id'], '_give_offline_donation_subject', true );
170
+	$subject = give_get_option('offline_donation_subject', __('Offline Donation Instructions', 'give'));
171
+	if ($post_offline_customization_option === 'yes') {
172
+		$subject = get_post_meta($payment_data['form_id'], '_give_offline_donation_subject', true);
173 173
 	}
174 174
 
175
-	$subject = apply_filters( 'give_offline_donation_subject', wp_strip_all_tags( $subject ), $payment_id );
176
-	$subject = give_do_email_tags( $subject, $payment_id );
175
+	$subject = apply_filters('give_offline_donation_subject', wp_strip_all_tags($subject), $payment_id);
176
+	$subject = give_do_email_tags($subject, $payment_id);
177 177
 
178
-	$attachments = apply_filters( 'give_offline_donation_attachments', array(), $payment_id, $payment_data );
179
-	$message     = give_do_email_tags( $email_content, $payment_id );
178
+	$attachments = apply_filters('give_offline_donation_attachments', array(), $payment_id, $payment_data);
179
+	$message     = give_do_email_tags($email_content, $payment_id);
180 180
 
181 181
 	$emails = Give()->emails;
182 182
 
183
-	$emails->__set( 'from_name', $from_name );
184
-	$emails->__set( 'from_email', $from_email );
185
-	$emails->__set( 'heading', __( 'Offline Donation Instructions', 'give' ) );
183
+	$emails->__set('from_name', $from_name);
184
+	$emails->__set('from_email', $from_email);
185
+	$emails->__set('heading', __('Offline Donation Instructions', 'give'));
186 186
 
187
-	$headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data );
188
-	$emails->__set( 'headers', $headers );
187
+	$headers = apply_filters('give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data);
188
+	$emails->__set('headers', $headers);
189 189
 
190
-	$emails->send( $to_email, $subject, $message, $attachments );
190
+	$emails->send($to_email, $subject, $message, $attachments);
191 191
 
192 192
 }
193 193
 
@@ -204,50 +204,50 @@  discard block
 block discarded – undo
204 204
  * @return void
205 205
  *
206 206
  */
207
-function give_offline_send_admin_notice( $payment_id = 0 ) {
207
+function give_offline_send_admin_notice($payment_id = 0) {
208 208
 
209 209
 	/* Send an email notification to the admin */
210 210
 	$admin_email = give_get_admin_notice_emails();
211
-	$user_info   = give_get_payment_meta_user_info( $payment_id );
211
+	$user_info   = give_get_payment_meta_user_info($payment_id);
212 212
 
213
-	if ( isset( $user_info['id'] ) && $user_info['id'] > 0 ) {
214
-		$user_data = get_userdata( $user_info['id'] );
213
+	if (isset($user_info['id']) && $user_info['id'] > 0) {
214
+		$user_data = get_userdata($user_info['id']);
215 215
 		$name      = $user_data->display_name;
216
-	} elseif ( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) {
217
-		$name = $user_info['first_name'] . ' ' . $user_info['last_name'];
216
+	} elseif (isset($user_info['first_name']) && isset($user_info['last_name'])) {
217
+		$name = $user_info['first_name'].' '.$user_info['last_name'];
218 218
 	} else {
219 219
 		$name = $user_info['email'];
220 220
 	}
221 221
 
222
-	$amount = give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) );
222
+	$amount = give_currency_filter(give_format_amount(give_get_payment_amount($payment_id)));
223 223
 
224
-	$admin_subject = apply_filters( 'give_offline_admin_donation_notification_subject', esc_attr__( 'New Pending Donation', 'give' ), $payment_id );
224
+	$admin_subject = apply_filters('give_offline_admin_donation_notification_subject', esc_attr__('New Pending Donation', 'give'), $payment_id);
225 225
 
226
-	$admin_message = esc_attr__( 'Dear Admin,', 'give' ) . "\n\n";
227
-	$admin_message .= esc_attr__( 'An offline donation has been made on your website: ', 'give' ) . get_bloginfo( 'name' ) . ' ';
228
-	$admin_message .= esc_attr__( 'Hooray! The donation is in a pending status and is awaiting payment. Donation instructions have been emailed to the donor. Once you receive payment, be sure to mark the donation as complete using the link below.', 'give' ) . "\n\n";
226
+	$admin_message = esc_attr__('Dear Admin,', 'give')."\n\n";
227
+	$admin_message .= esc_attr__('An offline donation has been made on your website: ', 'give').get_bloginfo('name').' ';
228
+	$admin_message .= esc_attr__('Hooray! The donation is in a pending status and is awaiting payment. Donation instructions have been emailed to the donor. Once you receive payment, be sure to mark the donation as complete using the link below.', 'give')."\n\n";
229 229
 
230 230
 
231
-	$admin_message .= '<strong>' . esc_attr__( 'Donor: ', 'give' ) . '</strong>' . html_entity_decode( $name, ENT_COMPAT, 'UTF-8' ) . "\n";
232
-	$admin_message .= '<strong>' . esc_attr__( 'Amount: ', 'give' ) . '</strong>' . html_entity_decode( $amount, ENT_COMPAT, 'UTF-8' ) . "\n\n";
231
+	$admin_message .= '<strong>'.esc_attr__('Donor: ', 'give').'</strong>'.html_entity_decode($name, ENT_COMPAT, 'UTF-8')."\n";
232
+	$admin_message .= '<strong>'.esc_attr__('Amount: ', 'give').'</strong>'.html_entity_decode($amount, ENT_COMPAT, 'UTF-8')."\n\n";
233 233
 
234 234
 	$admin_message .= sprintf(
235 235
 		'<a href="%1$s">%2$s</a>',
236
-		admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details&id=' . $payment_id ),
237
-		__( 'Click Here to View and/or Update Donation Details', 'give' )
238
-	) . "\n\n";
236
+		admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details&id='.$payment_id),
237
+		__('Click Here to View and/or Update Donation Details', 'give')
238
+	)."\n\n";
239 239
 
240
-	$admin_message = apply_filters( 'give_offline_admin_donation_notification', $admin_message, $payment_id );
241
-	$attachments   = apply_filters( 'give_offline_admin_donation_notification_attachments', array(), $payment_id );
242
-	$admin_headers = apply_filters( 'give_offline_admin_donation_notification_headers', array(), $payment_id );
240
+	$admin_message = apply_filters('give_offline_admin_donation_notification', $admin_message, $payment_id);
241
+	$attachments   = apply_filters('give_offline_admin_donation_notification_attachments', array(), $payment_id);
242
+	$admin_headers = apply_filters('give_offline_admin_donation_notification_headers', array(), $payment_id);
243 243
 
244 244
 	//Send Email
245 245
 	$emails = Give()->emails;
246
-	if ( ! empty( $admin_headers ) ) {
247
-		$emails->__set( 'headers', $admin_headers );
246
+	if ( ! empty($admin_headers)) {
247
+		$emails->__set('headers', $admin_headers);
248 248
 	}
249 249
 
250
-	$emails->send( $admin_email, $admin_subject, $admin_message, $attachments );
250
+	$emails->send($admin_email, $admin_subject, $admin_message, $attachments);
251 251
 
252 252
 }
253 253
 
@@ -258,15 +258,15 @@  discard block
 block discarded – undo
258 258
  * @since  1.0
259 259
  * @return array
260 260
  */
261
-function give_offline_add_settings( $settings ) {
261
+function give_offline_add_settings($settings) {
262 262
 
263 263
 	//Vars
264 264
 	$prefix = '_give_';
265 265
 
266
-	$is_gateway_active = give_is_gateway_active( 'offline' );
266
+	$is_gateway_active = give_is_gateway_active('offline');
267 267
 
268 268
 	//this gateway isn't active
269
-	if ( ! $is_gateway_active ) {
269
+	if ( ! $is_gateway_active) {
270 270
 		//return settings and bounce
271 271
 		return $settings;
272 272
 	}
@@ -275,27 +275,27 @@  discard block
 block discarded – undo
275 275
 	$check_settings = array(
276 276
 
277 277
 		array(
278
-			'name'    => esc_attr__( 'Customize Offline Donations', 'give' ),
279
-			'desc'    => esc_attr__( 'If you would like to customize the donation instructions for this specific forms check this option.', 'give' ),
280
-			'id'      => $prefix . 'customize_offline_donations',
278
+			'name'    => esc_attr__('Customize Offline Donations', 'give'),
279
+			'desc'    => esc_attr__('If you would like to customize the donation instructions for this specific forms check this option.', 'give'),
280
+			'id'      => $prefix.'customize_offline_donations',
281 281
 			'type'    => 'radio_inline',
282 282
 			'default' => 'no',
283 283
 			'options' => array(
284
-				'yes' => esc_attr__( 'Yes', 'give' ),
285
-				'no'  => esc_attr__( 'No', 'give' ),
284
+				'yes' => esc_attr__('Yes', 'give'),
285
+				'no'  => esc_attr__('No', 'give'),
286 286
 			),
287 287
 		),
288 288
 		array(
289
-			'name'        => esc_attr__( 'Request Billing Information', 'give' ),
290
-			'desc'        => esc_attr__( 'This option will enable the billing details section for this form\'s offline donation payment gateway. The fieldset will appear above the offline donation instructions.', 'give' ),
291
-			'id'          => $prefix . 'offline_donation_enable_billing_fields_single',
289
+			'name'        => esc_attr__('Request Billing Information', 'give'),
290
+			'desc'        => esc_attr__('This option will enable the billing details section for this form\'s offline donation payment gateway. The fieldset will appear above the offline donation instructions.', 'give'),
291
+			'id'          => $prefix.'offline_donation_enable_billing_fields_single',
292 292
 			'row_classes' => 'give-subfield',
293 293
 			'type'        => 'checkbox'
294 294
 		),
295 295
 		array(
296
-			'id'          => $prefix . 'offline_checkout_notes',
297
-			'name'        => esc_attr__( 'Offline Donation Instructions', 'give' ),
298
-			'desc'        => esc_attr__( 'Enter the instructions you want to display to the donor during the donation process. Most likely this would include important information like mailing address and who to make the check out to.', 'give' ),
296
+			'id'          => $prefix.'offline_checkout_notes',
297
+			'name'        => esc_attr__('Offline Donation Instructions', 'give'),
298
+			'desc'        => esc_attr__('Enter the instructions you want to display to the donor during the donation process. Most likely this would include important information like mailing address and who to make the check out to.', 'give'),
299 299
 			'default'     => give_get_default_offline_donation_content(),
300 300
 			'type'        => 'wysiwyg',
301 301
 			'row_classes' => 'give-subfield',
@@ -304,17 +304,17 @@  discard block
 block discarded – undo
304 304
 			)
305 305
 		),
306 306
 		array(
307
-			'id'          => $prefix . 'offline_donation_subject',
308
-			'name'        => esc_attr__( 'Offline Donation Email Instructions Subject', 'give' ),
309
-			'desc'        => esc_attr__( 'Enter the subject line for the donation receipt email.', 'give' ),
310
-			'default'     => esc_attr__( '{donation} - Offline Donation Instructions', 'give' ),
307
+			'id'          => $prefix.'offline_donation_subject',
308
+			'name'        => esc_attr__('Offline Donation Email Instructions Subject', 'give'),
309
+			'desc'        => esc_attr__('Enter the subject line for the donation receipt email.', 'give'),
310
+			'default'     => esc_attr__('{donation} - Offline Donation Instructions', 'give'),
311 311
 			'row_classes' => 'give-subfield',
312 312
 			'type'        => 'text'
313 313
 		),
314 314
 		array(
315
-			'id'          => $prefix . 'offline_donation_email',
316
-			'name'        => esc_attr__( 'Offline Donation Email Instructions', 'give' ),
317
-			'desc'        => esc_attr__( 'Enter the instructions you want emailed to the donor after they have submitted the donation form. Most likely this would include important information like mailing address and who to make the check out to.', 'give' ),
315
+			'id'          => $prefix.'offline_donation_email',
316
+			'name'        => esc_attr__('Offline Donation Email Instructions', 'give'),
317
+			'desc'        => esc_attr__('Enter the instructions you want emailed to the donor after they have submitted the donation form. Most likely this would include important information like mailing address and who to make the check out to.', 'give'),
318 318
 			'default'     => give_get_default_offline_donation_email_content(),
319 319
 			'type'        => 'wysiwyg',
320 320
 			'row_classes' => 'give-subfield',
@@ -324,10 +324,10 @@  discard block
 block discarded – undo
324 324
 		)
325 325
 	);
326 326
 
327
-	return array_merge( $settings, $check_settings );
327
+	return array_merge($settings, $check_settings);
328 328
 }
329 329
 
330
-add_filter( 'give_forms_display_options_metabox_fields', 'give_offline_add_settings' );
330
+add_filter('give_forms_display_options_metabox_fields', 'give_offline_add_settings');
331 331
 
332 332
 
333 333
 /**
@@ -339,32 +339,32 @@  discard block
 block discarded – undo
339 339
  */
340 340
 function give_get_default_offline_donation_content() {
341 341
 
342
-	$sitename = get_bloginfo( 'sitename' );
342
+	$sitename = get_bloginfo('sitename');
343 343
 
344
-	$default_text = '<p>' . esc_attr__( 'In order to make an offline donation we ask that you please follow these instructions', 'give' ) . ': </p>';
344
+	$default_text = '<p>'.esc_attr__('In order to make an offline donation we ask that you please follow these instructions', 'give').': </p>';
345 345
 	$default_text .= '<ol>';
346 346
 	$default_text .= '<li>';
347 347
 	$default_text .= sprintf(
348 348
 		/* translators: %s: site name */
349
-		__( 'Make a check payable to "%s"', 'give' ),
349
+		__('Make a check payable to "%s"', 'give'),
350 350
 		$sitename
351 351
 	);
352 352
 	$default_text .= '</li>';
353 353
 	$default_text .= '<li>';
354 354
 	$default_text .= sprintf(
355 355
 		/* translators: %s: site name */
356
-		__( 'On the memo line of the check, please indicate that the donation is for "%s"', 'give' ),
356
+		__('On the memo line of the check, please indicate that the donation is for "%s"', 'give'),
357 357
 		$sitename
358 358
 	);
359 359
 	$default_text .= '</li>';
360
-	$default_text .= '<li>' . __( 'Please mail your check to:', 'give' ) . '</li>';
360
+	$default_text .= '<li>'.__('Please mail your check to:', 'give').'</li>';
361 361
 	$default_text .= '</ol>';
362
-	$default_text .= '&nbsp;&nbsp;&nbsp;&nbsp;<em>' . $sitename . '</em><br>';
362
+	$default_text .= '&nbsp;&nbsp;&nbsp;&nbsp;<em>'.$sitename.'</em><br>';
363 363
 	$default_text .= '&nbsp;&nbsp;&nbsp;&nbsp;<em>123 G Street </em><br>';
364 364
 	$default_text .= '&nbsp;&nbsp;&nbsp;&nbsp;<em>San Diego, CA 92101 </em><br>';
365
-	$default_text .= '<p>' . esc_attr__( 'All contributions will be gratefully acknowledged and are tax deductible.', 'give' ) . '</p>';
365
+	$default_text .= '<p>'.esc_attr__('All contributions will be gratefully acknowledged and are tax deductible.', 'give').'</p>';
366 366
 
367
-	return apply_filters( 'give_default_offline_donation_content', $default_text );
367
+	return apply_filters('give_default_offline_donation_content', $default_text);
368 368
 
369 369
 }
370 370
 
@@ -377,33 +377,33 @@  discard block
 block discarded – undo
377 377
  */
378 378
 function give_get_default_offline_donation_email_content() {
379 379
 
380
-	$sitename     = get_bloginfo( 'sitename' );
381
-	$default_text = '<p>' . esc_attr__( 'Dear {name},', 'give' ) . '</p>';
382
-	$default_text .= '<p>' . esc_attr__( 'Thank you for your offline donation request! Your generosity is greatly appreciated. In order to make an offline donation we ask that you please follow these instructions', 'give' ) . ': </p>';
380
+	$sitename     = get_bloginfo('sitename');
381
+	$default_text = '<p>'.esc_attr__('Dear {name},', 'give').'</p>';
382
+	$default_text .= '<p>'.esc_attr__('Thank you for your offline donation request! Your generosity is greatly appreciated. In order to make an offline donation we ask that you please follow these instructions', 'give').': </p>';
383 383
 	$default_text .= '<ol>';
384 384
 	$default_text .= '<li>';
385 385
 	$default_text .= sprintf(
386 386
 		/* translators: %s: site name */
387
-		__( 'Make a check payable to "%s"', 'give' ),
387
+		__('Make a check payable to "%s"', 'give'),
388 388
 		$sitename
389 389
 	);
390 390
 	$default_text .= '</li>';
391 391
 	$default_text .= '<li>';
392 392
 	$default_text .= sprintf(
393 393
 		/* translators: %s: site name */
394
-		__( 'On the memo line of the check, please indicate that the donation is for "%s"', 'give' ),
394
+		__('On the memo line of the check, please indicate that the donation is for "%s"', 'give'),
395 395
 		$sitename
396 396
 	);
397 397
 	$default_text .= '</li>';
398
-	$default_text .= '<li>' . __( 'Please mail your check to:', 'give' ) . '</li>';
398
+	$default_text .= '<li>'.__('Please mail your check to:', 'give').'</li>';
399 399
 	$default_text .= '</ol>';
400
-	$default_text .= '&nbsp;&nbsp;&nbsp;&nbsp;<em>' . $sitename . '</em><br>';
400
+	$default_text .= '&nbsp;&nbsp;&nbsp;&nbsp;<em>'.$sitename.'</em><br>';
401 401
 	$default_text .= '&nbsp;&nbsp;&nbsp;&nbsp;<em>123 G Street </em><br>';
402 402
 	$default_text .= '&nbsp;&nbsp;&nbsp;&nbsp;<em>San Diego, CA 92101 </em><br>';
403
-	$default_text .= '<p>' . esc_attr__( 'Once your donation has been received we will mark it as complete and you will receive an email receipt for your records. Please contact us with any questions you may have!', 'give' ) . '</p>';
404
-	$default_text .= '<p>' . esc_attr__( 'Sincerely,', 'give' ) . '</p>';
405
-	$default_text .= '<p>' . $sitename . '</p>';
403
+	$default_text .= '<p>'.esc_attr__('Once your donation has been received we will mark it as complete and you will receive an email receipt for your records. Please contact us with any questions you may have!', 'give').'</p>';
404
+	$default_text .= '<p>'.esc_attr__('Sincerely,', 'give').'</p>';
405
+	$default_text .= '<p>'.$sitename.'</p>';
406 406
 
407
-	return apply_filters( 'give_default_offline_donation_content', $default_text );
407
+	return apply_filters('give_default_offline_donation_content', $default_text);
408 408
 
409 409
 }
Please login to merge, or discard this patch.
includes/gateways/paypal-standard.php 1 patch
Spacing   +177 added lines, -177 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * @since       1.0
10 10
  */
11 11
 
12
-if ( ! defined( 'ABSPATH' ) ) {
12
+if ( ! defined('ABSPATH')) {
13 13
 	exit;
14 14
 }
15 15
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
  * @access private
22 22
  * @since  1.0
23 23
  */
24
-add_action( 'give_paypal_cc_form', '__return_false' );
24
+add_action('give_paypal_cc_form', '__return_false');
25 25
 
26 26
 /**
27 27
  * Process PayPal Purchase
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
  *
33 33
  * @return void
34 34
  */
35
-function give_process_paypal_purchase( $purchase_data ) {
35
+function give_process_paypal_purchase($purchase_data) {
36 36
 
37
-	if ( ! wp_verify_nonce( $purchase_data['gateway_nonce'], 'give-gateway' ) ) {
38
-		wp_die( __( 'Nonce verification has failed.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) );
37
+	if ( ! wp_verify_nonce($purchase_data['gateway_nonce'], 'give-gateway')) {
38
+		wp_die(__('Nonce verification has failed.', 'give'), __('Error', 'give'), array('response' => 403));
39 39
 	}
40 40
 
41
-	$form_id = intval( $purchase_data['post_data']['give-form-id'] );
41
+	$form_id = intval($purchase_data['post_data']['give-form-id']);
42 42
 	$price_id = isset($purchase_data['post_data']['give-price-id']) ? $purchase_data['post_data']['give-price-id'] : '';
43 43
 	
44 44
 	// Collect payment data
@@ -57,67 +57,67 @@  discard block
 block discarded – undo
57 57
 	);
58 58
 
59 59
 	// Record the pending payment
60
-	$payment = give_insert_payment( $payment_data );
60
+	$payment = give_insert_payment($payment_data);
61 61
 
62 62
 	// Check payment
63
-	if ( ! $payment ) {
63
+	if ( ! $payment) {
64 64
 		// Record the error
65 65
 		give_record_gateway_error(
66
-			__( 'Payment Error', 'give' ),
66
+			__('Payment Error', 'give'),
67 67
 			sprintf(
68 68
 				/* translators: %s: payment data */
69
-				__( 'Payment creation failed before sending buyer to PayPal. Payment data: %s', 'give' ),
70
-				json_encode( $payment_data )
69
+				__('Payment creation failed before sending buyer to PayPal. Payment data: %s', 'give'),
70
+				json_encode($payment_data)
71 71
 			),
72 72
 			$payment
73 73
 		);
74 74
 		// Problems? send back
75
-		give_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['give-gateway'] );
75
+		give_send_back_to_checkout('?payment-mode='.$purchase_data['post_data']['give-gateway']);
76 76
 	} else {
77 77
 		// Only send to PayPal if the pending payment is created successfully
78
-		$listener_url = add_query_arg( 'give-listener', 'IPN', home_url( 'index.php' ) );
78
+		$listener_url = add_query_arg('give-listener', 'IPN', home_url('index.php'));
79 79
 
80 80
 		// Get the success url
81
-		$return_url = add_query_arg( array(
81
+		$return_url = add_query_arg(array(
82 82
 			'payment-confirmation' => 'paypal',
83 83
 			'payment-id'           => $payment
84 84
 
85
-		), get_permalink( give_get_option( 'success_page' ) ) );
85
+		), get_permalink(give_get_option('success_page')));
86 86
 
87 87
 		// Get the PayPal redirect uri
88
-		$paypal_redirect = trailingslashit( give_get_paypal_redirect() ) . '?';
88
+		$paypal_redirect = trailingslashit(give_get_paypal_redirect()).'?';
89 89
 
90 90
 		//Item name - pass level name if variable priced
91 91
 		$item_name = $purchase_data['post_data']['give-form-title'];
92 92
 
93 93
 		//Verify has variable prices
94
-		if ( give_has_variable_prices( $form_id ) && isset( $purchase_data['post_data']['give-price-id'] ) ) {
94
+		if (give_has_variable_prices($form_id) && isset($purchase_data['post_data']['give-price-id'])) {
95 95
 
96
-			$item_price_level_text = give_get_price_option_name( $form_id, $purchase_data['post_data']['give-price-id'] );
96
+			$item_price_level_text = give_get_price_option_name($form_id, $purchase_data['post_data']['give-price-id']);
97 97
 
98
-			$price_level_amount = give_get_price_option_amount( $form_id, $purchase_data['post_data']['give-price-id'] );
98
+			$price_level_amount = give_get_price_option_amount($form_id, $purchase_data['post_data']['give-price-id']);
99 99
 
100 100
 			//Donation given doesn't match selected level (must be a custom amount)
101
-			if ( $price_level_amount != give_sanitize_amount( $purchase_data['price'] ) ) {
102
-				$custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true );
101
+			if ($price_level_amount != give_sanitize_amount($purchase_data['price'])) {
102
+				$custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true);
103 103
 				//user custom amount text if any, fallback to default if not
104
-				$item_name .= ' - ' . ( ! empty( $custom_amount_text ) ? $custom_amount_text : __( 'Custom Amount', 'give' ) );
104
+				$item_name .= ' - '.( ! empty($custom_amount_text) ? $custom_amount_text : __('Custom Amount', 'give'));
105 105
 
106 106
 			} //Is there any donation level text?
107
-			elseif ( ! empty( $item_price_level_text ) ) {
108
-				$item_name .= ' - ' . $item_price_level_text;
107
+			elseif ( ! empty($item_price_level_text)) {
108
+				$item_name .= ' - '.$item_price_level_text;
109 109
 			}
110 110
 
111 111
 		} //Single donation: Custom Amount
112
-		elseif ( give_get_form_price( $form_id ) !== give_sanitize_amount( $purchase_data['price'] ) ) {
113
-			$custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true );
112
+		elseif (give_get_form_price($form_id) !== give_sanitize_amount($purchase_data['price'])) {
113
+			$custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true);
114 114
 			//user custom amount text if any, fallback to default if not
115
-			$item_name .= ' - ' . ( ! empty( $custom_amount_text ) ? $custom_amount_text : __( 'Custom Amount', 'give' ) );
115
+			$item_name .= ' - '.( ! empty($custom_amount_text) ? $custom_amount_text : __('Custom Amount', 'give'));
116 116
 		}
117 117
 
118 118
 		// Setup PayPal arguments
119 119
 		$paypal_args = array(
120
-			'business'      => give_get_option( 'paypal_email', false ),
120
+			'business'      => give_get_option('paypal_email', false),
121 121
 			'email'         => $purchase_data['user_email'],
122 122
 			'invoice'       => $purchase_data['purchase_key'],
123 123
 			'amount'        => $purchase_data['price'],
@@ -128,25 +128,25 @@  discard block
 block discarded – undo
128 128
 			'shipping'      => '0',
129 129
 			'no_note'       => '1',
130 130
 			'currency_code' => give_get_currency(),
131
-			'charset'       => get_bloginfo( 'charset' ),
131
+			'charset'       => get_bloginfo('charset'),
132 132
 			'custom'        => $payment,
133 133
 			'rm'            => '2',
134 134
 			'return'        => $return_url,
135
-			'cancel_return' => give_get_failed_transaction_uri( '?payment-id=' . $payment ),
135
+			'cancel_return' => give_get_failed_transaction_uri('?payment-id='.$payment),
136 136
 			'notify_url'    => $listener_url,
137 137
 			'page_style'    => give_get_paypal_page_style(),
138
-			'cbt'           => get_bloginfo( 'name' ),
138
+			'cbt'           => get_bloginfo('name'),
139 139
 			'bn'            => 'givewp_SP'
140 140
 		);
141 141
 
142
-		if ( ! empty( $purchase_data['user_info']['address'] ) ) {
142
+		if ( ! empty($purchase_data['user_info']['address'])) {
143 143
 			$paypal_args['address1'] = $purchase_data['user_info']['address']['line1'];
144 144
 			$paypal_args['address2'] = $purchase_data['user_info']['address']['line2'];
145 145
 			$paypal_args['city']     = $purchase_data['user_info']['address']['city'];
146 146
 			$paypal_args['country']  = $purchase_data['user_info']['address']['country'];
147 147
 		}
148 148
 
149
-		if ( give_get_option( 'paypal_button_type' ) === 'standard' ) {
149
+		if (give_get_option('paypal_button_type') === 'standard') {
150 150
 			$paypal_extra_args = array(
151 151
 				'cmd' => '_xclick',
152 152
 			);
@@ -156,23 +156,23 @@  discard block
 block discarded – undo
156 156
 			);
157 157
 		}
158 158
 
159
-		$paypal_args = array_merge( $paypal_extra_args, $paypal_args );
160
-		$paypal_args = apply_filters( 'give_paypal_redirect_args', $paypal_args, $purchase_data );
159
+		$paypal_args = array_merge($paypal_extra_args, $paypal_args);
160
+		$paypal_args = apply_filters('give_paypal_redirect_args', $paypal_args, $purchase_data);
161 161
 
162 162
 		// Build query
163
-		$paypal_redirect .= http_build_query( $paypal_args );
163
+		$paypal_redirect .= http_build_query($paypal_args);
164 164
 
165 165
 		// Fix for some sites that encode the entities
166
-		$paypal_redirect = str_replace( '&amp;', '&', $paypal_redirect );
166
+		$paypal_redirect = str_replace('&amp;', '&', $paypal_redirect);
167 167
 
168 168
 		// Redirect to PayPal
169
-		wp_redirect( $paypal_redirect );
169
+		wp_redirect($paypal_redirect);
170 170
 		exit;
171 171
 	}
172 172
 
173 173
 }
174 174
 
175
-add_action( 'give_gateway_paypal', 'give_process_paypal_purchase' );
175
+add_action('give_gateway_paypal', 'give_process_paypal_purchase');
176 176
 
177 177
 /**
178 178
  * Listens for a PayPal IPN requests and then sends to the processing function
@@ -182,12 +182,12 @@  discard block
 block discarded – undo
182 182
  */
183 183
 function give_listen_for_paypal_ipn() {
184 184
 	// Regular PayPal IPN
185
-	if ( isset( $_GET['give-listener'] ) && $_GET['give-listener'] == 'IPN' ) {
186
-		do_action( 'give_verify_paypal_ipn' );
185
+	if (isset($_GET['give-listener']) && $_GET['give-listener'] == 'IPN') {
186
+		do_action('give_verify_paypal_ipn');
187 187
 	}
188 188
 }
189 189
 
190
-add_action( 'init', 'give_listen_for_paypal_ipn' );
190
+add_action('init', 'give_listen_for_paypal_ipn');
191 191
 
192 192
 /**
193 193
  * Process PayPal IPN
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 function give_process_paypal_ipn() {
199 199
 
200 200
 	// Check the request method is POST
201
-	if ( isset( $_SERVER['REQUEST_METHOD'] ) && $_SERVER['REQUEST_METHOD'] != 'POST' ) {
201
+	if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] != 'POST') {
202 202
 		return;
203 203
 	}
204 204
 
@@ -206,11 +206,11 @@  discard block
 block discarded – undo
206 206
 	$post_data = '';
207 207
 
208 208
 	// Fallback just in case post_max_size is lower than needed
209
-	if ( ini_get( 'allow_url_fopen' ) ) {
210
-		$post_data = file_get_contents( 'php://input' );
209
+	if (ini_get('allow_url_fopen')) {
210
+		$post_data = file_get_contents('php://input');
211 211
 	} else {
212 212
 		// If allow_url_fopen is not enabled, then make sure that post_max_size is large enough
213
-		ini_set( 'post_max_size', '12M' );
213
+		ini_set('post_max_size', '12M');
214 214
 	}
215 215
 	// Start the encoded data collection with notification command
216 216
 	$encoded_data = 'cmd=_notify-validate';
@@ -219,40 +219,40 @@  discard block
 block discarded – undo
219 219
 	$arg_separator = give_get_php_arg_separator_output();
220 220
 
221 221
 	// Verify there is a post_data
222
-	if ( $post_data || strlen( $post_data ) > 0 ) {
222
+	if ($post_data || strlen($post_data) > 0) {
223 223
 		// Append the data
224
-		$encoded_data .= $arg_separator . $post_data;
224
+		$encoded_data .= $arg_separator.$post_data;
225 225
 	} else {
226 226
 		// Check if POST is empty
227
-		if ( empty( $_POST ) ) {
227
+		if (empty($_POST)) {
228 228
 			// Nothing to do
229 229
 			return;
230 230
 		} else {
231 231
 			// Loop through each POST
232
-			foreach ( $_POST as $key => $value ) {
232
+			foreach ($_POST as $key => $value) {
233 233
 				// Encode the value and append the data
234
-				$encoded_data .= $arg_separator . "$key=" . urlencode( $value );
234
+				$encoded_data .= $arg_separator."$key=".urlencode($value);
235 235
 			}
236 236
 		}
237 237
 	}
238 238
 
239 239
 	// Convert collected post data to an array
240
-	parse_str( $encoded_data, $encoded_data_array );
240
+	parse_str($encoded_data, $encoded_data_array);
241 241
 
242
-	foreach ( $encoded_data_array as $key => $value ) {
242
+	foreach ($encoded_data_array as $key => $value) {
243 243
 
244
-		if ( false !== strpos( $key, 'amp;' ) ) {
245
-			$new_key = str_replace( '&amp;', '&', $key );
246
-			$new_key = str_replace( 'amp;', '&' , $new_key );
244
+		if (false !== strpos($key, 'amp;')) {
245
+			$new_key = str_replace('&amp;', '&', $key);
246
+			$new_key = str_replace('amp;', '&', $new_key);
247 247
 
248
-			unset( $encoded_data_array[ $key ] );
249
-			$encoded_data_array[ $new_key ] = $value;
248
+			unset($encoded_data_array[$key]);
249
+			$encoded_data_array[$new_key] = $value;
250 250
 		}
251 251
 
252 252
 	}
253 253
 	
254 254
 	//Validate IPN request w/ PayPal if user hasn't disabled this security measure
255
-	if ( ! give_get_option( 'disable_paypal_verification' ) ) {
255
+	if ( ! give_get_option('disable_paypal_verification')) {
256 256
 
257 257
 		$remote_post_vars = array(
258 258
 			'method'      => 'POST',
@@ -272,27 +272,27 @@  discard block
 block discarded – undo
272 272
 		);
273 273
 
274 274
 		// Validate the IPN
275
-		$api_response = wp_remote_post( give_get_paypal_redirect(), $remote_post_vars );
275
+		$api_response = wp_remote_post(give_get_paypal_redirect(), $remote_post_vars);
276 276
 
277
-		if ( is_wp_error( $api_response ) ) {
277
+		if (is_wp_error($api_response)) {
278 278
 			give_record_gateway_error(
279
-				__( 'IPN Error', 'give' ),
279
+				__('IPN Error', 'give'),
280 280
 				sprintf(
281 281
 					/* translators: %s: Paypal IPN response */
282
-					__( 'Invalid IPN verification response. IPN data: %s', 'give' ),
283
-					json_encode( $api_response )
282
+					__('Invalid IPN verification response. IPN data: %s', 'give'),
283
+					json_encode($api_response)
284 284
 				)
285 285
 			);
286 286
 			return; // Something went wrong
287 287
 		}
288 288
 
289
-		if ( $api_response['body'] !== 'VERIFIED' && give_get_option( 'disable_paypal_verification', false ) ) {
289
+		if ($api_response['body'] !== 'VERIFIED' && give_get_option('disable_paypal_verification', false)) {
290 290
 			give_record_gateway_error(
291
-				__( 'IPN Error', 'give' ),
291
+				__('IPN Error', 'give'),
292 292
 				sprintf(
293 293
 					/* translators: %s: Paypal IPN response */
294
-					__( 'Invalid IPN verification response. IPN data: %s', 'give' ),
295
-					json_encode( $api_response )
294
+					__('Invalid IPN verification response. IPN data: %s', 'give'),
295
+					json_encode($api_response)
296 296
 				)
297 297
 			);
298 298
 			return; // Response not okay
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 	}
302 302
 
303 303
 	// Check if $post_data_array has been populated
304
-	if ( ! is_array( $encoded_data_array ) && ! empty( $encoded_data_array ) ) {
304
+	if ( ! is_array($encoded_data_array) && ! empty($encoded_data_array)) {
305 305
 		return;
306 306
 	}
307 307
 
@@ -310,21 +310,21 @@  discard block
 block discarded – undo
310 310
 		'payment_status' => ''
311 311
 	);
312 312
 
313
-	$encoded_data_array = wp_parse_args( $encoded_data_array, $defaults );
313
+	$encoded_data_array = wp_parse_args($encoded_data_array, $defaults);
314 314
 
315
-	$payment_id = isset( $encoded_data_array['custom'] ) ? absint( $encoded_data_array['custom'] ) : 0;
315
+	$payment_id = isset($encoded_data_array['custom']) ? absint($encoded_data_array['custom']) : 0;
316 316
 
317
-	if ( has_action( 'give_paypal_' . $encoded_data_array['txn_type'] ) ) {
317
+	if (has_action('give_paypal_'.$encoded_data_array['txn_type'])) {
318 318
 		// Allow PayPal IPN types to be processed separately
319
-		do_action( 'give_paypal_' . $encoded_data_array['txn_type'], $encoded_data_array, $payment_id );
319
+		do_action('give_paypal_'.$encoded_data_array['txn_type'], $encoded_data_array, $payment_id);
320 320
 	} else {
321 321
 		// Fallback to web accept just in case the txn_type isn't present
322
-		do_action( 'give_paypal_web_accept', $encoded_data_array, $payment_id );
322
+		do_action('give_paypal_web_accept', $encoded_data_array, $payment_id);
323 323
 	}
324 324
 	exit;
325 325
 }
326 326
 
327
-add_action( 'give_verify_paypal_ipn', 'give_process_paypal_ipn' );
327
+add_action('give_verify_paypal_ipn', 'give_process_paypal_ipn');
328 328
 
329 329
 /**
330 330
  * Process web accept (one time) payment IPNs
@@ -335,224 +335,224 @@  discard block
 block discarded – undo
335 335
  *
336 336
  * @return void
337 337
  */
338
-function give_process_paypal_web_accept_and_cart( $data, $payment_id ) {
338
+function give_process_paypal_web_accept_and_cart($data, $payment_id) {
339 339
 
340
-	if ( $data['txn_type'] != 'web_accept' && $data['txn_type'] != 'cart' && $data['payment_status'] != 'Refunded' ) {
340
+	if ($data['txn_type'] != 'web_accept' && $data['txn_type'] != 'cart' && $data['payment_status'] != 'Refunded') {
341 341
 		return;
342 342
 	}
343 343
 
344
-	if ( empty( $payment_id ) ) {
344
+	if (empty($payment_id)) {
345 345
 		return;
346 346
 	}
347 347
 
348 348
 	// Collect payment details
349
-	$purchase_key   = isset( $data['invoice'] ) ? $data['invoice'] : $data['item_number'];
349
+	$purchase_key   = isset($data['invoice']) ? $data['invoice'] : $data['item_number'];
350 350
 	$paypal_amount  = $data['mc_gross'];
351
-	$payment_status = strtolower( $data['payment_status'] );
352
-	$currency_code  = strtolower( $data['mc_currency'] );
353
-	$business_email = isset( $data['business'] ) && is_email( $data['business'] ) ? trim( $data['business'] ) : trim( $data['receiver_email'] );
354
-	$payment_meta   = give_get_payment_meta( $payment_id );
351
+	$payment_status = strtolower($data['payment_status']);
352
+	$currency_code  = strtolower($data['mc_currency']);
353
+	$business_email = isset($data['business']) && is_email($data['business']) ? trim($data['business']) : trim($data['receiver_email']);
354
+	$payment_meta   = give_get_payment_meta($payment_id);
355 355
 
356 356
 
357
-	if ( give_get_payment_gateway( $payment_id ) != 'paypal' ) {
357
+	if (give_get_payment_gateway($payment_id) != 'paypal') {
358 358
 		return; // this isn't a PayPal standard IPN
359 359
 	}
360 360
 
361 361
 	// Verify payment recipient
362
-	if ( strcasecmp( $business_email, trim( give_get_option( 'paypal_email' ) ) ) != 0 ) {
362
+	if (strcasecmp($business_email, trim(give_get_option('paypal_email'))) != 0) {
363 363
 
364 364
 		give_record_gateway_error(
365
-			__( 'IPN Error', 'give' ),
365
+			__('IPN Error', 'give'),
366 366
 			sprintf(
367 367
 				/* translators: %s: Paypal IPN response */
368
-				__( 'Invalid business email in IPN response. IPN data: %s', 'give' ),
369
-				json_encode( $data )
368
+				__('Invalid business email in IPN response. IPN data: %s', 'give'),
369
+				json_encode($data)
370 370
 			),
371 371
 			$payment_id
372 372
 		);
373
-		give_update_payment_status( $payment_id, 'failed' );
374
-		give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid PayPal business email.', 'give' ) );
373
+		give_update_payment_status($payment_id, 'failed');
374
+		give_insert_payment_note($payment_id, __('Payment failed due to invalid PayPal business email.', 'give'));
375 375
 
376 376
 		return;
377 377
 	}
378 378
 
379 379
 	// Verify payment currency
380
-	if ( $currency_code != strtolower( $payment_meta['currency'] ) ) {
380
+	if ($currency_code != strtolower($payment_meta['currency'])) {
381 381
 
382 382
 		give_record_gateway_error(
383
-			__( 'IPN Error', 'give' ),
383
+			__('IPN Error', 'give'),
384 384
 			sprintf(
385 385
 				/* translators: %s: Paypal IPN response */
386
-				__( 'Invalid currency in IPN response. IPN data: %s', 'give' ),
387
-				json_encode( $data )
386
+				__('Invalid currency in IPN response. IPN data: %s', 'give'),
387
+				json_encode($data)
388 388
 			),
389 389
 			$payment_id
390 390
 		);
391
-		give_update_payment_status( $payment_id, 'failed' );
392
-		give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid currency in PayPal IPN.', 'give' ) );
391
+		give_update_payment_status($payment_id, 'failed');
392
+		give_insert_payment_note($payment_id, __('Payment failed due to invalid currency in PayPal IPN.', 'give'));
393 393
 
394 394
 		return;
395 395
 	}
396 396
 
397
-	if ( ! give_get_payment_user_email( $payment_id ) ) {
397
+	if ( ! give_get_payment_user_email($payment_id)) {
398 398
 
399 399
 		// No email associated with purchase, so store from PayPal
400
-		give_update_payment_meta( $payment_id, '_give_payment_user_email', $data['payer_email'] );
400
+		give_update_payment_meta($payment_id, '_give_payment_user_email', $data['payer_email']);
401 401
 
402 402
 		// Setup and store the donors's details
403 403
 		$address            = array();
404
-		$address['line1']   = ! empty( $data['address_street'] ) ? sanitize_text_field( $data['address_street'] ) : false;
405
-		$address['city']    = ! empty( $data['address_city'] ) ? sanitize_text_field( $data['address_city'] ) : false;
406
-		$address['state']   = ! empty( $data['address_state'] ) ? sanitize_text_field( $data['address_state'] ) : false;
407
-		$address['country'] = ! empty( $data['address_country_code'] ) ? sanitize_text_field( $data['address_country_code'] ) : false;
408
-		$address['zip']     = ! empty( $data['address_zip'] ) ? sanitize_text_field( $data['address_zip'] ) : false;
404
+		$address['line1']   = ! empty($data['address_street']) ? sanitize_text_field($data['address_street']) : false;
405
+		$address['city']    = ! empty($data['address_city']) ? sanitize_text_field($data['address_city']) : false;
406
+		$address['state']   = ! empty($data['address_state']) ? sanitize_text_field($data['address_state']) : false;
407
+		$address['country'] = ! empty($data['address_country_code']) ? sanitize_text_field($data['address_country_code']) : false;
408
+		$address['zip']     = ! empty($data['address_zip']) ? sanitize_text_field($data['address_zip']) : false;
409 409
 
410 410
 		$user_info = array(
411 411
 			'id'         => '-1',
412
-			'email'      => sanitize_text_field( $data['payer_email'] ),
413
-			'first_name' => sanitize_text_field( $data['first_name'] ),
414
-			'last_name'  => sanitize_text_field( $data['last_name'] ),
412
+			'email'      => sanitize_text_field($data['payer_email']),
413
+			'first_name' => sanitize_text_field($data['first_name']),
414
+			'last_name'  => sanitize_text_field($data['last_name']),
415 415
 			'discount'   => '',
416 416
 			'address'    => $address
417 417
 		);
418 418
 
419 419
 		$payment_meta['user_info'] = $user_info;
420
-		give_update_payment_meta( $payment_id, '_give_payment_meta', $payment_meta );
420
+		give_update_payment_meta($payment_id, '_give_payment_meta', $payment_meta);
421 421
 	}
422 422
 
423
-	if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) {
423
+	if ($payment_status == 'refunded' || $payment_status == 'reversed') {
424 424
 
425 425
 		// Process a refund
426
-		give_process_paypal_refund( $data, $payment_id );
426
+		give_process_paypal_refund($data, $payment_id);
427 427
 
428 428
 	} else {
429 429
 
430
-		if ( get_post_status( $payment_id ) == 'publish' ) {
430
+		if (get_post_status($payment_id) == 'publish') {
431 431
 			return; // Only complete payments once
432 432
 		}
433 433
 
434 434
 		// Retrieve the total purchase amount (before PayPal)
435
-		$payment_amount = give_get_payment_amount( $payment_id );
435
+		$payment_amount = give_get_payment_amount($payment_id);
436 436
 
437
-		if ( number_format( (float) $paypal_amount, 2 ) < number_format( (float) $payment_amount, 2 ) ) {
437
+		if (number_format((float) $paypal_amount, 2) < number_format((float) $payment_amount, 2)) {
438 438
 			// The prices don't match
439 439
 			give_record_gateway_error(
440
-				__( 'IPN Error', 'give' ),
440
+				__('IPN Error', 'give'),
441 441
 				sprintf(
442 442
 					/* translators: %s: Paypal IPN response */
443
-					__( 'Invalid payment amount in IPN response. IPN data: %s', 'give' ),
444
-					json_encode( $data )
443
+					__('Invalid payment amount in IPN response. IPN data: %s', 'give'),
444
+					json_encode($data)
445 445
 				),
446 446
 				$payment_id
447 447
 			);
448
-			give_update_payment_status( $payment_id, 'failed' );
449
-			give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid amount in PayPal IPN.', 'give' ) );
448
+			give_update_payment_status($payment_id, 'failed');
449
+			give_insert_payment_note($payment_id, __('Payment failed due to invalid amount in PayPal IPN.', 'give'));
450 450
 
451 451
 			return;
452 452
 		}
453
-		if ( $purchase_key != give_get_payment_key( $payment_id ) ) {
453
+		if ($purchase_key != give_get_payment_key($payment_id)) {
454 454
 			// Purchase keys don't match
455 455
 			give_record_gateway_error(
456
-				__( 'IPN Error', 'give' ),
456
+				__('IPN Error', 'give'),
457 457
 				sprintf(
458 458
 					/* translators: %s: Paypal IPN response */
459
-					__( 'Invalid purchase key in IPN response. IPN data: %s', 'give' ),
460
-					json_encode( $data )
459
+					__('Invalid purchase key in IPN response. IPN data: %s', 'give'),
460
+					json_encode($data)
461 461
 				),
462 462
 				$payment_id
463 463
 			);
464
-			give_update_payment_status( $payment_id, 'failed' );
465
-			give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid purchase key in PayPal IPN.', 'give' ) );
464
+			give_update_payment_status($payment_id, 'failed');
465
+			give_insert_payment_note($payment_id, __('Payment failed due to invalid purchase key in PayPal IPN.', 'give'));
466 466
 
467 467
 			return;
468 468
 		}
469 469
 
470
-		if ( $payment_status == 'completed' || give_is_test_mode() ) {
470
+		if ($payment_status == 'completed' || give_is_test_mode()) {
471 471
 			give_insert_payment_note(
472 472
 				$payment_id,
473 473
 				sprintf(
474 474
 					/* translators: %s: Paypal transaction ID */
475
-					__( 'PayPal Transaction ID: %s', 'give' ),
475
+					__('PayPal Transaction ID: %s', 'give'),
476 476
 					$data['txn_id']
477 477
 				)
478 478
 			);
479
-			give_set_payment_transaction_id( $payment_id, $data['txn_id'] );
480
-			give_update_payment_status( $payment_id, 'publish' );
481
-		} else if ( 'pending' == $payment_status && isset( $data['pending_reason'] ) ) {
479
+			give_set_payment_transaction_id($payment_id, $data['txn_id']);
480
+			give_update_payment_status($payment_id, 'publish');
481
+		} else if ('pending' == $payment_status && isset($data['pending_reason'])) {
482 482
 
483 483
 			// Look for possible pending reasons, such as an echeck
484 484
 
485 485
 			$note = '';
486 486
 
487
-			switch ( strtolower( $data['pending_reason'] ) ) {
487
+			switch (strtolower($data['pending_reason'])) {
488 488
 
489 489
 				case 'echeck' :
490 490
 
491
-					$note = __( 'Payment made via eCheck and will clear automatically in 5-8 days.', 'give' );
491
+					$note = __('Payment made via eCheck and will clear automatically in 5-8 days.', 'give');
492 492
 
493 493
 					break;
494 494
 
495 495
 				case 'address' :
496 496
 
497
-					$note = __( 'Payment requires a confirmed donor address and must be accepted manually through PayPal.', 'give' );
497
+					$note = __('Payment requires a confirmed donor address and must be accepted manually through PayPal.', 'give');
498 498
 
499 499
 					break;
500 500
 
501 501
 				case 'intl' :
502 502
 
503
-					$note = __( 'Payment must be accepted manually through PayPal due to international account regulations.', 'give' );
503
+					$note = __('Payment must be accepted manually through PayPal due to international account regulations.', 'give');
504 504
 
505 505
 					break;
506 506
 
507 507
 				case 'multi-currency' :
508 508
 
509
-					$note = __( 'Payment received in non-shop currency and must be accepted manually through PayPal.', 'give' );
509
+					$note = __('Payment received in non-shop currency and must be accepted manually through PayPal.', 'give');
510 510
 
511 511
 					break;
512 512
 
513 513
 				case 'paymentreview' :
514 514
 				case 'regulatory_review' :
515 515
 
516
-					$note = __( 'Payment is being reviewed by PayPal staff as high-risk or in possible violation of government regulations.', 'give' );
516
+					$note = __('Payment is being reviewed by PayPal staff as high-risk or in possible violation of government regulations.', 'give');
517 517
 
518 518
 					break;
519 519
 
520 520
 				case 'unilateral' :
521 521
 
522
-					$note = __( 'Payment was sent to non-confirmed or non-registered email address.', 'give' );
522
+					$note = __('Payment was sent to non-confirmed or non-registered email address.', 'give');
523 523
 
524 524
 					break;
525 525
 
526 526
 				case 'upgrade' :
527 527
 
528
-					$note = __( 'PayPal account must be upgraded before this payment can be accepted.', 'give' );
528
+					$note = __('PayPal account must be upgraded before this payment can be accepted.', 'give');
529 529
 
530 530
 					break;
531 531
 
532 532
 				case 'verify' :
533 533
 
534
-					$note = __( 'PayPal account is not verified. Verify account in order to accept this payment.', 'give' );
534
+					$note = __('PayPal account is not verified. Verify account in order to accept this payment.', 'give');
535 535
 
536 536
 					break;
537 537
 
538 538
 				case 'other' :
539 539
 
540
-					$note = __( 'Payment is pending for unknown reasons. Contact PayPal support for assistance.', 'give' );
540
+					$note = __('Payment is pending for unknown reasons. Contact PayPal support for assistance.', 'give');
541 541
 
542 542
 					break;
543 543
 
544 544
 			}
545 545
 
546
-			if ( ! empty( $note ) ) {
546
+			if ( ! empty($note)) {
547 547
 
548
-				give_insert_payment_note( $payment_id, $note );
548
+				give_insert_payment_note($payment_id, $note);
549 549
 
550 550
 			}
551 551
 		}
552 552
 	}
553 553
 }
554 554
 
555
-add_action( 'give_paypal_web_accept', 'give_process_paypal_web_accept_and_cart', 10, 2 );
555
+add_action('give_paypal_web_accept', 'give_process_paypal_web_accept_and_cart', 10, 2);
556 556
 
557 557
 /**
558 558
  * Process PayPal IPN Refunds
@@ -563,28 +563,28 @@  discard block
 block discarded – undo
563 563
  *
564 564
  * @return void
565 565
  */
566
-function give_process_paypal_refund( $data, $payment_id = 0 ) {
566
+function give_process_paypal_refund($data, $payment_id = 0) {
567 567
 
568 568
 	// Collect payment details
569 569
 
570
-	if ( empty( $payment_id ) ) {
570
+	if (empty($payment_id)) {
571 571
 		return;
572 572
 	}
573 573
 
574
-	if ( get_post_status( $payment_id ) == 'refunded' ) {
574
+	if (get_post_status($payment_id) == 'refunded') {
575 575
 		return; // Only refund payments once
576 576
 	}
577 577
 
578
-	$payment_amount = give_get_payment_amount( $payment_id );
578
+	$payment_amount = give_get_payment_amount($payment_id);
579 579
 	$refund_amount  = $data['payment_gross'] * - 1;
580 580
 
581
-	if ( number_format( (float) $refund_amount, 2 ) < number_format( (float) $payment_amount, 2 ) ) {
581
+	if (number_format((float) $refund_amount, 2) < number_format((float) $payment_amount, 2)) {
582 582
 
583 583
 		give_insert_payment_note(
584 584
 			$payment_id,
585 585
 			sprintf(
586 586
 				/* translators: %s: Paypal parent transaction ID */
587
-				__( 'Partial PayPal refund processed: %s', 'give' ),
587
+				__('Partial PayPal refund processed: %s', 'give'),
588 588
 				$data['parent_txn_id']
589 589
 			)
590 590
 		);
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 		$payment_id,
598 598
 		sprintf(
599 599
 			/* translators: %s: Paypal parent transaction ID */
600
-			__( 'PayPal Payment #%s Refunded for reason: %s', 'give' ),
600
+			__('PayPal Payment #%s Refunded for reason: %s', 'give'),
601 601
 			$data['parent_txn_id'], $data['reason_code']
602 602
 		)
603 603
 	);
@@ -605,11 +605,11 @@  discard block
 block discarded – undo
605 605
 		$payment_id,
606 606
 		sprintf(
607 607
 			/* translators: %s: Paypal transaction ID */
608
-			__( 'PayPal Refund Transaction ID: %s', 'give' ),
608
+			__('PayPal Refund Transaction ID: %s', 'give'),
609 609
 			$data['txn_id']
610 610
 		)
611 611
 	);
612
-	give_update_payment_status( $payment_id, 'refunded' );
612
+	give_update_payment_status($payment_id, 'refunded');
613 613
 }
614 614
 
615 615
 /**
@@ -621,24 +621,24 @@  discard block
 block discarded – undo
621 621
  *
622 622
  * @return string
623 623
  */
624
-function give_get_paypal_redirect( $ssl_check = false ) {
624
+function give_get_paypal_redirect($ssl_check = false) {
625 625
 
626
-	if ( is_ssl() || ! $ssl_check ) {
626
+	if (is_ssl() || ! $ssl_check) {
627 627
 		$protocal = 'https://';
628 628
 	} else {
629 629
 		$protocal = 'http://';
630 630
 	}
631 631
 
632 632
 	// Check the current payment mode
633
-	if ( give_is_test_mode() ) {
633
+	if (give_is_test_mode()) {
634 634
 		// Test mode
635
-		$paypal_uri = $protocal . 'www.sandbox.paypal.com/cgi-bin/webscr';
635
+		$paypal_uri = $protocal.'www.sandbox.paypal.com/cgi-bin/webscr';
636 636
 	} else {
637 637
 		// Live mode
638
-		$paypal_uri = $protocal . 'www.paypal.com/cgi-bin/webscr';
638
+		$paypal_uri = $protocal.'www.paypal.com/cgi-bin/webscr';
639 639
 	}
640 640
 
641
-	return apply_filters( 'give_paypal_uri', $paypal_uri );
641
+	return apply_filters('give_paypal_uri', $paypal_uri);
642 642
 }
643 643
 
644 644
 /**
@@ -648,8 +648,8 @@  discard block
 block discarded – undo
648 648
  * @return string
649 649
  */
650 650
 function give_get_paypal_page_style() {
651
-	$page_style = trim( give_get_option( 'paypal_page_style', 'PayPal' ) );
652
-	return apply_filters( 'give_paypal_page_style', $page_style );
651
+	$page_style = trim(give_get_option('paypal_page_style', 'PayPal'));
652
+	return apply_filters('give_paypal_page_style', $page_style);
653 653
 }
654 654
 
655 655
 /**
@@ -664,27 +664,27 @@  discard block
 block discarded – undo
664 664
  * @return string
665 665
  *
666 666
  */
667
-function give_paypal_success_page_content( $content ) {
667
+function give_paypal_success_page_content($content) {
668 668
 
669
-	if ( ! isset( $_GET['payment-id'] ) && ! give_get_purchase_session() ) {
669
+	if ( ! isset($_GET['payment-id']) && ! give_get_purchase_session()) {
670 670
 		return $content;
671 671
 	}
672 672
 
673
-	$payment_id = isset( $_GET['payment-id'] ) ? absint( $_GET['payment-id'] ) : false;
673
+	$payment_id = isset($_GET['payment-id']) ? absint($_GET['payment-id']) : false;
674 674
 
675
-	if ( ! $payment_id ) {
675
+	if ( ! $payment_id) {
676 676
 		$session    = give_get_purchase_session();
677
-		$payment_id = give_get_purchase_id_by_key( $session['purchase_key'] );
677
+		$payment_id = give_get_purchase_id_by_key($session['purchase_key']);
678 678
 	}
679 679
 
680
-	$payment = get_post( $payment_id );
680
+	$payment = get_post($payment_id);
681 681
 
682
-	if ( $payment && 'pending' == $payment->post_status ) {
682
+	if ($payment && 'pending' == $payment->post_status) {
683 683
 
684 684
 		// Payment is still pending so show processing indicator to fix the Race Condition
685 685
 		ob_start();
686 686
 
687
-		give_get_template_part( 'payment', 'processing' );
687
+		give_get_template_part('payment', 'processing');
688 688
 
689 689
 		$content = ob_get_clean();
690 690
 
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
 
695 695
 }
696 696
 
697
-add_filter( 'give_payment_confirm_paypal', 'give_paypal_success_page_content' );
697
+add_filter('give_payment_confirm_paypal', 'give_paypal_success_page_content');
698 698
 
699 699
 /**
700 700
  * Given a Payment ID, extract the transaction ID
@@ -705,22 +705,22 @@  discard block
 block discarded – undo
705 705
  *
706 706
  * @return string                   Transaction ID
707 707
  */
708
-function give_paypal_get_payment_transaction_id( $payment_id ) {
708
+function give_paypal_get_payment_transaction_id($payment_id) {
709 709
 
710 710
 	$transaction_id = '';
711
-	$notes          = give_get_payment_notes( $payment_id );
711
+	$notes          = give_get_payment_notes($payment_id);
712 712
 
713
-	foreach ( $notes as $note ) {
714
-		if ( preg_match( '/^PayPal Transaction ID: ([^\s]+)/', $note->comment_content, $match ) ) {
713
+	foreach ($notes as $note) {
714
+		if (preg_match('/^PayPal Transaction ID: ([^\s]+)/', $note->comment_content, $match)) {
715 715
 			$transaction_id = $match[1];
716 716
 			continue;
717 717
 		}
718 718
 	}
719 719
 
720
-	return apply_filters( 'give_paypal_set_payment_transaction_id', $transaction_id, $payment_id );
720
+	return apply_filters('give_paypal_set_payment_transaction_id', $transaction_id, $payment_id);
721 721
 }
722 722
 
723
-add_filter( 'give_get_payment_transaction_id-paypal', 'give_paypal_get_payment_transaction_id', 10, 1 );
723
+add_filter('give_get_payment_transaction_id-paypal', 'give_paypal_get_payment_transaction_id', 10, 1);
724 724
 
725 725
 /**
726 726
  * Given a transaction ID, generate a link to the PayPal transaction ID details
@@ -732,13 +732,13 @@  discard block
 block discarded – undo
732 732
  *
733 733
  * @return string                 A link to the PayPal transaction details
734 734
  */
735
-function give_paypal_link_transaction_id( $transaction_id, $payment_id ) {
735
+function give_paypal_link_transaction_id($transaction_id, $payment_id) {
736 736
 
737 737
 	$paypal_base_url = 'https://history.paypal.com/cgi-bin/webscr?cmd=_history-details-from-hub&id=';
738
-	$transaction_url = '<a href="' . esc_url( $paypal_base_url . $transaction_id ) . '" target="_blank">' . $transaction_id . '</a>';
738
+	$transaction_url = '<a href="'.esc_url($paypal_base_url.$transaction_id).'" target="_blank">'.$transaction_id.'</a>';
739 739
 
740
-	return apply_filters( 'give_paypal_link_payment_details_transaction_id', $transaction_url );
740
+	return apply_filters('give_paypal_link_payment_details_transaction_id', $transaction_url);
741 741
 
742 742
 }
743 743
 
744
-add_filter( 'give_payment_details_transaction_id-paypal', 'give_paypal_link_transaction_id', 10, 2 );
744
+add_filter('give_payment_details_transaction_id-paypal', 'give_paypal_link_transaction_id', 10, 2);
Please login to merge, or discard this patch.
includes/class-give-gravatars.php 1 patch
Spacing   +96 added lines, -96 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
 
@@ -50,50 +50,50 @@  discard block
 block discarded – undo
50 50
 	 */
51 51
 
52 52
 	// https://gist.github.com/justinph/5197810
53
-	function validate_gravatar( $id_or_email ) {
53
+	function validate_gravatar($id_or_email) {
54 54
 		//id or email code borrowed from wp-includes/pluggable.php
55 55
 		$email = '';
56
-		if ( is_numeric( $id_or_email ) ) {
56
+		if (is_numeric($id_or_email)) {
57 57
 			$id   = (int) $id_or_email;
58
-			$user = get_userdata( $id );
59
-			if ( $user ) {
58
+			$user = get_userdata($id);
59
+			if ($user) {
60 60
 				$email = $user->user_email;
61 61
 			}
62
-		} elseif ( is_object( $id_or_email ) ) {
62
+		} elseif (is_object($id_or_email)) {
63 63
 			// No avatar for pingbacks or trackbacks
64
-			$allowed_comment_types = apply_filters( 'get_avatar_comment_types', array( 'comment' ) );
65
-			if ( ! empty( $id_or_email->comment_type ) && ! in_array( $id_or_email->comment_type, (array) $allowed_comment_types ) ) {
64
+			$allowed_comment_types = apply_filters('get_avatar_comment_types', array('comment'));
65
+			if ( ! empty($id_or_email->comment_type) && ! in_array($id_or_email->comment_type, (array) $allowed_comment_types)) {
66 66
 				return false;
67 67
 			}
68 68
 
69
-			if ( ! empty( $id_or_email->user_id ) ) {
69
+			if ( ! empty($id_or_email->user_id)) {
70 70
 				$id   = (int) $id_or_email->user_id;
71
-				$user = get_userdata( $id );
72
-				if ( $user ) {
71
+				$user = get_userdata($id);
72
+				if ($user) {
73 73
 					$email = $user->user_email;
74 74
 				}
75
-			} elseif ( ! empty( $id_or_email->comment_author_email ) ) {
75
+			} elseif ( ! empty($id_or_email->comment_author_email)) {
76 76
 				$email = $id_or_email->comment_author_email;
77 77
 			}
78 78
 		} else {
79 79
 			$email = $id_or_email;
80 80
 		}
81 81
 
82
-		$hashkey = md5( strtolower( trim( $email ) ) );
83
-		$uri     = 'http://www.gravatar.com/avatar/' . $hashkey . '?d=404';
82
+		$hashkey = md5(strtolower(trim($email)));
83
+		$uri     = 'http://www.gravatar.com/avatar/'.$hashkey.'?d=404';
84 84
 
85
-		$data = wp_cache_get( $hashkey );
86
-		if ( false === $data ) {
87
-			$response = wp_remote_head( $uri );
88
-			if ( is_wp_error( $response ) ) {
85
+		$data = wp_cache_get($hashkey);
86
+		if (false === $data) {
87
+			$response = wp_remote_head($uri);
88
+			if (is_wp_error($response)) {
89 89
 				$data = 'not200';
90 90
 			} else {
91 91
 				$data = $response['response']['code'];
92 92
 			}
93
-			wp_cache_set( $hashkey, $data, $group = '', $expire = 60 * 5 );
93
+			wp_cache_set($hashkey, $data, $group = '', $expire = 60 * 5);
94 94
 
95 95
 		}
96
-		if ( $data == '200' ) {
96
+		if ($data == '200') {
97 97
 			return true;
98 98
 		} else {
99 99
 			return false;
@@ -108,17 +108,17 @@  discard block
 block discarded – undo
108 108
 	 *
109 109
 	 * @param int $form_id
110 110
 	 */
111
-	function get_log_ids( $form_id = '' ) {
111
+	function get_log_ids($form_id = '') {
112 112
 
113 113
 		// get Give_Logging class
114 114
 		global $give_logs;
115 115
 
116 116
 		// get log for this form
117
-		$logs = $give_logs->get_logs( $form_id );
117
+		$logs = $give_logs->get_logs($form_id);
118 118
 
119
-		if ( $logs ) {
119
+		if ($logs) {
120 120
 			// make an array with all the donor IDs
121
-			foreach ( $logs as $log ) {
121
+			foreach ($logs as $log) {
122 122
 				$log_ids[] = $log->ID;
123 123
 			}
124 124
 
@@ -135,49 +135,49 @@  discard block
 block discarded – undo
135 135
 	 *
136 136
 	 * @since 1.0
137 137
 	 */
138
-	function get_payment_ids( $form_id = '' ) {
138
+	function get_payment_ids($form_id = '') {
139 139
 
140 140
 		global $give_options;
141 141
 
142
-		$log_ids = $this->get_log_ids( $form_id );
142
+		$log_ids = $this->get_log_ids($form_id);
143 143
 
144
-		if ( $log_ids ) {
144
+		if ($log_ids) {
145 145
 
146 146
 			$payment_ids = array();
147 147
 
148
-			foreach ( $log_ids as $id ) {
148
+			foreach ($log_ids as $id) {
149 149
 				// get the payment ID for each corresponding log ID
150
-				$payment_ids[] = get_post_meta( $id, '_give_log_payment_id', true );
150
+				$payment_ids[] = get_post_meta($id, '_give_log_payment_id', true);
151 151
 			}
152 152
 
153 153
 			// remove donors who have purchased more than once so we can have unique avatars
154 154
 			$unique_emails = array();
155 155
 
156
-			foreach ( $payment_ids as $key => $id ) {
156
+			foreach ($payment_ids as $key => $id) {
157 157
 
158
-				$email = get_post_meta( $id, '_give_payment_user_email', true );
158
+				$email = get_post_meta($id, '_give_payment_user_email', true);
159 159
 
160
-				if ( isset ( $give_options['give_donators_gravatars_has_gravatar_account'] ) ) {
161
-					if ( ! $this->validate_gravatar( $email ) ) {
160
+				if (isset ($give_options['give_donators_gravatars_has_gravatar_account'])) {
161
+					if ( ! $this->validate_gravatar($email)) {
162 162
 						continue;
163 163
 					}
164 164
 				}
165 165
 
166
-				$unique_emails[ $id ] = get_post_meta( $id, '_give_payment_user_email', true );
166
+				$unique_emails[$id] = get_post_meta($id, '_give_payment_user_email', true);
167 167
 
168 168
 			}
169 169
 
170 170
 			// strip duplicate emails
171
-			$unique_emails = array_unique( $unique_emails );
171
+			$unique_emails = array_unique($unique_emails);
172 172
 
173 173
 			// convert the unique IDs back into simple array
174
-			foreach ( $unique_emails as $id => $email ) {
174
+			foreach ($unique_emails as $id => $email) {
175 175
 				$unique_ids[] = $id;
176 176
 			}
177 177
 
178 178
 			// randomize the payment IDs if enabled
179
-			if ( isset( $give_options['give_donators_gravatars_random_gravatars'] ) ) {
180
-				shuffle( $unique_ids );
179
+			if (isset($give_options['give_donators_gravatars_random_gravatars'])) {
180
+				shuffle($unique_ids);
181 181
 			}
182 182
 
183 183
 			// return our unique IDs
@@ -193,22 +193,22 @@  discard block
 block discarded – undo
193 193
 	 *
194 194
 	 * @since 1.0
195 195
 	 */
196
-	function gravatars( $form_id = false, $title = '' ) {
196
+	function gravatars($form_id = false, $title = '') {
197 197
 
198 198
 		// unique $payment_ids 
199
-		$payment_ids = $this->get_payment_ids( $form_id );
199
+		$payment_ids = $this->get_payment_ids($form_id);
200 200
 
201 201
 		global $give_options;
202 202
 
203 203
 		// return if no ID
204
-		if ( ! $form_id ) {
204
+		if ( ! $form_id) {
205 205
 			return;
206 206
 		}
207 207
 
208 208
 		// minimum amount of purchases before showing gravatars
209 209
 		// if the number of items in array is not greater or equal to the number specified, then exit
210
-		if ( isset( $give_options['give_donators_gravatars_min_purchases_required'] ) && '' != $give_options['give_donators_gravatars_min_purchases_required'] ) {
211
-			if ( ! ( count( $payment_ids ) >= $give_options['give_donators_gravatars_min_purchases_required'] ) ) {
210
+		if (isset($give_options['give_donators_gravatars_min_purchases_required']) && '' != $give_options['give_donators_gravatars_min_purchases_required']) {
211
+			if ( ! (count($payment_ids) >= $give_options['give_donators_gravatars_min_purchases_required'])) {
212 212
 				return;
213 213
 			}
214 214
 		}
@@ -219,51 +219,51 @@  discard block
 block discarded – undo
219 219
 		echo '<div id="give-purchase-gravatars">';
220 220
 
221 221
 
222
-		if ( isset ( $title ) ) {
222
+		if (isset ($title)) {
223 223
 
224
-			if ( $title ) {
225
-				echo apply_filters( 'give_donators_gravatars_title', '<h3 class="give-gravatars-title">' . esc_attr( $title ) . '</h3>' );
226
-			} elseif ( isset( $give_options['give_donators_gravatars_heading'] ) ) {
227
-				echo apply_filters( 'give_donators_gravatars_title', '<h3 class="give-gravatars-title">' . esc_attr( $give_options['give_donators_gravatars_heading'] ) . '</h2>' );
224
+			if ($title) {
225
+				echo apply_filters('give_donators_gravatars_title', '<h3 class="give-gravatars-title">'.esc_attr($title).'</h3>');
226
+			} elseif (isset($give_options['give_donators_gravatars_heading'])) {
227
+				echo apply_filters('give_donators_gravatars_title', '<h3 class="give-gravatars-title">'.esc_attr($give_options['give_donators_gravatars_heading']).'</h2>');
228 228
 			}
229 229
 
230 230
 		}
231 231
 		echo '<ul class="give-purchase-gravatars-list">';
232 232
 		$i = 0;
233 233
 
234
-		if ( $payment_ids ) {
235
-			foreach ( $payment_ids as $id ) {
234
+		if ($payment_ids) {
235
+			foreach ($payment_ids as $id) {
236 236
 
237 237
 				// Give saves a blank option even when the control is turned off, hence the extra check
238
-				if ( isset( $give_options['give_donators_gravatars_maximum_number'] ) && '' != $give_options['give_donators_gravatars_maximum_number'] && $i == $give_options['give_donators_gravatars_maximum_number'] ) {
238
+				if (isset($give_options['give_donators_gravatars_maximum_number']) && '' != $give_options['give_donators_gravatars_maximum_number'] && $i == $give_options['give_donators_gravatars_maximum_number']) {
239 239
 					continue;
240 240
 				}
241 241
 
242 242
 				// get the payment meta
243
-				$payment_meta = get_post_meta( $id, '_give_payment_meta', true );
243
+				$payment_meta = get_post_meta($id, '_give_payment_meta', true);
244 244
 
245 245
 				// unserialize the payment meta
246
-				$user_info = maybe_unserialize( $payment_meta['user_info'] );
246
+				$user_info = maybe_unserialize($payment_meta['user_info']);
247 247
 
248 248
 				// get donor's first name
249 249
 				$name = $user_info['first_name'];
250 250
 
251 251
 				// get donor's email
252
-				$email = get_post_meta( $id, '_give_payment_user_email', true );
252
+				$email = get_post_meta($id, '_give_payment_user_email', true);
253 253
 
254 254
 				// set gravatar size and provide filter
255
-				$size = isset( $give_options['give_donators_gravatars_gravatar_size'] ) ? apply_filters( 'give_donators_gravatars_gravatar_size', $give_options['give_donators_gravatars_gravatar_size'] ) : '';
255
+				$size = isset($give_options['give_donators_gravatars_gravatar_size']) ? apply_filters('give_donators_gravatars_gravatar_size', $give_options['give_donators_gravatars_gravatar_size']) : '';
256 256
 
257 257
 				// default image
258
-				$default_image = apply_filters( 'give_donators_gravatars_gravatar_default_image', false );
258
+				$default_image = apply_filters('give_donators_gravatars_gravatar_default_image', false);
259 259
 
260 260
 				// assemble output
261 261
 				$output .= '<li>';
262 262
 
263
-				$output .= get_avatar( $email, $size, $default_image, $name );
263
+				$output .= get_avatar($email, $size, $default_image, $name);
264 264
 				$output .= '</li>';
265 265
 
266
-				$i ++;
266
+				$i++;
267 267
 
268 268
 			} // end foreach
269 269
 		}
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 		echo '</ul>';
273 273
 		echo '</div>';
274 274
 
275
-		return apply_filters( 'give_donators_gravatars', ob_get_clean() );
275
+		return apply_filters('give_donators_gravatars', ob_get_clean());
276 276
 	}
277 277
 
278 278
 	/**
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 	 * @since 1.0
282 282
 	 */
283 283
 	function register_widget() {
284
-		register_widget( 'Give_Donators_Gravatars_Widget' );
284
+		register_widget('Give_Donators_Gravatars_Widget');
285 285
 	}
286 286
 
287 287
 	/**
@@ -290,19 +290,19 @@  discard block
 block discarded – undo
290 290
 	 * @since 1.0
291 291
 	 * @todo  set the ID to get_the_ID() if ID parameter is not passed through. Otherwise it will incorrectly get other gravatars
292 292
 	 */
293
-	function shortcode( $atts, $content = null ) {
293
+	function shortcode($atts, $content = null) {
294 294
 
295
-		$atts = shortcode_atts( array(
295
+		$atts = shortcode_atts(array(
296 296
 			'id'    => '',
297 297
 			'title' => ''
298
-		), $atts, 'give_donators_gravatars' );
298
+		), $atts, 'give_donators_gravatars');
299 299
 
300 300
 		// if no ID is passed on single give_forms pages, get the correct ID
301
-		if ( is_singular( 'give_forms' ) ) {
301
+		if (is_singular('give_forms')) {
302 302
 			$id = get_the_ID();
303 303
 		}
304 304
 
305
-		$content = $this->gravatars( $atts['id'], $atts['title'] );
305
+		$content = $this->gravatars($atts['id'], $atts['title']);
306 306
 
307 307
 		return $content;
308 308
 
@@ -313,57 +313,57 @@  discard block
 block discarded – undo
313 313
 	 *
314 314
 	 * @since 1.0
315 315
 	 */
316
-	function settings( $settings ) {
316
+	function settings($settings) {
317 317
 
318 318
 		$give_gravatar_settings = array(
319 319
 			array(
320
-				'name' => __( 'Donator Gravatars', 'give' ),
320
+				'name' => __('Donator Gravatars', 'give'),
321 321
 				'desc' => '<hr>',
322 322
 				'id'   => 'give_title',
323 323
 				'type' => 'give_title'
324 324
 			),
325 325
 			array(
326
-				'name' => __( 'Heading', 'give' ),
327
-				'desc' => __( 'The heading to display above the Gravatars', 'give' ),
326
+				'name' => __('Heading', 'give'),
327
+				'desc' => __('The heading to display above the Gravatars', 'give'),
328 328
 				'type' => 'text',
329 329
 				'id'   => 'give_donators_gravatars_heading'
330 330
 			),
331 331
 			array(
332
-				'name'    => __( 'Gravatar Size', 'give' ),
333
-				'desc'    => __( 'The size of each Gravatar in pixels (512px maximum)', 'give' ),
332
+				'name'    => __('Gravatar Size', 'give'),
333
+				'desc'    => __('The size of each Gravatar in pixels (512px maximum)', 'give'),
334 334
 				'type'    => 'text_small',
335 335
 				'id'      => 'give_donators_gravatars_gravatar_size',
336 336
 				'default' => '64'
337 337
 			),
338 338
 			array(
339
-				'name' => __( 'Minimum Unique Purchases Required', 'give' ),
339
+				'name' => __('Minimum Unique Purchases Required', 'give'),
340 340
 				/* translators: %s: form singular label */
341
-				'desc' => sprintf( __( 'The minimum number of unique purchases a %s must have before the Gravatars are shown. Leave blank for no minimum.', 'give' ), strtolower( give_get_forms_label_singular() ) ),
341
+				'desc' => sprintf(__('The minimum number of unique purchases a %s must have before the Gravatars are shown. Leave blank for no minimum.', 'give'), strtolower(give_get_forms_label_singular())),
342 342
 				'type' => 'text_small',
343 343
 				'id'   => 'give_donators_gravatars_min_purchases_required',
344 344
 			),
345 345
 			array(
346
-				'name'    => __( 'Maximum Gravatars To Show', 'give' ),
347
-				'desc'    => __( 'The maximum number of gravatars to show. Leave blank for no limit.', 'give' ),
346
+				'name'    => __('Maximum Gravatars To Show', 'give'),
347
+				'desc'    => __('The maximum number of gravatars to show. Leave blank for no limit.', 'give'),
348 348
 				'type'    => 'text',
349 349
 				'id'      => 'give_donators_gravatars_maximum_number',
350 350
 				'default' => '20',
351 351
 			),
352 352
 			array(
353
-				'name' => __( 'Gravatar Visibility', 'give' ),
354
-				'desc' => __( 'Only show donators with a Gravatar account', 'give' ),
353
+				'name' => __('Gravatar Visibility', 'give'),
354
+				'desc' => __('Only show donators with a Gravatar account', 'give'),
355 355
 				'id'   => 'give_donators_gravatars_has_gravatar_account',
356 356
 				'type' => 'checkbox',
357 357
 			),
358 358
 			array(
359
-				'name' => __( 'Randomize Gravatars', 'give' ),
360
-				'desc' => __( 'Randomize the Gravatars', 'give' ),
359
+				'name' => __('Randomize Gravatars', 'give'),
360
+				'desc' => __('Randomize the Gravatars', 'give'),
361 361
 				'id'   => 'give_donators_gravatars_random_gravatars',
362 362
 				'type' => 'checkbox',
363 363
 			),
364 364
 		);
365 365
 
366
-		return array_merge( $settings, $give_gravatar_settings );
366
+		return array_merge($settings, $give_gravatar_settings);
367 367
 	}
368 368
 
369 369
 }
@@ -381,13 +381,13 @@  discard block
 block discarded – undo
381 381
 	 */
382 382
 	public function __construct() {
383 383
 
384
-		$give_label_singular = function_exists( 'give_get_forms_label_singular' ) ? strtolower( give_get_forms_label_singular() ) : null;
384
+		$give_label_singular = function_exists('give_get_forms_label_singular') ? strtolower(give_get_forms_label_singular()) : null;
385 385
 
386 386
 		// widget settings
387 387
 		$widget_ops = array(
388 388
 			'classname'   => 'give-donators-gravatars',
389 389
 			/* translators: 1: form singular label 2: form singular label */
390
-			'description' => sprintf( __( 'Displays gravatars of people who have donated using your your %1$s. Will only show on the single %2$s page.', 'give' ), $give_label_singular, $give_label_singular )
390
+			'description' => sprintf(__('Displays gravatars of people who have donated using your your %1$s. Will only show on the single %2$s page.', 'give'), $give_label_singular, $give_label_singular)
391 391
 		);
392 392
 
393 393
 		// widget control settings
@@ -400,7 +400,7 @@  discard block
 block discarded – undo
400 400
 		// create the widget
401 401
 		parent::__construct(
402 402
 			'give_donators_gravatars_widget',
403
-			__( 'Give Donators Gravatars', 'give' ),
403
+			__('Give Donators Gravatars', 'give'),
404 404
 			$widget_ops,
405 405
 			$control_ops
406 406
 		);
@@ -411,30 +411,30 @@  discard block
 block discarded – undo
411 411
 	/*
412 412
 	 * Outputs the content of the widget
413 413
 	 */
414
-	function widget( $args, $instance ) {
414
+	function widget($args, $instance) {
415 415
 		global $give_options;
416 416
 
417 417
 		//@TODO: Don't extract it!!!
418
-		extract( $args );
418
+		extract($args);
419 419
 
420
-		if ( ! is_singular( 'give_forms' ) ) {
420
+		if ( ! is_singular('give_forms')) {
421 421
 			return;
422 422
 		}
423 423
 
424 424
 		// Variables from widget settings
425
-		$title = apply_filters( 'widget_title', $instance['title'] );
425
+		$title = apply_filters('widget_title', $instance['title']);
426 426
 
427 427
 		// Used by themes. Opens the widget
428 428
 		echo $before_widget;
429 429
 
430 430
 		// Display the widget title
431
-		if ( $title ) {
432
-			echo $before_title . $title . $after_title;
431
+		if ($title) {
432
+			echo $before_title.$title.$after_title;
433 433
 		}
434 434
 
435 435
 		$gravatars = new Give_Donators_Gravatars();
436 436
 
437
-		echo $gravatars->gravatars( get_the_ID(), null ); // remove title
437
+		echo $gravatars->gravatars(get_the_ID(), null); // remove title
438 438
 
439 439
 		// Used by themes. Closes the widget
440 440
 		echo $after_widget;
@@ -444,11 +444,11 @@  discard block
 block discarded – undo
444 444
 	/*
445 445
 	 * Update function. Processes widget options to be saved
446 446
 	 */
447
-	function update( $new_instance, $old_instance ) {
447
+	function update($new_instance, $old_instance) {
448 448
 
449 449
 		$instance = $old_instance;
450 450
 
451
-		$instance['title'] = strip_tags( $new_instance['title'] );
451
+		$instance['title'] = strip_tags($new_instance['title']);
452 452
 
453 453
 		return $instance;
454 454
 
@@ -457,19 +457,19 @@  discard block
 block discarded – undo
457 457
 	/*
458 458
 	 * Form function. Displays the actual form on the widget page
459 459
 	 */
460
-	function form( $instance ) {
460
+	function form($instance) {
461 461
 
462 462
 		// Set up some default widget settings.
463 463
 		$defaults = array(
464 464
 			'title' => '',
465 465
 		);
466 466
 
467
-		$instance = wp_parse_args( (array) $instance, $defaults ); ?>
467
+		$instance = wp_parse_args((array) $instance, $defaults); ?>
468 468
 
469 469
 		<!-- Title -->
470 470
 		<p>
471
-			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'give' ) ?></label>
472
-			<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $instance['title']; ?>" />
471
+			<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'give') ?></label>
472
+			<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $instance['title']; ?>" />
473 473
 		</p>
474 474
 
475 475
 
Please login to merge, or discard this patch.
includes/class-give-html-elements.php 1 patch
Spacing   +128 added lines, -128 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
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 	 *
34 34
 	 * @return string $output Give forms dropdown
35 35
 	 */
36
-	public function forms_dropdown( $args = array() ) {
36
+	public function forms_dropdown($args = array()) {
37 37
 
38 38
 		$defaults = array(
39 39
 			'name'        => 'forms',
@@ -44,47 +44,47 @@  discard block
 block discarded – undo
44 44
 			'chosen'      => false,
45 45
 			'number'      => 30,
46 46
 			/* translators: %s: form singular label */
47
-			'placeholder' => sprintf( __( 'Select a %s', 'give' ), give_get_forms_label_singular() )
47
+			'placeholder' => sprintf(__('Select a %s', 'give'), give_get_forms_label_singular())
48 48
 		);
49 49
 
50
-		$args = wp_parse_args( $args, $defaults );
50
+		$args = wp_parse_args($args, $defaults);
51 51
 
52
-		$forms = get_posts( array(
52
+		$forms = get_posts(array(
53 53
 			'post_type'      => 'give_forms',
54 54
 			'orderby'        => 'title',
55 55
 			'order'          => 'ASC',
56 56
 			'posts_per_page' => $args['number']
57
-		) );
57
+		));
58 58
 
59 59
 		$options = array();
60 60
 
61
-		if ( $forms ) {
61
+		if ($forms) {
62 62
 			$options[0] = sprintf(
63 63
 				/* translators: %s: form singular label */
64
-				__( 'Select a %s', 'give' ),
64
+				__('Select a %s', 'give'),
65 65
 				give_get_forms_label_singular()
66 66
 			);
67
-			foreach ( $forms as $form ) {
68
-				$options[ absint( $form->ID ) ] = esc_html( $form->post_title );
67
+			foreach ($forms as $form) {
68
+				$options[absint($form->ID)] = esc_html($form->post_title);
69 69
 			}
70 70
 		} else {
71
-			$options[0] = __( 'No Give Forms Found', 'give' );
71
+			$options[0] = __('No Give Forms Found', 'give');
72 72
 		}
73 73
 
74 74
 		// This ensures that any selected forms are included in the drop down
75
-		if ( is_array( $args['selected'] ) ) {
76
-			foreach ( $args['selected'] as $item ) {
77
-				if ( ! in_array( $item, $options ) ) {
78
-					$options[ $item ] = get_the_title( $item );
75
+		if (is_array($args['selected'])) {
76
+			foreach ($args['selected'] as $item) {
77
+				if ( ! in_array($item, $options)) {
78
+					$options[$item] = get_the_title($item);
79 79
 				}
80 80
 			}
81
-		} elseif ( is_numeric( $args['selected'] ) && $args['selected'] !== 0 ) {
82
-			if ( ! in_array( $args['selected'], $options ) ) {
83
-				$options[ $args['selected'] ] = get_the_title( $args['selected'] );
81
+		} elseif (is_numeric($args['selected']) && $args['selected'] !== 0) {
82
+			if ( ! in_array($args['selected'], $options)) {
83
+				$options[$args['selected']] = get_the_title($args['selected']);
84 84
 			}
85 85
 		}
86 86
 
87
-		$output = $this->select( array(
87
+		$output = $this->select(array(
88 88
 			'name'             => $args['name'],
89 89
 			'selected'         => $args['selected'],
90 90
 			'id'               => $args['id'],
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 			'placeholder'      => $args['placeholder'],
96 96
 			'show_option_all'  => false,
97 97
 			'show_option_none' => false
98
-		) );
98
+		));
99 99
 
100 100
 		return $output;
101 101
 	}
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	 *
111 111
 	 * @return string $output Donor dropdown
112 112
 	 */
113
-	public function donor_dropdown( $args = array() ) {
113
+	public function donor_dropdown($args = array()) {
114 114
 
115 115
 		$defaults = array(
116 116
 			'name'        => 'customers',
@@ -119,38 +119,38 @@  discard block
 block discarded – undo
119 119
 			'multiple'    => false,
120 120
 			'selected'    => 0,
121 121
 			'chosen'      => true,
122
-			'placeholder' => __( 'Select a Donor', 'give' ),
122
+			'placeholder' => __('Select a Donor', 'give'),
123 123
 			'number'      => 30
124 124
 		);
125 125
 
126
-		$args = wp_parse_args( $args, $defaults );
126
+		$args = wp_parse_args($args, $defaults);
127 127
 
128
-		$customers = Give()->customers->get_customers( array(
128
+		$customers = Give()->customers->get_customers(array(
129 129
 			'number' => $args['number']
130
-		) );
130
+		));
131 131
 
132 132
 		$options = array();
133 133
 
134
-		if ( $customers ) {
135
-			$options[0] = __( 'No donor attached', 'give' );
136
-			foreach ( $customers as $customer ) {
137
-				$options[ absint( $customer->id ) ] = esc_html( $customer->name . ' (' . $customer->email . ')' );
134
+		if ($customers) {
135
+			$options[0] = __('No donor attached', 'give');
136
+			foreach ($customers as $customer) {
137
+				$options[absint($customer->id)] = esc_html($customer->name.' ('.$customer->email.')');
138 138
 			}
139 139
 		} else {
140
-			$options[0] = __( 'No donors found', 'give' );
140
+			$options[0] = __('No donors found', 'give');
141 141
 		}
142 142
 
143
-		if ( ! empty( $args['selected'] ) ) {
143
+		if ( ! empty($args['selected'])) {
144 144
 
145 145
 			// If a selected customer has been specified, we need to ensure it's in the initial list of customers displayed
146 146
 
147
-			if ( ! array_key_exists( $args['selected'], $options ) ) {
147
+			if ( ! array_key_exists($args['selected'], $options)) {
148 148
 
149
-				$customer = new Give_Customer( $args['selected'] );
149
+				$customer = new Give_Customer($args['selected']);
150 150
 
151
-				if ( $customer ) {
151
+				if ($customer) {
152 152
 
153
-					$options[ absint( $args['selected'] ) ] = esc_html( $customer->name . ' (' . $customer->email . ')' );
153
+					$options[absint($args['selected'])] = esc_html($customer->name.' ('.$customer->email.')');
154 154
 
155 155
 				}
156 156
 
@@ -158,17 +158,17 @@  discard block
 block discarded – undo
158 158
 
159 159
 		}
160 160
 
161
-		$output = $this->select( array(
161
+		$output = $this->select(array(
162 162
 			'name'             => $args['name'],
163 163
 			'selected'         => $args['selected'],
164 164
 			'id'               => $args['id'],
165
-			'class'            => $args['class'] . ' give-customer-select',
165
+			'class'            => $args['class'].' give-customer-select',
166 166
 			'options'          => $options,
167 167
 			'multiple'         => $args['multiple'],
168 168
 			'chosen'           => $args['chosen'],
169 169
 			'show_option_all'  => false,
170 170
 			'show_option_none' => false
171
-		) );
171
+		));
172 172
 
173 173
 		return $output;
174 174
 	}
@@ -185,21 +185,21 @@  discard block
 block discarded – undo
185 185
 	 *
186 186
 	 * @return string $output Category dropdown
187 187
 	 */
188
-	public function category_dropdown( $name = 'give_forms_categories', $selected = 0 ) {
189
-		$categories = get_terms( 'give_forms_category', apply_filters( 'give_forms_category_dropdown', array() ) );
188
+	public function category_dropdown($name = 'give_forms_categories', $selected = 0) {
189
+		$categories = get_terms('give_forms_category', apply_filters('give_forms_category_dropdown', array()));
190 190
 		$options    = array();
191 191
 
192
-		foreach ( $categories as $category ) {
193
-			$options[ absint( $category->term_id ) ] = esc_html( $category->name );
192
+		foreach ($categories as $category) {
193
+			$options[absint($category->term_id)] = esc_html($category->name);
194 194
 		}
195 195
 
196
-		$output = $this->select( array(
196
+		$output = $this->select(array(
197 197
 			'name'             => $name,
198 198
 			'selected'         => $selected,
199 199
 			'options'          => $options,
200
-			'show_option_all'  => __( 'All Categories', 'give' ),
200
+			'show_option_all'  => __('All Categories', 'give'),
201 201
 			'show_option_none' => false
202
-		) );
202
+		));
203 203
 
204 204
 		return $output;
205 205
 	}
@@ -217,25 +217,25 @@  discard block
 block discarded – undo
217 217
 	 *
218 218
 	 * @return string $output Year dropdown
219 219
 	 */
220
-	public function year_dropdown( $name = 'year', $selected = 0, $years_before = 5, $years_after = 0 ) {
221
-		$current    = date( 'Y' );
222
-		$start_year = $current - absint( $years_before );
223
-		$end_year   = $current + absint( $years_after );
224
-		$selected   = empty( $selected ) ? date( 'Y' ) : $selected;
220
+	public function year_dropdown($name = 'year', $selected = 0, $years_before = 5, $years_after = 0) {
221
+		$current    = date('Y');
222
+		$start_year = $current - absint($years_before);
223
+		$end_year   = $current + absint($years_after);
224
+		$selected   = empty($selected) ? date('Y') : $selected;
225 225
 		$options    = array();
226 226
 
227
-		while ( $start_year <= $end_year ) {
228
-			$options[ absint( $start_year ) ] = $start_year;
229
-			$start_year ++;
227
+		while ($start_year <= $end_year) {
228
+			$options[absint($start_year)] = $start_year;
229
+			$start_year++;
230 230
 		}
231 231
 
232
-		$output = $this->select( array(
232
+		$output = $this->select(array(
233 233
 			'name'             => $name,
234 234
 			'selected'         => $selected,
235 235
 			'options'          => $options,
236 236
 			'show_option_all'  => false,
237 237
 			'show_option_none' => false
238
-		) );
238
+		));
239 239
 
240 240
 		return $output;
241 241
 	}
@@ -252,23 +252,23 @@  discard block
 block discarded – undo
252 252
 	 *
253 253
 	 * @return string $output Month dropdown
254 254
 	 */
255
-	public function month_dropdown( $name = 'month', $selected = 0 ) {
255
+	public function month_dropdown($name = 'month', $selected = 0) {
256 256
 		$month    = 1;
257 257
 		$options  = array();
258
-		$selected = empty( $selected ) ? date( 'n' ) : $selected;
258
+		$selected = empty($selected) ? date('n') : $selected;
259 259
 
260
-		while ( $month <= 12 ) {
261
-			$options[ absint( $month ) ] = give_month_num_to_name( $month );
262
-			$month ++;
260
+		while ($month <= 12) {
261
+			$options[absint($month)] = give_month_num_to_name($month);
262
+			$month++;
263 263
 		}
264 264
 
265
-		$output = $this->select( array(
265
+		$output = $this->select(array(
266 266
 			'name'             => $name,
267 267
 			'selected'         => $selected,
268 268
 			'options'          => $options,
269 269
 			'show_option_all'  => false,
270 270
 			'show_option_none' => false
271
-		) );
271
+		));
272 272
 
273 273
 		return $output;
274 274
 	}
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 	 *
283 283
 	 * @return string
284 284
 	 */
285
-	public function select( $args = array() ) {
285
+	public function select($args = array()) {
286 286
 		$defaults = array(
287 287
 			'options'          => array(),
288 288
 			'name'             => null,
@@ -292,60 +292,60 @@  discard block
 block discarded – undo
292 292
 			'chosen'           => false,
293 293
 			'placeholder'      => null,
294 294
 			'multiple'         => false,
295
-			'show_option_all'  => __( 'All', 'give' ),
296
-			'show_option_none' => __( 'None', 'give' )
295
+			'show_option_all'  => __('All', 'give'),
296
+			'show_option_none' => __('None', 'give')
297 297
 		);
298 298
 
299
-		$args = wp_parse_args( $args, $defaults );
299
+		$args = wp_parse_args($args, $defaults);
300 300
 
301 301
 
302
-		if ( $args['multiple'] ) {
302
+		if ($args['multiple']) {
303 303
 			$multiple = ' MULTIPLE';
304 304
 		} else {
305 305
 			$multiple = '';
306 306
 		}
307 307
 
308
-		if ( $args['chosen'] ) {
308
+		if ($args['chosen']) {
309 309
 			$args['class'] .= ' give-select-chosen';
310 310
 		}
311 311
 
312
-		if ( $args['placeholder'] ) {
312
+		if ($args['placeholder']) {
313 313
 			$placeholder = $args['placeholder'];
314 314
 		} else {
315 315
 			$placeholder = '';
316 316
 		}
317 317
 
318
-		$output = '<select name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( sanitize_key( str_replace( '-', '_', $args['id'] ) ) ) . '" class="give-select ' . esc_attr( $args['class'] ) . '"' . $multiple . ' data-placeholder="' . $placeholder . '">';
318
+		$output = '<select name="'.esc_attr($args['name']).'" id="'.esc_attr(sanitize_key(str_replace('-', '_', $args['id']))).'" class="give-select '.esc_attr($args['class']).'"'.$multiple.' data-placeholder="'.$placeholder.'">';
319 319
 
320
-		if ( $args['show_option_all'] ) {
321
-			if ( $args['multiple'] ) {
322
-				$selected = selected( true, in_array( 0, $args['selected'] ), false );
320
+		if ($args['show_option_all']) {
321
+			if ($args['multiple']) {
322
+				$selected = selected(true, in_array(0, $args['selected']), false);
323 323
 			} else {
324
-				$selected = selected( $args['selected'], 0, false );
324
+				$selected = selected($args['selected'], 0, false);
325 325
 			}
326
-			$output .= '<option value="all"' . $selected . '>' . esc_html( $args['show_option_all'] ) . '</option>';
326
+			$output .= '<option value="all"'.$selected.'>'.esc_html($args['show_option_all']).'</option>';
327 327
 		}
328 328
 
329
-		if ( ! empty( $args['options'] ) ) {
329
+		if ( ! empty($args['options'])) {
330 330
 
331
-			if ( $args['show_option_none'] ) {
332
-				if ( $args['multiple'] ) {
333
-					$selected = selected( true, in_array( - 1, $args['selected'] ), false );
331
+			if ($args['show_option_none']) {
332
+				if ($args['multiple']) {
333
+					$selected = selected(true, in_array( -1, $args['selected'] ), false);
334 334
 				} else {
335
-					$selected = selected( $args['selected'], - 1, false );
335
+					$selected = selected($args['selected'], - 1, false);
336 336
 				}
337
-				$output .= '<option value="-1"' . $selected . '>' . esc_html( $args['show_option_none'] ) . '</option>';
337
+				$output .= '<option value="-1"'.$selected.'>'.esc_html($args['show_option_none']).'</option>';
338 338
 			}
339 339
 
340
-			foreach ( $args['options'] as $key => $option ) {
340
+			foreach ($args['options'] as $key => $option) {
341 341
 
342
-				if ( $args['multiple'] && is_array( $args['selected'] ) ) {
343
-					$selected = selected( true, in_array( $key, $args['selected'] ), false );
342
+				if ($args['multiple'] && is_array($args['selected'])) {
343
+					$selected = selected(true, in_array($key, $args['selected']), false);
344 344
 				} else {
345
-					$selected = selected( $args['selected'], $key, false );
345
+					$selected = selected($args['selected'], $key, false);
346 346
 				}
347 347
 
348
-				$output .= '<option value="' . esc_attr( $key ) . '"' . $selected . '>' . esc_html( $option ) . '</option>';
348
+				$output .= '<option value="'.esc_attr($key).'"'.$selected.'>'.esc_html($option).'</option>';
349 349
 			}
350 350
 		}
351 351
 
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
 	 *
364 364
 	 * @return string
365 365
 	 */
366
-	public function checkbox( $args = array() ) {
366
+	public function checkbox($args = array()) {
367 367
 		$defaults = array(
368 368
 			'name'    => null,
369 369
 			'current' => null,
@@ -374,16 +374,16 @@  discard block
 block discarded – undo
374 374
 			)
375 375
 		);
376 376
 
377
-		$args = wp_parse_args( $args, $defaults );
377
+		$args = wp_parse_args($args, $defaults);
378 378
 
379 379
 		$options = '';
380
-		if ( ! empty( $args['options']['disabled'] ) ) {
380
+		if ( ! empty($args['options']['disabled'])) {
381 381
 			$options .= ' disabled="disabled"';
382
-		} elseif ( ! empty( $args['options']['readonly'] ) ) {
382
+		} elseif ( ! empty($args['options']['readonly'])) {
383 383
 			$options .= ' readonly';
384 384
 		}
385 385
 
386
-		$output = '<input type="checkbox"' . $options . ' name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . $args['class'] . ' ' . esc_attr( $args['name'] ) . '" ' . checked( 1, $args['current'], false ) . ' />';
386
+		$output = '<input type="checkbox"'.$options.' name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" class="'.$args['class'].' '.esc_attr($args['name']).'" '.checked(1, $args['current'], false).' />';
387 387
 
388 388
 		return $output;
389 389
 	}
@@ -397,22 +397,22 @@  discard block
 block discarded – undo
397 397
 	 *
398 398
 	 * @return string Text field
399 399
 	 */
400
-	public function text( $args = array() ) {
400
+	public function text($args = array()) {
401 401
 		// Backwards compatabliity
402
-		if ( func_num_args() > 1 ) {
402
+		if (func_num_args() > 1) {
403 403
 			$args = func_get_args();
404 404
 
405 405
 			$name  = $args[0];
406
-			$value = isset( $args[1] ) ? $args[1] : '';
407
-			$label = isset( $args[2] ) ? $args[2] : '';
408
-			$desc  = isset( $args[3] ) ? $args[3] : '';
406
+			$value = isset($args[1]) ? $args[1] : '';
407
+			$label = isset($args[2]) ? $args[2] : '';
408
+			$desc  = isset($args[3]) ? $args[3] : '';
409 409
 		}
410 410
 
411 411
 		$defaults = array(
412
-			'name'         => isset( $name ) ? $name : 'text',
413
-			'value'        => isset( $value ) ? $value : null,
414
-			'label'        => isset( $label ) ? $label : null,
415
-			'desc'         => isset( $desc ) ? $desc : null,
412
+			'name'         => isset($name) ? $name : 'text',
413
+			'value'        => isset($value) ? $value : null,
414
+			'label'        => isset($label) ? $label : null,
415
+			'desc'         => isset($desc) ? $desc : null,
416 416
 			'placeholder'  => '',
417 417
 			'class'        => 'regular-text',
418 418
 			'disabled'     => false,
@@ -420,29 +420,29 @@  discard block
 block discarded – undo
420 420
 			'data'         => false
421 421
 		);
422 422
 
423
-		$args = wp_parse_args( $args, $defaults );
423
+		$args = wp_parse_args($args, $defaults);
424 424
 
425 425
 		$disabled = '';
426
-		if ( $args['disabled'] ) {
426
+		if ($args['disabled']) {
427 427
 			$disabled = ' disabled="disabled"';
428 428
 		}
429 429
 
430 430
 		$data = '';
431
-		if ( ! empty( $args['data'] ) ) {
432
-			foreach ( $args['data'] as $key => $value ) {
433
-				$data .= 'data-' . $key . '="' . $value . '" ';
431
+		if ( ! empty($args['data'])) {
432
+			foreach ($args['data'] as $key => $value) {
433
+				$data .= 'data-'.$key.'="'.$value.'" ';
434 434
 			}
435 435
 		}
436 436
 
437
-		$output = '<span id="give-' . sanitize_key( $args['name'] ) . '-wrap">';
437
+		$output = '<span id="give-'.sanitize_key($args['name']).'-wrap">';
438 438
 
439
-		$output .= '<label class="give-label" for="give-' . sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>';
439
+		$output .= '<label class="give-label" for="give-'.sanitize_key($args['name']).'">'.esc_html($args['label']).'</label>';
440 440
 
441
-		if ( ! empty( $args['desc'] ) ) {
442
-			$output .= '<span class="give-description">' . esc_html( $args['desc'] ) . '</span>';
441
+		if ( ! empty($args['desc'])) {
442
+			$output .= '<span class="give-description">'.esc_html($args['desc']).'</span>';
443 443
 		}
444 444
 
445
-		$output .= '<input type="text" name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" autocomplete="' . esc_attr( $args['autocomplete'] ) . '" value="' . esc_attr( $args['value'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" class="' . $args['class'] . '" ' . $data . '' . $disabled . '/>';
445
+		$output .= '<input type="text" name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" autocomplete="'.esc_attr($args['autocomplete']).'" value="'.esc_attr($args['value']).'" placeholder="'.esc_attr($args['placeholder']).'" class="'.$args['class'].'" '.$data.''.$disabled.'/>';
446 446
 
447 447
 		$output .= '</span>';
448 448
 
@@ -458,15 +458,15 @@  discard block
 block discarded – undo
458 458
 	 *
459 459
 	 * @return string Datepicker field
460 460
 	 */
461
-	public function date_field( $args = array() ) {
461
+	public function date_field($args = array()) {
462 462
 
463
-		if ( empty( $args['class'] ) ) {
463
+		if (empty($args['class'])) {
464 464
 			$args['class'] = 'give_datepicker';
465
-		} elseif ( ! strpos( $args['class'], 'give_datepicker' ) ) {
465
+		} elseif ( ! strpos($args['class'], 'give_datepicker')) {
466 466
 			$args['class'] .= ' give_datepicker';
467 467
 		}
468 468
 
469
-		return $this->text( $args );
469
+		return $this->text($args);
470 470
 	}
471 471
 
472 472
 
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
 	 *
480 480
 	 * @return string textarea
481 481
 	 */
482
-	public function textarea( $args = array() ) {
482
+	public function textarea($args = array()) {
483 483
 		$defaults = array(
484 484
 			'name'     => 'textarea',
485 485
 			'value'    => null,
@@ -489,21 +489,21 @@  discard block
 block discarded – undo
489 489
 			'disabled' => false
490 490
 		);
491 491
 
492
-		$args = wp_parse_args( $args, $defaults );
492
+		$args = wp_parse_args($args, $defaults);
493 493
 
494 494
 		$disabled = '';
495
-		if ( $args['disabled'] ) {
495
+		if ($args['disabled']) {
496 496
 			$disabled = ' disabled="disabled"';
497 497
 		}
498 498
 
499
-		$output = '<span id="give-' . sanitize_key( $args['name'] ) . '-wrap">';
499
+		$output = '<span id="give-'.sanitize_key($args['name']).'-wrap">';
500 500
 
501
-		$output .= '<label class="give-label" for="give-' . sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>';
501
+		$output .= '<label class="give-label" for="give-'.sanitize_key($args['name']).'">'.esc_html($args['label']).'</label>';
502 502
 
503
-		$output .= '<textarea name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . $args['class'] . '"' . $disabled . '>' . esc_attr( $args['value'] ) . '</textarea>';
503
+		$output .= '<textarea name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" class="'.$args['class'].'"'.$disabled.'>'.esc_attr($args['value']).'</textarea>';
504 504
 
505
-		if ( ! empty( $args['desc'] ) ) {
506
-			$output .= '<span class="give-description">' . esc_html( $args['desc'] ) . '</span>';
505
+		if ( ! empty($args['desc'])) {
506
+			$output .= '<span class="give-description">'.esc_html($args['desc']).'</span>';
507 507
 		}
508 508
 
509 509
 		$output .= '</span>';
@@ -520,12 +520,12 @@  discard block
 block discarded – undo
520 520
 	 *
521 521
 	 * @return string text field with ajax search
522 522
 	 */
523
-	public function ajax_user_search( $args = array() ) {
523
+	public function ajax_user_search($args = array()) {
524 524
 
525 525
 		$defaults = array(
526 526
 			'name'         => 'user_id',
527 527
 			'value'        => null,
528
-			'placeholder'  => __( 'Enter username', 'give' ),
528
+			'placeholder'  => __('Enter username', 'give'),
529 529
 			'label'        => null,
530 530
 			'desc'         => null,
531 531
 			'class'        => '',
@@ -534,13 +534,13 @@  discard block
 block discarded – undo
534 534
 			'data'         => false
535 535
 		);
536 536
 
537
-		$args = wp_parse_args( $args, $defaults );
537
+		$args = wp_parse_args($args, $defaults);
538 538
 
539
-		$args['class'] = 'give-ajax-user-search ' . $args['class'];
539
+		$args['class'] = 'give-ajax-user-search '.$args['class'];
540 540
 
541 541
 		$output = '<span class="give_user_search_wrap">';
542
-		$output .= $this->text( $args );
543
-		$output .= '<span class="give_user_search_results hidden"><a class="give-ajax-user-cancel" title="' . __( 'Cancel', 'give' ) . '" aria-label="' . __( 'Cancel', 'give' ) . '" href="#">x</a><span></span></span>';
542
+		$output .= $this->text($args);
543
+		$output .= '<span class="give_user_search_results hidden"><a class="give-ajax-user-cancel" title="'.__('Cancel', 'give').'" aria-label="'.__('Cancel', 'give').'" href="#">x</a><span></span></span>';
544 544
 		$output .= '</span>';
545 545
 
546 546
 		return $output;
Please login to merge, or discard this patch.
includes/emails/template.php 1 patch
Spacing   +72 added lines, -72 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
 /**
@@ -54,40 +54,40 @@  discard block
 block discarded – undo
54 54
  *
55 55
  * @return string $message Fully formatted message
56 56
  */
57
-function give_email_preview_template_tags( $message ) {
57
+function give_email_preview_template_tags($message) {
58 58
 
59
-	$price = give_currency_filter( give_format_amount( 10.50 ) );
59
+	$price = give_currency_filter(give_format_amount(10.50));
60 60
 
61 61
 	$gateway = 'PayPal';
62 62
 
63
-	$receipt_id = strtolower( md5( uniqid() ) );
63
+	$receipt_id = strtolower(md5(uniqid()));
64 64
 
65
-	$notes = __( 'These are some sample notes added to a donation.', 'give' );
65
+	$notes = __('These are some sample notes added to a donation.', 'give');
66 66
 
67
-	$payment_id = rand( 1, 100 );
67
+	$payment_id = rand(1, 100);
68 68
 
69 69
 	$receipt_link = sprintf(
70 70
 		'<a href="%1$s">%2$s</a>',
71
-		esc_url( add_query_arg( array( 'payment_key' => $receipt_id, 'give_action' => 'view_receipt' ), home_url() ) ),
72
-		__( 'View the receipt in your browser', 'give' )
71
+		esc_url(add_query_arg(array('payment_key' => $receipt_id, 'give_action' => 'view_receipt'), home_url())),
72
+		__('View the receipt in your browser', 'give')
73 73
 	);
74 74
 
75 75
 	$user = wp_get_current_user();
76 76
 
77
-	$message = str_replace( '{name}', $user->display_name, $message );
78
-	$message = str_replace( '{fullname}', $user->display_name, $message );
79
-	$message = str_replace( '{username}', $user->user_login, $message );
80
-	$message = str_replace( '{date}', date( get_option( 'date_format' ), current_time( 'timestamp' ) ), $message );
81
-	$message = str_replace( '{price}', $price, $message );
82
-	$message = str_replace( '{donation}', 'Sample Donation Form Title', $message );
83
-	$message = str_replace( '{receipt_id}', $receipt_id, $message );
84
-	$message = str_replace( '{payment_method}', $gateway, $message );
85
-	$message = str_replace( '{sitename}', get_bloginfo( 'name' ), $message );
86
-	$message = str_replace( '{product_notes}', $notes, $message );
87
-	$message = str_replace( '{payment_id}', $payment_id, $message );
88
-	$message = str_replace( '{receipt_link}', $receipt_link, $message );
89
-
90
-	return wpautop( apply_filters( 'give_email_preview_template_tags', $message ) );
77
+	$message = str_replace('{name}', $user->display_name, $message);
78
+	$message = str_replace('{fullname}', $user->display_name, $message);
79
+	$message = str_replace('{username}', $user->user_login, $message);
80
+	$message = str_replace('{date}', date(get_option('date_format'), current_time('timestamp')), $message);
81
+	$message = str_replace('{price}', $price, $message);
82
+	$message = str_replace('{donation}', 'Sample Donation Form Title', $message);
83
+	$message = str_replace('{receipt_id}', $receipt_id, $message);
84
+	$message = str_replace('{payment_method}', $gateway, $message);
85
+	$message = str_replace('{sitename}', get_bloginfo('name'), $message);
86
+	$message = str_replace('{product_notes}', $notes, $message);
87
+	$message = str_replace('{payment_id}', $payment_id, $message);
88
+	$message = str_replace('{receipt_link}', $receipt_link, $message);
89
+
90
+	return wpautop(apply_filters('give_email_preview_template_tags', $message));
91 91
 }
92 92
 
93 93
 /**
@@ -100,20 +100,20 @@  discard block
 block discarded – undo
100 100
  * @since  1.0
101 101
  * @return array|bool
102 102
  */
103
-add_filter( 'give_settings_emails', 'give_email_template_preview' );
103
+add_filter('give_settings_emails', 'give_email_template_preview');
104 104
 
105
-function give_email_template_preview( $array ) {
105
+function give_email_template_preview($array) {
106 106
 
107
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
107
+	if ( ! current_user_can('manage_give_settings')) {
108 108
 		return false;
109 109
 	}
110 110
 	$custom_field = array(
111
-		'name' => __( 'Preview Email', 'give' ),
112
-		'desc' => __( 'Click the buttons to preview emails.', 'give' ),
111
+		'name' => __('Preview Email', 'give'),
112
+		'desc' => __('Click the buttons to preview emails.', 'give'),
113 113
 		'id'   => 'give_email_preview_buttons',
114 114
 		'type' => 'email_preview_buttons'
115 115
 	);
116
-	array_splice( $array, 5, 0, array( $custom_field ) );
116
+	array_splice($array, 5, 0, array($custom_field));
117 117
 
118 118
 	return $array; // splice in at position 3;
119 119
 }
@@ -129,11 +129,11 @@  discard block
 block discarded – undo
129 129
 function give_email_preview_buttons_callback() {
130 130
 	ob_start();
131 131
 	?>
132
-	<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>
133
-	<a href="<?php echo wp_nonce_url( add_query_arg( array(
132
+	<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>
133
+	<a href="<?php echo wp_nonce_url(add_query_arg(array(
134 134
 		'give_action'  => 'send_test_email',
135 135
 		'give-message' => 'sent-test-email'
136
-	) ), '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
+	)), '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>
137 137
 	<?php
138 138
 	echo ob_get_clean();
139 139
 }
@@ -146,27 +146,27 @@  discard block
 block discarded – undo
146 146
  */
147 147
 function give_display_email_template_preview() {
148 148
 
149
-	if ( empty( $_GET['give_action'] ) ) {
149
+	if (empty($_GET['give_action'])) {
150 150
 		return;
151 151
 	}
152 152
 
153
-	if ( 'preview_email' !== $_GET['give_action'] ) {
153
+	if ('preview_email' !== $_GET['give_action']) {
154 154
 		return;
155 155
 	}
156 156
 
157
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
157
+	if ( ! current_user_can('manage_give_settings')) {
158 158
 		return;
159 159
 	}
160 160
 
161
-	Give()->emails->heading = __( 'Donation Receipt', 'give' );
161
+	Give()->emails->heading = __('Donation Receipt', 'give');
162 162
 
163
-	echo Give()->emails->build_email( give_email_preview_template_tags( give_get_email_body_content( 0, array() ) ) );
163
+	echo Give()->emails->build_email(give_email_preview_template_tags(give_get_email_body_content(0, array())));
164 164
 
165 165
 	exit;
166 166
 
167 167
 }
168 168
 
169
-add_action( 'template_redirect', 'give_display_email_template_preview' );
169
+add_action('template_redirect', 'give_display_email_template_preview');
170 170
 
171 171
 /**
172 172
  * Email Template Body
@@ -178,19 +178,19 @@  discard block
 block discarded – undo
178 178
  *
179 179
  * @return string $email_body Body of the email
180 180
  */
181
-function give_get_email_body_content( $payment_id = 0, $payment_data = array() ) {
181
+function give_get_email_body_content($payment_id = 0, $payment_data = array()) {
182 182
 
183 183
 	global $give_options;
184 184
 
185 185
 	$default_email_body = give_get_default_donation_receipt_email();
186 186
 
187
-	$email = isset( $give_options['donation_receipt'] ) ? stripslashes( $give_options['donation_receipt'] ) : $default_email_body;
187
+	$email = isset($give_options['donation_receipt']) ? stripslashes($give_options['donation_receipt']) : $default_email_body;
188 188
 
189
-	$email_body = wpautop( $email );
189
+	$email_body = wpautop($email);
190 190
 
191
-	$email_body = apply_filters( 'give_donation_receipt_' . Give()->emails->get_template(), $email_body, $payment_id, $payment_data );
191
+	$email_body = apply_filters('give_donation_receipt_'.Give()->emails->get_template(), $email_body, $payment_id, $payment_data);
192 192
 
193
-	return apply_filters( 'give_donation_receipt', $email_body, $payment_id, $payment_data );
193
+	return apply_filters('give_donation_receipt', $email_body, $payment_id, $payment_data);
194 194
 }
195 195
 
196 196
 
@@ -206,41 +206,41 @@  discard block
 block discarded – undo
206 206
  *
207 207
  * @return string $email_body Body of the email
208 208
  */
209
-function give_get_donation_notification_body_content( $payment_id = 0, $payment_data = array() ) {
209
+function give_get_donation_notification_body_content($payment_id = 0, $payment_data = array()) {
210 210
 	global $give_options;
211 211
 
212
-	$user_info = maybe_unserialize( $payment_data['user_info'] );
213
-	$email     = give_get_payment_user_email( $payment_id );
212
+	$user_info = maybe_unserialize($payment_data['user_info']);
213
+	$email     = give_get_payment_user_email($payment_id);
214 214
 
215
-	if ( isset( $user_info['id'] ) && $user_info['id'] > 0 ) {
216
-		$user_data = get_userdata( $user_info['id'] );
215
+	if (isset($user_info['id']) && $user_info['id'] > 0) {
216
+		$user_data = get_userdata($user_info['id']);
217 217
 		$name      = $user_data->display_name;
218
-	} elseif ( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) {
219
-		$name = $user_info['first_name'] . ' ' . $user_info['last_name'];
218
+	} elseif (isset($user_info['first_name']) && isset($user_info['last_name'])) {
219
+		$name = $user_info['first_name'].' '.$user_info['last_name'];
220 220
 	} else {
221 221
 		$name = $email;
222 222
 	}
223 223
 
224
-	$gateway = give_get_gateway_admin_label( get_post_meta( $payment_id, '_give_payment_gateway', true ) );
224
+	$gateway = give_get_gateway_admin_label(get_post_meta($payment_id, '_give_payment_gateway', true));
225 225
 
226
-	$default_email_body = __( 'Hello', 'give' ) . "\n\n" . __( 'A donation has been made', 'give' ) . ".\n\n";
226
+	$default_email_body = __('Hello', 'give')."\n\n".__('A donation has been made', 'give').".\n\n";
227 227
 	$default_email_body .= sprintf(
228 228
 		/* translators: %s: form plural label */
229
-		__( '%s sold:', 'give' ),
229
+		__('%s sold:', 'give'),
230 230
 		give_get_forms_label_plural()
231
-	) . "\n\n";
231
+	)."\n\n";
232 232
 
233
-	$default_email_body .= __( 'Donor: ', 'give' ) . " " . html_entity_decode( $name, ENT_COMPAT, 'UTF-8' ) . "\n";
234
-	$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";
235
-	$default_email_body .= __( 'Payment Method: ', 'give' ) . " " . $gateway . "\n\n";
233
+	$default_email_body .= __('Donor: ', 'give')." ".html_entity_decode($name, ENT_COMPAT, 'UTF-8')."\n";
234
+	$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";
235
+	$default_email_body .= __('Payment Method: ', 'give')." ".$gateway."\n\n";
236 236
 
237
-	$default_email_body .= __( 'Thank you', 'give' );
237
+	$default_email_body .= __('Thank you', 'give');
238 238
 
239
-	$email = isset( $give_options['donation_notification'] ) ? stripslashes( $give_options['donation_notification'] ) : $default_email_body;
239
+	$email = isset($give_options['donation_notification']) ? stripslashes($give_options['donation_notification']) : $default_email_body;
240 240
 
241
-	$email_body = give_do_email_tags( $email, $payment_id );
241
+	$email_body = give_do_email_tags($email, $payment_id);
242 242
 
243
-	return apply_filters( 'give_donation_notification', wpautop( $email_body ), $payment_id, $payment_data );
243
+	return apply_filters('give_donation_notification', wpautop($email_body), $payment_id, $payment_data);
244 244
 }
245 245
 
246 246
 /**
@@ -253,15 +253,15 @@  discard block
 block discarded – undo
253 253
  * @since  1.0
254 254
  */
255 255
 function give_render_receipt_in_browser() {
256
-	if ( ! isset( $_GET['payment_key'] ) ) {
257
-		wp_die( __( 'Missing donation payment key.', 'give' ), __( 'Error', 'give' ) );
256
+	if ( ! isset($_GET['payment_key'])) {
257
+		wp_die(__('Missing donation payment key.', 'give'), __('Error', 'give'));
258 258
 	}
259 259
 
260
-	$key = urlencode( $_GET['payment_key'] );
260
+	$key = urlencode($_GET['payment_key']);
261 261
 
262 262
 	ob_start();
263 263
 	//Disallows caching of the page
264
-	header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
264
+	header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
265 265
 	header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
266 266
 	header("Cache-Control: post-check=0, pre-check=0", false);
267 267
 	header("Pragma: no-cache"); // HTTP/1.0
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 	<!DOCTYPE html>
271 271
 	<html lang="en">
272 272
 		<head>
273
-			<title><?php _e( 'Donation Receipt', 'give' ); ?></title>
273
+			<title><?php _e('Donation Receipt', 'give'); ?></title>
274 274
 			<meta charset="utf-8" />
275 275
 
276 276
 			<!-- Further disallowing of caching of this page -->
@@ -284,12 +284,12 @@  discard block
 block discarded – undo
284 284
 
285 285
 			<?php wp_head(); ?>
286 286
 		</head>
287
-		<body class="<?php echo apply_filters( 'give_receipt_page_body_class', 'give_receipt_page' ); ?>">
287
+		<body class="<?php echo apply_filters('give_receipt_page_body_class', 'give_receipt_page'); ?>">
288 288
 
289 289
 			<div id="give_receipt_wrapper">
290
-				<?php do_action( 'give_render_receipt_in_browser_before' ); ?>
291
-				<?php echo do_shortcode( '[give_receipt payment_key=' . $key . ']' ); ?>
292
-				<?php do_action( 'give_render_receipt_in_browser_after' ); ?>
290
+				<?php do_action('give_render_receipt_in_browser_before'); ?>
291
+				<?php echo do_shortcode('[give_receipt payment_key='.$key.']'); ?>
292
+				<?php do_action('give_render_receipt_in_browser_after'); ?>
293 293
 			</div>
294 294
 
295 295
 			<?php wp_footer(); ?>
@@ -300,4 +300,4 @@  discard block
 block discarded – undo
300 300
 	die();
301 301
 }
302 302
 
303
-add_action( 'give_view_receipt', 'give_render_receipt_in_browser' );
303
+add_action('give_view_receipt', 'give_render_receipt_in_browser');
Please login to merge, or discard this patch.
includes/payments/actions.php 1 patch
Spacing   +53 added lines, -53 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
 
@@ -28,21 +28,21 @@  discard block
 block discarded – undo
28 28
  *
29 29
  * @return void
30 30
  */
31
-function give_complete_purchase( $payment_id, $new_status, $old_status ) {
31
+function give_complete_purchase($payment_id, $new_status, $old_status) {
32 32
 
33 33
 	// Make sure that payments are only completed once
34
-	if ( $old_status == 'publish' || $old_status == 'complete' ) {
34
+	if ($old_status == 'publish' || $old_status == 'complete') {
35 35
 		return;
36 36
 	}
37 37
 
38 38
 	// Make sure the payment completion is only processed when new status is complete
39
-	if ( $new_status != 'publish' && $new_status != 'complete' ) {
39
+	if ($new_status != 'publish' && $new_status != 'complete') {
40 40
 		return;
41 41
 	}
42 42
 	
43
-	$payment = new Give_Payment( $payment_id );
43
+	$payment = new Give_Payment($payment_id);
44 44
 
45
-	$creation_date  = get_post_field( 'post_date', $payment_id, 'raw' );
45
+	$creation_date  = get_post_field('post_date', $payment_id, 'raw');
46 46
 	$payment_meta   = $payment->payment_meta;
47 47
 	$completed_date = $payment->completed_date;
48 48
 	$user_info      = $payment->user_info;
@@ -51,45 +51,45 @@  discard block
 block discarded – undo
51 51
 	$price_id       = $payment->price_id;
52 52
 	$form_id        = $payment->form_id;
53 53
 
54
-	do_action( 'give_pre_complete_purchase', $payment_id );
54
+	do_action('give_pre_complete_purchase', $payment_id);
55 55
 
56 56
 	// Ensure these actions only run once, ever
57
-	if ( empty( $completed_date ) ) {
57
+	if (empty($completed_date)) {
58 58
 
59
-		give_record_sale_in_log( $form_id, $payment_id, $price_id, $creation_date );
60
-		do_action( 'give_complete_form_donation', $form_id, $payment_id, $payment_meta );
59
+		give_record_sale_in_log($form_id, $payment_id, $price_id, $creation_date);
60
+		do_action('give_complete_form_donation', $form_id, $payment_id, $payment_meta);
61 61
 
62 62
 	}
63 63
 
64 64
 	// Increase the earnings for this form ID
65
-	give_increase_earnings( $form_id, $amount );
66
-	give_increase_purchase_count( $form_id );
65
+	give_increase_earnings($form_id, $amount);
66
+	give_increase_purchase_count($form_id);
67 67
 
68 68
 	// Clear the total earnings cache
69
-	delete_transient( 'give_earnings_total' );
69
+	delete_transient('give_earnings_total');
70 70
 	// Clear the This Month earnings (this_monththis_month is NOT a typo)
71
-	delete_transient( md5( 'give_earnings_this_monththis_month' ) );
72
-	delete_transient( md5( 'give_earnings_todaytoday' ) );
71
+	delete_transient(md5('give_earnings_this_monththis_month'));
72
+	delete_transient(md5('give_earnings_todaytoday'));
73 73
 	
74 74
 	// Increase the donor's purchase stats
75
-	$customer = new Give_Customer( $customer_id );
75
+	$customer = new Give_Customer($customer_id);
76 76
 	$customer->increase_purchase_count();
77
-	$customer->increase_value( $amount );
77
+	$customer->increase_value($amount);
78 78
 
79
-	give_increase_total_earnings( $amount );
79
+	give_increase_total_earnings($amount);
80 80
 
81 81
 	// Ensure this action only runs once ever
82
-	if ( empty( $completed_date ) ) {
82
+	if (empty($completed_date)) {
83 83
 
84 84
 		// Save the completed date
85
-		$payment->completed_date = current_time( 'mysql' );
85
+		$payment->completed_date = current_time('mysql');
86 86
 		$payment->save();
87
-		do_action( 'give_complete_purchase', $payment_id );
87
+		do_action('give_complete_purchase', $payment_id);
88 88
 	}
89 89
 
90 90
 }
91 91
 
92
-add_action( 'give_update_payment_status', 'give_complete_purchase', 100, 3 );
92
+add_action('give_update_payment_status', 'give_complete_purchase', 100, 3);
93 93
 
94 94
 
95 95
 /**
@@ -103,24 +103,24 @@  discard block
 block discarded – undo
103 103
  *
104 104
  * @return void
105 105
  */
106
-function give_record_status_change( $payment_id, $new_status, $old_status ) {
106
+function give_record_status_change($payment_id, $new_status, $old_status) {
107 107
 
108 108
 	// Get the list of statuses so that status in the payment note can be translated
109 109
 	$stati      = give_get_payment_statuses();
110
-	$old_status = isset( $stati[ $old_status ] ) ? $stati[ $old_status ] : $old_status;
111
-	$new_status = isset( $stati[ $new_status ] ) ? $stati[ $new_status ] : $new_status;
110
+	$old_status = isset($stati[$old_status]) ? $stati[$old_status] : $old_status;
111
+	$new_status = isset($stati[$new_status]) ? $stati[$new_status] : $new_status;
112 112
 
113 113
 	$status_change = sprintf(
114 114
 		/* translators: 1: old status 2: new status */
115
-		__( 'Status changed from %1$s to %2$s.', 'give' ),
115
+		__('Status changed from %1$s to %2$s.', 'give'),
116 116
 		$old_status,
117 117
 		$new_status
118 118
 	);
119 119
 
120
-	give_insert_payment_note( $payment_id, $status_change );
120
+	give_insert_payment_note($payment_id, $status_change);
121 121
 }
122 122
 
123
-add_action( 'give_update_payment_status', 'give_record_status_change', 100, 3 );
123
+add_action('give_update_payment_status', 'give_record_status_change', 100, 3);
124 124
 
125 125
 
126 126
 /**
@@ -133,17 +133,17 @@  discard block
 block discarded – undo
133 133
  * @param $new_status the status of the payment, probably "publish"
134 134
  * @param $old_status the status of the payment prior to being marked as "complete", probably "pending"
135 135
  */
136
-function give_clear_user_history_cache( $payment_id, $new_status, $old_status ) {
136
+function give_clear_user_history_cache($payment_id, $new_status, $old_status) {
137 137
 
138
-	$payment = new Give_Payment( $payment_id );
138
+	$payment = new Give_Payment($payment_id);
139 139
 
140
-	if ( ! empty( $payment->user_id ) ) {
141
-		delete_transient( 'give_user_' . $payment->user_id . '_purchases' );
140
+	if ( ! empty($payment->user_id)) {
141
+		delete_transient('give_user_'.$payment->user_id.'_purchases');
142 142
 	}
143 143
 
144 144
 }
145 145
 
146
-add_action( 'give_update_payment_status', 'give_clear_user_history_cache', 10, 3 );
146
+add_action('give_update_payment_status', 'give_clear_user_history_cache', 10, 3);
147 147
 
148 148
 /**
149 149
  * Updates all old payments, prior to 1.2, with new
@@ -157,25 +157,25 @@  discard block
 block discarded – undo
157 157
  *
158 158
  * @return void
159 159
  */
160
-function give_update_old_payments_with_totals( $data ) {
161
-	if ( ! wp_verify_nonce( $data['_wpnonce'], 'give_upgrade_payments_nonce' ) ) {
160
+function give_update_old_payments_with_totals($data) {
161
+	if ( ! wp_verify_nonce($data['_wpnonce'], 'give_upgrade_payments_nonce')) {
162 162
 		return;
163 163
 	}
164 164
 
165
-	if ( get_option( 'give_payment_totals_upgraded' ) ) {
165
+	if (get_option('give_payment_totals_upgraded')) {
166 166
 		return;
167 167
 	}
168 168
 
169
-	$payments = give_get_payments( array(
169
+	$payments = give_get_payments(array(
170 170
 		'offset' => 0,
171
-		'number' => - 1,
171
+		'number' => -1,
172 172
 		'mode'   => 'all'
173
-	) );
173
+	));
174 174
 
175
-	if ( $payments ) {
176
-		foreach ( $payments as $payment ) {
175
+	if ($payments) {
176
+		foreach ($payments as $payment) {
177 177
 
178
-			$payment = new Give_Payment( $payment->ID );
178
+			$payment = new Give_Payment($payment->ID);
179 179
 			$meta    = $payment->get_meta();
180 180
 
181 181
 			$payment->total = $meta['amount'];
@@ -184,10 +184,10 @@  discard block
 block discarded – undo
184 184
 		}
185 185
 	}
186 186
 
187
-	add_option( 'give_payment_totals_upgraded', 1 );
187
+	add_option('give_payment_totals_upgraded', 1);
188 188
 }
189 189
 
190
-add_action( 'give_upgrade_payments', 'give_update_old_payments_with_totals' );
190
+add_action('give_upgrade_payments', 'give_update_old_payments_with_totals');
191 191
 
192 192
 /**
193 193
  * Updates week-old+ 'pending' orders to 'abandoned'
@@ -198,21 +198,21 @@  discard block
 block discarded – undo
198 198
 function give_mark_abandoned_donations() {
199 199
 	$args = array(
200 200
 		'status' => 'pending',
201
-		'number' => - 1,
201
+		'number' => -1,
202 202
 		'output' => 'give_payments',
203 203
 	);
204 204
 
205
-	add_filter( 'posts_where', 'give_filter_where_older_than_week' );
205
+	add_filter('posts_where', 'give_filter_where_older_than_week');
206 206
 
207
-	$payments = give_get_payments( $args );
207
+	$payments = give_get_payments($args);
208 208
 
209
-	remove_filter( 'posts_where', 'give_filter_where_older_than_week' );
209
+	remove_filter('posts_where', 'give_filter_where_older_than_week');
210 210
 
211
-	if ( $payments ) {
212
-		foreach ( $payments as $payment ) {
213
-			$gateway = give_get_payment_gateway( $payment );
211
+	if ($payments) {
212
+		foreach ($payments as $payment) {
213
+			$gateway = give_get_payment_gateway($payment);
214 214
 			//Skip offline gateway payments
215
-			if ( $gateway == 'offline' ) {
215
+			if ($gateway == 'offline') {
216 216
 				continue;
217 217
 			}
218 218
 			$payment->status = 'abandoned';
@@ -221,4 +221,4 @@  discard block
 block discarded – undo
221 221
 	}
222 222
 }
223 223
 
224
-add_action( 'give_weekly_scheduled_events', 'give_mark_abandoned_donations' );
225 224
\ No newline at end of file
225
+add_action('give_weekly_scheduled_events', 'give_mark_abandoned_donations');
226 226
\ No newline at end of file
Please login to merge, or discard this patch.