Completed
Push — master ( 1b1318...6650f3 )
by Devin
30:56 queued 11:02
created
includes/admin/register-settings.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 	 *
82 82
 	 * @param $url
83 83
 	 *
84
-	 * @return mixed
84
+	 * @return string
85 85
 	 */
86 86
 	public function give_update_cmb_meta_box_url( $url ) {
87 87
 		//Path to Give's CMB
@@ -767,7 +767,7 @@  discard block
 block discarded – undo
767 767
  * @since 1.0
768 768
  *
769 769
  * @param string $key The Key to update
770
- * @param string|bool|int $value The value to set the key to
770
+ * @param integer $value The value to set the key to
771 771
  *
772 772
  * @return boolean True if updated, false if not.
773 773
  */
Please login to merge, or discard this patch.
Spacing   +299 added lines, -299 removed lines patch added patch discarded remove patch
@@ -43,24 +43,24 @@  discard block
 block discarded – undo
43 43
 	 */
44 44
 	public function __construct() {
45 45
 
46
-		add_action( 'admin_init', array( $this, 'init' ) );
46
+		add_action('admin_init', array($this, 'init'));
47 47
 
48 48
 		//Customize CMB2 URL
49
-		add_filter( 'cmb2_meta_box_url', array( $this, 'give_update_cmb_meta_box_url' ) );
49
+		add_filter('cmb2_meta_box_url', array($this, 'give_update_cmb_meta_box_url'));
50 50
 
51 51
 		//Custom CMB2 Settings Fields
52
-		add_action( 'cmb2_render_give_title', 'give_title_callback', 10, 5 );
53
-		add_action( 'cmb2_render_give_description', 'give_description_callback', 10, 5 );
54
-		add_action( 'cmb2_render_enabled_gateways', 'give_enabled_gateways_callback', 10, 5 );
55
-		add_action( 'cmb2_render_default_gateway', 'give_default_gateway_callback', 10, 5 );
56
-		add_action( 'cmb2_render_email_preview_buttons', 'give_email_preview_buttons_callback', 10, 5 );
57
-		add_action( 'cmb2_render_system_info', 'give_system_info_callback', 10, 5 );
58
-		add_action( 'cmb2_render_api', 'give_api_callback', 10, 5 );
59
-		add_action( 'cmb2_render_license_key', 'give_license_key_callback', 10, 5 );
60
-		add_action( 'admin_notices', array( $this, 'settings_notices' ) );
52
+		add_action('cmb2_render_give_title', 'give_title_callback', 10, 5);
53
+		add_action('cmb2_render_give_description', 'give_description_callback', 10, 5);
54
+		add_action('cmb2_render_enabled_gateways', 'give_enabled_gateways_callback', 10, 5);
55
+		add_action('cmb2_render_default_gateway', 'give_default_gateway_callback', 10, 5);
56
+		add_action('cmb2_render_email_preview_buttons', 'give_email_preview_buttons_callback', 10, 5);
57
+		add_action('cmb2_render_system_info', 'give_system_info_callback', 10, 5);
58
+		add_action('cmb2_render_api', 'give_api_callback', 10, 5);
59
+		add_action('cmb2_render_license_key', 'give_license_key_callback', 10, 5);
60
+		add_action('admin_notices', array($this, 'settings_notices'));
61 61
 
62 62
 		// Include CMB CSS in the head to avoid FOUC
63
-		add_action( "admin_print_styles-give_forms_page_give-settings", array( 'CMB2_hookup', 'enqueue_cmb_css' ) );
63
+		add_action("admin_print_styles-give_forms_page_give-settings", array('CMB2_hookup', 'enqueue_cmb_css'));
64 64
 
65 65
 	}
66 66
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 * @since  1.0
70 70
 	 */
71 71
 	public function init() {
72
-		register_setting( $this->key, $this->key );
72
+		register_setting($this->key, $this->key);
73 73
 
74 74
 	}
75 75
 
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
 	 *
84 84
 	 * @return mixed
85 85
 	 */
86
-	public function give_update_cmb_meta_box_url( $url ) {
86
+	public function give_update_cmb_meta_box_url($url) {
87 87
 		//Path to Give's CMB
88
-		return GIVE_PLUGIN_URL . '/includes/libraries/cmb2';
88
+		return GIVE_PLUGIN_URL.'/includes/libraries/cmb2';
89 89
 	}
90 90
 
91 91
 
@@ -97,27 +97,27 @@  discard block
 block discarded – undo
97 97
 	 */
98 98
 	public function give_get_settings_tabs() {
99 99
 
100
-		$settings = $this->give_settings( null );
100
+		$settings = $this->give_settings(null);
101 101
 
102 102
 		$tabs             = array();
103
-		$tabs['general']  = __( 'General', 'give' );
104
-		$tabs['gateways'] = __( 'Payment Gateways', 'give' );
105
-		$tabs['display']  = __( 'Display Options', 'give' );
106
-		$tabs['emails']   = __( 'Emails', 'give' );
103
+		$tabs['general']  = __('General', 'give');
104
+		$tabs['gateways'] = __('Payment Gateways', 'give');
105
+		$tabs['display']  = __('Display Options', 'give');
106
+		$tabs['emails']   = __('Emails', 'give');
107 107
 
108
-		if ( ! empty( $settings['addons']['fields'] ) ) {
109
-			$tabs['addons'] = __( 'Add-ons', 'give' );
108
+		if ( ! empty($settings['addons']['fields'])) {
109
+			$tabs['addons'] = __('Add-ons', 'give');
110 110
 		}
111 111
 
112
-		if ( ! empty( $settings['licenses']['fields'] ) ) {
113
-			$tabs['licenses'] = __( 'Licenses', 'give' );
112
+		if ( ! empty($settings['licenses']['fields'])) {
113
+			$tabs['licenses'] = __('Licenses', 'give');
114 114
 		}
115 115
 
116
-		$tabs['advanced']    = __( 'Advanced', 'give' );
117
-		$tabs['api']         = __( 'API', 'give' );
118
-		$tabs['system_info'] = __( 'System Info', 'give' );
116
+		$tabs['advanced']    = __('Advanced', 'give');
117
+		$tabs['api']         = __('API', 'give');
118
+		$tabs['system_info'] = __('System Info', 'give');
119 119
 
120
-		return apply_filters( 'give_settings_tabs', $tabs );
120
+		return apply_filters('give_settings_tabs', $tabs);
121 121
 	}
122 122
 
123 123
 
@@ -127,31 +127,31 @@  discard block
 block discarded – undo
127 127
 	 */
128 128
 	public function admin_page_display() {
129 129
 
130
-		$active_tab = isset( $_GET['tab'] ) && array_key_exists( $_GET['tab'], $this->give_get_settings_tabs() ) ? $_GET['tab'] : 'general';
130
+		$active_tab = isset($_GET['tab']) && array_key_exists($_GET['tab'], $this->give_get_settings_tabs()) ? $_GET['tab'] : 'general';
131 131
 
132 132
 		?>
133 133
 
134 134
 		<div class="wrap give_settings_page cmb2_options_page <?php echo $this->key; ?>">
135 135
 			<h1 class="nav-tab-wrapper">
136 136
 				<?php
137
-				foreach ( $this->give_get_settings_tabs() as $tab_id => $tab_name ) {
137
+				foreach ($this->give_get_settings_tabs() as $tab_id => $tab_name) {
138 138
 
139
-					$tab_url = esc_url( add_query_arg( array(
139
+					$tab_url = esc_url(add_query_arg(array(
140 140
 						'settings-updated' => false,
141 141
 						'tab'              => $tab_id
142
-					) ) );
142
+					)));
143 143
 
144 144
 					$active = $active_tab == $tab_id ? ' nav-tab-active' : '';
145 145
 
146
-					echo '<a href="' . esc_url( $tab_url ) . '" title="' . esc_attr( $tab_name ) . '" class="nav-tab' . $active . '">';
147
-					echo esc_html( $tab_name );
146
+					echo '<a href="'.esc_url($tab_url).'" title="'.esc_attr($tab_name).'" class="nav-tab'.$active.'">';
147
+					echo esc_html($tab_name);
148 148
 
149 149
 					echo '</a>';
150 150
 				}
151 151
 				?>
152 152
 			</h1>
153 153
 
154
-			<?php cmb2_metabox_form( $this->give_settings( $active_tab ), $this->key ); ?>
154
+			<?php cmb2_metabox_form($this->give_settings($active_tab), $this->key); ?>
155 155
 
156 156
 		</div><!-- .wrap -->
157 157
 
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 	 *
168 168
 	 * @return array
169 169
 	 */
170
-	public function give_settings( $active_tab ) {
170
+	public function give_settings($active_tab) {
171 171
 
172 172
 		$give_settings = array(
173 173
 			/**
@@ -175,60 +175,60 @@  discard block
 block discarded – undo
175 175
 			 */
176 176
 			'general'     => array(
177 177
 				'id'         => 'options_page',
178
-				'give_title' => __( 'General Settings', 'give' ),
179
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
180
-				'fields'     => apply_filters( 'give_settings_general', array(
178
+				'give_title' => __('General Settings', 'give'),
179
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
180
+				'fields'     => apply_filters('give_settings_general', array(
181 181
 						array(
182
-							'name' => __( 'General Settings', 'give' ),
182
+							'name' => __('General Settings', 'give'),
183 183
 							'desc' => '',
184 184
 							'type' => 'give_title',
185 185
 							'id'   => 'give_title_general_settings_1'
186 186
 						),
187 187
 						array(
188
-							'name'    => __( 'Success Page', 'give' ),
189
-							'desc'    => sprintf( __( 'This is the page donors are sent to after completing their donations. The %1$s[give_receipt]%2$s shortcode should be on this page.', 'give' ), '<code>', '</code>' ),
188
+							'name'    => __('Success Page', 'give'),
189
+							'desc'    => sprintf(__('This is the page donors are sent to after completing their donations. The %1$s[give_receipt]%2$s shortcode should be on this page.', 'give'), '<code>', '</code>'),
190 190
 							'id'      => 'success_page',
191 191
 							'type'    => 'select',
192
-							'options' => give_cmb2_get_post_options( array(
192
+							'options' => give_cmb2_get_post_options(array(
193 193
 								'post_type'   => 'page',
194
-								'numberposts' => - 1
195
-							) ),
194
+								'numberposts' => -1
195
+							)),
196 196
 						),
197 197
 						array(
198
-							'name'    => __( 'Failed Transaction Page', 'give' ),
199
-							'desc'    => __( 'This is the page donors are sent to if their transaction is cancelled or fails.', 'give' ),
198
+							'name'    => __('Failed Transaction Page', 'give'),
199
+							'desc'    => __('This is the page donors are sent to if their transaction is cancelled or fails.', 'give'),
200 200
 							'id'      => 'failure_page',
201 201
 							'type'    => 'select',
202
-							'options' => give_cmb2_get_post_options( array(
202
+							'options' => give_cmb2_get_post_options(array(
203 203
 								'post_type'   => 'page',
204
-								'numberposts' => - 1
205
-							) ),
204
+								'numberposts' => -1
205
+							)),
206 206
 						),
207 207
 						array(
208
-							'name'    => __( 'Donation History Page', 'give' ),
209
-							'desc'    => sprintf( __( 'This page shows a complete donation history for the current user. The %1$s[donation_history]%2$s shortcode should be on this page.', 'give' ), '<code>', '</code>' ),
208
+							'name'    => __('Donation History Page', 'give'),
209
+							'desc'    => sprintf(__('This page shows a complete donation history for the current user. The %1$s[donation_history]%2$s shortcode should be on this page.', 'give'), '<code>', '</code>'),
210 210
 							'id'      => 'history_page',
211 211
 							'type'    => 'select',
212
-							'options' => give_cmb2_get_post_options( array(
212
+							'options' => give_cmb2_get_post_options(array(
213 213
 								'post_type'   => 'page',
214
-								'numberposts' => - 1
215
-							) ),
214
+								'numberposts' => -1
215
+							)),
216 216
 						),
217 217
 						array(
218
-							'name'    => __( 'Base Country', 'give' ),
219
-							'desc'    => __( 'Where does your site operate from?', 'give' ),
218
+							'name'    => __('Base Country', 'give'),
219
+							'desc'    => __('Where does your site operate from?', 'give'),
220 220
 							'id'      => 'base_country',
221 221
 							'type'    => 'select',
222 222
 							'options' => give_get_country_list(),
223 223
 						),
224 224
 						array(
225
-							'name' => __( 'Currency Settings', 'give' ),
225
+							'name' => __('Currency Settings', 'give'),
226 226
 							'desc' => '',
227 227
 							'type' => 'give_title',
228 228
 							'id'   => 'give_title_general_settings_2'
229 229
 						),
230 230
 						array(
231
-							'name'    => __( 'Currency', 'give' ),
231
+							'name'    => __('Currency', 'give'),
232 232
 							'desc'    => 'Choose your currency. Note that some payment gateways have currency restrictions.',
233 233
 							'id'      => 'currency',
234 234
 							'type'    => 'select',
@@ -236,26 +236,26 @@  discard block
 block discarded – undo
236 236
 							'default' => 'USD',
237 237
 						),
238 238
 						array(
239
-							'name'    => __( 'Currency Position', 'give' ),
239
+							'name'    => __('Currency Position', 'give'),
240 240
 							'desc'    => 'Choose the position of the currency sign.',
241 241
 							'id'      => 'currency_position',
242 242
 							'type'    => 'select',
243 243
 							'options' => array(
244
-								'before' => sprintf( __( 'Before - %1$s10', 'give' ), give_currency_symbol( give_get_currency() ) ),
245
-								'after'  => sprintf( __( 'After - 10%1$s', 'give' ), give_currency_symbol( give_get_currency() ) )
244
+								'before' => sprintf(__('Before - %1$s10', 'give'), give_currency_symbol(give_get_currency())),
245
+								'after'  => sprintf(__('After - 10%1$s', 'give'), give_currency_symbol(give_get_currency()))
246 246
 							),
247 247
 							'default' => 'before',
248 248
 						),
249 249
 						array(
250
-							'name'    => __( 'Thousands Separator', 'give' ),
251
-							'desc'    => __( 'The symbol (typically , or .) to separate thousands', 'give' ),
250
+							'name'    => __('Thousands Separator', 'give'),
251
+							'desc'    => __('The symbol (typically , or .) to separate thousands', 'give'),
252 252
 							'id'      => 'thousands_separator',
253 253
 							'type'    => 'text_small',
254 254
 							'default' => ',',
255 255
 						),
256 256
 						array(
257
-							'name'    => __( 'Decimal Separator', 'give' ),
258
-							'desc'    => __( 'The symbol (usually , or .) to separate decimal points', 'give' ),
257
+							'name'    => __('Decimal Separator', 'give'),
258
+							'desc'    => __('The symbol (usually , or .) to separate decimal points', 'give'),
259 259
 							'id'      => 'decimal_separator',
260 260
 							'type'    => 'text_small',
261 261
 							'default' => '.',
@@ -268,83 +268,83 @@  discard block
 block discarded – undo
268 268
 			 */
269 269
 			'gateways'    => array(
270 270
 				'id'         => 'options_page',
271
-				'give_title' => __( 'Payment Gateways', 'give' ),
272
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
273
-				'fields'     => apply_filters( 'give_settings_gateways', array(
271
+				'give_title' => __('Payment Gateways', 'give'),
272
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
273
+				'fields'     => apply_filters('give_settings_gateways', array(
274 274
 						array(
275
-							'name' => __( 'Gateways Settings', 'give' ),
275
+							'name' => __('Gateways Settings', 'give'),
276 276
 							'desc' => '',
277 277
 							'id'   => 'give_title_gateway_settings_1',
278 278
 							'type' => 'give_title'
279 279
 						),
280 280
 						array(
281
-							'name' => __( 'Test Mode', 'give' ),
282
-							'desc' => __( 'While in test mode no live transactions are processed. To fully use test mode, you must have a sandbox (test) account for the payment gateway you are testing.', 'give' ),
281
+							'name' => __('Test Mode', 'give'),
282
+							'desc' => __('While in test mode no live transactions are processed. To fully use test mode, you must have a sandbox (test) account for the payment gateway you are testing.', 'give'),
283 283
 							'id'   => 'test_mode',
284 284
 							'type' => 'checkbox'
285 285
 						),
286 286
 						array(
287
-							'name' => __( 'Enabled Gateways', 'give' ),
288
-							'desc' => __( 'Choose the payment gateways you would like enabled.', 'give' ),
287
+							'name' => __('Enabled Gateways', 'give'),
288
+							'desc' => __('Choose the payment gateways you would like enabled.', 'give'),
289 289
 							'id'   => 'gateways',
290 290
 							'type' => 'enabled_gateways'
291 291
 						),
292 292
 						array(
293
-							'name' => __( 'Default Gateway', 'give' ),
294
-							'desc' => __( 'This is the gateway that will be selected by default.', 'give' ),
293
+							'name' => __('Default Gateway', 'give'),
294
+							'desc' => __('This is the gateway that will be selected by default.', 'give'),
295 295
 							'id'   => 'default_gateway',
296 296
 							'type' => 'default_gateway'
297 297
 						),
298 298
 						array(
299
-							'name' => __( 'PayPal Standard', 'give' ),
299
+							'name' => __('PayPal Standard', 'give'),
300 300
 							'desc' => '',
301 301
 							'type' => 'give_title',
302 302
 							'id'   => 'give_title_gateway_settings_2',
303 303
 						),
304 304
 						array(
305
-							'name' => __( 'PayPal Email', 'give' ),
306
-							'desc' => __( 'Enter your PayPal account\'s email', 'give' ),
305
+							'name' => __('PayPal Email', 'give'),
306
+							'desc' => __('Enter your PayPal account\'s email', 'give'),
307 307
 							'id'   => 'paypal_email',
308 308
 							'type' => 'text_email',
309 309
 						),
310 310
 						array(
311
-							'name' => __( 'PayPal Page Style', 'give' ),
312
-							'desc' => __( 'Enter the name of the page style to use, or leave blank to use the default', 'give' ),
311
+							'name' => __('PayPal Page Style', 'give'),
312
+							'desc' => __('Enter the name of the page style to use, or leave blank to use the default', 'give'),
313 313
 							'id'   => 'paypal_page_style',
314 314
 							'type' => 'text',
315 315
 						),
316 316
 						array(
317
-							'name'    => __( 'PayPal Transaction Type', 'give' ),
318
-							'desc'    => __( 'Nonprofits must verify their status to withdraw donations they receive via PayPal. PayPal users that are not verified nonprofits must demonstrate how their donations will be used, once they raise more than $10,000. By default, Give transactions are sent to PayPal as donations. You may change the transaction type using this option if you feel you may not meet PayPal\'s donation requirements.', 'give' ),
317
+							'name'    => __('PayPal Transaction Type', 'give'),
318
+							'desc'    => __('Nonprofits must verify their status to withdraw donations they receive via PayPal. PayPal users that are not verified nonprofits must demonstrate how their donations will be used, once they raise more than $10,000. By default, Give transactions are sent to PayPal as donations. You may change the transaction type using this option if you feel you may not meet PayPal\'s donation requirements.', 'give'),
319 319
 							'id'      => 'paypal_button_type',
320 320
 							'type'    => 'radio_inline',
321 321
 							'options' => array(
322
-								'donation' => __( 'Donation', 'give' ),
323
-								'standard' => __( 'Standard Transaction', 'give' )
322
+								'donation' => __('Donation', 'give'),
323
+								'standard' => __('Standard Transaction', 'give')
324 324
 							),
325 325
 							'default' => 'donation',
326 326
 						),
327 327
 						array(
328
-							'name' => __( 'Disable PayPal IPN Verification', 'give' ),
329
-							'desc' => __( 'If donations are not getting marked as complete, then check this box. This forces the site to use a slightly less secure method of verifying donations.', 'give' ),
328
+							'name' => __('Disable PayPal IPN Verification', 'give'),
329
+							'desc' => __('If donations are not getting marked as complete, then check this box. This forces the site to use a slightly less secure method of verifying donations.', 'give'),
330 330
 							'id'   => 'disable_paypal_verification',
331 331
 							'type' => 'checkbox'
332 332
 						),
333 333
 						array(
334
-							'name' => __( 'Offline Donations', 'give' ),
334
+							'name' => __('Offline Donations', 'give'),
335 335
 							'desc' => '',
336 336
 							'type' => 'give_title',
337 337
 							'id'   => 'give_title_gateway_settings_3',
338 338
 						),
339 339
 						array(
340
-							'name' => __( 'Collect Billing Details', 'give' ),
341
-							'desc' => __( 'This option will enable the billing details section for offline donations. The fieldset will appear above the offline donation instructions. Note: You may customize this option per form as needed.', 'give' ),
340
+							'name' => __('Collect Billing Details', 'give'),
341
+							'desc' => __('This option will enable the billing details section for offline donations. The fieldset will appear above the offline donation instructions. Note: You may customize this option per form as needed.', 'give'),
342 342
 							'id'   => 'give_offline_donation_enable_billing_fields',
343 343
 							'type' => 'checkbox'
344 344
 						),
345 345
 						array(
346
-							'name'    => __( 'Offline Donation Instructions', 'give' ),
347
-							'desc'    => __( 'The following content will appear for all forms when the user selects the offline donation payment option. Note: You may customize the content per form as needed.', 'give' ),
346
+							'name'    => __('Offline Donation Instructions', 'give'),
347
+							'desc'    => __('The following content will appear for all forms when the user selects the offline donation payment option. Note: You may customize the content per form as needed.', 'give'),
348 348
 							'id'      => 'global_offline_donation_content',
349 349
 							'default' => give_get_default_offline_donation_content(),
350 350
 							'type'    => 'wysiwyg',
@@ -353,15 +353,15 @@  discard block
 block discarded – undo
353 353
 							)
354 354
 						),
355 355
 						array(
356
-							'name'    => __( 'Offline Donation Email Instructions Subject', 'give' ),
357
-							'desc'    => __( 'Enter the subject line for the donation receipt email.', 'give' ),
356
+							'name'    => __('Offline Donation Email Instructions Subject', 'give'),
357
+							'desc'    => __('Enter the subject line for the donation receipt email.', 'give'),
358 358
 							'id'      => 'offline_donation_subject',
359
-							'default' => __( '{donation} - Offline Donation Instructions', 'give' ),
359
+							'default' => __('{donation} - Offline Donation Instructions', 'give'),
360 360
 							'type'    => 'text'
361 361
 						),
362 362
 						array(
363
-							'name'    => __( 'Offline Donation Email Instructions', 'give' ),
364
-							'desc'    => __( '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' ),
363
+							'name'    => __('Offline Donation Email Instructions', 'give'),
364
+							'desc'    => __('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'),
365 365
 							'id'      => 'global_offline_donation_email',
366 366
 							'default' => give_get_default_offline_donation_email_content(),
367 367
 							'type'    => 'wysiwyg',
@@ -375,93 +375,93 @@  discard block
 block discarded – undo
375 375
 			/** Display Settings */
376 376
 			'display'     => array(
377 377
 				'id'         => 'options_page',
378
-				'give_title' => __( 'Display Settings', 'give' ),
379
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
380
-				'fields'     => apply_filters( 'give_settings_display', array(
378
+				'give_title' => __('Display Settings', 'give'),
379
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
380
+				'fields'     => apply_filters('give_settings_display', array(
381 381
 						array(
382
-							'name' => __( 'Display Settings', 'give' ),
382
+							'name' => __('Display Settings', 'give'),
383 383
 							'desc' => '',
384 384
 							'id'   => 'give_title_display_settings_1',
385 385
 							'type' => 'give_title'
386 386
 						),
387 387
 						array(
388
-							'name' => __( 'Disable CSS', 'give' ),
389
-							'desc' => __( 'Enable this option if you would like to disable all of Give\'s included CSS stylesheets.', 'give' ),
388
+							'name' => __('Disable CSS', 'give'),
389
+							'desc' => __('Enable this option if you would like to disable all of Give\'s included CSS stylesheets.', 'give'),
390 390
 							'id'   => 'disable_css',
391 391
 							'type' => 'checkbox'
392 392
 						),
393 393
 						array(
394
-							'name' => __( 'Enable Floating Labels', 'give' ),
395
-							'desc' => sprintf( esc_html__( 'Enable this option if you would like to enable %1$sfloating labels%2$s in Give\'s donation forms. %3$sBe aware that if you have the "Disable CSS" option enabled, you will need to style the floating labels yourself.', 'give' ), '<a href="' . esc_url( "http://bradfrost.com/blog/post/float-label-pattern/" ) . '" target="_blank">', '</a>', '<br />' ),
394
+							'name' => __('Enable Floating Labels', 'give'),
395
+							'desc' => sprintf(esc_html__('Enable this option if you would like to enable %1$sfloating labels%2$s in Give\'s donation forms. %3$sBe aware that if you have the "Disable CSS" option enabled, you will need to style the floating labels yourself.', 'give'), '<a href="'.esc_url("http://bradfrost.com/blog/post/float-label-pattern/").'" target="_blank">', '</a>', '<br />'),
396 396
 							'id'   => 'enable_floatlabels',
397 397
 							'type' => 'checkbox'
398 398
 						),
399 399
 						array(
400
-							'name' => __( 'Disable Welcome Screen', 'give' ),
401
-							'desc' => sprintf( esc_html__( 'Enable this option if you would like to disable the Give Welcome screen every time Give is activated and/or updated. You can always access the Welcome Screen %1$shere%2$s if you want in the future.', 'give' ), '<a href="' . esc_url( admin_url( 'index.php?page=give-about' ) ) . '">', '</a>' ),
400
+							'name' => __('Disable Welcome Screen', 'give'),
401
+							'desc' => sprintf(esc_html__('Enable this option if you would like to disable the Give Welcome screen every time Give is activated and/or updated. You can always access the Welcome Screen %1$shere%2$s if you want in the future.', 'give'), '<a href="'.esc_url(admin_url('index.php?page=give-about')).'">', '</a>'),
402 402
 							'id'   => 'disable_welcome',
403 403
 							'type' => 'checkbox'
404 404
 						),
405 405
 						array(
406
-							'name' => __( 'Post Types', 'give' ),
406
+							'name' => __('Post Types', 'give'),
407 407
 							'desc' => '',
408 408
 							'id'   => 'give_title_display_settings_2',
409 409
 							'type' => 'give_title'
410 410
 						),
411 411
 						array(
412
-							'name' => __( 'Disable Form Single Views', 'give' ),
413
-							'desc' => __( 'By default, all forms have single views enabled which create a specific URL on your website for that form. This option disables the singular and archive views from being publicly viewable. Note: you will need to embed forms using a shortcode or widget if enabled.', 'give' ),
412
+							'name' => __('Disable Form Single Views', 'give'),
413
+							'desc' => __('By default, all forms have single views enabled which create a specific URL on your website for that form. This option disables the singular and archive views from being publicly viewable. Note: you will need to embed forms using a shortcode or widget if enabled.', 'give'),
414 414
 							'id'   => 'disable_forms_singular',
415 415
 							'type' => 'checkbox'
416 416
 						),
417 417
 						array(
418
-							'name' => __( 'Disable Form Archives', 'give' ),
419
-							'desc' => __( 'Archives pages list all the forms you have created. This option will disable only the form\'s archive page(s). The single form\'s view will remain in place. Note: you will need to refresh your permalinks after this option has been enabled.', 'give' ),
418
+							'name' => __('Disable Form Archives', 'give'),
419
+							'desc' => __('Archives pages list all the forms you have created. This option will disable only the form\'s archive page(s). The single form\'s view will remain in place. Note: you will need to refresh your permalinks after this option has been enabled.', 'give'),
420 420
 							'id'   => 'disable_forms_archives',
421 421
 							'type' => 'checkbox'
422 422
 						),
423 423
 						array(
424
-							'name' => __( 'Disable Form Excerpts', 'give' ),
425
-							'desc' => __( 'The excerpt is an optional summary or description of a donation form; in short, a summary as to why the user should give.', 'give' ),
424
+							'name' => __('Disable Form Excerpts', 'give'),
425
+							'desc' => __('The excerpt is an optional summary or description of a donation form; in short, a summary as to why the user should give.', 'give'),
426 426
 							'id'   => 'disable_forms_excerpt',
427 427
 							'type' => 'checkbox'
428 428
 						),
429 429
 
430 430
 						array(
431
-							'name'    => __( 'Featured Image Size', 'give' ),
432
-							'desc'    => __( 'The Featured Image is an image that is chosen as the representative image for a donation form. Some themes may have custom featured image sizes. Please select the size you would like to display for your single donation forms\' featured image.', 'give' ),
431
+							'name'    => __('Featured Image Size', 'give'),
432
+							'desc'    => __('The Featured Image is an image that is chosen as the representative image for a donation form. Some themes may have custom featured image sizes. Please select the size you would like to display for your single donation forms\' featured image.', 'give'),
433 433
 							'id'      => 'featured_image_size',
434 434
 							'type'    => 'select',
435 435
 							'default' => 'large',
436 436
 							'options' => give_get_featured_image_sizes()
437 437
 						),
438 438
 						array(
439
-							'name' => __( 'Disable Form Featured Image', 'give' ),
440
-							'desc' => __( 'If you do not wish to use the featured image functionality you can disable it using this option and it will not be displayed for single donation forms.', 'give' ),
439
+							'name' => __('Disable Form Featured Image', 'give'),
440
+							'desc' => __('If you do not wish to use the featured image functionality you can disable it using this option and it will not be displayed for single donation forms.', 'give'),
441 441
 							'id'   => 'disable_form_featured_img',
442 442
 							'type' => 'checkbox'
443 443
 						),
444 444
 						array(
445
-							'name' => __( 'Disable Single Form Sidebar', 'give' ),
446
-							'desc' => __( 'The sidebar allows you to add additional widget to the Give single form view. If you don\'t plan on using the sidebar you may disable it with this option.', 'give' ),
445
+							'name' => __('Disable Single Form Sidebar', 'give'),
446
+							'desc' => __('The sidebar allows you to add additional widget to the Give single form view. If you don\'t plan on using the sidebar you may disable it with this option.', 'give'),
447 447
 							'id'   => 'disable_form_sidebar',
448 448
 							'type' => 'checkbox'
449 449
 						),
450 450
 						array(
451
-							'name' => __( 'Taxonomies', 'give' ),
451
+							'name' => __('Taxonomies', 'give'),
452 452
 							'desc' => '',
453 453
 							'id'   => 'give_title_display_settings_3',
454 454
 							'type' => 'give_title'
455 455
 						),
456 456
 						array(
457
-							'name' => __( 'Enable Form Categories', 'give' ),
458
-							'desc' => __( 'Check this option if you would like to categorize your donation forms. This option enables the form\'s category taxonomy.', 'give' ),
457
+							'name' => __('Enable Form Categories', 'give'),
458
+							'desc' => __('Check this option if you would like to categorize your donation forms. This option enables the form\'s category taxonomy.', 'give'),
459 459
 							'id'   => 'enable_categories',
460 460
 							'type' => 'checkbox'
461 461
 						),
462 462
 						array(
463
-							'name' => __( 'Enable Form Tags', 'give' ),
464
-							'desc' => __( 'Check this option if you would like to tag your donation forms. This option enables the form\'s tag taxonomy.', 'give' ),
463
+							'name' => __('Enable Form Tags', 'give'),
464
+							'desc' => __('Check this option if you would like to tag your donation forms. This option enables the form\'s tag taxonomy.', 'give'),
465 465
 							'id'   => 'enable_tags',
466 466
 							'type' => 'checkbox'
467 467
 						),
@@ -474,93 +474,93 @@  discard block
 block discarded – undo
474 474
 			 */
475 475
 			'emails'      => array(
476 476
 				'id'         => 'options_page',
477
-				'give_title' => __( 'Give Email Settings', 'give' ),
478
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
479
-				'fields'     => apply_filters( 'give_settings_emails', array(
477
+				'give_title' => __('Give Email Settings', 'give'),
478
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
479
+				'fields'     => apply_filters('give_settings_emails', array(
480 480
 						array(
481
-							'name' => __( 'Email Settings', 'give' ),
481
+							'name' => __('Email Settings', 'give'),
482 482
 							'desc' => '',
483 483
 							'id'   => 'give_title_email_settings_1',
484 484
 							'type' => 'give_title'
485 485
 						),
486 486
 						array(
487 487
 							'id'      => 'email_template',
488
-							'name'    => __( 'Email Template', 'give' ),
489
-							'desc'    => __( 'Choose a template. Click "Save Changes" then "Preview Donation Receipt" to see the new template.', 'give' ),
488
+							'name'    => __('Email Template', 'give'),
489
+							'desc'    => __('Choose a template. Click "Save Changes" then "Preview Donation Receipt" to see the new template.', 'give'),
490 490
 							'type'    => 'select',
491 491
 							'options' => give_get_email_templates()
492 492
 						),
493 493
 						array(
494 494
 							'id'   => 'email_logo',
495
-							'name' => __( 'Logo', 'give' ),
496
-							'desc' => __( 'Upload or choose a logo to be displayed at the top of the donation receipt emails. Displayed on HTML emails only.', 'give' ),
495
+							'name' => __('Logo', 'give'),
496
+							'desc' => __('Upload or choose a logo to be displayed at the top of the donation receipt emails. Displayed on HTML emails only.', 'give'),
497 497
 							'type' => 'file'
498 498
 						),
499 499
 						array(
500 500
 							'id'      => 'from_name',
501
-							'name'    => __( 'From Name', 'give' ),
502
-							'desc'    => __( 'The name donation receipts are said to come from. This should probably be your site or shop name.', 'give' ),
503
-							'default' => get_bloginfo( 'name' ),
501
+							'name'    => __('From Name', 'give'),
502
+							'desc'    => __('The name donation receipts are said to come from. This should probably be your site or shop name.', 'give'),
503
+							'default' => get_bloginfo('name'),
504 504
 							'type'    => 'text'
505 505
 						),
506 506
 						array(
507 507
 							'id'      => 'from_email',
508
-							'name'    => __( 'From Email', 'give' ),
509
-							'desc'    => __( 'Email to send donation receipts from. This will act as the "from" and "reply-to" address.', 'give' ),
510
-							'default' => get_bloginfo( 'admin_email' ),
508
+							'name'    => __('From Email', 'give'),
509
+							'desc'    => __('Email to send donation receipts from. This will act as the "from" and "reply-to" address.', 'give'),
510
+							'default' => get_bloginfo('admin_email'),
511 511
 							'type'    => 'text'
512 512
 						),
513 513
 						array(
514
-							'name' => __( 'Donation Receipt', 'give' ),
514
+							'name' => __('Donation Receipt', 'give'),
515 515
 							'desc' => '',
516 516
 							'id'   => 'give_title_email_settings_2',
517 517
 							'type' => 'give_title'
518 518
 						),
519 519
 						array(
520 520
 							'id'      => 'donation_subject',
521
-							'name'    => __( 'Donation Email Subject', 'give' ),
522
-							'desc'    => __( 'Enter the subject line for the donation receipt email', 'give' ),
523
-							'default' => __( 'Donation Receipt', 'give' ),
521
+							'name'    => __('Donation Email Subject', 'give'),
522
+							'desc'    => __('Enter the subject line for the donation receipt email', 'give'),
523
+							'default' => __('Donation Receipt', 'give'),
524 524
 							'type'    => 'text'
525 525
 						),
526 526
 						array(
527 527
 							'id'      => 'donation_receipt',
528
-							'name'    => __( 'Donation Receipt', 'give' ),
529
-							'desc'    => __( 'Enter the email that is sent to users after completing a successful donation. HTML is accepted. Available template tags:', 'give' ) . '<br/>' . give_get_emails_tags_list(),
528
+							'name'    => __('Donation Receipt', 'give'),
529
+							'desc'    => __('Enter the email that is sent to users after completing a successful donation. HTML is accepted. Available template tags:', 'give').'<br/>'.give_get_emails_tags_list(),
530 530
 							'type'    => 'wysiwyg',
531 531
 							'default' => give_get_default_donation_receipt_email()
532 532
 						),
533 533
 						array(
534
-							'name' => __( 'New Donation Notification', 'give' ),
534
+							'name' => __('New Donation Notification', 'give'),
535 535
 							'desc' => '',
536 536
 							'id'   => 'give_title_email_settings_3',
537 537
 							'type' => 'give_title'
538 538
 						),
539 539
 						array(
540 540
 							'id'      => 'donation_notification_subject',
541
-							'name'    => __( 'Donation Notification Subject', 'give' ),
542
-							'desc'    => __( 'Enter the subject line for the donation notification email', 'give' ),
541
+							'name'    => __('Donation Notification Subject', 'give'),
542
+							'desc'    => __('Enter the subject line for the donation notification email', 'give'),
543 543
 							'type'    => 'text',
544
-							'default' => __( 'New Donation - #{payment_id}', 'give' )
544
+							'default' => __('New Donation - #{payment_id}', 'give')
545 545
 						),
546 546
 						array(
547 547
 							'id'      => 'donation_notification',
548
-							'name'    => __( 'Donation Notification', 'give' ),
549
-							'desc'    => __( 'Enter the email that is sent to donation notification emails after completion of a donation. HTML is accepted. Available template tags:', 'give' ) . '<br/>' . give_get_emails_tags_list(),
548
+							'name'    => __('Donation Notification', 'give'),
549
+							'desc'    => __('Enter the email that is sent to donation notification emails after completion of a donation. HTML is accepted. Available template tags:', 'give').'<br/>'.give_get_emails_tags_list(),
550 550
 							'type'    => 'wysiwyg',
551 551
 							'default' => give_get_default_donation_notification_email()
552 552
 						),
553 553
 						array(
554 554
 							'id'      => 'admin_notice_emails',
555
-							'name'    => __( 'Donation Notification Emails', 'give' ),
556
-							'desc'    => sprintf( __( 'Enter the email address(es) that should receive a notification anytime a donation is made, please only enter %1$sone email address per line%2$s and not separated by commas.', 'give' ), '<span class="give-underline">', '</span>' ),
555
+							'name'    => __('Donation Notification Emails', 'give'),
556
+							'desc'    => sprintf(__('Enter the email address(es) that should receive a notification anytime a donation is made, please only enter %1$sone email address per line%2$s and not separated by commas.', 'give'), '<span class="give-underline">', '</span>'),
557 557
 							'type'    => 'textarea',
558
-							'default' => get_bloginfo( 'admin_email' )
558
+							'default' => get_bloginfo('admin_email')
559 559
 						),
560 560
 						array(
561 561
 							'id'   => 'disable_admin_notices',
562
-							'name' => __( 'Disable Admin Notifications', 'give' ),
563
-							'desc' => __( 'Check this box if you do not want to receive emails when new donations are made.', 'give' ),
562
+							'name' => __('Disable Admin Notifications', 'give'),
563
+							'desc' => __('Check this box if you do not want to receive emails when new donations are made.', 'give'),
564 564
 							'type' => 'checkbox'
565 565
 						)
566 566
 					)
@@ -569,96 +569,96 @@  discard block
 block discarded – undo
569 569
 			/** Extension Settings */
570 570
 			'addons'      => array(
571 571
 				'id'         => 'options_page',
572
-				'give_title' => __( 'Give Add-ons Settings', 'give' ),
573
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
574
-				'fields'     => apply_filters( 'give_settings_addons', array()
572
+				'give_title' => __('Give Add-ons Settings', 'give'),
573
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
574
+				'fields'     => apply_filters('give_settings_addons', array()
575 575
 				)
576 576
 			),
577 577
 			/** Licenses Settings */
578 578
 			'licenses'    => array(
579 579
 				'id'         => 'options_page',
580
-				'give_title' => __( 'Give Licenses', 'give' ),
581
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
582
-				'fields'     => apply_filters( 'give_settings_licenses', array()
580
+				'give_title' => __('Give Licenses', 'give'),
581
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
582
+				'fields'     => apply_filters('give_settings_licenses', array()
583 583
 				)
584 584
 			),
585 585
 			/** Advanced Options */
586 586
 			'advanced'    => array(
587 587
 				'id'         => 'options_page',
588
-				'give_title' => __( 'Advanced Options', 'give' ),
589
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
590
-				'fields'     => apply_filters( 'give_settings_advanced', array(
588
+				'give_title' => __('Advanced Options', 'give'),
589
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
590
+				'fields'     => apply_filters('give_settings_advanced', array(
591 591
 						array(
592
-							'name' => __( 'Access Control', 'give' ),
592
+							'name' => __('Access Control', 'give'),
593 593
 							'desc' => '',
594 594
 							'id'   => 'give_title_session_control_1',
595 595
 							'type' => 'give_title'
596 596
 						),
597 597
 						array(
598 598
 							'id'      => 'session_lifetime',
599
-							'name'    => __( 'Session Lifetime', 'give' ),
600
-							'desc'    => __( 'Give will start a new session per user once they have donated. This option controls the lifetime a user\'s session is kept alive. An active session allows users to view donation receipts on your site without having to be logged in as long as they are using the same browser they used when donating.', 'give' ),
599
+							'name'    => __('Session Lifetime', 'give'),
600
+							'desc'    => __('Give will start a new session per user once they have donated. This option controls the lifetime a user\'s session is kept alive. An active session allows users to view donation receipts on your site without having to be logged in as long as they are using the same browser they used when donating.', 'give'),
601 601
 							'type'    => 'select',
602 602
 							'options' => array(
603
-								'86400'  => __( '24 Hours', 'give' ),
604
-								'172800' => __( '48 Hours', 'give' ),
605
-								'259200' => __( '72 Hours', 'give' ),
606
-								'604800' => __( '1 Week', 'give' ),
603
+								'86400'  => __('24 Hours', 'give'),
604
+								'172800' => __('48 Hours', 'give'),
605
+								'259200' => __('72 Hours', 'give'),
606
+								'604800' => __('1 Week', 'give'),
607 607
 							)
608 608
 						),
609 609
 						array(
610
-							'name' => __( 'Email Access', 'give' ),
611
-							'desc' => __( 'Would you like your donors to be able to access their donation history using only email? Donors whose sessions have expired and do not have an account may still access their donation history via a temporary email access link.', 'give' ),
610
+							'name' => __('Email Access', 'give'),
611
+							'desc' => __('Would you like your donors to be able to access their donation history using only email? Donors whose sessions have expired and do not have an account may still access their donation history via a temporary email access link.', 'give'),
612 612
 							'id'   => 'email_access',
613 613
 							'type' => 'checkbox',
614 614
 						),
615 615
 						array(
616 616
 							'id'      => 'recaptcha_key',
617
-							'name'    => __( 'reCAPTCHA Site Key', 'give' ),
618
-							'desc'    => sprintf( __( 'If you would like to prevent spam on the email access form navigate to %1$sthe reCAPTCHA website%2$s and sign up for an API key. The reCAPTCHA uses Google\'s user-friendly single click verification method.', 'give' ), '<a href="https://www.google.com/recaptcha/" target="_blank">', '</a>' ),
617
+							'name'    => __('reCAPTCHA Site Key', 'give'),
618
+							'desc'    => sprintf(__('If you would like to prevent spam on the email access form navigate to %1$sthe reCAPTCHA website%2$s and sign up for an API key. The reCAPTCHA uses Google\'s user-friendly single click verification method.', 'give'), '<a href="https://www.google.com/recaptcha/" target="_blank">', '</a>'),
619 619
 							'default' => '',
620 620
 							'type'    => 'text'
621 621
 						),
622 622
 						array(
623 623
 							'id'      => 'recaptcha_secret',
624
-							'name'    => __( 'reCAPTCHA Secret Key', 'give' ),
625
-							'desc'    => __( 'Please paste the reCAPTCHA secret key here from your manage reCAPTCHA API Keys panel.', 'give' ),
624
+							'name'    => __('reCAPTCHA Secret Key', 'give'),
625
+							'desc'    => __('Please paste the reCAPTCHA secret key here from your manage reCAPTCHA API Keys panel.', 'give'),
626 626
 							'default' => '',
627 627
 							'type'    => 'text'
628 628
 						),
629 629
 						array(
630
-							'name' => __( 'Data Control', 'give' ),
630
+							'name' => __('Data Control', 'give'),
631 631
 							'desc' => '',
632 632
 							'id'   => 'give_title_data_control_2',
633 633
 							'type' => 'give_title'
634 634
 						),
635 635
 						array(
636
-							'name' => __( 'Remove All Data on Uninstall?', 'give' ),
637
-							'desc' => __( 'Check this box if you would like Give to completely remove all of its data when the plugin is deleted.', 'give' ),
636
+							'name' => __('Remove All Data on Uninstall?', 'give'),
637
+							'desc' => __('Check this box if you would like Give to completely remove all of its data when the plugin is deleted.', 'give'),
638 638
 							'id'   => 'uninstall_on_delete',
639 639
 							'type' => 'checkbox'
640 640
 						),
641 641
 						array(
642
-							'name' => __( 'Filter Control', 'give' ),
642
+							'name' => __('Filter Control', 'give'),
643 643
 							'desc' => '',
644 644
 							'id'   => 'give_title_filter_control',
645 645
 							'type' => 'give_title'
646 646
 						),
647 647
 						array(
648
-							'name' => __( 'Disable <code>the_content</code> filter', 'give' ),
649
-							'desc' => sprintf( __( 'If you are seeing extra social buttons, related posts, or other unwanted elements appearing within your forms then you can disable WordPress\' content filter. <a href="%s" target="_blank">Learn more</a> about the_content filter.', 'give' ), esc_url( 'https://codex.wordpress.org/Plugin_API/Filter_Reference/the_content' ) ),
648
+							'name' => __('Disable <code>the_content</code> filter', 'give'),
649
+							'desc' => sprintf(__('If you are seeing extra social buttons, related posts, or other unwanted elements appearing within your forms then you can disable WordPress\' content filter. <a href="%s" target="_blank">Learn more</a> about the_content filter.', 'give'), esc_url('https://codex.wordpress.org/Plugin_API/Filter_Reference/the_content')),
650 650
 							'id'   => 'disable_the_content_filter',
651 651
 							'type' => 'checkbox'
652 652
 						),
653 653
 						array(
654
-							'name' => __( 'Script Loading', 'give' ),
654
+							'name' => __('Script Loading', 'give'),
655 655
 							'desc' => '',
656 656
 							'id'   => 'give_title_script_control',
657 657
 							'type' => 'give_title'
658 658
 						),
659 659
 						array(
660
-							'name' => __( 'Load Scripts in Footer?', 'give' ),
661
-							'desc' => __( 'Check this box if you would like Give to load all frontend JavaScript files in the footer.', 'give' ),
660
+							'name' => __('Load Scripts in Footer?', 'give'),
661
+							'desc' => __('Check this box if you would like Give to load all frontend JavaScript files in the footer.', 'give'),
662 662
 							'id'   => 'scripts_footer',
663 663
 							'type' => 'checkbox'
664 664
 						)
@@ -668,13 +668,13 @@  discard block
 block discarded – undo
668 668
 			/** API Settings */
669 669
 			'api'         => array(
670 670
 				'id'         => 'options_page',
671
-				'give_title' => __( 'API', 'give' ),
672
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
671
+				'give_title' => __('API', 'give'),
672
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
673 673
 				'show_names' => false, // Hide field names on the left
674
-				'fields'     => apply_filters( 'give_settings_system', array(
674
+				'fields'     => apply_filters('give_settings_system', array(
675 675
 						array(
676 676
 							'id'   => 'api',
677
-							'name' => __( 'API', 'give' ),
677
+							'name' => __('API', 'give'),
678 678
 							'type' => 'api'
679 679
 						)
680 680
 					)
@@ -683,13 +683,13 @@  discard block
 block discarded – undo
683 683
 			/** Licenses Settings */
684 684
 			'system_info' => array(
685 685
 				'id'         => 'options_page',
686
-				'give_title' => __( 'System Info', 'give' ),
687
-				'show_on'    => array( 'key' => 'options-page', 'value' => array( $this->key, ), ),
688
-				'fields'     => apply_filters( 'give_settings_system', array(
686
+				'give_title' => __('System Info', 'give'),
687
+				'show_on'    => array('key' => 'options-page', 'value' => array($this->key,),),
688
+				'fields'     => apply_filters('give_settings_system', array(
689 689
 						array(
690 690
 							'id'   => 'system_info',
691
-							'name' => __( 'System Info', 'give' ),
692
-							'desc' => __( 'Please copy and paste this information in your ticket when contacting support.', 'give' ),
691
+							'name' => __('System Info', 'give'),
692
+							'desc' => __('Please copy and paste this information in your ticket when contacting support.', 'give'),
693 693
 							'type' => 'system_info'
694 694
 						)
695 695
 					)
@@ -698,12 +698,12 @@  discard block
 block discarded – undo
698 698
 		);
699 699
 
700 700
 		//Return all settings array if necessary
701
-		if ( $active_tab === null || ! isset( $give_settings[ $active_tab ] ) ) {
702
-			return apply_filters( 'give_registered_settings', $give_settings );
701
+		if ($active_tab === null || ! isset($give_settings[$active_tab])) {
702
+			return apply_filters('give_registered_settings', $give_settings);
703 703
 		}
704 704
 
705 705
 		// Add other tabs and settings fields as needed
706
-		return apply_filters( 'give_registered_settings', $give_settings[ $active_tab ] );
706
+		return apply_filters('give_registered_settings', $give_settings[$active_tab]);
707 707
 
708 708
 	}
709 709
 
@@ -712,11 +712,11 @@  discard block
 block discarded – undo
712 712
 	 */
713 713
 	public function settings_notices() {
714 714
 
715
-		if ( ! isset( $_POST['give_settings_saved'] ) ) {
715
+		if ( ! isset($_POST['give_settings_saved'])) {
716 716
 			return;
717 717
 		}
718 718
 
719
-		add_settings_error( 'give-notices', 'global-settings-updated', __( 'Settings updated.', 'give' ), 'updated' );
719
+		add_settings_error('give-notices', 'global-settings-updated', __('Settings updated.', 'give'), 'updated');
720 720
 
721 721
 	}
722 722
 
@@ -730,17 +730,17 @@  discard block
 block discarded – undo
730 730
 	 *
731 731
 	 * @return mixed          Field value or exception is thrown
732 732
 	 */
733
-	public function __get( $field ) {
733
+	public function __get($field) {
734 734
 
735 735
 		// Allowed fields to retrieve
736
-		if ( in_array( $field, array( 'key', 'fields', 'give_title', 'options_page' ), true ) ) {
736
+		if (in_array($field, array('key', 'fields', 'give_title', 'options_page'), true)) {
737 737
 			return $this->{$field};
738 738
 		}
739
-		if ( 'option_metabox' === $field ) {
739
+		if ('option_metabox' === $field) {
740 740
 			return $this->option_metabox();
741 741
 		}
742 742
 
743
-		throw new Exception( 'Invalid property: ' . $field );
743
+		throw new Exception('Invalid property: '.$field);
744 744
 	}
745 745
 
746 746
 
@@ -757,12 +757,12 @@  discard block
 block discarded – undo
757 757
  *
758 758
  * @return mixed        Option value
759 759
  */
760
-function give_get_option( $key = '', $default = false ) {
760
+function give_get_option($key = '', $default = false) {
761 761
 	global $give_options;
762
-	$value = ! empty( $give_options[ $key ] ) ? $give_options[ $key ] : $default;
763
-	$value = apply_filters( 'give_get_option', $value, $key, $default );
762
+	$value = ! empty($give_options[$key]) ? $give_options[$key] : $default;
763
+	$value = apply_filters('give_get_option', $value, $key, $default);
764 764
 
765
-	return apply_filters( 'give_get_option_' . $key, $value, $key, $default );
765
+	return apply_filters('give_get_option_'.$key, $value, $key, $default);
766 766
 }
767 767
 
768 768
 
@@ -780,33 +780,33 @@  discard block
 block discarded – undo
780 780
  *
781 781
  * @return boolean True if updated, false if not.
782 782
  */
783
-function give_update_option( $key = '', $value = false ) {
783
+function give_update_option($key = '', $value = false) {
784 784
 
785 785
 	// If no key, exit
786
-	if ( empty( $key ) ) {
786
+	if (empty($key)) {
787 787
 		return false;
788 788
 	}
789 789
 
790
-	if ( empty( $value ) ) {
791
-		$remove_option = give_delete_option( $key );
790
+	if (empty($value)) {
791
+		$remove_option = give_delete_option($key);
792 792
 
793 793
 		return $remove_option;
794 794
 	}
795 795
 
796 796
 	// First let's grab the current settings
797
-	$options = get_option( 'give_settings' );
797
+	$options = get_option('give_settings');
798 798
 
799 799
 	// Let's let devs alter that value coming in
800
-	$value = apply_filters( 'give_update_option', $value, $key );
800
+	$value = apply_filters('give_update_option', $value, $key);
801 801
 
802 802
 	// Next let's try to update the value
803
-	$options[ $key ] = $value;
804
-	$did_update      = update_option( 'give_settings', $options );
803
+	$options[$key] = $value;
804
+	$did_update      = update_option('give_settings', $options);
805 805
 
806 806
 	// If it updated, let's update the global variable
807
-	if ( $did_update ) {
807
+	if ($did_update) {
808 808
 		global $give_options;
809
-		$give_options[ $key ] = $value;
809
+		$give_options[$key] = $value;
810 810
 	}
811 811
 
812 812
 	return $did_update;
@@ -823,27 +823,27 @@  discard block
 block discarded – undo
823 823
  *
824 824
  * @return boolean True if updated, false if not.
825 825
  */
826
-function give_delete_option( $key = '' ) {
826
+function give_delete_option($key = '') {
827 827
 
828 828
 	// If no key, exit
829
-	if ( empty( $key ) ) {
829
+	if (empty($key)) {
830 830
 		return false;
831 831
 	}
832 832
 
833 833
 	// First let's grab the current settings
834
-	$options = get_option( 'give_settings' );
834
+	$options = get_option('give_settings');
835 835
 
836 836
 	// Next let's try to update the value
837
-	if ( isset( $options[ $key ] ) ) {
837
+	if (isset($options[$key])) {
838 838
 
839
-		unset( $options[ $key ] );
839
+		unset($options[$key]);
840 840
 
841 841
 	}
842 842
 
843
-	$did_update = update_option( 'give_settings', $options );
843
+	$did_update = update_option('give_settings', $options);
844 844
 
845 845
 	// If it updated, let's update the global variable
846
-	if ( $did_update ) {
846
+	if ($did_update) {
847 847
 		global $give_options;
848 848
 		$give_options = $options;
849 849
 	}
@@ -862,9 +862,9 @@  discard block
 block discarded – undo
862 862
  */
863 863
 function give_get_settings() {
864 864
 
865
-	$settings = get_option( 'give_settings' );
865
+	$settings = get_option('give_settings');
866 866
 
867
-	return (array) apply_filters( 'give_get_settings', $settings );
867
+	return (array) apply_filters('give_get_settings', $settings);
868 868
 
869 869
 }
870 870
 
@@ -882,25 +882,25 @@  discard block
 block discarded – undo
882 882
  *
883 883
  * @return array
884 884
  */
885
-function give_settings_array_insert( $array, $position, $insert ) {
886
-	if ( is_int( $position ) ) {
887
-		array_splice( $array, $position, 0, $insert );
885
+function give_settings_array_insert($array, $position, $insert) {
886
+	if (is_int($position)) {
887
+		array_splice($array, $position, 0, $insert);
888 888
 	} else {
889 889
 
890
-		foreach ( $array as $index => $subarray ) {
891
-			if ( isset( $subarray['id'] ) && $subarray['id'] == $position ) {
890
+		foreach ($array as $index => $subarray) {
891
+			if (isset($subarray['id']) && $subarray['id'] == $position) {
892 892
 				$pos = $index;
893 893
 			}
894 894
 		}
895 895
 
896
-		if ( ! isset( $pos ) ) {
896
+		if ( ! isset($pos)) {
897 897
 			return $array;
898 898
 		}
899 899
 
900 900
 		$array = array_merge(
901
-			array_slice( $array, 0, $pos ),
901
+			array_slice($array, 0, $pos),
902 902
 			$insert,
903
-			array_slice( $array, $pos )
903
+			array_slice($array, $pos)
904 904
 		);
905 905
 	}
906 906
 
@@ -923,7 +923,7 @@  discard block
 block discarded – undo
923 923
  *
924 924
  * @return void
925 925
  */
926
-function give_enabled_gateways_callback( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) {
926
+function give_enabled_gateways_callback($field_object, $escaped_value, $object_id, $object_type, $field_type_object) {
927 927
 
928 928
 	$id                = $field_type_object->field->args['id'];
929 929
 	$field_description = $field_type_object->field->args['desc'];
@@ -931,21 +931,21 @@  discard block
 block discarded – undo
931 931
 
932 932
 	echo '<ul class="cmb2-checkbox-list cmb2-list">';
933 933
 
934
-	foreach ( $gateways as $key => $option ) :
934
+	foreach ($gateways as $key => $option) :
935 935
 
936
-		if ( is_array( $escaped_value ) && array_key_exists( $key, $escaped_value ) ) {
936
+		if (is_array($escaped_value) && array_key_exists($key, $escaped_value)) {
937 937
 			$enabled = '1';
938 938
 		} else {
939 939
 			$enabled = null;
940 940
 		}
941 941
 
942
-		echo '<li><input name="' . $id . '[' . $key . ']" id="' . $id . '[' . $key . ']" type="checkbox" value="1" ' . checked( '1', $enabled, false ) . '/>&nbsp;';
943
-		echo '<label for="' . $id . '[' . $key . ']">' . $option['admin_label'] . '</label></li>';
942
+		echo '<li><input name="'.$id.'['.$key.']" id="'.$id.'['.$key.']" type="checkbox" value="1" '.checked('1', $enabled, false).'/>&nbsp;';
943
+		echo '<label for="'.$id.'['.$key.']">'.$option['admin_label'].'</label></li>';
944 944
 
945 945
 	endforeach;
946 946
 
947
-	if ( $field_description ) {
948
-		echo '<p class="cmb2-metabox-description">' . $field_description . '</p>';
947
+	if ($field_description) {
948
+		echo '<p class="cmb2-metabox-description">'.$field_description.'</p>';
949 949
 	}
950 950
 
951 951
 	echo '</ul>';
@@ -964,31 +964,31 @@  discard block
 block discarded – undo
964 964
  *
965 965
  * @return void
966 966
  */
967
-function give_default_gateway_callback( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) {
967
+function give_default_gateway_callback($field_object, $escaped_value, $object_id, $object_type, $field_type_object) {
968 968
 
969 969
 	$id                = $field_type_object->field->args['id'];
970 970
 	$field_description = $field_type_object->field->args['desc'];
971 971
 	$gateways          = give_get_enabled_payment_gateways();
972 972
 
973
-	echo '<select class="cmb2_select" name="' . $id . '" id="' . $id . '">';
973
+	echo '<select class="cmb2_select" name="'.$id.'" id="'.$id.'">';
974 974
 
975 975
 	//Add a field to the Give Form admin single post view of this field
976
-	if ( $field_type_object->field->object_type === 'post' ) {
977
-		echo '<option value="global">' . __( 'Global Default', 'give' ) . '</option>';
976
+	if ($field_type_object->field->object_type === 'post') {
977
+		echo '<option value="global">'.__('Global Default', 'give').'</option>';
978 978
 	}
979 979
 
980
-	foreach ( $gateways as $key => $option ) :
980
+	foreach ($gateways as $key => $option) :
981 981
 
982
-		$selected = isset( $escaped_value ) ? selected( $key, $escaped_value, false ) : '';
982
+		$selected = isset($escaped_value) ? selected($key, $escaped_value, false) : '';
983 983
 
984 984
 
985
-		echo '<option value="' . esc_attr( $key ) . '"' . $selected . '>' . esc_html( $option['admin_label'] ) . '</option>';
985
+		echo '<option value="'.esc_attr($key).'"'.$selected.'>'.esc_html($option['admin_label']).'</option>';
986 986
 
987 987
 	endforeach;
988 988
 
989 989
 	echo '</select>';
990 990
 
991
-	echo '<p class="cmb2-metabox-description">' . $field_description . '</p>';
991
+	echo '<p class="cmb2-metabox-description">'.$field_description.'</p>';
992 992
 
993 993
 }
994 994
 
@@ -1003,13 +1003,13 @@  discard block
 block discarded – undo
1003 1003
  *
1004 1004
  * @return void
1005 1005
  */
1006
-function give_title_callback( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) {
1006
+function give_title_callback($field_object, $escaped_value, $object_id, $object_type, $field_type_object) {
1007 1007
 
1008 1008
 	$id                = $field_type_object->field->args['id'];
1009 1009
 	$title             = $field_type_object->field->args['name'];
1010 1010
 	$field_description = $field_type_object->field->args['desc'];
1011 1011
 
1012
-	echo '<hr>' . $field_description;
1012
+	echo '<hr>'.$field_description;
1013 1013
 
1014 1014
 }
1015 1015
 
@@ -1024,7 +1024,7 @@  discard block
 block discarded – undo
1024 1024
  *
1025 1025
  * @return void
1026 1026
  */
1027
-function give_description_callback( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) {
1027
+function give_description_callback($field_object, $escaped_value, $object_id, $object_type, $field_type_object) {
1028 1028
 
1029 1029
 	$id                = $field_type_object->field->args['id'];
1030 1030
 	$title             = $field_type_object->field->args['name'];
@@ -1044,25 +1044,25 @@  discard block
 block discarded – undo
1044 1044
  * @see: https://github.com/WebDevStudios/CMB2/wiki/Adding-your-own-field-types
1045 1045
  * @return array An array of options that matches the CMB2 options array
1046 1046
  */
1047
-function give_cmb2_get_post_options( $query_args, $force = false ) {
1047
+function give_cmb2_get_post_options($query_args, $force = false) {
1048 1048
 
1049
-	$post_options = array( '' => '' ); // Blank option
1049
+	$post_options = array('' => ''); // Blank option
1050 1050
 
1051
-	if ( ( ! isset( $_GET['page'] ) || 'give-settings' != $_GET['page'] ) && ! $force ) {
1051
+	if (( ! isset($_GET['page']) || 'give-settings' != $_GET['page']) && ! $force) {
1052 1052
 		return $post_options;
1053 1053
 	}
1054 1054
 
1055
-	$args = wp_parse_args( $query_args, array(
1055
+	$args = wp_parse_args($query_args, array(
1056 1056
 		'post_type'   => 'page',
1057 1057
 		'numberposts' => 10,
1058
-	) );
1058
+	));
1059 1059
 
1060
-	$posts = get_posts( $args );
1060
+	$posts = get_posts($args);
1061 1061
 
1062
-	if ( $posts ) {
1063
-		foreach ( $posts as $post ) {
1062
+	if ($posts) {
1063
+		foreach ($posts as $post) {
1064 1064
 
1065
-			$post_options[ $post->ID ] = $post->post_title;
1065
+			$post_options[$post->ID] = $post->post_title;
1066 1066
 
1067 1067
 		}
1068 1068
 	}
@@ -1079,14 +1079,14 @@  discard block
 block discarded – undo
1079 1079
  * @since 1.0
1080 1080
  */
1081 1081
 
1082
-add_filter( 'cmb2_get_metabox_form_format', 'give_modify_cmb2_form_output', 10, 3 );
1082
+add_filter('cmb2_get_metabox_form_format', 'give_modify_cmb2_form_output', 10, 3);
1083 1083
 
1084
-function give_modify_cmb2_form_output( $form_format, $object_id, $cmb ) {
1084
+function give_modify_cmb2_form_output($form_format, $object_id, $cmb) {
1085 1085
 
1086 1086
 	//only modify the give settings form
1087
-	if ( 'give_settings' == $object_id && 'options_page' == $cmb->cmb_id ) {
1087
+	if ('give_settings' == $object_id && 'options_page' == $cmb->cmb_id) {
1088 1088
 
1089
-		return '<form class="cmb-form" method="post" id="%1$s" enctype="multipart/form-data" encoding="multipart/form-data"><input type="hidden" name="give_settings_saved" value="true"><input type="hidden" name="object_id" value="%2$s">%3$s<div class="give-submit-wrap"><input type="submit" name="submit-cmb" value="' . __( 'Save Settings', 'give' ) . '" class="button-primary"></div></form>';
1089
+		return '<form class="cmb-form" method="post" id="%1$s" enctype="multipart/form-data" encoding="multipart/form-data"><input type="hidden" name="give_settings_saved" value="true"><input type="hidden" name="object_id" value="%2$s">%3$s<div class="give-submit-wrap"><input type="submit" name="submit-cmb" value="'.__('Save Settings', 'give').'" class="button-primary"></div></form>';
1090 1090
 	}
1091 1091
 
1092 1092
 	return $form_format;
@@ -1104,17 +1104,17 @@  discard block
 block discarded – undo
1104 1104
 	global $_wp_additional_image_sizes;
1105 1105
 	$sizes = array();
1106 1106
 
1107
-	foreach ( get_intermediate_image_sizes() as $_size ) {
1107
+	foreach (get_intermediate_image_sizes() as $_size) {
1108 1108
 		
1109
-		if ( in_array( $_size, array( 'thumbnail', 'medium', 'medium_large', 'large' ) ) ) {
1110
-			$sizes[ $_size ] = $_size . ' - ' . get_option( "{$_size}_size_w" ) . 'x' . get_option( "{$_size}_size_h" );
1111
-		} elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
1112
-			$sizes[ $_size ] = $_size . ' - ' . $_wp_additional_image_sizes[ $_size ]['width'] . 'x' . $_wp_additional_image_sizes[ $_size ]['height'];
1109
+		if (in_array($_size, array('thumbnail', 'medium', 'medium_large', 'large'))) {
1110
+			$sizes[$_size] = $_size.' - '.get_option("{$_size}_size_w").'x'.get_option("{$_size}_size_h");
1111
+		} elseif (isset($_wp_additional_image_sizes[$_size])) {
1112
+			$sizes[$_size] = $_size.' - '.$_wp_additional_image_sizes[$_size]['width'].'x'.$_wp_additional_image_sizes[$_size]['height'];
1113 1113
 		}
1114 1114
 
1115 1115
 	}
1116 1116
 
1117
-	return apply_filters( 'give_get_featured_image_sizes', $sizes );
1117
+	return apply_filters('give_get_featured_image_sizes', $sizes);
1118 1118
 }
1119 1119
 
1120 1120
 
@@ -1128,35 +1128,35 @@  discard block
 block discarded – undo
1128 1128
  *
1129 1129
  * @return void
1130 1130
  */
1131
-if ( ! function_exists( 'give_license_key_callback' ) ) {
1132
-	function give_license_key_callback( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) {
1131
+if ( ! function_exists('give_license_key_callback')) {
1132
+	function give_license_key_callback($field_object, $escaped_value, $object_id, $object_type, $field_type_object) {
1133 1133
 
1134 1134
 		$id                = $field_type_object->field->args['id'];
1135 1135
 		$field_description = $field_type_object->field->args['desc'];
1136
-		$license_status    = get_option( $field_type_object->field->args['options']['is_valid_license_option'] );
1136
+		$license_status    = get_option($field_type_object->field->args['options']['is_valid_license_option']);
1137 1137
 		$field_classes     = 'regular-text give-license-field';
1138
-		$type              = empty( $escaped_value ) ? 'text' : 'password';
1138
+		$type              = empty($escaped_value) ? 'text' : 'password';
1139 1139
 
1140
-		if ( $license_status === 'valid' ) {
1140
+		if ($license_status === 'valid') {
1141 1141
 			$field_classes .= ' give-license-active';
1142 1142
 		}
1143 1143
 
1144
-		$html = $field_type_object->input( array(
1144
+		$html = $field_type_object->input(array(
1145 1145
 			'class' => $field_classes,
1146 1146
 			'type'  => $type
1147
-		) );
1147
+		));
1148 1148
 
1149 1149
 		//License is active so show deactivate button
1150
-		if ( $license_status === 'valid' ) {
1151
-			$html .= '<input type="submit" class="button-secondary give-license-deactivate" name="' . $id . '_deactivate" value="' . __( 'Deactivate License', 'give' ) . '"/>';
1150
+		if ($license_status === 'valid') {
1151
+			$html .= '<input type="submit" class="button-secondary give-license-deactivate" name="'.$id.'_deactivate" value="'.__('Deactivate License', 'give').'"/>';
1152 1152
 		} else {
1153 1153
 			//This license is not valid so delete it
1154
-			give_delete_option( $id );
1154
+			give_delete_option($id);
1155 1155
 		}
1156 1156
 
1157
-		$html .= '<label for="give_settings[' . $id . ']"> ' . $field_description . '</label>';
1157
+		$html .= '<label for="give_settings['.$id.']"> '.$field_description.'</label>';
1158 1158
 
1159
-		wp_nonce_field( $id . '-nonce', $id . '-nonce' );
1159
+		wp_nonce_field($id.'-nonce', $id.'-nonce');
1160 1160
 
1161 1161
 		echo $html;
1162 1162
 	}
@@ -1171,13 +1171,13 @@  discard block
 block discarded – undo
1171 1171
  */
1172 1172
 function give_api_callback() {
1173 1173
 
1174
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
1174
+	if ( ! current_user_can('manage_give_settings')) {
1175 1175
 		return;
1176 1176
 	}
1177 1177
 
1178
-	do_action( 'give_tools_api_keys_before' );
1178
+	do_action('give_tools_api_keys_before');
1179 1179
 
1180
-	require_once GIVE_PLUGIN_DIR . 'includes/admin/class-api-keys-table.php';
1180
+	require_once GIVE_PLUGIN_DIR.'includes/admin/class-api-keys-table.php';
1181 1181
 
1182 1182
 	$api_keys_table = new Give_API_Keys_Table();
1183 1183
 	$api_keys_table->prepare_items();
@@ -1185,7 +1185,7 @@  discard block
 block discarded – undo
1185 1185
 	?>
1186 1186
 	<p>
1187 1187
 		<?php printf(
1188
-			__( 'API keys allow users to use the <a href="%s">Give REST API</a> to retrieve donation data in JSON or XML for external applications or devices, such as <a href="%s">Zapier</a>.', 'give' ),
1188
+			__('API keys allow users to use the <a href="%s">Give REST API</a> to retrieve donation data in JSON or XML for external applications or devices, such as <a href="%s">Zapier</a>.', 'give'),
1189 1189
 			'https://givewp.com/documentation/give-api-reference/',
1190 1190
 			'https://givewp.com/addons/zapier/'
1191 1191
 		); ?>
@@ -1198,10 +1198,10 @@  discard block
 block discarded – undo
1198 1198
 	</style>
1199 1199
 	<?php
1200 1200
 
1201
-	do_action( 'give_tools_api_keys_after' );
1201
+	do_action('give_tools_api_keys_after');
1202 1202
 }
1203 1203
 
1204
-add_action( 'give_settings_tab_api_keys', 'give_api_callback' );
1204
+add_action('give_settings_tab_api_keys', 'give_api_callback');
1205 1205
 
1206 1206
 /**
1207 1207
  * Hook Callback
@@ -1214,8 +1214,8 @@  discard block
 block discarded – undo
1214 1214
  *
1215 1215
  * @return void
1216 1216
  */
1217
-function give_hook_callback( $args ) {
1218
-	do_action( 'give_' . $args['id'] );
1217
+function give_hook_callback($args) {
1218
+	do_action('give_'.$args['id']);
1219 1219
 }
1220 1220
 
1221 1221
 /**
@@ -1225,10 +1225,10 @@  discard block
 block discarded – undo
1225 1225
  *
1226 1226
  */
1227 1227
 
1228
-if ( file_exists( WP_PLUGIN_DIR . '/cmb2/init.php' ) && ! defined( 'CMB2_LOADED' ) ) {
1229
-	require_once WP_PLUGIN_DIR . '/cmb2/init.php';
1230
-} elseif ( file_exists( GIVE_PLUGIN_DIR . '/includes/libraries/cmb2/init.php' ) && ! defined( 'CMB2_LOADED' ) ) {
1231
-	require_once GIVE_PLUGIN_DIR . '/includes/libraries/cmb2/init.php';
1232
-} elseif ( file_exists( GIVE_PLUGIN_DIR . '/includes/libraries/CMB2/init.php' ) && ! defined( 'CMB2_LOADED' ) ) {
1233
-	require_once GIVE_PLUGIN_DIR . '/includes/libraries/CMB2/init.php';
1228
+if (file_exists(WP_PLUGIN_DIR.'/cmb2/init.php') && ! defined('CMB2_LOADED')) {
1229
+	require_once WP_PLUGIN_DIR.'/cmb2/init.php';
1230
+} elseif (file_exists(GIVE_PLUGIN_DIR.'/includes/libraries/cmb2/init.php') && ! defined('CMB2_LOADED')) {
1231
+	require_once GIVE_PLUGIN_DIR.'/includes/libraries/cmb2/init.php';
1232
+} elseif (file_exists(GIVE_PLUGIN_DIR.'/includes/libraries/CMB2/init.php') && ! defined('CMB2_LOADED')) {
1233
+	require_once GIVE_PLUGIN_DIR.'/includes/libraries/CMB2/init.php';
1234 1234
 }
1235 1235
\ No newline at end of file
Please login to merge, or discard this patch.
includes/template-functions.php 1 patch
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
  * @return string
22 22
  */
23 23
 function give_get_templates_dir() {
24
-	return GIVE_PLUGIN_DIR . 'templates';
24
+	return GIVE_PLUGIN_DIR.'templates';
25 25
 }
26 26
 
27 27
 /**
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  * @return string
32 32
  */
33 33
 function give_get_templates_url() {
34
-	return GIVE_PLUGIN_URL . 'templates';
34
+	return GIVE_PLUGIN_URL.'templates';
35 35
 }
36 36
 
37 37
 /**
@@ -51,23 +51,23 @@  discard block
 block discarded – undo
51 51
  * @uses  load_template()
52 52
  * @uses  get_template_part()
53 53
  */
54
-function give_get_template_part( $slug, $name = null, $load = true ) {
54
+function give_get_template_part($slug, $name = null, $load = true) {
55 55
 
56 56
 	// Execute code for this part
57
-	do_action( 'get_template_part_' . $slug, $slug, $name );
57
+	do_action('get_template_part_'.$slug, $slug, $name);
58 58
 
59 59
 	// Setup possible parts
60 60
 	$templates = array();
61
-	if ( isset( $name ) ) {
62
-		$templates[] = $slug . '-' . $name . '.php';
61
+	if (isset($name)) {
62
+		$templates[] = $slug.'-'.$name.'.php';
63 63
 	}
64
-	$templates[] = $slug . '.php';
64
+	$templates[] = $slug.'.php';
65 65
 
66 66
 	// Allow template parts to be filtered
67
-	$templates = apply_filters( 'give_get_template_part', $templates, $slug, $name );
67
+	$templates = apply_filters('give_get_template_part', $templates, $slug, $name);
68 68
 
69 69
 	// Return the part that is found
70
-	return give_locate_template( $templates, $load, false );
70
+	return give_locate_template($templates, $load, false);
71 71
 }
72 72
 
73 73
 /**
@@ -88,37 +88,37 @@  discard block
 block discarded – undo
88 88
  *
89 89
  * @return string The template filename if one is located.
90 90
  */
91
-function give_locate_template( $template_names, $load = false, $require_once = true ) {
91
+function give_locate_template($template_names, $load = false, $require_once = true) {
92 92
 	// No file found yet
93 93
 	$located = false;
94 94
 
95 95
 	// Try to find a template file
96
-	foreach ( (array) $template_names as $template_name ) {
96
+	foreach ((array) $template_names as $template_name) {
97 97
 
98 98
 		// Continue if template is empty
99
-		if ( empty( $template_name ) ) {
99
+		if (empty($template_name)) {
100 100
 			continue;
101 101
 		}
102 102
 
103 103
 		// Trim off any slashes from the template name
104
-		$template_name = ltrim( $template_name, '/' );
104
+		$template_name = ltrim($template_name, '/');
105 105
 
106 106
 		// try locating this template file by looping through the template paths
107
-		foreach ( give_get_theme_template_paths() as $template_path ) {
107
+		foreach (give_get_theme_template_paths() as $template_path) {
108 108
 
109
-			if ( file_exists( $template_path . $template_name ) ) {
110
-				$located = $template_path . $template_name;
109
+			if (file_exists($template_path.$template_name)) {
110
+				$located = $template_path.$template_name;
111 111
 				break;
112 112
 			}
113 113
 		}
114 114
 
115
-		if ( $located ) {
115
+		if ($located) {
116 116
 			break;
117 117
 		}
118 118
 	}
119 119
 
120
-	if ( ( true == $load ) && ! empty( $located ) ) {
121
-		load_template( $located, $require_once );
120
+	if ((true == $load) && ! empty($located)) {
121
+		load_template($located, $require_once);
122 122
 	}
123 123
 
124 124
 	return $located;
@@ -135,17 +135,17 @@  discard block
 block discarded – undo
135 135
 	$template_dir = give_get_theme_template_dir_name();
136 136
 
137 137
 	$file_paths = array(
138
-		1   => trailingslashit( get_stylesheet_directory() ) . $template_dir,
139
-		10  => trailingslashit( get_template_directory() ) . $template_dir,
138
+		1   => trailingslashit(get_stylesheet_directory()).$template_dir,
139
+		10  => trailingslashit(get_template_directory()).$template_dir,
140 140
 		100 => give_get_templates_dir()
141 141
 	);
142 142
 
143
-	$file_paths = apply_filters( 'give_template_paths', $file_paths );
143
+	$file_paths = apply_filters('give_template_paths', $file_paths);
144 144
 
145 145
 	// sort the file paths based on priority
146
-	ksort( $file_paths, SORT_NUMERIC );
146
+	ksort($file_paths, SORT_NUMERIC);
147 147
 
148
-	return array_map( 'trailingslashit', $file_paths );
148
+	return array_map('trailingslashit', $file_paths);
149 149
 }
150 150
 
151 151
 /**
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
  * @return string
158 158
  */
159 159
 function give_get_theme_template_dir_name() {
160
-	return trailingslashit( apply_filters( 'give_templates_dir', 'give' ) );
160
+	return trailingslashit(apply_filters('give_templates_dir', 'give'));
161 161
 }
162 162
 
163 163
 /**
@@ -167,10 +167,10 @@  discard block
 block discarded – undo
167 167
  * @return void
168 168
  */
169 169
 function give_version_in_header() {
170
-	echo '<meta name="generator" content="Give v' . GIVE_VERSION . '" />' . "\n";
170
+	echo '<meta name="generator" content="Give v'.GIVE_VERSION.'" />'."\n";
171 171
 }
172 172
 
173
-add_action( 'wp_head', 'give_version_in_header' );
173
+add_action('wp_head', 'give_version_in_header');
174 174
 
175 175
 /**
176 176
  * Determines if we're currently on the Donations History page.
@@ -180,9 +180,9 @@  discard block
 block discarded – undo
180 180
  */
181 181
 function give_is_donation_history_page() {
182 182
 
183
-	$ret = is_page( give_get_option( 'history_page' ) );
183
+	$ret = is_page(give_get_option('history_page'));
184 184
 
185
-	return apply_filters( 'give_is_donation_history_page', $ret );
185
+	return apply_filters('give_is_donation_history_page', $ret);
186 186
 }
187 187
 
188 188
 /**
@@ -194,25 +194,25 @@  discard block
 block discarded – undo
194 194
  *
195 195
  * @return array Modified array of classes
196 196
  */
197
-function give_add_body_classes( $class ) {
197
+function give_add_body_classes($class) {
198 198
 	$classes = (array) $class;
199 199
 
200
-	if ( give_is_success_page() ) {
200
+	if (give_is_success_page()) {
201 201
 		$classes[] = 'give-success';
202 202
 		$classes[] = 'give-page';
203 203
 	}
204 204
 
205
-	if ( give_is_failed_transaction_page() ) {
205
+	if (give_is_failed_transaction_page()) {
206 206
 		$classes[] = 'give-failed-transaction';
207 207
 		$classes[] = 'give-page';
208 208
 	}
209 209
 
210
-	if ( give_is_donation_history_page() ) {
210
+	if (give_is_donation_history_page()) {
211 211
 		$classes[] = 'give-donation-history';
212 212
 		$classes[] = 'give-page';
213 213
 	}
214 214
 
215
-	if ( give_is_test_mode() ) {
215
+	if (give_is_test_mode()) {
216 216
 		$classes[] = 'give-test-mode';
217 217
 		$classes[] = 'give-page';
218 218
 	}
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	//Theme-specific Classes used to prevent conflicts via CSS
221 221
 	$current_theme = wp_get_theme();
222 222
 
223
-	switch ( $current_theme->template ) {
223
+	switch ($current_theme->template) {
224 224
 
225 225
 		case 'Divi':
226 226
 			$classes[] = 'give-divi';
@@ -234,10 +234,10 @@  discard block
 block discarded – undo
234 234
 
235 235
 	}
236 236
 
237
-	return array_unique( $classes );
237
+	return array_unique($classes);
238 238
 }
239 239
 
240
-add_filter( 'body_class', 'give_add_body_classes' );
240
+add_filter('body_class', 'give_add_body_classes');
241 241
 
242 242
 
243 243
 /**
@@ -253,22 +253,22 @@  discard block
 block discarded – undo
253 253
  *
254 254
  * @return array
255 255
  */
256
-function give_add_post_class( $classes, $class = '', $post_id = '' ) {
257
-	if ( ! $post_id || 'give_forms' !== get_post_type( $post_id ) ) {
256
+function give_add_post_class($classes, $class = '', $post_id = '') {
257
+	if ( ! $post_id || 'give_forms' !== get_post_type($post_id)) {
258 258
 		return $classes;
259 259
 	}
260 260
 
261 261
 	//@TODO: Add classes for custom taxonomy and form configurations (multi vs single donations, etc).
262 262
 
263
-	if ( false !== ( $key = array_search( 'hentry', $classes ) ) ) {
264
-		unset( $classes[ $key ] );
263
+	if (false !== ($key = array_search('hentry', $classes))) {
264
+		unset($classes[$key]);
265 265
 	}
266 266
 
267 267
 	return $classes;
268 268
 }
269 269
 
270 270
 
271
-add_filter( 'post_class', 'give_add_post_class', 20, 3 );
271
+add_filter('post_class', 'give_add_post_class', 20, 3);
272 272
 
273 273
 /**
274 274
  * Get the placeholder image URL for forms etc
@@ -278,84 +278,84 @@  discard block
 block discarded – undo
278 278
  */
279 279
 function give_get_placeholder_img_src() {
280 280
 
281
-	$placeholder_url = 'http://placehold.it/600x600&text=' . urlencode( esc_attr__( 'Give Placeholder Image', 'give' ) );
281
+	$placeholder_url = 'http://placehold.it/600x600&text='.urlencode(esc_attr__('Give Placeholder Image', 'give'));
282 282
 
283
-	return apply_filters( 'give_placeholder_img_src', $placeholder_url );
283
+	return apply_filters('give_placeholder_img_src', $placeholder_url);
284 284
 }
285 285
 
286 286
 
287 287
 /**
288 288
  * Global
289 289
  */
290
-if ( ! function_exists( 'give_output_content_wrapper' ) ) {
290
+if ( ! function_exists('give_output_content_wrapper')) {
291 291
 
292 292
 	/**
293 293
 	 * Output the start of the page wrapper.
294 294
 	 */
295 295
 	function give_output_content_wrapper() {
296
-		give_get_template_part( 'global/wrapper-start' );
296
+		give_get_template_part('global/wrapper-start');
297 297
 	}
298 298
 }
299
-if ( ! function_exists( 'give_output_content_wrapper_end' ) ) {
299
+if ( ! function_exists('give_output_content_wrapper_end')) {
300 300
 
301 301
 	/**
302 302
 	 * Output the end of the page wrapper.
303 303
 	 */
304 304
 	function give_output_content_wrapper_end() {
305
-		give_get_template_part( 'global/wrapper-end' );
305
+		give_get_template_part('global/wrapper-end');
306 306
 	}
307 307
 }
308 308
 
309 309
 /**
310 310
  * Single Give Form
311 311
  */
312
-if ( ! function_exists( 'give_left_sidebar_pre_wrap' ) ) {
312
+if ( ! function_exists('give_left_sidebar_pre_wrap')) {
313 313
 	function give_left_sidebar_pre_wrap() {
314
-		echo apply_filters( 'give_left_sidebar_pre_wrap', '<div id="give-sidebar-left" class="give-sidebar give-single-form-sidebar-left">' );
314
+		echo apply_filters('give_left_sidebar_pre_wrap', '<div id="give-sidebar-left" class="give-sidebar give-single-form-sidebar-left">');
315 315
 	}
316 316
 }
317 317
 
318
-if ( ! function_exists( 'give_left_sidebar_post_wrap' ) ) {
318
+if ( ! function_exists('give_left_sidebar_post_wrap')) {
319 319
 	function give_left_sidebar_post_wrap() {
320
-		echo apply_filters( 'give_left_sidebar_post_wrap', '</div>' );
320
+		echo apply_filters('give_left_sidebar_post_wrap', '</div>');
321 321
 	}
322 322
 }
323 323
 
324
-if ( ! function_exists( 'give_get_forms_sidebar' ) ) {
324
+if ( ! function_exists('give_get_forms_sidebar')) {
325 325
 	function give_get_forms_sidebar() {
326
-		give_get_template_part( 'single-give-form/sidebar' );
326
+		give_get_template_part('single-give-form/sidebar');
327 327
 	}
328 328
 }
329 329
 
330
-if ( ! function_exists( 'give_show_form_images' ) ) {
330
+if ( ! function_exists('give_show_form_images')) {
331 331
 
332 332
 	/**
333 333
 	 * Output the product image before the single product summary.
334 334
 	 */
335 335
 	function give_show_form_images() {
336
-		$featured_image_option = give_get_option( 'disable_form_featured_img' );
337
-		if ( $featured_image_option !== 'on' ) {
338
-			give_get_template_part( 'single-give-form/featured-image' );
336
+		$featured_image_option = give_get_option('disable_form_featured_img');
337
+		if ($featured_image_option !== 'on') {
338
+			give_get_template_part('single-give-form/featured-image');
339 339
 		}
340 340
 	}
341 341
 }
342 342
 
343
-if ( ! function_exists( 'give_template_single_title' ) ) {
343
+if ( ! function_exists('give_template_single_title')) {
344 344
 
345 345
 	/**
346 346
 	 * Output the product title.
347 347
 	 */
348 348
 	function give_template_single_title() {
349
-		give_get_template_part( 'single-give-form/title' );
349
+		give_get_template_part('single-give-form/title');
350 350
 	}
351 351
 }
352 352
 
353
-if ( ! function_exists( 'give_show_avatars' ) ) {
353
+if ( ! function_exists('give_show_avatars')) {
354 354
 
355 355
 	/**
356 356
 	 * Output the product title.
357 357
 	 */
358 358
 	function give_show_avatars() {
359
-		echo do_shortcode( '[give_donators_gravatars]' );
359
+		echo do_shortcode('[give_donators_gravatars]');
360 360
 	}
361 361
 }
362 362
\ No newline at end of file
Please login to merge, or discard this patch.
includes/emails/template.php 1 patch
Spacing   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
  *
42 42
  * @return string $message Fully formatted message
43 43
  */
44
-function give_email_template_tags( $message, $payment_data, $payment_id, $admin_notice = false ) {
45
-	return give_do_email_tags( $message, $payment_id );
44
+function give_email_template_tags($message, $payment_data, $payment_id, $admin_notice = false) {
45
+	return give_do_email_tags($message, $payment_id);
46 46
 }
47 47
 
48 48
 /**
@@ -55,38 +55,38 @@  discard block
 block discarded – undo
55 55
  *
56 56
  * @return string $message Fully formatted message
57 57
  */
58
-function give_email_preview_template_tags( $message ) {
58
+function give_email_preview_template_tags($message) {
59 59
 	global $give_options;
60 60
 
61
-	$price = give_currency_filter( give_format_amount( 10.50 ) );
61
+	$price = give_currency_filter(give_format_amount(10.50));
62 62
 
63 63
 	$gateway = 'PayPal';
64 64
 
65
-	$receipt_id = strtolower( md5( uniqid() ) );
65
+	$receipt_id = strtolower(md5(uniqid()));
66 66
 
67
-	$notes = __( 'These are some sample notes added to a donation.', 'give' );
67
+	$notes = __('These are some sample notes added to a donation.', 'give');
68 68
 
69
-	$payment_id = rand( 1, 100 );
69
+	$payment_id = rand(1, 100);
70 70
 
71 71
 	$user = wp_get_current_user();
72 72
 
73
-	$message = str_replace( '{name}', $user->display_name, $message );
74
-	$message = str_replace( '{fullname}', $user->display_name, $message );
75
-	$message = str_replace( '{username}', $user->user_login, $message );
76
-	$message = str_replace( '{date}', date( get_option( 'date_format' ), current_time( 'timestamp' ) ), $message );
77
-	$message = str_replace( '{price}', $price, $message );
78
-	$message = str_replace( '{donation}', 'Sample Donation Form Title', $message );
79
-	$message = str_replace( '{receipt_id}', $receipt_id, $message );
80
-	$message = str_replace( '{payment_method}', $gateway, $message );
81
-	$message = str_replace( '{sitename}', get_bloginfo( 'name' ), $message );
82
-	$message = str_replace( '{product_notes}', $notes, $message );
83
-	$message = str_replace( '{payment_id}', $payment_id, $message );
84
-	$message = str_replace( '{receipt_link}', sprintf( __( '%1$sView the receipt in your browser %2$s', 'give' ), '<a href="' . esc_url( add_query_arg( array(
73
+	$message = str_replace('{name}', $user->display_name, $message);
74
+	$message = str_replace('{fullname}', $user->display_name, $message);
75
+	$message = str_replace('{username}', $user->user_login, $message);
76
+	$message = str_replace('{date}', date(get_option('date_format'), current_time('timestamp')), $message);
77
+	$message = str_replace('{price}', $price, $message);
78
+	$message = str_replace('{donation}', 'Sample Donation Form Title', $message);
79
+	$message = str_replace('{receipt_id}', $receipt_id, $message);
80
+	$message = str_replace('{payment_method}', $gateway, $message);
81
+	$message = str_replace('{sitename}', get_bloginfo('name'), $message);
82
+	$message = str_replace('{product_notes}', $notes, $message);
83
+	$message = str_replace('{payment_id}', $payment_id, $message);
84
+	$message = str_replace('{receipt_link}', sprintf(__('%1$sView the receipt in your browser %2$s', 'give'), '<a href="'.esc_url(add_query_arg(array(
85 85
 			'payment_key' => $receipt_id,
86 86
 			'give_action' => 'view_receipt'
87
-		), home_url() ) ) . '">', '&raquo;</a>' ), $message );
87
+		), home_url())).'">', '&raquo;</a>'), $message);
88 88
 
89
-	return wpautop( apply_filters( 'give_email_preview_template_tags', $message ) );
89
+	return wpautop(apply_filters('give_email_preview_template_tags', $message));
90 90
 }
91 91
 
92 92
 /**
@@ -99,20 +99,20 @@  discard block
 block discarded – undo
99 99
  * @since  1.0
100 100
  * @return array|bool
101 101
  */
102
-add_filter( 'give_settings_emails', 'give_email_template_preview' );
102
+add_filter('give_settings_emails', 'give_email_template_preview');
103 103
 
104
-function give_email_template_preview( $array ) {
104
+function give_email_template_preview($array) {
105 105
 
106
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
106
+	if ( ! current_user_can('manage_give_settings')) {
107 107
 		return false;
108 108
 	}
109 109
 	$custom_field = array(
110
-		'name' => __( 'Preview Email', 'give' ),
111
-		'desc' => __( 'Click the buttons to preview emails.', 'give' ),
110
+		'name' => __('Preview Email', 'give'),
111
+		'desc' => __('Click the buttons to preview emails.', 'give'),
112 112
 		'id'   => 'give_email_preview_buttons',
113 113
 		'type' => 'email_preview_buttons'
114 114
 	);
115
-	array_splice( $array, 5, 0, array( $custom_field ) );
115
+	array_splice($array, 5, 0, array($custom_field));
116 116
 
117 117
 	return $array; // splice in at position 3;
118 118
 }
@@ -128,11 +128,11 @@  discard block
 block discarded – undo
128 128
 function give_email_preview_buttons_callback() {
129 129
 	ob_start();
130 130
 	?>
131
-	<a href="<?php echo esc_url( add_query_arg( array( 'give_action' => 'preview_email' ), home_url() ) ); ?>" class="button-secondary" target="_blank" title="<?php _e( 'Donation Receipt Preview', 'give' ); ?> "><?php _e( 'Preview Donation Receipt', 'give' ); ?></a>
132
-	<a href="<?php echo wp_nonce_url( add_query_arg( array(
131
+	<a href="<?php echo esc_url(add_query_arg(array('give_action' => 'preview_email'), home_url())); ?>" class="button-secondary" target="_blank" title="<?php _e('Donation Receipt Preview', 'give'); ?> "><?php _e('Preview Donation Receipt', 'give'); ?></a>
132
+	<a href="<?php echo wp_nonce_url(add_query_arg(array(
133 133
 		'give_action'  => 'send_test_email',
134 134
 		'give-message' => 'sent-test-email'
135
-	) ), 'give-test-email' ); ?>" title="<?php _e( 'This will send a demo donation receipt to the emails listed below.', 'give' ); ?>" class="button-secondary"><?php _e( 'Send Test Email', 'give' ); ?></a>
135
+	)), 'give-test-email'); ?>" title="<?php _e('This will send a demo donation receipt to the emails listed below.', 'give'); ?>" class="button-secondary"><?php _e('Send Test Email', 'give'); ?></a>
136 136
 	<?php
137 137
 	echo ob_get_clean();
138 138
 }
@@ -145,27 +145,27 @@  discard block
 block discarded – undo
145 145
  */
146 146
 function give_display_email_template_preview() {
147 147
 
148
-	if ( empty( $_GET['give_action'] ) ) {
148
+	if (empty($_GET['give_action'])) {
149 149
 		return;
150 150
 	}
151 151
 
152
-	if ( 'preview_email' !== $_GET['give_action'] ) {
152
+	if ('preview_email' !== $_GET['give_action']) {
153 153
 		return;
154 154
 	}
155 155
 
156
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
156
+	if ( ! current_user_can('manage_give_settings')) {
157 157
 		return;
158 158
 	}
159 159
 
160
-	Give()->emails->heading = __( 'Donation Receipt', 'give' );
160
+	Give()->emails->heading = __('Donation Receipt', 'give');
161 161
 
162
-	echo Give()->emails->build_email( give_email_preview_template_tags( give_get_email_body_content( 0, array() ) ) );
162
+	echo Give()->emails->build_email(give_email_preview_template_tags(give_get_email_body_content(0, array())));
163 163
 
164 164
 	exit;
165 165
 
166 166
 }
167 167
 
168
-add_action( 'template_redirect', 'give_display_email_template_preview' );
168
+add_action('template_redirect', 'give_display_email_template_preview');
169 169
 
170 170
 /**
171 171
  * Email Template Body
@@ -177,19 +177,19 @@  discard block
 block discarded – undo
177 177
  *
178 178
  * @return string $email_body Body of the email
179 179
  */
180
-function give_get_email_body_content( $payment_id = 0, $payment_data = array() ) {
180
+function give_get_email_body_content($payment_id = 0, $payment_data = array()) {
181 181
 
182 182
 	global $give_options;
183 183
 
184 184
 	$default_email_body = give_get_default_donation_receipt_email();
185 185
 
186
-	$email = isset( $give_options['donation_receipt'] ) ? stripslashes( $give_options['donation_receipt'] ) : $default_email_body;
186
+	$email = isset($give_options['donation_receipt']) ? stripslashes($give_options['donation_receipt']) : $default_email_body;
187 187
 
188
-	$email_body = wpautop( $email );
188
+	$email_body = wpautop($email);
189 189
 
190
-	$email_body = apply_filters( 'give_donation_receipt_' . Give()->emails->get_template(), $email_body, $payment_id, $payment_data );
190
+	$email_body = apply_filters('give_donation_receipt_'.Give()->emails->get_template(), $email_body, $payment_id, $payment_data);
191 191
 
192
-	return apply_filters( 'give_donation_receipt', $email_body, $payment_id, $payment_data );
192
+	return apply_filters('give_donation_receipt', $email_body, $payment_id, $payment_data);
193 193
 }
194 194
 
195 195
 
@@ -205,37 +205,37 @@  discard block
 block discarded – undo
205 205
  *
206 206
  * @return string $email_body Body of the email
207 207
  */
208
-function give_get_donation_notification_body_content( $payment_id = 0, $payment_data = array() ) {
208
+function give_get_donation_notification_body_content($payment_id = 0, $payment_data = array()) {
209 209
 	global $give_options;
210 210
 
211
-	$user_info = maybe_unserialize( $payment_data['user_info'] );
212
-	$email     = give_get_payment_user_email( $payment_id );
211
+	$user_info = maybe_unserialize($payment_data['user_info']);
212
+	$email     = give_get_payment_user_email($payment_id);
213 213
 
214
-	if ( isset( $user_info['id'] ) && $user_info['id'] > 0 ) {
215
-		$user_data = get_userdata( $user_info['id'] );
214
+	if (isset($user_info['id']) && $user_info['id'] > 0) {
215
+		$user_data = get_userdata($user_info['id']);
216 216
 		$name      = $user_data->display_name;
217
-	} elseif ( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) {
218
-		$name = $user_info['first_name'] . ' ' . $user_info['last_name'];
217
+	} elseif (isset($user_info['first_name']) && isset($user_info['last_name'])) {
218
+		$name = $user_info['first_name'].' '.$user_info['last_name'];
219 219
 	} else {
220 220
 		$name = $email;
221 221
 	}
222 222
 
223
-	$gateway = give_get_gateway_admin_label( get_post_meta( $payment_id, '_give_payment_gateway', true ) );
223
+	$gateway = give_get_gateway_admin_label(get_post_meta($payment_id, '_give_payment_gateway', true));
224 224
 
225
-	$default_email_body = __( 'Hello', 'give' ) . "\n\n" . __( 'A donation has been made', 'give' ) . ".\n\n";
226
-	$default_email_body .= sprintf( __( '%s sold:', 'give' ), give_get_forms_label_plural() ) . "\n\n";
225
+	$default_email_body = __('Hello', 'give')."\n\n".__('A donation has been made', 'give').".\n\n";
226
+	$default_email_body .= sprintf(__('%s sold:', 'give'), give_get_forms_label_plural())."\n\n";
227 227
 
228
-	$default_email_body .= __( 'Donor: ', 'give' ) . " " . html_entity_decode( $name, ENT_COMPAT, 'UTF-8' ) . "\n";
229
-	$default_email_body .= __( 'Amount: ', 'give' ) . " " . html_entity_decode( give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) ), ENT_COMPAT, 'UTF-8' ) . "\n";
230
-	$default_email_body .= __( 'Payment Method: ', 'give' ) . " " . $gateway . "\n\n";
228
+	$default_email_body .= __('Donor: ', 'give')." ".html_entity_decode($name, ENT_COMPAT, 'UTF-8')."\n";
229
+	$default_email_body .= __('Amount: ', 'give')." ".html_entity_decode(give_currency_filter(give_format_amount(give_get_payment_amount($payment_id))), ENT_COMPAT, 'UTF-8')."\n";
230
+	$default_email_body .= __('Payment Method: ', 'give')." ".$gateway."\n\n";
231 231
 
232
-	$default_email_body .= __( 'Thank you', 'give' );
232
+	$default_email_body .= __('Thank you', 'give');
233 233
 
234
-	$email = isset( $give_options['donation_notification'] ) ? stripslashes( $give_options['donation_notification'] ) : $default_email_body;
234
+	$email = isset($give_options['donation_notification']) ? stripslashes($give_options['donation_notification']) : $default_email_body;
235 235
 
236
-	$email_body = give_do_email_tags( $email, $payment_id );
236
+	$email_body = give_do_email_tags($email, $payment_id);
237 237
 
238
-	return apply_filters( 'give_donation_notification', wpautop( $email_body ), $payment_id, $payment_data );
238
+	return apply_filters('give_donation_notification', wpautop($email_body), $payment_id, $payment_data);
239 239
 }
240 240
 
241 241
 /**
@@ -248,15 +248,15 @@  discard block
 block discarded – undo
248 248
  * @since  1.0
249 249
  */
250 250
 function give_render_receipt_in_browser() {
251
-	if ( ! isset( $_GET['payment_key'] ) ) {
252
-		wp_die( __( 'Missing donation payment key.', 'give' ), __( 'Error', 'give' ) );
251
+	if ( ! isset($_GET['payment_key'])) {
252
+		wp_die(__('Missing donation payment key.', 'give'), __('Error', 'give'));
253 253
 	}
254 254
 
255
-	$key = urlencode( $_GET['payment_key'] );
255
+	$key = urlencode($_GET['payment_key']);
256 256
 
257 257
 	ob_start();
258 258
 	//Disallows caching of the page
259
-	header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
259
+	header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
260 260
 	header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
261 261
 	header("Cache-Control: post-check=0, pre-check=0", false);
262 262
 	header("Pragma: no-cache"); // HTTP/1.0
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 	<!DOCTYPE html>
266 266
 	<html lang="en">
267 267
 		<head>
268
-			<title><?php _e( 'Donation Receipt', 'give' ); ?></title>
268
+			<title><?php _e('Donation Receipt', 'give'); ?></title>
269 269
 			<meta charset="utf-8" />
270 270
 
271 271
 			<!-- Further disallowing of caching of this page -->
@@ -279,12 +279,12 @@  discard block
 block discarded – undo
279 279
 
280 280
 			<?php wp_head(); ?>
281 281
 		</head>
282
-		<body class="<?php echo apply_filters( 'give_receipt_page_body_class', 'give_receipt_page' ); ?>">
282
+		<body class="<?php echo apply_filters('give_receipt_page_body_class', 'give_receipt_page'); ?>">
283 283
 
284 284
 			<div id="give_receipt_wrapper">
285
-				<?php do_action( 'give_render_receipt_in_browser_before' ); ?>
286
-				<?php echo do_shortcode( '[give_receipt payment_key=' . $key . ']' ); ?>
287
-				<?php do_action( 'give_render_receipt_in_browser_after' ); ?>
285
+				<?php do_action('give_render_receipt_in_browser_before'); ?>
286
+				<?php echo do_shortcode('[give_receipt payment_key='.$key.']'); ?>
287
+				<?php do_action('give_render_receipt_in_browser_after'); ?>
288 288
 			</div>
289 289
 
290 290
 			<?php wp_footer(); ?>
@@ -295,4 +295,4 @@  discard block
 block discarded – undo
295 295
 	die();
296 296
 }
297 297
 
298
-add_action( 'give_view_receipt', 'give_render_receipt_in_browser' );
298
+add_action('give_view_receipt', 'give_render_receipt_in_browser');
Please login to merge, or discard this patch.
includes/emails/functions.php 1 patch
Spacing   +93 added lines, -93 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -24,39 +24,39 @@  discard block
 block discarded – undo
24 24
  *
25 25
  * @return void
26 26
  */
27
-function give_email_donation_receipt( $payment_id, $admin_notice = true ) {
27
+function give_email_donation_receipt($payment_id, $admin_notice = true) {
28 28
 
29
-	$payment_data = give_get_payment_meta( $payment_id );
29
+	$payment_data = give_get_payment_meta($payment_id);
30 30
 
31
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
32
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data );
31
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
32
+	$from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data);
33 33
 
34
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
35
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data );
34
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
35
+	$from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data);
36 36
 
37
-	$to_email = give_get_payment_user_email( $payment_id );
37
+	$to_email = give_get_payment_user_email($payment_id);
38 38
 
39
-	$subject = give_get_option( 'donation_subject', __( 'Donation Receipt', 'give' ) );
40
-	$subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), $payment_id );
41
-	$subject = give_do_email_tags( $subject, $payment_id );
39
+	$subject = give_get_option('donation_subject', __('Donation Receipt', 'give'));
40
+	$subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), $payment_id);
41
+	$subject = give_do_email_tags($subject, $payment_id);
42 42
 
43
-	$attachments = apply_filters( 'give_receipt_attachments', array(), $payment_id, $payment_data );
44
-	$message     = give_do_email_tags( give_get_email_body_content( $payment_id, $payment_data ), $payment_id );
43
+	$attachments = apply_filters('give_receipt_attachments', array(), $payment_id, $payment_data);
44
+	$message     = give_do_email_tags(give_get_email_body_content($payment_id, $payment_data), $payment_id);
45 45
 
46 46
 	$emails = Give()->emails;
47 47
 
48
-	$emails->__set( 'from_name', $from_name );
49
-	$emails->__set( 'from_email', $from_email );
50
-	$emails->__set( 'heading', __( 'Donation Receipt', 'give' ) );
48
+	$emails->__set('from_name', $from_name);
49
+	$emails->__set('from_email', $from_email);
50
+	$emails->__set('heading', __('Donation Receipt', 'give'));
51 51
 
52 52
 
53
-	$headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data );
54
-	$emails->__set( 'headers', $headers );
53
+	$headers = apply_filters('give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data);
54
+	$emails->__set('headers', $headers);
55 55
 
56
-	$emails->send( $to_email, $subject, $message, $attachments );
56
+	$emails->send($to_email, $subject, $message, $attachments);
57 57
 
58
-	if ( $admin_notice && ! give_admin_notices_disabled( $payment_id ) ) {
59
-		do_action( 'give_admin_sale_notice', $payment_id, $payment_data );
58
+	if ($admin_notice && ! give_admin_notices_disabled($payment_id)) {
59
+		do_action('give_admin_sale_notice', $payment_id, $payment_data);
60 60
 	}
61 61
 }
62 62
 
@@ -69,29 +69,29 @@  discard block
 block discarded – undo
69 69
  */
70 70
 function give_email_test_donation_receipt() {
71 71
 
72
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
73
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, 0, array() );
72
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
73
+	$from_name = apply_filters('give_purchase_from_name', $from_name, 0, array());
74 74
 
75
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
76
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, 0, array() );
75
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
76
+	$from_email = apply_filters('give_purchase_from_address', $from_email, 0, array());
77 77
 
78
-	$subject = give_get_option( 'donation_subject', __( 'Donation Receipt', 'give' ) );
79
-	$subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), 0 );
80
-	$subject = give_do_email_tags( $subject, 0 );
78
+	$subject = give_get_option('donation_subject', __('Donation Receipt', 'give'));
79
+	$subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), 0);
80
+	$subject = give_do_email_tags($subject, 0);
81 81
 
82
-	$attachments = apply_filters( 'give_receipt_attachments', array(), 0, array() );
82
+	$attachments = apply_filters('give_receipt_attachments', array(), 0, array());
83 83
 
84
-	$message = give_email_preview_template_tags( give_get_email_body_content( 0, array() ), 0 );
84
+	$message = give_email_preview_template_tags(give_get_email_body_content(0, array()), 0);
85 85
 
86 86
 	$emails = Give()->emails;
87
-	$emails->__set( 'from_name', $from_name );
88
-	$emails->__set( 'from_email', $from_email );
89
-	$emails->__set( 'heading', __( 'Donation Receipt', 'give' ) );
87
+	$emails->__set('from_name', $from_name);
88
+	$emails->__set('from_email', $from_email);
89
+	$emails->__set('heading', __('Donation Receipt', 'give'));
90 90
 
91
-	$headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), 0, array() );
92
-	$emails->__set( 'headers', $headers );
91
+	$headers = apply_filters('give_receipt_headers', $emails->get_headers(), 0, array());
92
+	$emails->__set('headers', $headers);
93 93
 
94
-	$emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments );
94
+	$emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments);
95 95
 
96 96
 }
97 97
 
@@ -105,49 +105,49 @@  discard block
 block discarded – undo
105 105
  *
106 106
  * @return void
107 107
  */
108
-function give_admin_email_notice( $payment_id = 0, $payment_data = array() ) {
108
+function give_admin_email_notice($payment_id = 0, $payment_data = array()) {
109 109
 
110
-	$payment_id = absint( $payment_id );
110
+	$payment_id = absint($payment_id);
111 111
 
112
-	if ( empty( $payment_id ) ) {
112
+	if (empty($payment_id)) {
113 113
 		return;
114 114
 	}
115 115
 
116
-	if ( ! give_get_payment_by( 'id', $payment_id ) ) {
116
+	if ( ! give_get_payment_by('id', $payment_id)) {
117 117
 		return;
118 118
 	}
119 119
 
120
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
121
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data );
120
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
121
+	$from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data);
122 122
 
123
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
124
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data );
123
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
124
+	$from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data);
125 125
 
126
-	$subject = give_get_option( 'donation_notification_subject', sprintf( __( 'New Donation - Payment #%1$s', 'give' ), $payment_id ) );
127
-	$subject = apply_filters( 'give_admin_donation_notification_subject', wp_strip_all_tags( $subject ), $payment_id );
128
-	$subject = give_do_email_tags( $subject, $payment_id );
126
+	$subject = give_get_option('donation_notification_subject', sprintf(__('New Donation - Payment #%1$s', 'give'), $payment_id));
127
+	$subject = apply_filters('give_admin_donation_notification_subject', wp_strip_all_tags($subject), $payment_id);
128
+	$subject = give_do_email_tags($subject, $payment_id);
129 129
 
130
-	$headers = "From: " . stripslashes_deep( html_entity_decode( $from_name, ENT_COMPAT, 'UTF-8' ) ) . " <$from_email>\r\n";
131
-	$headers .= "Reply-To: " . $from_email . "\r\n";
130
+	$headers = "From: ".stripslashes_deep(html_entity_decode($from_name, ENT_COMPAT, 'UTF-8'))." <$from_email>\r\n";
131
+	$headers .= "Reply-To: ".$from_email."\r\n";
132 132
 	//$headers  .= "MIME-Version: 1.0\r\n";
133 133
 	$headers .= "Content-Type: text/html; charset=utf-8\r\n";
134
-	$headers = apply_filters( 'give_admin_donation_notification_headers', $headers, $payment_id, $payment_data );
134
+	$headers = apply_filters('give_admin_donation_notification_headers', $headers, $payment_id, $payment_data);
135 135
 
136
-	$attachments = apply_filters( 'give_admin_donation_notification_attachments', array(), $payment_id, $payment_data );
136
+	$attachments = apply_filters('give_admin_donation_notification_attachments', array(), $payment_id, $payment_data);
137 137
 
138
-	$message = give_get_donation_notification_body_content( $payment_id, $payment_data );
138
+	$message = give_get_donation_notification_body_content($payment_id, $payment_data);
139 139
 
140 140
 	$emails = Give()->emails;
141
-	$emails->__set( 'from_name', $from_name );
142
-	$emails->__set( 'from_email', $from_email );
143
-	$emails->__set( 'headers', $headers );
144
-	$emails->__set( 'heading', __( 'New Donation!', 'give' ) );
141
+	$emails->__set('from_name', $from_name);
142
+	$emails->__set('from_email', $from_email);
143
+	$emails->__set('headers', $headers);
144
+	$emails->__set('heading', __('New Donation!', 'give'));
145 145
 
146
-	$emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments );
146
+	$emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments);
147 147
 
148 148
 }
149 149
 
150
-add_action( 'give_admin_sale_notice', 'give_admin_email_notice', 10, 2 );
150
+add_action('give_admin_sale_notice', 'give_admin_email_notice', 10, 2);
151 151
 
152 152
 /**
153 153
  * Retrieves the emails for which admin notifications are sent to (these can be
@@ -160,10 +160,10 @@  discard block
 block discarded – undo
160 160
 function give_get_admin_notice_emails() {
161 161
 	global $give_options;
162 162
 
163
-	$emails = isset( $give_options['admin_notice_emails'] ) && strlen( trim( $give_options['admin_notice_emails'] ) ) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo( 'admin_email' );
164
-	$emails = array_map( 'trim', explode( "\n", $emails ) );
163
+	$emails = isset($give_options['admin_notice_emails']) && strlen(trim($give_options['admin_notice_emails'])) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo('admin_email');
164
+	$emails = array_map('trim', explode("\n", $emails));
165 165
 
166
-	return apply_filters( 'give_admin_notice_emails', $emails );
166
+	return apply_filters('give_admin_notice_emails', $emails);
167 167
 }
168 168
 
169 169
 /**
@@ -175,11 +175,11 @@  discard block
 block discarded – undo
175 175
  *
176 176
  * @return mixed
177 177
  */
178
-function give_admin_notices_disabled( $payment_id = 0 ) {
178
+function give_admin_notices_disabled($payment_id = 0) {
179 179
 	global $give_options;
180
-	$retval = isset( $give_options['disable_admin_notices'] );
180
+	$retval = isset($give_options['disable_admin_notices']);
181 181
 
182
-	return apply_filters( 'give_admin_notices_disabled', $retval, $payment_id );
182
+	return apply_filters('give_admin_notices_disabled', $retval, $payment_id);
183 183
 }
184 184
 
185 185
 /**
@@ -193,16 +193,16 @@  discard block
 block discarded – undo
193 193
 function give_get_default_donation_notification_email() {
194 194
 	global $give_options;
195 195
 
196
-	$default_email_body = __( 'Hi there,', 'give' ) . "\n\n" . __( 'This email is to inform you that a new donation has been made on your website: ', 'give' ) . '<a href="' . get_bloginfo( 'url' ) . '" target="_blank">' . get_bloginfo( 'url' ) . '</a>' . ".\n\n";
197
-	$default_email_body .= '<strong>' . __( 'Donor: ', 'give' ) . '</strong> ' . ' {name}' . "\n";
198
-	$default_email_body .= '<strong>' . __( 'Donation: ', 'give' ) . '</strong> ' . ' {donation}' . "\n";
199
-	$default_email_body .= '<strong>' . __( 'Amount: ', 'give' ) . '</strong> ' . ' {price}' . "\n";
200
-	$default_email_body .= '<strong>' . __( 'Payment Method: ', 'give' ) . '</strong> ' . ' {payment_method}' . "\n\n";
201
-	$default_email_body .= __( 'Thank you,', 'give' ) . "\n\n" . '{sitename}';
196
+	$default_email_body = __('Hi there,', 'give')."\n\n".__('This email is to inform you that a new donation has been made on your website: ', 'give').'<a href="'.get_bloginfo('url').'" target="_blank">'.get_bloginfo('url').'</a>'.".\n\n";
197
+	$default_email_body .= '<strong>'.__('Donor: ', 'give').'</strong> '.' {name}'."\n";
198
+	$default_email_body .= '<strong>'.__('Donation: ', 'give').'</strong> '.' {donation}'."\n";
199
+	$default_email_body .= '<strong>'.__('Amount: ', 'give').'</strong> '.' {price}'."\n";
200
+	$default_email_body .= '<strong>'.__('Payment Method: ', 'give').'</strong> '.' {payment_method}'."\n\n";
201
+	$default_email_body .= __('Thank you,', 'give')."\n\n".'{sitename}';
202 202
 
203
-	$message = ( isset( $give_options['donation_notification'] ) && ! empty( $give_options['donation_notification'] ) ) ? $give_options['donation_notification'] : $default_email_body;
203
+	$message = (isset($give_options['donation_notification']) && ! empty($give_options['donation_notification'])) ? $give_options['donation_notification'] : $default_email_body;
204 204
 
205
-	return apply_filters( 'give_default_donation_notification_email', $message );
205
+	return apply_filters('give_default_donation_notification_email', $message);
206 206
 }
207 207
 
208 208
 
@@ -217,24 +217,24 @@  discard block
 block discarded – undo
217 217
 function give_get_default_donation_receipt_email() {
218 218
 	global $give_options;
219 219
 
220
-	$default_email_body = __( 'Dear', 'give' ) . " {name},\n\n";
221
-	$default_email_body .= __( 'Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give' ) . "\n\n";
222
-	$default_email_body .= '<strong>' . __( 'Donor', 'give' ) . ':</strong> ' . '{fullname}' . "\n";
223
-	$default_email_body .= '<strong>' . __( 'Donation', 'give' ) . ':</strong> ' . '{donation}' . "\n";
224
-	$default_email_body .= '<strong>' . __( 'Donation Date', 'give' ) . ':</strong> ' . '{date}' . "\n";
225
-	$default_email_body .= '<strong>' . __( 'Amount', 'give' ) . ':</strong> ' . '{price}' . "\n";
226
-	$default_email_body .= '<strong>' . __( 'Payment Method', 'give' ) . ':</strong> ' . '{payment_method}' . "\n";
227
-	$default_email_body .= '<strong>' . __( 'Payment ID', 'give' ) . ':</strong> ' . '{payment_id}' . "\n";
228
-	$default_email_body .= '<strong>' . __( 'Receipt ID', 'give' ) . ':</strong> ' . '{receipt_id}' . "\n\n";
229
-	$default_email_body .= '{receipt_link}' . "\n\n";
220
+	$default_email_body = __('Dear', 'give')." {name},\n\n";
221
+	$default_email_body .= __('Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give')."\n\n";
222
+	$default_email_body .= '<strong>'.__('Donor', 'give').':</strong> '.'{fullname}'."\n";
223
+	$default_email_body .= '<strong>'.__('Donation', 'give').':</strong> '.'{donation}'."\n";
224
+	$default_email_body .= '<strong>'.__('Donation Date', 'give').':</strong> '.'{date}'."\n";
225
+	$default_email_body .= '<strong>'.__('Amount', 'give').':</strong> '.'{price}'."\n";
226
+	$default_email_body .= '<strong>'.__('Payment Method', 'give').':</strong> '.'{payment_method}'."\n";
227
+	$default_email_body .= '<strong>'.__('Payment ID', 'give').':</strong> '.'{payment_id}'."\n";
228
+	$default_email_body .= '<strong>'.__('Receipt ID', 'give').':</strong> '.'{receipt_id}'."\n\n";
229
+	$default_email_body .= '{receipt_link}'."\n\n";
230 230
 
231 231
 	$default_email_body .= "\n\n";
232
-	$default_email_body .= __( 'Sincerely,', 'give' );
233
-	$default_email_body .= "\n" . '{sitename}' . "\n";
232
+	$default_email_body .= __('Sincerely,', 'give');
233
+	$default_email_body .= "\n".'{sitename}'."\n";
234 234
 
235
-	$message = ( isset( $give_options['donation_receipt'] ) && ! empty( $give_options['donation_receipt'] ) ) ? $give_options['donation_receipt'] : $default_email_body;
235
+	$message = (isset($give_options['donation_receipt']) && ! empty($give_options['donation_receipt'])) ? $give_options['donation_receipt'] : $default_email_body;
236 236
 
237
-	return apply_filters( 'give_default_donation_receipt_email', $message );
237
+	return apply_filters('give_default_donation_receipt_email', $message);
238 238
 }
239 239
 
240 240
 /**
@@ -246,19 +246,19 @@  discard block
 block discarded – undo
246 246
  *
247 247
  * @return array $email_names
248 248
  */
249
-function give_get_email_names( $user_info ) {
249
+function give_get_email_names($user_info) {
250 250
 	$email_names = array();
251
-	$user_info   = maybe_unserialize( $user_info );
251
+	$user_info   = maybe_unserialize($user_info);
252 252
 
253 253
 	$email_names['fullname'] = '';
254
-	if ( isset( $user_info['id'] ) && $user_info['id'] > 0 && isset( $user_info['first_name'] ) ) {
255
-		$user_data               = get_userdata( $user_info['id'] );
254
+	if (isset($user_info['id']) && $user_info['id'] > 0 && isset($user_info['first_name'])) {
255
+		$user_data               = get_userdata($user_info['id']);
256 256
 		$email_names['name']     = $user_info['first_name'];
257
-		$email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name'];
257
+		$email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name'];
258 258
 		$email_names['username'] = $user_data->user_login;
259
-	} elseif ( isset( $user_info['first_name'] ) ) {
259
+	} elseif (isset($user_info['first_name'])) {
260 260
 		$email_names['name']     = $user_info['first_name'];
261
-		$email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name'];
261
+		$email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name'];
262 262
 		$email_names['username'] = $user_info['first_name'];
263 263
 	} else {
264 264
 		$email_names['name']     = $user_info['email'];
Please login to merge, or discard this patch.
includes/admin/system-info.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
  *
50 50
  * @since: 1.4
51 51
  *
52
- * @return bool
52
+ * @return boolean|null
53 53
  */
54 54
 function give_allow_sessions_for_sysinfo() {
55 55
 	if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) {
Please login to merge, or discard this patch.
Spacing   +145 added lines, -145 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  */
12 12
 
13 13
 // Exit if accessed directly
14
-if ( ! defined( 'ABSPATH' ) ) {
14
+if ( ! defined('ABSPATH')) {
15 15
 	exit;
16 16
 }
17 17
 
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
  */
25 25
 function give_system_info_callback() {
26 26
 
27
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
27
+	if ( ! current_user_can('manage_give_settings')) {
28 28
 		return;
29 29
 	}
30 30
 	?>
31 31
 	<textarea readonly="readonly" onclick="this.focus(); this.select()" id="system-info-textarea" name="give-sysinfo" title="To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac)."><?php echo give_tools_sysinfo_get(); ?></textarea>
32 32
 	<p class="submit">
33 33
 		<input type="hidden" name="give-action" value="download_sysinfo"/>
34
-		<?php submit_button( 'Download System Info File', 'secondary', 'give-download-sysinfo', false ); ?>
34
+		<?php submit_button('Download System Info File', 'secondary', 'give-download-sysinfo', false); ?>
35 35
 	</p>
36 36
 	<style>
37 37
 		.give_forms_page_give-settings .give-submit-wrap {
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
  * @return bool
53 53
  */
54 54
 function give_allow_sessions_for_sysinfo() {
55
-	if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) {
55
+	if (is_admin() && (isset($_GET['page']) && isset($_GET['tab'])) && ($_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings')) {
56 56
 		return true;
57 57
 	}
58 58
 }
59 59
 
60
-add_filter( 'give_start_session', 'give_allow_sessions_for_sysinfo' );
60
+add_filter('give_start_session', 'give_allow_sessions_for_sysinfo');
61 61
 
62 62
 
63 63
 /**
@@ -72,63 +72,63 @@  discard block
 block discarded – undo
72 72
 function give_tools_sysinfo_get() {
73 73
 	global $wpdb, $give_options;
74 74
 
75
-	if ( ! class_exists( 'Browser' ) ) {
76
-		require_once GIVE_PLUGIN_DIR . 'includes/libraries/browser.php';
75
+	if ( ! class_exists('Browser')) {
76
+		require_once GIVE_PLUGIN_DIR.'includes/libraries/browser.php';
77 77
 	}
78 78
 
79 79
 	$browser = new Browser();
80 80
 
81 81
 	// Get theme info
82
-	if ( get_bloginfo( 'version' ) < '3.4' ) {
83
-		$theme_data = wp_get_theme( get_stylesheet_directory() . '/style.css' );
84
-		$theme      = $theme_data['Name'] . ' ' . $theme_data['Version'];
82
+	if (get_bloginfo('version') < '3.4') {
83
+		$theme_data = wp_get_theme(get_stylesheet_directory().'/style.css');
84
+		$theme      = $theme_data['Name'].' '.$theme_data['Version'];
85 85
 	} else {
86 86
 		$theme_data = wp_get_theme();
87
-		$theme      = $theme_data->Name . ' ' . $theme_data->Version;
87
+		$theme      = $theme_data->Name.' '.$theme_data->Version;
88 88
 	}
89 89
 
90 90
 	// Try to identify the hosting provider
91 91
 	$host = give_get_host();
92 92
 
93
-	$return = '### Begin System Info ###' . "\n\n";
93
+	$return = '### Begin System Info ###'."\n\n";
94 94
 
95 95
 	// Start with the basics...
96
-	$return .= '-- Site Info' . "\n\n";
97
-	$return .= 'Site URL:                 ' . site_url() . "\n";
98
-	$return .= 'Home URL:                 ' . home_url() . "\n";
99
-	$return .= 'Multisite:                ' . ( is_multisite() ? 'Yes' : 'No' ) . "\n";
96
+	$return .= '-- Site Info'."\n\n";
97
+	$return .= 'Site URL:                 '.site_url()."\n";
98
+	$return .= 'Home URL:                 '.home_url()."\n";
99
+	$return .= 'Multisite:                '.(is_multisite() ? 'Yes' : 'No')."\n";
100 100
 
101
-	$return = apply_filters( 'give_sysinfo_after_site_info', $return );
101
+	$return = apply_filters('give_sysinfo_after_site_info', $return);
102 102
 
103 103
 	// Can we determine the site's host?
104
-	if ( $host ) {
105
-		$return .= "\n" . '-- Hosting Provider' . "\n\n";
106
-		$return .= 'Host:                     ' . $host . "\n";
104
+	if ($host) {
105
+		$return .= "\n".'-- Hosting Provider'."\n\n";
106
+		$return .= 'Host:                     '.$host."\n";
107 107
 
108
-		$return = apply_filters( 'give_sysinfo_after_host_info', $return );
108
+		$return = apply_filters('give_sysinfo_after_host_info', $return);
109 109
 	}
110 110
 
111 111
 	// The local users' browser information, handled by the Browser class
112
-	$return .= "\n" . '-- User Browser' . "\n\n";
112
+	$return .= "\n".'-- User Browser'."\n\n";
113 113
 	$return .= $browser;
114 114
 
115
-	$return = apply_filters( 'give_sysinfo_after_user_browser', $return );
115
+	$return = apply_filters('give_sysinfo_after_user_browser', $return);
116 116
 
117 117
 	// WordPress configuration
118
-	$return .= "\n" . '-- WordPress Configuration' . "\n\n";
119
-	$return .= 'Version:                  ' . get_bloginfo( 'version' ) . "\n";
120
-	$return .= 'Language:                 ' . ( defined( 'WPLANG' ) && WPLANG ? WPLANG : 'en_US' ) . "\n";
121
-	$return .= 'Permalink Structure:      ' . ( get_option( 'permalink_structure' ) ? get_option( 'permalink_structure' ) : 'Default' ) . "\n";
122
-	$return .= 'Active Theme:             ' . $theme . "\n";
123
-	$return .= 'Show On Front:            ' . get_option( 'show_on_front' ) . "\n";
118
+	$return .= "\n".'-- WordPress Configuration'."\n\n";
119
+	$return .= 'Version:                  '.get_bloginfo('version')."\n";
120
+	$return .= 'Language:                 '.(defined('WPLANG') && WPLANG ? WPLANG : 'en_US')."\n";
121
+	$return .= 'Permalink Structure:      '.(get_option('permalink_structure') ? get_option('permalink_structure') : 'Default')."\n";
122
+	$return .= 'Active Theme:             '.$theme."\n";
123
+	$return .= 'Show On Front:            '.get_option('show_on_front')."\n";
124 124
 
125 125
 	// Only show page specs if frontpage is set to 'page'
126
-	if ( get_option( 'show_on_front' ) == 'page' ) {
127
-		$front_page_id = get_option( 'page_on_front' );
128
-		$blog_page_id  = get_option( 'page_for_posts' );
126
+	if (get_option('show_on_front') == 'page') {
127
+		$front_page_id = get_option('page_on_front');
128
+		$blog_page_id  = get_option('page_for_posts');
129 129
 
130
-		$return .= 'Page On Front:            ' . ( $front_page_id != 0 ? get_the_title( $front_page_id ) . ' (#' . $front_page_id . ')' : 'Unset' ) . "\n";
131
-		$return .= 'Page For Posts:           ' . ( $blog_page_id != 0 ? get_the_title( $blog_page_id ) . ' (#' . $blog_page_id . ')' : 'Unset' ) . "\n";
130
+		$return .= 'Page On Front:            '.($front_page_id != 0 ? get_the_title($front_page_id).' (#'.$front_page_id.')' : 'Unset')."\n";
131
+		$return .= 'Page For Posts:           '.($blog_page_id != 0 ? get_the_title($blog_page_id).' (#'.$blog_page_id.')' : 'Unset')."\n";
132 132
 	}
133 133
 
134 134
 	// Make sure wp_remote_post() is working
@@ -137,205 +137,205 @@  discard block
 block discarded – undo
137 137
 	$params = array(
138 138
 		'sslverify'  => false,
139 139
 		'timeout'    => 60,
140
-		'user-agent' => 'Give/' . GIVE_VERSION,
140
+		'user-agent' => 'Give/'.GIVE_VERSION,
141 141
 		'body'       => $request
142 142
 	);
143 143
 
144
-	$response = wp_remote_post( 'https://www.paypal.com/cgi-bin/webscr', $params );
144
+	$response = wp_remote_post('https://www.paypal.com/cgi-bin/webscr', $params);
145 145
 
146
-	if ( ! is_wp_error( $response ) && $response['response']['code'] >= 200 && $response['response']['code'] < 300 ) {
146
+	if ( ! is_wp_error($response) && $response['response']['code'] >= 200 && $response['response']['code'] < 300) {
147 147
 		$WP_REMOTE_POST = 'wp_remote_post() works';
148 148
 	} else {
149 149
 		$WP_REMOTE_POST = 'wp_remote_post() does not work';
150 150
 	}
151 151
 
152
-	$return .= 'Remote Post:              ' . $WP_REMOTE_POST . "\n";
153
-	$return .= 'Table Prefix:             ' . 'Length: ' . strlen( $wpdb->prefix ) . '   Status: ' . ( strlen( $wpdb->prefix ) > 16 ? 'ERROR: Too long' : 'Acceptable' ) . "\n";
154
-	$return .= 'Admin AJAX:               ' . ( give_test_ajax_works() ? 'Accessible' : 'Inaccessible' ) . "\n";
155
-	$return .= 'WP_DEBUG:                 ' . ( defined( 'WP_DEBUG' ) ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n";
156
-	$return .= 'Memory Limit:             ' . WP_MEMORY_LIMIT . "\n";
157
-	$return .= 'Registered Post Stati:    ' . implode( ', ', get_post_stati() ) . "\n";
152
+	$return .= 'Remote Post:              '.$WP_REMOTE_POST."\n";
153
+	$return .= 'Table Prefix:             '.'Length: '.strlen($wpdb->prefix).'   Status: '.(strlen($wpdb->prefix) > 16 ? 'ERROR: Too long' : 'Acceptable')."\n";
154
+	$return .= 'Admin AJAX:               '.(give_test_ajax_works() ? 'Accessible' : 'Inaccessible')."\n";
155
+	$return .= 'WP_DEBUG:                 '.(defined('WP_DEBUG') ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set')."\n";
156
+	$return .= 'Memory Limit:             '.WP_MEMORY_LIMIT."\n";
157
+	$return .= 'Registered Post Stati:    '.implode(', ', get_post_stati())."\n";
158 158
 
159
-	$return = apply_filters( 'give_sysinfo_after_wordpress_config', $return );
159
+	$return = apply_filters('give_sysinfo_after_wordpress_config', $return);
160 160
 
161 161
 	// GIVE configuration
162
-	$return .= "\n" . '-- Give Configuration' . "\n\n";
163
-	$return .= 'Version:                  ' . GIVE_VERSION . "\n";
164
-	$return .= 'Upgraded From:            ' . get_option( 'give_version_upgraded_from', 'None' ) . "\n";
165
-	$return .= 'Test Mode:                ' . ( give_is_test_mode() ? "Enabled\n" : "Disabled\n" );
166
-	$return .= 'Currency Code:            ' . give_get_currency() . "\n";
167
-	$return .= 'Currency Position:        ' . give_get_option( 'currency_position', 'before' ) . "\n";
168
-	$return .= 'Decimal Separator:        ' . give_get_option( 'decimal_separator', '.' ) . "\n";
169
-	$return .= 'Thousands Separator:      ' . give_get_option( 'thousands_separator', ',' ) . "\n";
162
+	$return .= "\n".'-- Give Configuration'."\n\n";
163
+	$return .= 'Version:                  '.GIVE_VERSION."\n";
164
+	$return .= 'Upgraded From:            '.get_option('give_version_upgraded_from', 'None')."\n";
165
+	$return .= 'Test Mode:                '.(give_is_test_mode() ? "Enabled\n" : "Disabled\n");
166
+	$return .= 'Currency Code:            '.give_get_currency()."\n";
167
+	$return .= 'Currency Position:        '.give_get_option('currency_position', 'before')."\n";
168
+	$return .= 'Decimal Separator:        '.give_get_option('decimal_separator', '.')."\n";
169
+	$return .= 'Thousands Separator:      '.give_get_option('thousands_separator', ',')."\n";
170 170
 
171
-	$return = apply_filters( 'give_sysinfo_after_give_config', $return );
171
+	$return = apply_filters('give_sysinfo_after_give_config', $return);
172 172
 
173 173
 	// GIVE pages
174
-	$return .= "\n" . '-- Give Page Configuration' . "\n\n";
175
-	$return .= 'Success Page:             ' . ( ! empty( $give_options['success_page'] ) ? get_permalink( $give_options['success_page'] ) . "\n" : "Unset\n" );
176
-	$return .= 'Failure Page:             ' . ( ! empty( $give_options['failure_page'] ) ? get_permalink( $give_options['failure_page'] ) . "\n" : "Unset\n" );
177
-	$return .= 'Give Forms Slug:           ' . ( defined( 'GIVE_SLUG' ) ? '/' . GIVE_SLUG . "\n" : "/donations\n" );
174
+	$return .= "\n".'-- Give Page Configuration'."\n\n";
175
+	$return .= 'Success Page:             '.( ! empty($give_options['success_page']) ? get_permalink($give_options['success_page'])."\n" : "Unset\n");
176
+	$return .= 'Failure Page:             '.( ! empty($give_options['failure_page']) ? get_permalink($give_options['failure_page'])."\n" : "Unset\n");
177
+	$return .= 'Give Forms Slug:           '.(defined('GIVE_SLUG') ? '/'.GIVE_SLUG."\n" : "/donations\n");
178 178
 
179
-	$return = apply_filters( 'give_sysinfo_after_give_pages', $return );
179
+	$return = apply_filters('give_sysinfo_after_give_pages', $return);
180 180
 
181 181
 	// GIVE gateways
182
-	$return .= "\n" . '-- Give Gateway Configuration' . "\n\n";
182
+	$return .= "\n".'-- Give Gateway Configuration'."\n\n";
183 183
 
184 184
 	$active_gateways = give_get_enabled_payment_gateways();
185
-	if ( $active_gateways ) {
186
-		$default_gateway_is_active = give_is_gateway_active( give_get_default_gateway( null ) );
187
-		if ( $default_gateway_is_active ) {
188
-			$default_gateway = give_get_default_gateway( null );
189
-			$default_gateway = $active_gateways[ $default_gateway ]['admin_label'];
185
+	if ($active_gateways) {
186
+		$default_gateway_is_active = give_is_gateway_active(give_get_default_gateway(null));
187
+		if ($default_gateway_is_active) {
188
+			$default_gateway = give_get_default_gateway(null);
189
+			$default_gateway = $active_gateways[$default_gateway]['admin_label'];
190 190
 		} else {
191 191
 			$default_gateway = 'Test Payment';
192 192
 		}
193 193
 
194 194
 		$gateways = array();
195
-		foreach ( $active_gateways as $gateway ) {
195
+		foreach ($active_gateways as $gateway) {
196 196
 			$gateways[] = $gateway['admin_label'];
197 197
 		}
198 198
 
199
-		$return .= 'Enabled Gateways:         ' . implode( ', ', $gateways ) . "\n";
200
-		$return .= 'Default Gateway:          ' . $default_gateway . "\n";
199
+		$return .= 'Enabled Gateways:         '.implode(', ', $gateways)."\n";
200
+		$return .= 'Default Gateway:          '.$default_gateway."\n";
201 201
 	} else {
202
-		$return .= 'Enabled Gateways:         None' . "\n";
202
+		$return .= 'Enabled Gateways:         None'."\n";
203 203
 	}
204 204
 
205
-	$return = apply_filters( 'give_sysinfo_after_give_gateways', $return );
205
+	$return = apply_filters('give_sysinfo_after_give_gateways', $return);
206 206
 
207 207
 	// GIVE Templates
208
-	$dir = get_stylesheet_directory() . '/give_templates/*';
209
-	if ( is_dir( $dir ) && ( count( glob( "$dir/*" ) ) !== 0 ) ) {
210
-		$return .= "\n" . '-- Give Template Overrides' . "\n\n";
208
+	$dir = get_stylesheet_directory().'/give_templates/*';
209
+	if (is_dir($dir) && (count(glob("$dir/*")) !== 0)) {
210
+		$return .= "\n".'-- Give Template Overrides'."\n\n";
211 211
 
212
-		foreach ( glob( $dir ) as $file ) {
213
-			$return .= 'Filename:                 ' . basename( $file ) . "\n";
212
+		foreach (glob($dir) as $file) {
213
+			$return .= 'Filename:                 '.basename($file)."\n";
214 214
 		}
215 215
 
216
-		$return = apply_filters( 'give_sysinfo_after_give_templates', $return );
216
+		$return = apply_filters('give_sysinfo_after_give_templates', $return);
217 217
 	}
218 218
 
219 219
 	// Must-use plugins
220 220
 	$muplugins = get_mu_plugins();
221
-	if ( count( $muplugins > 0 ) ) {
222
-		$return .= "\n" . '-- Must-Use Plugins' . "\n\n";
221
+	if (count($muplugins > 0)) {
222
+		$return .= "\n".'-- Must-Use Plugins'."\n\n";
223 223
 
224
-		foreach ( $muplugins as $plugin => $plugin_data ) {
225
-			$return .= $plugin_data['Name'] . ': ' . $plugin_data['Version'] . "\n";
224
+		foreach ($muplugins as $plugin => $plugin_data) {
225
+			$return .= $plugin_data['Name'].': '.$plugin_data['Version']."\n";
226 226
 		}
227 227
 
228
-		$return = apply_filters( 'give_sysinfo_after_wordpress_mu_plugins', $return );
228
+		$return = apply_filters('give_sysinfo_after_wordpress_mu_plugins', $return);
229 229
 	}
230 230
 
231 231
 	// WordPress active plugins
232
-	$return .= "\n" . '-- WordPress Active Plugins' . "\n\n";
232
+	$return .= "\n".'-- WordPress Active Plugins'."\n\n";
233 233
 
234 234
 	$plugins        = get_plugins();
235
-	$active_plugins = get_option( 'active_plugins', array() );
235
+	$active_plugins = get_option('active_plugins', array());
236 236
 
237
-	foreach ( $plugins as $plugin_path => $plugin ) {
238
-		if ( ! in_array( $plugin_path, $active_plugins ) ) {
237
+	foreach ($plugins as $plugin_path => $plugin) {
238
+		if ( ! in_array($plugin_path, $active_plugins)) {
239 239
 			continue;
240 240
 		}
241 241
 
242
-		$return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n";
242
+		$return .= $plugin['Name'].': '.$plugin['Version']."\n";
243 243
 	}
244 244
 
245
-	$return = apply_filters( 'give_sysinfo_after_wordpress_plugins', $return );
245
+	$return = apply_filters('give_sysinfo_after_wordpress_plugins', $return);
246 246
 
247 247
 	// WordPress inactive plugins
248
-	$return .= "\n" . '-- WordPress Inactive Plugins' . "\n\n";
248
+	$return .= "\n".'-- WordPress Inactive Plugins'."\n\n";
249 249
 
250
-	foreach ( $plugins as $plugin_path => $plugin ) {
251
-		if ( in_array( $plugin_path, $active_plugins ) ) {
250
+	foreach ($plugins as $plugin_path => $plugin) {
251
+		if (in_array($plugin_path, $active_plugins)) {
252 252
 			continue;
253 253
 		}
254 254
 
255
-		$return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n";
255
+		$return .= $plugin['Name'].': '.$plugin['Version']."\n";
256 256
 	}
257 257
 
258
-	$return = apply_filters( 'give_sysinfo_after_wordpress_plugins_inactive', $return );
258
+	$return = apply_filters('give_sysinfo_after_wordpress_plugins_inactive', $return);
259 259
 
260
-	if ( is_multisite() ) {
260
+	if (is_multisite()) {
261 261
 		// WordPress Multisite active plugins
262
-		$return .= "\n" . '-- Network Active Plugins' . "\n\n";
262
+		$return .= "\n".'-- Network Active Plugins'."\n\n";
263 263
 
264 264
 		$plugins        = wp_get_active_network_plugins();
265
-		$active_plugins = get_site_option( 'active_sitewide_plugins', array() );
265
+		$active_plugins = get_site_option('active_sitewide_plugins', array());
266 266
 
267
-		foreach ( $plugins as $plugin_path ) {
268
-			$plugin_base = plugin_basename( $plugin_path );
267
+		foreach ($plugins as $plugin_path) {
268
+			$plugin_base = plugin_basename($plugin_path);
269 269
 
270
-			if ( ! array_key_exists( $plugin_base, $active_plugins ) ) {
270
+			if ( ! array_key_exists($plugin_base, $active_plugins)) {
271 271
 				continue;
272 272
 			}
273 273
 
274
-			$plugin = get_plugin_data( $plugin_path );
275
-			$return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n";
274
+			$plugin = get_plugin_data($plugin_path);
275
+			$return .= $plugin['Name'].': '.$plugin['Version']."\n";
276 276
 		}
277 277
 
278
-		$return = apply_filters( 'give_sysinfo_after_wordpress_ms_plugins', $return );
278
+		$return = apply_filters('give_sysinfo_after_wordpress_ms_plugins', $return);
279 279
 	}
280 280
 
281 281
 	// Server configuration (really just versioning)
282
-	$return .= "\n" . '-- Webserver Configuration' . "\n\n";
283
-	$return .= 'PHP Version:              ' . PHP_VERSION . "\n";
284
-	$return .= 'MySQL Version:            ' . $wpdb->db_version() . "\n";
285
-	$return .= 'Webserver Info:           ' . $_SERVER['SERVER_SOFTWARE'] . "\n";
282
+	$return .= "\n".'-- Webserver Configuration'."\n\n";
283
+	$return .= 'PHP Version:              '.PHP_VERSION."\n";
284
+	$return .= 'MySQL Version:            '.$wpdb->db_version()."\n";
285
+	$return .= 'Webserver Info:           '.$_SERVER['SERVER_SOFTWARE']."\n";
286 286
 
287
-	$return = apply_filters( 'give_sysinfo_after_webserver_config', $return );
287
+	$return = apply_filters('give_sysinfo_after_webserver_config', $return);
288 288
 
289 289
 	// PHP configs... now we're getting to the important stuff
290
-	$return .= "\n" . '-- PHP Configuration' . "\n\n";
291
-	$return .= 'Safe Mode:                ' . ( ini_get( 'safe_mode' ) ? 'Enabled' : 'Disabled' . "\n" );
292
-	$return .= 'Memory Limit:             ' . ini_get( 'memory_limit' ) . "\n";
293
-	$return .= 'Upload Max Size:          ' . ini_get( 'upload_max_filesize' ) . "\n";
294
-	$return .= 'Post Max Size:            ' . ini_get( 'post_max_size' ) . "\n";
295
-	$return .= 'Upload Max Filesize:      ' . ini_get( 'upload_max_filesize' ) . "\n";
296
-	$return .= 'Time Limit:               ' . ini_get( 'max_execution_time' ) . "\n";
297
-	$return .= 'Max Input Vars:           ' . ini_get( 'max_input_vars' ) . "\n";
298
-	$return .= 'URL-aware fopen:          ' . ( ini_get( 'allow_url_fopen' ) ? 'On (' . ini_get( 'allow_url_fopen' ) . ')' : 'N/A' ) . "\n";
299
-	$return .= 'Display Errors:           ' . ( ini_get( 'display_errors' ) ? 'On (' . ini_get( 'display_errors' ) . ')' : 'N/A' ) . "\n";
300
-
301
-	$return = apply_filters( 'give_sysinfo_after_php_config', $return );
290
+	$return .= "\n".'-- PHP Configuration'."\n\n";
291
+	$return .= 'Safe Mode:                '.(ini_get('safe_mode') ? 'Enabled' : 'Disabled'."\n");
292
+	$return .= 'Memory Limit:             '.ini_get('memory_limit')."\n";
293
+	$return .= 'Upload Max Size:          '.ini_get('upload_max_filesize')."\n";
294
+	$return .= 'Post Max Size:            '.ini_get('post_max_size')."\n";
295
+	$return .= 'Upload Max Filesize:      '.ini_get('upload_max_filesize')."\n";
296
+	$return .= 'Time Limit:               '.ini_get('max_execution_time')."\n";
297
+	$return .= 'Max Input Vars:           '.ini_get('max_input_vars')."\n";
298
+	$return .= 'URL-aware fopen:          '.(ini_get('allow_url_fopen') ? 'On ('.ini_get('allow_url_fopen').')' : 'N/A')."\n";
299
+	$return .= 'Display Errors:           '.(ini_get('display_errors') ? 'On ('.ini_get('display_errors').')' : 'N/A')."\n";
300
+
301
+	$return = apply_filters('give_sysinfo_after_php_config', $return);
302 302
 
303 303
 	// PHP extensions and such
304
-	$return .= "\n" . '-- PHP Extensions' . "\n\n";
305
-	$return .= 'cURL:                     ' . ( function_exists( 'curl_init' ) ? 'Supported' : 'Not Supported' ) . "\n";
304
+	$return .= "\n".'-- PHP Extensions'."\n\n";
305
+	$return .= 'cURL:                     '.(function_exists('curl_init') ? 'Supported' : 'Not Supported')."\n";
306 306
 
307 307
 	//cURL version
308
-	if ( function_exists( 'curl_init' ) && function_exists( 'curl_version' ) ) {
308
+	if (function_exists('curl_init') && function_exists('curl_version')) {
309 309
 		$curl_values = curl_version();
310
-		$return .= 'cURL Version:             ' . $curl_values["version"] . "\n";
310
+		$return .= 'cURL Version:             '.$curl_values["version"]."\n";
311 311
 	}
312
-	$return .= 'zlib:                     ' . ( function_exists( 'gzcompress' ) ? 'Supported' : 'Not Supported' ) . "\n";
313
-	$return .= 'GD:                       ' . ( ( extension_loaded( 'gd' ) && function_exists( 'gd_info' ) ) ? 'Supported' : 'Not Supported' ) . "\n";
314
-	$return .= 'fsockopen:                ' . ( function_exists( 'fsockopen' ) ? 'Supported' : 'Not Supported' ) . "\n";
315
-	$return .= 'SOAP Client:              ' . ( class_exists( 'SoapClient' ) ? 'Installed' : 'Not Installed' ) . "\n";
316
-	$return .= 'Suhosin:                  ' . ( extension_loaded( 'suhosin' ) ? 'Installed' : 'Not Installed' ) . "\n";
317
-	$return .= 'DOM:                      ' . ( extension_loaded( 'dom' ) ? 'Installed' : 'Not Installed' ) . "\n";
318
-	$return .= 'MBString:                 ' . ( extension_loaded( 'mbstring' ) ? 'Installed' : 'Not Installed' ) . "\n";
312
+	$return .= 'zlib:                     '.(function_exists('gzcompress') ? 'Supported' : 'Not Supported')."\n";
313
+	$return .= 'GD:                       '.((extension_loaded('gd') && function_exists('gd_info')) ? 'Supported' : 'Not Supported')."\n";
314
+	$return .= 'fsockopen:                '.(function_exists('fsockopen') ? 'Supported' : 'Not Supported')."\n";
315
+	$return .= 'SOAP Client:              '.(class_exists('SoapClient') ? 'Installed' : 'Not Installed')."\n";
316
+	$return .= 'Suhosin:                  '.(extension_loaded('suhosin') ? 'Installed' : 'Not Installed')."\n";
317
+	$return .= 'DOM:                      '.(extension_loaded('dom') ? 'Installed' : 'Not Installed')."\n";
318
+	$return .= 'MBString:                 '.(extension_loaded('mbstring') ? 'Installed' : 'Not Installed')."\n";
319 319
 
320
-	$return = apply_filters( 'give_sysinfo_after_php_ext', $return );
320
+	$return = apply_filters('give_sysinfo_after_php_ext', $return);
321 321
 
322 322
 	// Session stuff
323
-	$return .= "\n" . '-- Session Configuration' . "\n\n";
324
-	$return .= 'Give Use Sessions:        ' . ( defined( 'GIVE_USE_PHP_SESSIONS' ) && GIVE_USE_PHP_SESSIONS ? 'Enforced' : ( Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled' ) ) . "\n";
325
-	$return .= 'Session:                  ' . ( isset( $_SESSION ) ? 'Enabled' : 'Disabled' ) . "\n";
323
+	$return .= "\n".'-- Session Configuration'."\n\n";
324
+	$return .= 'Give Use Sessions:        '.(defined('GIVE_USE_PHP_SESSIONS') && GIVE_USE_PHP_SESSIONS ? 'Enforced' : (Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled'))."\n";
325
+	$return .= 'Session:                  '.(isset($_SESSION) ? 'Enabled' : 'Disabled')."\n";
326 326
 
327 327
 	// The rest of this is only relevant is session is enabled
328
-	if ( isset( $_SESSION ) ) {
329
-		$return .= 'Session Name:             ' . esc_html( ini_get( 'session.name' ) ) . "\n";
330
-		$return .= 'Cookie Path:              ' . esc_html( ini_get( 'session.cookie_path' ) ) . "\n";
331
-		$return .= 'Save Path:                ' . esc_html( ini_get( 'session.save_path' ) ) . "\n";
332
-		$return .= 'Use Cookies:              ' . ( ini_get( 'session.use_cookies' ) ? 'On' : 'Off' ) . "\n";
333
-		$return .= 'Use Only Cookies:         ' . ( ini_get( 'session.use_only_cookies' ) ? 'On' : 'Off' ) . "\n";
328
+	if (isset($_SESSION)) {
329
+		$return .= 'Session Name:             '.esc_html(ini_get('session.name'))."\n";
330
+		$return .= 'Cookie Path:              '.esc_html(ini_get('session.cookie_path'))."\n";
331
+		$return .= 'Save Path:                '.esc_html(ini_get('session.save_path'))."\n";
332
+		$return .= 'Use Cookies:              '.(ini_get('session.use_cookies') ? 'On' : 'Off')."\n";
333
+		$return .= 'Use Only Cookies:         '.(ini_get('session.use_only_cookies') ? 'On' : 'Off')."\n";
334 334
 	}
335 335
 
336
-	$return = apply_filters( 'give_sysinfo_after_session_config', $return );
336
+	$return = apply_filters('give_sysinfo_after_session_config', $return);
337 337
 
338
-	$return .= "\n" . '### End System Info ###';
338
+	$return .= "\n".'### End System Info ###';
339 339
 
340 340
 	return $return;
341 341
 }
@@ -349,17 +349,17 @@  discard block
 block discarded – undo
349 349
  */
350 350
 function give_tools_sysinfo_download() {
351 351
 
352
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
352
+	if ( ! current_user_can('manage_give_settings')) {
353 353
 		return;
354 354
 	}
355 355
 
356 356
 	nocache_headers();
357 357
 
358
-	header( 'Content-Type: text/plain' );
359
-	header( 'Content-Disposition: attachment; filename="give-system-info.txt"' );
358
+	header('Content-Type: text/plain');
359
+	header('Content-Disposition: attachment; filename="give-system-info.txt"');
360 360
 
361
-	echo wp_strip_all_tags( $_POST['give-sysinfo'] );
361
+	echo wp_strip_all_tags($_POST['give-sysinfo']);
362 362
 	give_die();
363 363
 }
364 364
 
365
-add_action( 'give_download_sysinfo', 'give_tools_sysinfo_download' );
366 365
\ No newline at end of file
366
+add_action('give_download_sysinfo', 'give_tools_sysinfo_download');
367 367
\ No newline at end of file
Please login to merge, or discard this patch.
includes/gateways/paypal-standard.php 1 patch
Spacing   +163 added lines, -163 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
 
43 43
 	// Collect payment data
44 44
 	$payment_data = array(
@@ -55,59 +55,59 @@  discard block
 block discarded – undo
55 55
 	);
56 56
 
57 57
 	// Record the pending payment
58
-	$payment = give_insert_payment( $payment_data );
58
+	$payment = give_insert_payment($payment_data);
59 59
 
60 60
 	// Check payment
61
-	if ( ! $payment ) {
61
+	if ( ! $payment) {
62 62
 		// Record the error
63
-		give_record_gateway_error( __( 'Payment Error', 'give' ), sprintf( __( 'Payment creation failed before sending buyer to PayPal. Payment data: %s', 'give' ), json_encode( $payment_data ) ), $payment );
63
+		give_record_gateway_error(__('Payment Error', 'give'), sprintf(__('Payment creation failed before sending buyer to PayPal. Payment data: %s', 'give'), json_encode($payment_data)), $payment);
64 64
 		// Problems? send back
65
-		give_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['give-gateway'] );
65
+		give_send_back_to_checkout('?payment-mode='.$purchase_data['post_data']['give-gateway']);
66 66
 	} else {
67 67
 		// Only send to PayPal if the pending payment is created successfully
68
-		$listener_url = add_query_arg( 'give-listener', 'IPN', home_url( 'index.php' ) );
68
+		$listener_url = add_query_arg('give-listener', 'IPN', home_url('index.php'));
69 69
 
70 70
 		// Get the success url
71
-		$return_url = add_query_arg( array(
71
+		$return_url = add_query_arg(array(
72 72
 			'payment-confirmation' => 'paypal',
73 73
 			'payment-id'           => $payment
74 74
 
75
-		), get_permalink( give_get_option( 'success_page' ) ) );
75
+		), get_permalink(give_get_option('success_page')));
76 76
 
77 77
 		// Get the PayPal redirect uri
78
-		$paypal_redirect = trailingslashit( give_get_paypal_redirect() ) . '?';
78
+		$paypal_redirect = trailingslashit(give_get_paypal_redirect()).'?';
79 79
 
80 80
 		//Item name - pass level name if variable priced
81 81
 		$item_name = $purchase_data['post_data']['give-form-title'];
82 82
 
83 83
 		//Verify has variable prices
84
-		if ( give_has_variable_prices( $form_id ) && isset( $purchase_data['post_data']['give-price-id'] ) ) {
84
+		if (give_has_variable_prices($form_id) && isset($purchase_data['post_data']['give-price-id'])) {
85 85
 
86
-			$item_price_level_text = give_get_price_option_name( $form_id, $purchase_data['post_data']['give-price-id'] );
86
+			$item_price_level_text = give_get_price_option_name($form_id, $purchase_data['post_data']['give-price-id']);
87 87
 
88
-			$price_level_amount = give_get_price_option_amount( $form_id, $purchase_data['post_data']['give-price-id'] );
88
+			$price_level_amount = give_get_price_option_amount($form_id, $purchase_data['post_data']['give-price-id']);
89 89
 
90 90
 			//Donation given doesn't match selected level (must be a custom amount)
91
-			if ( $price_level_amount != give_sanitize_amount( $purchase_data['price'] ) ) {
92
-				$custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true );
91
+			if ($price_level_amount != give_sanitize_amount($purchase_data['price'])) {
92
+				$custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true);
93 93
 				//user custom amount text if any, fallback to default if not
94
-				$item_name .= ' - ' . ( ! empty( $custom_amount_text ) ? $custom_amount_text : __( 'Custom Amount', 'give' ) );
94
+				$item_name .= ' - '.( ! empty($custom_amount_text) ? $custom_amount_text : __('Custom Amount', 'give'));
95 95
 
96 96
 			} //Is there any donation level text?
97
-			elseif ( ! empty( $item_price_level_text ) ) {
98
-				$item_name .= ' - ' . $item_price_level_text;
97
+			elseif ( ! empty($item_price_level_text)) {
98
+				$item_name .= ' - '.$item_price_level_text;
99 99
 			}
100 100
 
101 101
 		} //Single donation: Custom Amount
102
-		elseif ( give_get_form_price( $form_id ) !== give_sanitize_amount( $purchase_data['price'] ) ) {
103
-			$custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true );
102
+		elseif (give_get_form_price($form_id) !== give_sanitize_amount($purchase_data['price'])) {
103
+			$custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true);
104 104
 			//user custom amount text if any, fallback to default if not
105
-			$item_name .= ' - ' . ( ! empty( $custom_amount_text ) ? $custom_amount_text : __( 'Custom Amount', 'give' ) );
105
+			$item_name .= ' - '.( ! empty($custom_amount_text) ? $custom_amount_text : __('Custom Amount', 'give'));
106 106
 		}
107 107
 
108 108
 		// Setup PayPal arguments
109 109
 		$paypal_args = array(
110
-			'business'      => give_get_option( 'paypal_email', false ),
110
+			'business'      => give_get_option('paypal_email', false),
111 111
 			'email'         => $purchase_data['user_email'],
112 112
 			'invoice'       => $purchase_data['purchase_key'],
113 113
 			'amount'        => $purchase_data['price'],
@@ -118,25 +118,25 @@  discard block
 block discarded – undo
118 118
 			'shipping'      => '0',
119 119
 			'no_note'       => '1',
120 120
 			'currency_code' => give_get_currency(),
121
-			'charset'       => get_bloginfo( 'charset' ),
121
+			'charset'       => get_bloginfo('charset'),
122 122
 			'custom'        => $payment,
123 123
 			'rm'            => '2',
124 124
 			'return'        => $return_url,
125
-			'cancel_return' => give_get_failed_transaction_uri( '?payment-id=' . $payment ),
125
+			'cancel_return' => give_get_failed_transaction_uri('?payment-id='.$payment),
126 126
 			'notify_url'    => $listener_url,
127 127
 			'page_style'    => give_get_paypal_page_style(),
128
-			'cbt'           => get_bloginfo( 'name' ),
128
+			'cbt'           => get_bloginfo('name'),
129 129
 			'bn'            => 'givewp_SP'
130 130
 		);
131 131
 
132
-		if ( ! empty( $purchase_data['user_info']['address'] ) ) {
132
+		if ( ! empty($purchase_data['user_info']['address'])) {
133 133
 			$paypal_args['address1'] = $purchase_data['user_info']['address']['line1'];
134 134
 			$paypal_args['address2'] = $purchase_data['user_info']['address']['line2'];
135 135
 			$paypal_args['city']     = $purchase_data['user_info']['address']['city'];
136 136
 			$paypal_args['country']  = $purchase_data['user_info']['address']['country'];
137 137
 		}
138 138
 
139
-		if ( give_get_option( 'paypal_button_type' ) === 'standard' ) {
139
+		if (give_get_option('paypal_button_type') === 'standard') {
140 140
 			$paypal_extra_args = array(
141 141
 				'cmd' => '_xclick',
142 142
 			);
@@ -146,25 +146,25 @@  discard block
 block discarded – undo
146 146
 			);
147 147
 		}
148 148
 
149
-		$paypal_args = array_merge( $paypal_extra_args, $paypal_args );
149
+		$paypal_args = array_merge($paypal_extra_args, $paypal_args);
150 150
 
151 151
 
152
-		$paypal_args = apply_filters( 'give_paypal_redirect_args', $paypal_args, $purchase_data );
152
+		$paypal_args = apply_filters('give_paypal_redirect_args', $paypal_args, $purchase_data);
153 153
 
154 154
 		// Build query
155
-		$paypal_redirect .= http_build_query( $paypal_args );
155
+		$paypal_redirect .= http_build_query($paypal_args);
156 156
 
157 157
 		// Fix for some sites that encode the entities
158
-		$paypal_redirect = str_replace( '&amp;', '&', $paypal_redirect );
158
+		$paypal_redirect = str_replace('&amp;', '&', $paypal_redirect);
159 159
 
160 160
 		// Redirect to PayPal
161
-		wp_redirect( $paypal_redirect );
161
+		wp_redirect($paypal_redirect);
162 162
 		exit;
163 163
 	}
164 164
 
165 165
 }
166 166
 
167
-add_action( 'give_gateway_paypal', 'give_process_paypal_purchase' );
167
+add_action('give_gateway_paypal', 'give_process_paypal_purchase');
168 168
 
169 169
 /**
170 170
  * Listens for a PayPal IPN requests and then sends to the processing function
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
  */
175 175
 function give_listen_for_paypal_ipn() {
176 176
 	// Regular PayPal IPN
177
-	if ( isset( $_GET['give-listener'] ) && $_GET['give-listener'] == 'IPN' ) {
178
-		do_action( 'give_verify_paypal_ipn' );
177
+	if (isset($_GET['give-listener']) && $_GET['give-listener'] == 'IPN') {
178
+		do_action('give_verify_paypal_ipn');
179 179
 	}
180 180
 }
181 181
 
182
-add_action( 'init', 'give_listen_for_paypal_ipn' );
182
+add_action('init', 'give_listen_for_paypal_ipn');
183 183
 
184 184
 /**
185 185
  * Process PayPal IPN
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 function give_process_paypal_ipn() {
191 191
 
192 192
 	// Check the request method is POST
193
-	if ( isset( $_SERVER['REQUEST_METHOD'] ) && $_SERVER['REQUEST_METHOD'] != 'POST' ) {
193
+	if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] != 'POST') {
194 194
 		return;
195 195
 	}
196 196
 
@@ -198,11 +198,11 @@  discard block
 block discarded – undo
198 198
 	$post_data = '';
199 199
 
200 200
 	// Fallback just in case post_max_size is lower than needed
201
-	if ( ini_get( 'allow_url_fopen' ) ) {
202
-		$post_data = file_get_contents( 'php://input' );
201
+	if (ini_get('allow_url_fopen')) {
202
+		$post_data = file_get_contents('php://input');
203 203
 	} else {
204 204
 		// If allow_url_fopen is not enabled, then make sure that post_max_size is large enough
205
-		ini_set( 'post_max_size', '12M' );
205
+		ini_set('post_max_size', '12M');
206 206
 	}
207 207
 	// Start the encoded data collection with notification command
208 208
 	$encoded_data = 'cmd=_notify-validate';
@@ -211,40 +211,40 @@  discard block
 block discarded – undo
211 211
 	$arg_separator = give_get_php_arg_separator_output();
212 212
 
213 213
 	// Verify there is a post_data
214
-	if ( $post_data || strlen( $post_data ) > 0 ) {
214
+	if ($post_data || strlen($post_data) > 0) {
215 215
 		// Append the data
216
-		$encoded_data .= $arg_separator . $post_data;
216
+		$encoded_data .= $arg_separator.$post_data;
217 217
 	} else {
218 218
 		// Check if POST is empty
219
-		if ( empty( $_POST ) ) {
219
+		if (empty($_POST)) {
220 220
 			// Nothing to do
221 221
 			return;
222 222
 		} else {
223 223
 			// Loop through each POST
224
-			foreach ( $_POST as $key => $value ) {
224
+			foreach ($_POST as $key => $value) {
225 225
 				// Encode the value and append the data
226
-				$encoded_data .= $arg_separator . "$key=" . urlencode( $value );
226
+				$encoded_data .= $arg_separator."$key=".urlencode($value);
227 227
 			}
228 228
 		}
229 229
 	}
230 230
 
231 231
 	// Convert collected post data to an array
232
-	parse_str( $encoded_data, $encoded_data_array );
232
+	parse_str($encoded_data, $encoded_data_array);
233 233
 
234
-	foreach ( $encoded_data_array as $key => $value ) {
234
+	foreach ($encoded_data_array as $key => $value) {
235 235
 
236
-		if ( false !== strpos( $key, 'amp;' ) ) {
237
-			$new_key = str_replace( '&amp;', '&', $key );
238
-			$new_key = str_replace( 'amp;', '&' , $new_key );
236
+		if (false !== strpos($key, 'amp;')) {
237
+			$new_key = str_replace('&amp;', '&', $key);
238
+			$new_key = str_replace('amp;', '&', $new_key);
239 239
 
240
-			unset( $encoded_data_array[ $key ] );
241
-			$encoded_data_array[ $new_key ] = $value;
240
+			unset($encoded_data_array[$key]);
241
+			$encoded_data_array[$new_key] = $value;
242 242
 		}
243 243
 
244 244
 	}
245 245
 	
246 246
 	//Validate IPN request w/ PayPal if user hasn't disabled this security measure
247
-	if ( ! give_get_option( 'disable_paypal_verification' ) ) {
247
+	if ( ! give_get_option('disable_paypal_verification')) {
248 248
 
249 249
 		$remote_post_vars = array(
250 250
 			'method'      => 'POST',
@@ -264,22 +264,22 @@  discard block
 block discarded – undo
264 264
 		);
265 265
 
266 266
 		// Validate the IPN
267
-		$api_response = wp_remote_post( give_get_paypal_redirect(), $remote_post_vars );
267
+		$api_response = wp_remote_post(give_get_paypal_redirect(), $remote_post_vars);
268 268
 
269
-		if ( is_wp_error( $api_response ) ) {
270
-			give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid IPN verification response. IPN data: %s', 'give' ), json_encode( $api_response ) ) );
269
+		if (is_wp_error($api_response)) {
270
+			give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid IPN verification response. IPN data: %s', 'give'), json_encode($api_response)));
271 271
 			return; // Something went wrong
272 272
 		}
273 273
 
274
-		if ( $api_response['body'] !== 'VERIFIED' && give_get_option( 'disable_paypal_verification', false ) ) {
275
-			give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid IPN verification response. IPN data: %s', 'give' ), json_encode( $api_response ) ) );
274
+		if ($api_response['body'] !== 'VERIFIED' && give_get_option('disable_paypal_verification', false)) {
275
+			give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid IPN verification response. IPN data: %s', 'give'), json_encode($api_response)));
276 276
 			return; // Response not okay
277 277
 		}
278 278
 
279 279
 	}
280 280
 
281 281
 	// Check if $post_data_array has been populated
282
-	if ( ! is_array( $encoded_data_array ) && ! empty( $encoded_data_array ) ) {
282
+	if ( ! is_array($encoded_data_array) && ! empty($encoded_data_array)) {
283 283
 		return;
284 284
 	}
285 285
 
@@ -288,21 +288,21 @@  discard block
 block discarded – undo
288 288
 		'payment_status' => ''
289 289
 	);
290 290
 
291
-	$encoded_data_array = wp_parse_args( $encoded_data_array, $defaults );
291
+	$encoded_data_array = wp_parse_args($encoded_data_array, $defaults);
292 292
 
293
-	$payment_id = isset( $encoded_data_array['custom'] ) ? absint( $encoded_data_array['custom'] ) : 0;
293
+	$payment_id = isset($encoded_data_array['custom']) ? absint($encoded_data_array['custom']) : 0;
294 294
 
295
-	if ( has_action( 'give_paypal_' . $encoded_data_array['txn_type'] ) ) {
295
+	if (has_action('give_paypal_'.$encoded_data_array['txn_type'])) {
296 296
 		// Allow PayPal IPN types to be processed separately
297
-		do_action( 'give_paypal_' . $encoded_data_array['txn_type'], $encoded_data_array, $payment_id );
297
+		do_action('give_paypal_'.$encoded_data_array['txn_type'], $encoded_data_array, $payment_id);
298 298
 	} else {
299 299
 		// Fallback to web accept just in case the txn_type isn't present
300
-		do_action( 'give_paypal_web_accept', $encoded_data_array, $payment_id );
300
+		do_action('give_paypal_web_accept', $encoded_data_array, $payment_id);
301 301
 	}
302 302
 	exit;
303 303
 }
304 304
 
305
-add_action( 'give_verify_paypal_ipn', 'give_process_paypal_ipn' );
305
+add_action('give_verify_paypal_ipn', 'give_process_paypal_ipn');
306 306
 
307 307
 /**
308 308
  * Process web accept (one time) payment IPNs
@@ -313,185 +313,185 @@  discard block
 block discarded – undo
313 313
  *
314 314
  * @return void
315 315
  */
316
-function give_process_paypal_web_accept_and_cart( $data, $payment_id ) {
316
+function give_process_paypal_web_accept_and_cart($data, $payment_id) {
317 317
 
318
-	if ( $data['txn_type'] != 'web_accept' && $data['txn_type'] != 'cart' && $data['payment_status'] != 'Refunded' ) {
318
+	if ($data['txn_type'] != 'web_accept' && $data['txn_type'] != 'cart' && $data['payment_status'] != 'Refunded') {
319 319
 		return;
320 320
 	}
321 321
 
322
-	if ( empty( $payment_id ) ) {
322
+	if (empty($payment_id)) {
323 323
 		return;
324 324
 	}
325 325
 
326 326
 	// Collect payment details
327
-	$purchase_key   = isset( $data['invoice'] ) ? $data['invoice'] : $data['item_number'];
327
+	$purchase_key   = isset($data['invoice']) ? $data['invoice'] : $data['item_number'];
328 328
 	$paypal_amount  = $data['mc_gross'];
329
-	$payment_status = strtolower( $data['payment_status'] );
330
-	$currency_code  = strtolower( $data['mc_currency'] );
331
-	$business_email = isset( $data['business'] ) && is_email( $data['business'] ) ? trim( $data['business'] ) : trim( $data['receiver_email'] );
332
-	$payment_meta   = give_get_payment_meta( $payment_id );
329
+	$payment_status = strtolower($data['payment_status']);
330
+	$currency_code  = strtolower($data['mc_currency']);
331
+	$business_email = isset($data['business']) && is_email($data['business']) ? trim($data['business']) : trim($data['receiver_email']);
332
+	$payment_meta   = give_get_payment_meta($payment_id);
333 333
 
334 334
 
335
-	if ( give_get_payment_gateway( $payment_id ) != 'paypal' ) {
335
+	if (give_get_payment_gateway($payment_id) != 'paypal') {
336 336
 		return; // this isn't a PayPal standard IPN
337 337
 	}
338 338
 
339 339
 	// Verify payment recipient
340
-	if ( strcasecmp( $business_email, trim( give_get_option( 'paypal_email' ) ) ) != 0 ) {
340
+	if (strcasecmp($business_email, trim(give_get_option('paypal_email'))) != 0) {
341 341
 
342
-		give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid business email in IPN response. IPN data: %s', 'give' ), json_encode( $data ) ), $payment_id );
343
-		give_update_payment_status( $payment_id, 'failed' );
344
-		give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid PayPal business email.', 'give' ) );
342
+		give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid business email in IPN response. IPN data: %s', 'give'), json_encode($data)), $payment_id);
343
+		give_update_payment_status($payment_id, 'failed');
344
+		give_insert_payment_note($payment_id, __('Payment failed due to invalid PayPal business email.', 'give'));
345 345
 
346 346
 		return;
347 347
 	}
348 348
 
349 349
 	// Verify payment currency
350
-	if ( $currency_code != strtolower( $payment_meta['currency'] ) ) {
350
+	if ($currency_code != strtolower($payment_meta['currency'])) {
351 351
 
352
-		give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid currency in IPN response. IPN data: %s', 'give' ), json_encode( $data ) ), $payment_id );
353
-		give_update_payment_status( $payment_id, 'failed' );
354
-		give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid currency in PayPal IPN.', 'give' ) );
352
+		give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid currency in IPN response. IPN data: %s', 'give'), json_encode($data)), $payment_id);
353
+		give_update_payment_status($payment_id, 'failed');
354
+		give_insert_payment_note($payment_id, __('Payment failed due to invalid currency in PayPal IPN.', 'give'));
355 355
 
356 356
 		return;
357 357
 	}
358 358
 
359
-	if ( ! give_get_payment_user_email( $payment_id ) ) {
359
+	if ( ! give_get_payment_user_email($payment_id)) {
360 360
 
361 361
 		// No email associated with purchase, so store from PayPal
362
-		give_update_payment_meta( $payment_id, '_give_payment_user_email', $data['payer_email'] );
362
+		give_update_payment_meta($payment_id, '_give_payment_user_email', $data['payer_email']);
363 363
 
364 364
 		// Setup and store the donors's details
365 365
 		$address            = array();
366
-		$address['line1']   = ! empty( $data['address_street'] ) ? sanitize_text_field( $data['address_street'] ) : false;
367
-		$address['city']    = ! empty( $data['address_city'] ) ? sanitize_text_field( $data['address_city'] ) : false;
368
-		$address['state']   = ! empty( $data['address_state'] ) ? sanitize_text_field( $data['address_state'] ) : false;
369
-		$address['country'] = ! empty( $data['address_country_code'] ) ? sanitize_text_field( $data['address_country_code'] ) : false;
370
-		$address['zip']     = ! empty( $data['address_zip'] ) ? sanitize_text_field( $data['address_zip'] ) : false;
366
+		$address['line1']   = ! empty($data['address_street']) ? sanitize_text_field($data['address_street']) : false;
367
+		$address['city']    = ! empty($data['address_city']) ? sanitize_text_field($data['address_city']) : false;
368
+		$address['state']   = ! empty($data['address_state']) ? sanitize_text_field($data['address_state']) : false;
369
+		$address['country'] = ! empty($data['address_country_code']) ? sanitize_text_field($data['address_country_code']) : false;
370
+		$address['zip']     = ! empty($data['address_zip']) ? sanitize_text_field($data['address_zip']) : false;
371 371
 
372 372
 		$user_info = array(
373 373
 			'id'         => '-1',
374
-			'email'      => sanitize_text_field( $data['payer_email'] ),
375
-			'first_name' => sanitize_text_field( $data['first_name'] ),
376
-			'last_name'  => sanitize_text_field( $data['last_name'] ),
374
+			'email'      => sanitize_text_field($data['payer_email']),
375
+			'first_name' => sanitize_text_field($data['first_name']),
376
+			'last_name'  => sanitize_text_field($data['last_name']),
377 377
 			'discount'   => '',
378 378
 			'address'    => $address
379 379
 		);
380 380
 
381 381
 		$payment_meta['user_info'] = $user_info;
382
-		give_update_payment_meta( $payment_id, '_give_payment_meta', $payment_meta );
382
+		give_update_payment_meta($payment_id, '_give_payment_meta', $payment_meta);
383 383
 	}
384 384
 
385
-	if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) {
385
+	if ($payment_status == 'refunded' || $payment_status == 'reversed') {
386 386
 
387 387
 		// Process a refund
388
-		give_process_paypal_refund( $data, $payment_id );
388
+		give_process_paypal_refund($data, $payment_id);
389 389
 
390 390
 	} else {
391 391
 
392
-		if ( get_post_status( $payment_id ) == 'publish' ) {
392
+		if (get_post_status($payment_id) == 'publish') {
393 393
 			return; // Only complete payments once
394 394
 		}
395 395
 
396 396
 		// Retrieve the total purchase amount (before PayPal)
397
-		$payment_amount = give_get_payment_amount( $payment_id );
397
+		$payment_amount = give_get_payment_amount($payment_id);
398 398
 
399
-		if ( number_format( (float) $paypal_amount, 2 ) < number_format( (float) $payment_amount, 2 ) ) {
399
+		if (number_format((float) $paypal_amount, 2) < number_format((float) $payment_amount, 2)) {
400 400
 			// The prices don't match
401
-			give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid payment amount in IPN response. IPN data: %s', 'give' ), json_encode( $data ) ), $payment_id );
402
-			give_update_payment_status( $payment_id, 'failed' );
403
-			give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid amount in PayPal IPN.', 'give' ) );
401
+			give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid payment amount in IPN response. IPN data: %s', 'give'), json_encode($data)), $payment_id);
402
+			give_update_payment_status($payment_id, 'failed');
403
+			give_insert_payment_note($payment_id, __('Payment failed due to invalid amount in PayPal IPN.', 'give'));
404 404
 
405 405
 			return;
406 406
 		}
407
-		if ( $purchase_key != give_get_payment_key( $payment_id ) ) {
407
+		if ($purchase_key != give_get_payment_key($payment_id)) {
408 408
 			// Purchase keys don't match
409
-			give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid purchase key in IPN response. IPN data: %s', 'give' ), json_encode( $data ) ), $payment_id );
410
-			give_update_payment_status( $payment_id, 'failed' );
411
-			give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid purchase key in PayPal IPN.', 'give' ) );
409
+			give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid purchase key in IPN response. IPN data: %s', 'give'), json_encode($data)), $payment_id);
410
+			give_update_payment_status($payment_id, 'failed');
411
+			give_insert_payment_note($payment_id, __('Payment failed due to invalid purchase key in PayPal IPN.', 'give'));
412 412
 
413 413
 			return;
414 414
 		}
415 415
 
416
-		if ( $payment_status == 'completed' || give_is_test_mode() ) {
417
-			give_insert_payment_note( $payment_id, sprintf( __( 'PayPal Transaction ID: %s', 'give' ), $data['txn_id'] ) );
418
-			give_set_payment_transaction_id( $payment_id, $data['txn_id'] );
419
-			give_update_payment_status( $payment_id, 'publish' );
420
-		} else if ( 'pending' == $payment_status && isset( $data['pending_reason'] ) ) {
416
+		if ($payment_status == 'completed' || give_is_test_mode()) {
417
+			give_insert_payment_note($payment_id, sprintf(__('PayPal Transaction ID: %s', 'give'), $data['txn_id']));
418
+			give_set_payment_transaction_id($payment_id, $data['txn_id']);
419
+			give_update_payment_status($payment_id, 'publish');
420
+		} else if ('pending' == $payment_status && isset($data['pending_reason'])) {
421 421
 
422 422
 			// Look for possible pending reasons, such as an echeck
423 423
 
424 424
 			$note = '';
425 425
 
426
-			switch ( strtolower( $data['pending_reason'] ) ) {
426
+			switch (strtolower($data['pending_reason'])) {
427 427
 
428 428
 				case 'echeck' :
429 429
 
430
-					$note = __( 'Payment made via eCheck and will clear automatically in 5-8 days', 'give' );
430
+					$note = __('Payment made via eCheck and will clear automatically in 5-8 days', 'give');
431 431
 
432 432
 					break;
433 433
 
434 434
 				case 'address' :
435 435
 
436
-					$note = __( 'Payment requires a confirmed donor address and must be accepted manually through PayPal', 'give' );
436
+					$note = __('Payment requires a confirmed donor address and must be accepted manually through PayPal', 'give');
437 437
 
438 438
 					break;
439 439
 
440 440
 				case 'intl' :
441 441
 
442
-					$note = __( 'Payment must be accepted manually through PayPal due to international account regulations', 'give' );
442
+					$note = __('Payment must be accepted manually through PayPal due to international account regulations', 'give');
443 443
 
444 444
 					break;
445 445
 
446 446
 				case 'multi-currency' :
447 447
 
448
-					$note = __( 'Payment received in non-shop currency and must be accepted manually through PayPal', 'give' );
448
+					$note = __('Payment received in non-shop currency and must be accepted manually through PayPal', 'give');
449 449
 
450 450
 					break;
451 451
 
452 452
 				case 'paymentreview' :
453 453
 				case 'regulatory_review' :
454 454
 
455
-					$note = __( 'Payment is being reviewed by PayPal staff as high-risk or in possible violation of government regulations', 'give' );
455
+					$note = __('Payment is being reviewed by PayPal staff as high-risk or in possible violation of government regulations', 'give');
456 456
 
457 457
 					break;
458 458
 
459 459
 				case 'unilateral' :
460 460
 
461
-					$note = __( 'Payment was sent to non-confirmed or non-registered email address.', 'give' );
461
+					$note = __('Payment was sent to non-confirmed or non-registered email address.', 'give');
462 462
 
463 463
 					break;
464 464
 
465 465
 				case 'upgrade' :
466 466
 
467
-					$note = __( 'PayPal account must be upgraded before this payment can be accepted', 'give' );
467
+					$note = __('PayPal account must be upgraded before this payment can be accepted', 'give');
468 468
 
469 469
 					break;
470 470
 
471 471
 				case 'verify' :
472 472
 
473
-					$note = __( 'PayPal account is not verified. Verify account in order to accept this payment', 'give' );
473
+					$note = __('PayPal account is not verified. Verify account in order to accept this payment', 'give');
474 474
 
475 475
 					break;
476 476
 
477 477
 				case 'other' :
478 478
 
479
-					$note = __( 'Payment is pending for unknown reasons. Contact PayPal support for assistance', 'give' );
479
+					$note = __('Payment is pending for unknown reasons. Contact PayPal support for assistance', 'give');
480 480
 
481 481
 					break;
482 482
 
483 483
 			}
484 484
 
485
-			if ( ! empty( $note ) ) {
485
+			if ( ! empty($note)) {
486 486
 
487
-				give_insert_payment_note( $payment_id, $note );
487
+				give_insert_payment_note($payment_id, $note);
488 488
 
489 489
 			}
490 490
 		}
491 491
 	}
492 492
 }
493 493
 
494
-add_action( 'give_paypal_web_accept', 'give_process_paypal_web_accept_and_cart', 10, 2 );
494
+add_action('give_paypal_web_accept', 'give_process_paypal_web_accept_and_cart', 10, 2);
495 495
 
496 496
 /**
497 497
  * Process PayPal IPN Refunds
@@ -502,32 +502,32 @@  discard block
 block discarded – undo
502 502
  *
503 503
  * @return void
504 504
  */
505
-function give_process_paypal_refund( $data, $payment_id = 0 ) {
505
+function give_process_paypal_refund($data, $payment_id = 0) {
506 506
 
507 507
 	// Collect payment details
508 508
 
509
-	if ( empty( $payment_id ) ) {
509
+	if (empty($payment_id)) {
510 510
 		return;
511 511
 	}
512 512
 
513
-	if ( get_post_status( $payment_id ) == 'refunded' ) {
513
+	if (get_post_status($payment_id) == 'refunded') {
514 514
 		return; // Only refund payments once
515 515
 	}
516 516
 
517
-	$payment_amount = give_get_payment_amount( $payment_id );
517
+	$payment_amount = give_get_payment_amount($payment_id);
518 518
 	$refund_amount  = $data['payment_gross'] * - 1;
519 519
 
520
-	if ( number_format( (float) $refund_amount, 2 ) < number_format( (float) $payment_amount, 2 ) ) {
520
+	if (number_format((float) $refund_amount, 2) < number_format((float) $payment_amount, 2)) {
521 521
 
522
-		give_insert_payment_note( $payment_id, sprintf( __( 'Partial PayPal refund processed: %s', 'give' ), $data['parent_txn_id'] ) );
522
+		give_insert_payment_note($payment_id, sprintf(__('Partial PayPal refund processed: %s', 'give'), $data['parent_txn_id']));
523 523
 
524 524
 		return; // This is a partial refund
525 525
 
526 526
 	}
527 527
 
528
-	give_insert_payment_note( $payment_id, sprintf( __( 'PayPal Payment #%s Refunded for reason: %s', 'give' ), $data['parent_txn_id'], $data['reason_code'] ) );
529
-	give_insert_payment_note( $payment_id, sprintf( __( 'PayPal Refund Transaction ID: %s', 'give' ), $data['txn_id'] ) );
530
-	give_update_payment_status( $payment_id, 'refunded' );
528
+	give_insert_payment_note($payment_id, sprintf(__('PayPal Payment #%s Refunded for reason: %s', 'give'), $data['parent_txn_id'], $data['reason_code']));
529
+	give_insert_payment_note($payment_id, sprintf(__('PayPal Refund Transaction ID: %s', 'give'), $data['txn_id']));
530
+	give_update_payment_status($payment_id, 'refunded');
531 531
 }
532 532
 
533 533
 /**
@@ -539,24 +539,24 @@  discard block
 block discarded – undo
539 539
  *
540 540
  * @return string
541 541
  */
542
-function give_get_paypal_redirect( $ssl_check = false ) {
542
+function give_get_paypal_redirect($ssl_check = false) {
543 543
 
544
-	if ( is_ssl() || ! $ssl_check ) {
544
+	if (is_ssl() || ! $ssl_check) {
545 545
 		$protocal = 'https://';
546 546
 	} else {
547 547
 		$protocal = 'http://';
548 548
 	}
549 549
 
550 550
 	// Check the current payment mode
551
-	if ( give_is_test_mode() ) {
551
+	if (give_is_test_mode()) {
552 552
 		// Test mode
553
-		$paypal_uri = $protocal . 'www.sandbox.paypal.com/cgi-bin/webscr';
553
+		$paypal_uri = $protocal.'www.sandbox.paypal.com/cgi-bin/webscr';
554 554
 	} else {
555 555
 		// Live mode
556
-		$paypal_uri = $protocal . 'www.paypal.com/cgi-bin/webscr';
556
+		$paypal_uri = $protocal.'www.paypal.com/cgi-bin/webscr';
557 557
 	}
558 558
 
559
-	return apply_filters( 'give_paypal_uri', $paypal_uri );
559
+	return apply_filters('give_paypal_uri', $paypal_uri);
560 560
 }
561 561
 
562 562
 /**
@@ -566,8 +566,8 @@  discard block
 block discarded – undo
566 566
  * @return string
567 567
  */
568 568
 function give_get_paypal_page_style() {
569
-	$page_style = trim( give_get_option( 'paypal_page_style', 'PayPal' ) );
570
-	return apply_filters( 'give_paypal_page_style', $page_style );
569
+	$page_style = trim(give_get_option('paypal_page_style', 'PayPal'));
570
+	return apply_filters('give_paypal_page_style', $page_style);
571 571
 }
572 572
 
573 573
 /**
@@ -582,27 +582,27 @@  discard block
 block discarded – undo
582 582
  * @return string
583 583
  *
584 584
  */
585
-function give_paypal_success_page_content( $content ) {
585
+function give_paypal_success_page_content($content) {
586 586
 
587
-	if ( ! isset( $_GET['payment-id'] ) && ! give_get_purchase_session() ) {
587
+	if ( ! isset($_GET['payment-id']) && ! give_get_purchase_session()) {
588 588
 		return $content;
589 589
 	}
590 590
 
591
-	$payment_id = isset( $_GET['payment-id'] ) ? absint( $_GET['payment-id'] ) : false;
591
+	$payment_id = isset($_GET['payment-id']) ? absint($_GET['payment-id']) : false;
592 592
 
593
-	if ( ! $payment_id ) {
593
+	if ( ! $payment_id) {
594 594
 		$session    = give_get_purchase_session();
595
-		$payment_id = give_get_purchase_id_by_key( $session['purchase_key'] );
595
+		$payment_id = give_get_purchase_id_by_key($session['purchase_key']);
596 596
 	}
597 597
 
598
-	$payment = get_post( $payment_id );
598
+	$payment = get_post($payment_id);
599 599
 
600
-	if ( $payment && 'pending' == $payment->post_status ) {
600
+	if ($payment && 'pending' == $payment->post_status) {
601 601
 
602 602
 		// Payment is still pending so show processing indicator to fix the Race Condition
603 603
 		ob_start();
604 604
 
605
-		give_get_template_part( 'payment', 'processing' );
605
+		give_get_template_part('payment', 'processing');
606 606
 
607 607
 		$content = ob_get_clean();
608 608
 
@@ -612,7 +612,7 @@  discard block
 block discarded – undo
612 612
 
613 613
 }
614 614
 
615
-add_filter( 'give_payment_confirm_paypal', 'give_paypal_success_page_content' );
615
+add_filter('give_payment_confirm_paypal', 'give_paypal_success_page_content');
616 616
 
617 617
 /**
618 618
  * Given a Payment ID, extract the transaction ID
@@ -623,22 +623,22 @@  discard block
 block discarded – undo
623 623
  *
624 624
  * @return string                   Transaction ID
625 625
  */
626
-function give_paypal_get_payment_transaction_id( $payment_id ) {
626
+function give_paypal_get_payment_transaction_id($payment_id) {
627 627
 
628 628
 	$transaction_id = '';
629
-	$notes          = give_get_payment_notes( $payment_id );
629
+	$notes          = give_get_payment_notes($payment_id);
630 630
 
631
-	foreach ( $notes as $note ) {
632
-		if ( preg_match( '/^PayPal Transaction ID: ([^\s]+)/', $note->comment_content, $match ) ) {
631
+	foreach ($notes as $note) {
632
+		if (preg_match('/^PayPal Transaction ID: ([^\s]+)/', $note->comment_content, $match)) {
633 633
 			$transaction_id = $match[1];
634 634
 			continue;
635 635
 		}
636 636
 	}
637 637
 
638
-	return apply_filters( 'give_paypal_set_payment_transaction_id', $transaction_id, $payment_id );
638
+	return apply_filters('give_paypal_set_payment_transaction_id', $transaction_id, $payment_id);
639 639
 }
640 640
 
641
-add_filter( 'give_get_payment_transaction_id-paypal', 'give_paypal_get_payment_transaction_id', 10, 1 );
641
+add_filter('give_get_payment_transaction_id-paypal', 'give_paypal_get_payment_transaction_id', 10, 1);
642 642
 
643 643
 /**
644 644
  * Given a transaction ID, generate a link to the PayPal transaction ID details
@@ -650,13 +650,13 @@  discard block
 block discarded – undo
650 650
  *
651 651
  * @return string                 A link to the PayPal transaction details
652 652
  */
653
-function give_paypal_link_transaction_id( $transaction_id, $payment_id ) {
653
+function give_paypal_link_transaction_id($transaction_id, $payment_id) {
654 654
 
655 655
 	$paypal_base_url = 'https://history.paypal.com/cgi-bin/webscr?cmd=_history-details-from-hub&id=';
656
-	$transaction_url = '<a href="' . esc_url( $paypal_base_url . $transaction_id ) . '" target="_blank">' . $transaction_id . '</a>';
656
+	$transaction_url = '<a href="'.esc_url($paypal_base_url.$transaction_id).'" target="_blank">'.$transaction_id.'</a>';
657 657
 
658
-	return apply_filters( 'give_paypal_link_payment_details_transaction_id', $transaction_url );
658
+	return apply_filters('give_paypal_link_payment_details_transaction_id', $transaction_url);
659 659
 
660 660
 }
661 661
 
662
-add_filter( 'give_payment_details_transaction_id-paypal', 'give_paypal_link_transaction_id', 10, 2 );
662
+add_filter('give_payment_details_transaction_id-paypal', 'give_paypal_link_transaction_id', 10, 2);
Please login to merge, or discard this patch.
includes/deprecated-functions.php 1 patch
Spacing   +5 added lines, -5 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
 
@@ -28,13 +28,13 @@  discard block
 block discarded – undo
28 28
  *
29 29
  * @return bool $ret True if guest checkout is enabled, false otherwise
30 30
  */
31
-function give_no_guest_checkout( $form_id ) {
31
+function give_no_guest_checkout($form_id) {
32 32
 
33 33
 	$backtrace = debug_backtrace();
34 34
 
35
-	_give_deprecated_function( __FUNCTION__, '1.4.1', null, $backtrace );
35
+	_give_deprecated_function(__FUNCTION__, '1.4.1', null, $backtrace);
36 36
 
37
-	$ret = get_post_meta( $form_id, '_give_logged_in_only', true );
37
+	$ret = get_post_meta($form_id, '_give_logged_in_only', true);
38 38
 
39
-	return (bool) apply_filters( 'give_no_guest_checkout', $ret );
39
+	return (bool) apply_filters('give_no_guest_checkout', $ret);
40 40
 }
41 41
\ No newline at end of file
Please login to merge, or discard this patch.
includes/class-give-email-access.php 1 patch
Spacing   +62 added lines, -62 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  * @since       1.4
11 11
  */
12 12
 
13
-defined( 'ABSPATH' ) or exit;
13
+defined('ABSPATH') or exit;
14 14
 
15 15
 /**
16 16
  * Class Give_Email_Access
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	function __construct() {
31 31
 
32 32
 		// get it started
33
-		add_action( 'init', array( $this, 'init' ) );
33
+		add_action('init', array($this, 'init'));
34 34
 	}
35 35
 
36 36
 
@@ -39,30 +39,30 @@  discard block
 block discarded – undo
39 39
 	 */
40 40
 	function init() {
41 41
 
42
-		$is_enabled = give_get_option( 'email_access' );
42
+		$is_enabled = give_get_option('email_access');
43 43
 
44 44
 		//Non-logged in users only
45
-		if ( is_user_logged_in() || $is_enabled !== 'on' || is_admin() ) {
45
+		if (is_user_logged_in() || $is_enabled !== 'on' || is_admin()) {
46 46
 			return;
47 47
 		}
48 48
 
49 49
 		//Are db columns setup?
50
-		$is_setup = give_get_option( 'email_access_installed' );
51
-		if ( empty( $is_setup ) ) {
50
+		$is_setup = give_get_option('email_access_installed');
51
+		if (empty($is_setup)) {
52 52
 			$this->create_columns();
53 53
 		}
54 54
 
55 55
 		// Timeouts
56
-		$this->verify_throttle  = apply_filters( 'give_nl_verify_throttle', 300 );
57
-		$this->token_expiration = apply_filters( 'give_nl_token_expiration', 7200 );
56
+		$this->verify_throttle  = apply_filters('give_nl_verify_throttle', 300);
57
+		$this->token_expiration = apply_filters('give_nl_token_expiration', 7200);
58 58
 
59 59
 		// Setup login
60 60
 		$this->check_for_token();
61 61
 
62
-		if ( $this->token_exists ) {
63
-			add_filter( 'give_can_view_receipt', '__return_true' );
64
-			add_filter( 'give_user_pending_verification', '__return_false' );
65
-			add_filter( 'give_get_users_purchases_args', array( $this, 'users_purchases_args' ) );
62
+		if ($this->token_exists) {
63
+			add_filter('give_can_view_receipt', '__return_true');
64
+			add_filter('give_user_pending_verification', '__return_false');
65
+			add_filter('give_get_users_purchases_args', array($this, 'users_purchases_args'));
66 66
 		}
67 67
 	}
68 68
 
@@ -73,24 +73,24 @@  discard block
 block discarded – undo
73 73
 	 *
74 74
 	 * @return bool
75 75
 	 */
76
-	function can_send_email( $customer_id ) {
76
+	function can_send_email($customer_id) {
77 77
 		global $wpdb;
78 78
 
79 79
 		// Prevent multiple emails within X minutes
80
-		$throttle = date( 'Y-m-d H:i:s', time() - $this->verify_throttle );
80
+		$throttle = date('Y-m-d H:i:s', time() - $this->verify_throttle);
81 81
 
82 82
 		// Does a user row exist?
83 83
 		$exists = (int) $wpdb->get_var(
84
-			$wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id )
84
+			$wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id)
85 85
 		);
86 86
 
87
-		if ( 0 < $exists ) {
87
+		if (0 < $exists) {
88 88
 			$row_id = (int) $wpdb->get_var(
89
-				$wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle )
89
+				$wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle)
90 90
 			);
91 91
 
92
-			if ( $row_id < 1 ) {
93
-				give_set_error( 'give_email_access_attempts_exhausted', __( 'Please wait a few minutes before requesting a new email access link.', 'give' ) );
92
+			if ($row_id < 1) {
93
+				give_set_error('give_email_access_attempts_exhausted', __('Please wait a few minutes before requesting a new email access link.', 'give'));
94 94
 
95 95
 				return false;
96 96
 			}
@@ -106,38 +106,38 @@  discard block
 block discarded – undo
106 106
 	 * @param $customer_id
107 107
 	 * @param $email
108 108
 	 */
109
-	function send_email( $customer_id, $email ) {
109
+	function send_email($customer_id, $email) {
110 110
 
111
-		$verify_key = wp_generate_password( 20, false );
111
+		$verify_key = wp_generate_password(20, false);
112 112
 
113 113
 		// Generate a new verify key
114
-		$this->set_verify_key( $customer_id, $email, $verify_key );
114
+		$this->set_verify_key($customer_id, $email, $verify_key);
115 115
 
116 116
 		// Get the purchase history URL
117
-		$page_id = give_get_option( 'history_page' );
117
+		$page_id = give_get_option('history_page');
118 118
 
119
-		$access_url = add_query_arg( array(
119
+		$access_url = add_query_arg(array(
120 120
 			'give_nl' => $verify_key,
121
-		), get_permalink( $page_id ) );
121
+		), get_permalink($page_id));
122 122
 
123 123
 		//Nice subject and message
124
-		$subject = apply_filters( 'give_email_access_token_subject', sprintf( __( 'Your Access Link to %1$s', 'give' ), get_bloginfo( 'name' ) ) );
124
+		$subject = apply_filters('give_email_access_token_subject', sprintf(__('Your Access Link to %1$s', 'give'), get_bloginfo('name')));
125 125
 
126
-		$message = __( 'You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give' ) . "\n\n";
126
+		$message = __('You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give')."\n\n";
127 127
 
128
-		$message .= '<a href="' . esc_url( $access_url ) . '" target="_blank">' . __( 'Access My Donation Details', 'give' ) . ' &raquo;</a>';
128
+		$message .= '<a href="'.esc_url($access_url).'" target="_blank">'.__('Access My Donation Details', 'give').' &raquo;</a>';
129 129
 
130 130
 		$message .= "\n\n";
131 131
 		$message .= "\n\n";
132
-		$message .= __( 'Sincerely,', 'give' );
133
-		$message .= "\n" . get_bloginfo( 'name' ) . "\n";
132
+		$message .= __('Sincerely,', 'give');
133
+		$message .= "\n".get_bloginfo('name')."\n";
134 134
 
135
-		$message = apply_filters( 'give_email_access_token_message', $message );
135
+		$message = apply_filters('give_email_access_token_message', $message);
136 136
 
137 137
 
138 138
 		// Send the email
139
-		Give()->emails->__set( 'heading', apply_filters( 'give_email_access_token_heading', __( 'Your Access Link', 'give' ) ) );
140
-		Give()->emails->send( $email, $subject, $message );
139
+		Give()->emails->__set('heading', apply_filters('give_email_access_token_heading', __('Your Access Link', 'give')));
140
+		Give()->emails->send($email, $subject, $message);
141 141
 
142 142
 	}
143 143
 
@@ -147,24 +147,24 @@  discard block
 block discarded – undo
147 147
 	 */
148 148
 	function check_for_token() {
149 149
 
150
-		$token = isset( $_GET['give_nl'] ) ? $_GET['give_nl'] : '';
150
+		$token = isset($_GET['give_nl']) ? $_GET['give_nl'] : '';
151 151
 
152 152
 		// Check for cookie
153
-		if ( empty( $token ) ) {
154
-			$token = isset( $_COOKIE['give_nl'] ) ? $_COOKIE['give_nl'] : '';
153
+		if (empty($token)) {
154
+			$token = isset($_COOKIE['give_nl']) ? $_COOKIE['give_nl'] : '';
155 155
 		}
156 156
 
157
-		if ( ! empty( $token ) ) {
158
-			if ( ! $this->is_valid_token( $token ) ) {
159
-				if ( ! $this->is_valid_verify_key( $token ) ) {
157
+		if ( ! empty($token)) {
158
+			if ( ! $this->is_valid_token($token)) {
159
+				if ( ! $this->is_valid_verify_key($token)) {
160 160
 					return;
161 161
 				}
162 162
 			}
163 163
 
164 164
 			$this->token_exists = true;
165 165
 			// Set cookie
166
-			$lifetime = current_time( 'timestamp' ) + Give()->session->set_expiration_time();
167
-			@setcookie( 'give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false );
166
+			$lifetime = current_time('timestamp') + Give()->session->set_expiration_time();
167
+			@setcookie('give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false);
168 168
 		}
169 169
 	}
170 170
 
@@ -175,18 +175,18 @@  discard block
 block discarded – undo
175 175
 	 *
176 176
 	 * @return bool
177 177
 	 */
178
-	function is_valid_token( $token ) {
178
+	function is_valid_token($token) {
179 179
 
180 180
 		global $wpdb;
181 181
 
182 182
 		// Make sure token isn't expired
183
-		$expires = date( 'Y-m-d H:i:s', time() - $this->token_expiration );
183
+		$expires = date('Y-m-d H:i:s', time() - $this->token_expiration);
184 184
 
185 185
 		$email = $wpdb->get_var(
186
-			$wpdb->prepare( "SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires )
186
+			$wpdb->prepare("SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires)
187 187
 		);
188 188
 
189
-		if ( ! empty( $email ) ) {
189
+		if ( ! empty($email)) {
190 190
 			$this->token_email = $email;
191 191
 			$this->token       = $token;
192 192
 
@@ -194,8 +194,8 @@  discard block
 block discarded – undo
194 194
 		}
195 195
 
196 196
 		//Set error only if email access form isn't being submitted
197
-		if ( ! isset( $_POST['give_email'] ) && ! isset( $_POST['_wpnonce'] ) ) {
198
-			give_set_error( 'give_email_token_expired', apply_filters( 'give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give' ) );
197
+		if ( ! isset($_POST['give_email']) && ! isset($_POST['_wpnonce'])) {
198
+			give_set_error('give_email_token_expired', apply_filters('give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give'));
199 199
 		}
200 200
 
201 201
 
@@ -210,25 +210,25 @@  discard block
 block discarded – undo
210 210
 	 * @param $email
211 211
 	 * @param $verify_key
212 212
 	 */
213
-	function set_verify_key( $customer_id, $email, $verify_key ) {
213
+	function set_verify_key($customer_id, $email, $verify_key) {
214 214
 		global $wpdb;
215 215
 
216
-		$now = date( 'Y-m-d H:i:s' );
216
+		$now = date('Y-m-d H:i:s');
217 217
 
218 218
 		// Insert or update?
219 219
 		$row_id = (int) $wpdb->get_var(
220
-			$wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id )
220
+			$wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id)
221 221
 		);
222 222
 
223 223
 		// Update
224
-		if ( ! empty( $row_id ) ) {
224
+		if ( ! empty($row_id)) {
225 225
 			$wpdb->query(
226
-				$wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id )
226
+				$wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id)
227 227
 			);
228 228
 		} // Insert
229 229
 		else {
230 230
 			$wpdb->query(
231
-				$wpdb->prepare( "INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now )
231
+				$wpdb->prepare("INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now)
232 232
 			);
233 233
 		}
234 234
 	}
@@ -240,20 +240,20 @@  discard block
 block discarded – undo
240 240
 	 *
241 241
 	 * @return bool
242 242
 	 */
243
-	function is_valid_verify_key( $token ) {
243
+	function is_valid_verify_key($token) {
244 244
 		global $wpdb;
245 245
 
246 246
 		// See if the verify_key exists
247 247
 		$row = $wpdb->get_row(
248
-			$wpdb->prepare( "SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token )
248
+			$wpdb->prepare("SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token)
249 249
 		);
250 250
 
251
-		$now = date( 'Y-m-d H:i:s' );
251
+		$now = date('Y-m-d H:i:s');
252 252
 
253 253
 		// Set token
254
-		if ( ! empty( $row ) ) {
254
+		if ( ! empty($row)) {
255 255
 			$wpdb->query(
256
-				$wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id )
256
+				$wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id)
257 257
 			);
258 258
 
259 259
 			$this->token_email = $row->email;
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 	 *
273 273
 	 * @return mixed
274 274
 	 */
275
-	function users_purchases_args( $args ) {
275
+	function users_purchases_args($args) {
276 276
 		$args['user'] = $this->token_email;
277 277
 
278 278
 		return $args;
@@ -289,11 +289,11 @@  discard block
 block discarded – undo
289 289
 		global $wpdb;
290 290
 
291 291
 		//Create columns in customers table
292
-		$query = $wpdb->query( "ALTER TABLE {$wpdb->prefix}give_customers ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`" );
292
+		$query = $wpdb->query("ALTER TABLE {$wpdb->prefix}give_customers ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`");
293 293
 
294 294
 		//Columns added properly
295
-		if ( $query ) {
296
-			give_update_option( 'email_access_installed', 1 );
295
+		if ($query) {
296
+			give_update_option('email_access_installed', 1);
297 297
 		}
298 298
 
299 299
 	}
Please login to merge, or discard this patch.
includes/admin/reporting/class-gateway-error-logs-list-table.php 1 patch
Spacing   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -9,13 +9,13 @@  discard block
 block discarded – undo
9 9
  */
10 10
 
11 11
 // Exit if accessed directly
12
-if ( ! defined( 'ABSPATH' ) ) {
12
+if ( ! defined('ABSPATH')) {
13 13
 	exit;
14 14
 }
15 15
 
16 16
 // Load WP_List_Table if not loaded
17
-if ( ! class_exists( 'WP_List_Table' ) ) {
18
-	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
17
+if ( ! class_exists('WP_List_Table')) {
18
+	require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php';
19 19
 }
20 20
 
21 21
 /**
@@ -45,11 +45,11 @@  discard block
 block discarded – undo
45 45
 		global $status, $page;
46 46
 
47 47
 		// Set parent defaults
48
-		parent::__construct( array(
49
-			'singular' => give_get_forms_label_singular(),    // Singular name of the listed records
50
-			'plural'   => give_get_forms_label_plural(),        // Plural name of the listed records
48
+		parent::__construct(array(
49
+			'singular' => give_get_forms_label_singular(), // Singular name of the listed records
50
+			'plural'   => give_get_forms_label_plural(), // Plural name of the listed records
51 51
 			'ajax'     => false                        // Does this table support ajax?
52
-		) );
52
+		));
53 53
 	}
54 54
 
55 55
 	/**
@@ -63,14 +63,14 @@  discard block
 block discarded – undo
63 63
 	 *
64 64
 	 * @return string Column Name
65 65
 	 */
66
-	public function column_default( $item, $column_name ) {
67
-		switch ( $column_name ) {
66
+	public function column_default($item, $column_name) {
67
+		switch ($column_name) {
68 68
 			case 'ID' :
69 69
 				return $item['ID_label'];
70 70
 			case 'error' :
71
-				return get_the_title( $item['ID'] ) ? get_the_title( $item['ID'] ) : __( 'Payment Error', 'give' );
71
+				return get_the_title($item['ID']) ? get_the_title($item['ID']) : __('Payment Error', 'give');
72 72
 			default:
73
-				return $item[ $column_name ];
73
+				return $item[$column_name];
74 74
 		}
75 75
 	}
76 76
 
@@ -84,29 +84,29 @@  discard block
 block discarded – undo
84 84
 	 *
85 85
 	 * @return void
86 86
 	 */
87
-	public function column_message( $item ) {
87
+	public function column_message($item) {
88 88
 
89 89
 		?>
90
-		<a href="#TB_inline?width=640&amp;inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox" title="<?php _e( 'View Log Message', 'give' ); ?> "><?php _e( 'View Log Message', 'give' ); ?></a>
90
+		<a href="#TB_inline?width=640&amp;inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox" title="<?php _e('View Log Message', 'give'); ?> "><?php _e('View Log Message', 'give'); ?></a>
91 91
 		<div id="log-message-<?php echo $item['ID']; ?>" style="display:none;">
92 92
 			<?php
93 93
 
94
-			$log_message = get_post_field( 'post_content', $item['ID'] );
94
+			$log_message = get_post_field('post_content', $item['ID']);
95 95
 
96
-			$serialized  = strpos( $log_message, '{"' );
96
+			$serialized  = strpos($log_message, '{"');
97 97
 
98 98
 			// Check to see if the log message contains serialized information
99
-			if ( $serialized !== false ) {
100
-				$length = strlen( $log_message ) - $serialized;
101
-				$intro  = substr( $log_message, 0, - $length );
102
-				$data   = substr( $log_message, $serialized, strlen( $log_message ) - 1 );
99
+			if ($serialized !== false) {
100
+				$length = strlen($log_message) - $serialized;
101
+				$intro  = substr($log_message, 0, - $length);
102
+				$data   = substr($log_message, $serialized, strlen($log_message) - 1);
103 103
 
104
-				echo wpautop( $intro );
105
-				echo wpautop( __( '<strong>Log data:</strong>', 'give' ) );
106
-				echo '<div style="word-wrap: break-word;">' . wpautop( $data ) . '</div>';
104
+				echo wpautop($intro);
105
+				echo wpautop(__('<strong>Log data:</strong>', 'give'));
106
+				echo '<div style="word-wrap: break-word;">'.wpautop($data).'</div>';
107 107
 			} else {
108 108
 				// No serialized data found
109
-				echo wpautop( $log_message );
109
+				echo wpautop($log_message);
110 110
 			}
111 111
 			?>
112 112
 		</div>
@@ -122,12 +122,12 @@  discard block
 block discarded – undo
122 122
 	 */
123 123
 	public function get_columns() {
124 124
 		$columns = array(
125
-			'ID'         => __( 'Log ID', 'give' ),
126
-			'payment_id' => __( 'Payment ID', 'give' ),
127
-			'error'      => __( 'Error', 'give' ),
128
-			'message'    => __( 'Error Message', 'give' ),
129
-			'gateway'    => __( 'Gateway', 'give' ),
130
-			'date'       => __( 'Date', 'give' )
125
+			'ID'         => __('Log ID', 'give'),
126
+			'payment_id' => __('Payment ID', 'give'),
127
+			'error'      => __('Error', 'give'),
128
+			'message'    => __('Error Message', 'give'),
129
+			'gateway'    => __('Gateway', 'give'),
130
+			'date'       => __('Date', 'give')
131 131
 		);
132 132
 
133 133
 		return $columns;
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 	 * @return int Current page number
142 142
 	 */
143 143
 	public function get_paged() {
144
-		return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1;
144
+		return isset($_GET['paged']) ? absint($_GET['paged']) : 1;
145 145
 	}
146 146
 
147 147
 	/**
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 	 * @since  1.0
152 152
 	 * @return void
153 153
 	 */
154
-	public function bulk_actions( $which = '' ) {
154
+	public function bulk_actions($which = '') {
155 155
 		give_log_views();
156 156
 	}
157 157
 
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 		global $give_logs;
168 168
 
169 169
 		// Prevent the queries from getting cached. Without this there are occasional memory issues for some installs
170
-		wp_suspend_cache_addition( true );
170
+		wp_suspend_cache_addition(true);
171 171
 
172 172
 		$logs_data = array();
173 173
 		$paged     = $this->get_paged();
@@ -176,17 +176,17 @@  discard block
 block discarded – undo
176 176
 			'paged'    => $paged
177 177
 		);
178 178
 
179
-		$logs = $give_logs->get_connected_logs( $log_query );
179
+		$logs = $give_logs->get_connected_logs($log_query);
180 180
 
181
-		if ( $logs ) {
182
-			foreach ( $logs as $log ) {
181
+		if ($logs) {
182
+			foreach ($logs as $log) {
183 183
 
184 184
 				$logs_data[] = array(
185 185
 					'ID'         => $log->ID,
186
-					'ID_label'   => '<span class=\'give-item-label give-item-label-gray\'>' . $log->ID . '</span>',
186
+					'ID_label'   => '<span class=\'give-item-label give-item-label-gray\'>'.$log->ID.'</span>',
187 187
 					'payment_id' => $log->post_parent,
188 188
 					'error'      => 'error',
189
-					'gateway'    => give_get_payment_gateway( $log->post_parent ),
189
+					'gateway'    => give_get_payment_gateway($log->post_parent),
190 190
 					'date'       => $log->post_date
191 191
 				);
192 192
 			}
@@ -207,19 +207,19 @@  discard block
 block discarded – undo
207 207
 	 *
208 208
 	 * @param string $which
209 209
 	 */
210
-	protected function display_tablenav( $which ) {
211
-		if ( 'top' === $which ) {
212
-			wp_nonce_field( 'bulk-' . $this->_args['plural'] );
210
+	protected function display_tablenav($which) {
211
+		if ('top' === $which) {
212
+			wp_nonce_field('bulk-'.$this->_args['plural']);
213 213
 		}
214 214
 		?>
215
-		<div class="tablenav <?php echo esc_attr( $which ); ?>">
215
+		<div class="tablenav <?php echo esc_attr($which); ?>">
216 216
 
217 217
 			<div class="alignleft actions bulkactions">
218
-				<?php $this->bulk_actions( $which ); ?>
218
+				<?php $this->bulk_actions($which); ?>
219 219
 			</div>
220 220
 			<?php
221
-			$this->extra_tablenav( $which );
222
-			$this->pagination( $which );
221
+			$this->extra_tablenav($which);
222
+			$this->pagination($which);
223 223
 			?>
224 224
 
225 225
 			<br class="clear"/>
@@ -246,15 +246,15 @@  discard block
 block discarded – undo
246 246
 		$columns               = $this->get_columns();
247 247
 		$hidden                = array(); // No hidden columns
248 248
 		$sortable              = $this->get_sortable_columns();
249
-		$this->_column_headers = array( $columns, $hidden, $sortable );
249
+		$this->_column_headers = array($columns, $hidden, $sortable);
250 250
 		$current_page          = $this->get_pagenum();
251 251
 		$this->items           = $this->get_logs();
252
-		$total_items           = $give_logs->get_log_count( 0, 'gateway_error' );
252
+		$total_items           = $give_logs->get_log_count(0, 'gateway_error');
253 253
 
254
-		$this->set_pagination_args( array(
254
+		$this->set_pagination_args(array(
255 255
 				'total_items' => $total_items,
256 256
 				'per_page'    => $this->per_page,
257
-				'total_pages' => ceil( $total_items / $this->per_page )
257
+				'total_pages' => ceil($total_items / $this->per_page)
258 258
 			)
259 259
 		);
260 260
 	}
Please login to merge, or discard this patch.