Test Failed
Push — master ( e5e5a2...152c49 )
by Devin
04:13
created
give.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -521,7 +521,7 @@
 block discarded – undo
521 521
  * Example: <?php $give = Give(); ?>
522 522
  *
523 523
  * @since 1.0
524
- * @return object|Give
524
+ * @return Give
525 525
  */
526 526
 function Give() {
527 527
 	return Give::instance();
Please login to merge, or discard this patch.
Spacing   +147 added lines, -147 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
  */
41 41
 
42 42
 // Exit if accessed directly.
43
-if ( ! defined( 'ABSPATH' ) ) {
43
+if ( ! defined('ABSPATH')) {
44 44
 	exit;
45 45
 }
46 46
 
47
-if ( ! class_exists( 'Give' ) ) :
47
+if ( ! class_exists('Give')) :
48 48
 
49 49
 	/**
50 50
 	 * Main Give Class
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 		 * @return    Give
203 203
 		 */
204 204
 		public static function instance() {
205
-			if ( is_null( self::$_instance ) ) {
205
+			if (is_null(self::$_instance)) {
206 206
 				self::$_instance = new self();
207 207
 			}
208 208
 
@@ -214,13 +214,13 @@  discard block
 block discarded – undo
214 214
 		 */
215 215
 		public function __construct() {
216 216
 			// PHP version
217
-			if ( ! defined( 'GIVE_REQUIRED_PHP_VERSION' ) ) {
218
-				define( 'GIVE_REQUIRED_PHP_VERSION', '5.3' );
217
+			if ( ! defined('GIVE_REQUIRED_PHP_VERSION')) {
218
+				define('GIVE_REQUIRED_PHP_VERSION', '5.3');
219 219
 			}
220 220
 
221 221
 			// Bailout: Need minimum php version to load plugin.
222
-			if ( function_exists( 'phpversion' ) && version_compare( GIVE_REQUIRED_PHP_VERSION, phpversion(), '>' ) ) {
223
-				add_action( 'admin_notices', array( $this, 'minmum_phpversion_notice' ) );
222
+			if (function_exists('phpversion') && version_compare(GIVE_REQUIRED_PHP_VERSION, phpversion(), '>')) {
223
+				add_action('admin_notices', array($this, 'minmum_phpversion_notice'));
224 224
 
225 225
 				return;
226 226
 			}
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 			$this->includes();
231 231
 			$this->init_hooks();
232 232
 
233
-			do_action( 'give_loaded' );
233
+			do_action('give_loaded');
234 234
 		}
235 235
 
236 236
 		/**
@@ -239,8 +239,8 @@  discard block
 block discarded – undo
239 239
 		 * @since  1.8.9
240 240
 		 */
241 241
 		private function init_hooks() {
242
-			register_activation_hook( __FILE__, 'give_install' );
243
-			add_action( 'plugins_loaded', array( $this, 'init' ), 0 );
242
+			register_activation_hook(__FILE__, 'give_install');
243
+			add_action('plugins_loaded', array($this, 'init'), 0);
244 244
 		}
245 245
 		/**
246 246
 		 * Init Give when WordPress Initializes.
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 			 *
255 255
 			 * @since 1.8.9
256 256
 			 */
257
-			do_action( 'before_give_init' );
257
+			do_action('before_give_init');
258 258
 
259 259
 			// Set up localization.
260 260
 			$this->load_textdomain();
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 			 *
280 280
 			 * @since 1.8.7
281 281
 			 */
282
-			do_action( 'give_init', $this );
282
+			do_action('give_init', $this);
283 283
 
284 284
 		}
285 285
 
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
 		 */
297 297
 		public function __clone() {
298 298
 			// Cloning instances of the class is forbidden.
299
-			_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'give' ), '1.0' );
299
+			_doing_it_wrong(__FUNCTION__, __('Cheatin&#8217; huh?', 'give'), '1.0');
300 300
 		}
301 301
 
302 302
 		/**
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 		 */
310 310
 		public function __wakeup() {
311 311
 			// Unserializing instances of the class is forbidden.
312
-			_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'give' ), '1.0' );
312
+			_doing_it_wrong(__FUNCTION__, __('Cheatin&#8217; huh?', 'give'), '1.0');
313 313
 		}
314 314
 
315 315
 		/**
@@ -323,33 +323,33 @@  discard block
 block discarded – undo
323 323
 		private function setup_constants() {
324 324
 
325 325
 			// Plugin version
326
-			if ( ! defined( 'GIVE_VERSION' ) ) {
327
-				define( 'GIVE_VERSION', '1.8.13' );
326
+			if ( ! defined('GIVE_VERSION')) {
327
+				define('GIVE_VERSION', '1.8.13');
328 328
 			}
329 329
 
330 330
 			// Plugin Folder Path
331
-			if ( ! defined( 'GIVE_PLUGIN_DIR' ) ) {
332
-				define( 'GIVE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
331
+			if ( ! defined('GIVE_PLUGIN_DIR')) {
332
+				define('GIVE_PLUGIN_DIR', plugin_dir_path(__FILE__));
333 333
 			}
334 334
 
335 335
 			// Plugin Folder URL
336
-			if ( ! defined( 'GIVE_PLUGIN_URL' ) ) {
337
-				define( 'GIVE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
336
+			if ( ! defined('GIVE_PLUGIN_URL')) {
337
+				define('GIVE_PLUGIN_URL', plugin_dir_url(__FILE__));
338 338
 			}
339 339
 
340 340
 			// Plugin Basename aka: "give/give.php"
341
-			if ( ! defined( 'GIVE_PLUGIN_BASENAME' ) ) {
342
-				define( 'GIVE_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
341
+			if ( ! defined('GIVE_PLUGIN_BASENAME')) {
342
+				define('GIVE_PLUGIN_BASENAME', plugin_basename(__FILE__));
343 343
 			}
344 344
 
345 345
 			// Plugin Root File
346
-			if ( ! defined( 'GIVE_PLUGIN_FILE' ) ) {
347
-				define( 'GIVE_PLUGIN_FILE', __FILE__ );
346
+			if ( ! defined('GIVE_PLUGIN_FILE')) {
347
+				define('GIVE_PLUGIN_FILE', __FILE__);
348 348
 			}
349 349
 
350 350
 			// Make sure CAL_GREGORIAN is defined
351
-			if ( ! defined( 'CAL_GREGORIAN' ) ) {
352
-				define( 'CAL_GREGORIAN', 1 );
351
+			if ( ! defined('CAL_GREGORIAN')) {
352
+				define('CAL_GREGORIAN', 1);
353 353
 			}
354 354
 		}
355 355
 
@@ -364,129 +364,129 @@  discard block
 block discarded – undo
364 364
 		private function includes() {
365 365
 			global $give_options;
366 366
 
367
-			require_once GIVE_PLUGIN_DIR . 'includes/admin/class-admin-settings.php';
368
-			require_once GIVE_PLUGIN_DIR . 'includes/admin/class-give-settings.php';
367
+			require_once GIVE_PLUGIN_DIR.'includes/admin/class-admin-settings.php';
368
+			require_once GIVE_PLUGIN_DIR.'includes/admin/class-give-settings.php';
369 369
 			$give_options = give_get_settings();
370 370
 
371
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-cron.php';
372
-			require_once GIVE_PLUGIN_DIR . 'includes/admin/give-metabox-functions.php';
373
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-cache.php';
374
-			require_once GIVE_PLUGIN_DIR . 'includes/post-types.php';
375
-			require_once GIVE_PLUGIN_DIR . 'includes/scripts.php';
376
-			require_once GIVE_PLUGIN_DIR . 'includes/ajax-functions.php';
377
-			require_once GIVE_PLUGIN_DIR . 'includes/actions.php';
378
-			require_once GIVE_PLUGIN_DIR . 'includes/filters.php';
379
-			require_once GIVE_PLUGIN_DIR . 'includes/api/class-give-api.php';
380
-			require_once GIVE_PLUGIN_DIR . 'includes/class-notices.php';
381
-
382
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-roles.php';
383
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-template-loader.php';
384
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-donate-form.php';
385
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db.php';
386
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-donors.php';
387
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-donor-meta.php';
388
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-donor.php';
389
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-stats.php';
390
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-session.php';
391
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-html-elements.php';
392
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-logging.php';
393
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-license-handler.php';
394
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-email-access.php';
395
-
396
-			require_once GIVE_PLUGIN_DIR . 'includes/country-functions.php';
397
-			require_once GIVE_PLUGIN_DIR . 'includes/template-functions.php';
398
-			require_once GIVE_PLUGIN_DIR . 'includes/misc-functions.php';
399
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/functions.php';
400
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/template.php';
401
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/widget.php';
402
-			require_once GIVE_PLUGIN_DIR . 'includes/shortcodes.php';
403
-			require_once GIVE_PLUGIN_DIR . 'includes/formatting.php';
404
-			require_once GIVE_PLUGIN_DIR . 'includes/price-functions.php';
405
-			require_once GIVE_PLUGIN_DIR . 'includes/error-tracking.php';
406
-			require_once GIVE_PLUGIN_DIR . 'includes/process-donation.php';
407
-			require_once GIVE_PLUGIN_DIR . 'includes/login-register.php';
408
-			require_once GIVE_PLUGIN_DIR . 'includes/user-functions.php';
409
-			require_once GIVE_PLUGIN_DIR . 'includes/plugin-compatibility.php';
410
-			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-classes.php';
411
-			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-functions.php';
412
-			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-actions.php';
413
-			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-filters.php';
414
-
415
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/functions.php';
416
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/actions.php';
417
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-payment-stats.php';
418
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-payments-query.php';
419
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-give-payment.php';
420
-
421
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/functions.php';
422
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/actions.php';
423
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/paypal-standard.php';
424
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/offline-donations.php';
425
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/manual.php';
426
-
427
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/class-give-emails.php';
428
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/class-give-email-tags.php';
429
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/functions.php';
430
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/template.php';
431
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/actions.php';
432
-
433
-			if ( defined( 'WP_CLI' ) && WP_CLI ) {
434
-				require_once GIVE_PLUGIN_DIR . 'includes/class-give-cli-commands.php';
371
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-cron.php';
372
+			require_once GIVE_PLUGIN_DIR.'includes/admin/give-metabox-functions.php';
373
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-cache.php';
374
+			require_once GIVE_PLUGIN_DIR.'includes/post-types.php';
375
+			require_once GIVE_PLUGIN_DIR.'includes/scripts.php';
376
+			require_once GIVE_PLUGIN_DIR.'includes/ajax-functions.php';
377
+			require_once GIVE_PLUGIN_DIR.'includes/actions.php';
378
+			require_once GIVE_PLUGIN_DIR.'includes/filters.php';
379
+			require_once GIVE_PLUGIN_DIR.'includes/api/class-give-api.php';
380
+			require_once GIVE_PLUGIN_DIR.'includes/class-notices.php';
381
+
382
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-roles.php';
383
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-template-loader.php';
384
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-donate-form.php';
385
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-db.php';
386
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-db-donors.php';
387
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-db-donor-meta.php';
388
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-donor.php';
389
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-stats.php';
390
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-session.php';
391
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-html-elements.php';
392
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-logging.php';
393
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-license-handler.php';
394
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-email-access.php';
395
+
396
+			require_once GIVE_PLUGIN_DIR.'includes/country-functions.php';
397
+			require_once GIVE_PLUGIN_DIR.'includes/template-functions.php';
398
+			require_once GIVE_PLUGIN_DIR.'includes/misc-functions.php';
399
+			require_once GIVE_PLUGIN_DIR.'includes/forms/functions.php';
400
+			require_once GIVE_PLUGIN_DIR.'includes/forms/template.php';
401
+			require_once GIVE_PLUGIN_DIR.'includes/forms/widget.php';
402
+			require_once GIVE_PLUGIN_DIR.'includes/shortcodes.php';
403
+			require_once GIVE_PLUGIN_DIR.'includes/formatting.php';
404
+			require_once GIVE_PLUGIN_DIR.'includes/price-functions.php';
405
+			require_once GIVE_PLUGIN_DIR.'includes/error-tracking.php';
406
+			require_once GIVE_PLUGIN_DIR.'includes/process-donation.php';
407
+			require_once GIVE_PLUGIN_DIR.'includes/login-register.php';
408
+			require_once GIVE_PLUGIN_DIR.'includes/user-functions.php';
409
+			require_once GIVE_PLUGIN_DIR.'includes/plugin-compatibility.php';
410
+			require_once GIVE_PLUGIN_DIR.'includes/deprecated/deprecated-classes.php';
411
+			require_once GIVE_PLUGIN_DIR.'includes/deprecated/deprecated-functions.php';
412
+			require_once GIVE_PLUGIN_DIR.'includes/deprecated/deprecated-actions.php';
413
+			require_once GIVE_PLUGIN_DIR.'includes/deprecated/deprecated-filters.php';
414
+
415
+			require_once GIVE_PLUGIN_DIR.'includes/payments/functions.php';
416
+			require_once GIVE_PLUGIN_DIR.'includes/payments/actions.php';
417
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-payment-stats.php';
418
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-payments-query.php';
419
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-give-payment.php';
420
+
421
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/functions.php';
422
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/actions.php';
423
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/paypal-standard.php';
424
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/offline-donations.php';
425
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/manual.php';
426
+
427
+			require_once GIVE_PLUGIN_DIR.'includes/emails/class-give-emails.php';
428
+			require_once GIVE_PLUGIN_DIR.'includes/emails/class-give-email-tags.php';
429
+			require_once GIVE_PLUGIN_DIR.'includes/emails/functions.php';
430
+			require_once GIVE_PLUGIN_DIR.'includes/emails/template.php';
431
+			require_once GIVE_PLUGIN_DIR.'includes/emails/actions.php';
432
+
433
+			if (defined('WP_CLI') && WP_CLI) {
434
+				require_once GIVE_PLUGIN_DIR.'includes/class-give-cli-commands.php';
435 435
 			}
436 436
 
437
-			if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) {
437
+			if (is_admin() || (defined('WP_CLI') && WP_CLI)) {
438 438
 
439
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-footer.php';
440
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/welcome.php';
441
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-pages.php';
442
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/class-api-keys-table.php';
443
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/class-i18n-module.php';
444
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-actions.php';
445
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-filters.php';
446
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/add-ons.php';
447
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/plugins.php';
448
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/dashboard-widgets.php';
449
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/class-blank-slate.php';
439
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-footer.php';
440
+				require_once GIVE_PLUGIN_DIR.'includes/admin/welcome.php';
441
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-pages.php';
442
+				require_once GIVE_PLUGIN_DIR.'includes/admin/class-api-keys-table.php';
443
+				require_once GIVE_PLUGIN_DIR.'includes/admin/class-i18n-module.php';
444
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-actions.php';
445
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-filters.php';
446
+				require_once GIVE_PLUGIN_DIR.'includes/admin/add-ons.php';
447
+				require_once GIVE_PLUGIN_DIR.'includes/admin/plugins.php';
448
+				require_once GIVE_PLUGIN_DIR.'includes/admin/dashboard-widgets.php';
449
+				require_once GIVE_PLUGIN_DIR.'includes/admin/class-blank-slate.php';
450 450
 
451
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/actions.php';
452
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/payments-history.php';
451
+				require_once GIVE_PLUGIN_DIR.'includes/admin/payments/actions.php';
452
+				require_once GIVE_PLUGIN_DIR.'includes/admin/payments/payments-history.php';
453 453
 
454
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/donors/donors.php';
455
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/donors/donor-functions.php';
456
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/donors/donor-actions.php';
454
+				require_once GIVE_PLUGIN_DIR.'includes/admin/donors/donors.php';
455
+				require_once GIVE_PLUGIN_DIR.'includes/admin/donors/donor-functions.php';
456
+				require_once GIVE_PLUGIN_DIR.'includes/admin/donors/donor-actions.php';
457 457
 
458
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/forms/metabox.php';
459
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/forms/class-metabox-form-data.php';
460
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/forms/dashboard-columns.php';
458
+				require_once GIVE_PLUGIN_DIR.'includes/admin/forms/metabox.php';
459
+				require_once GIVE_PLUGIN_DIR.'includes/admin/forms/class-metabox-form-data.php';
460
+				require_once GIVE_PLUGIN_DIR.'includes/admin/forms/dashboard-columns.php';
461 461
 
462
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/export-functions.php';
463
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/class-export.php';
464
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/export-actions.php';
465
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/pdf-reports.php';
462
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/export-functions.php';
463
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/class-export.php';
464
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/export-actions.php';
465
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/pdf-reports.php';
466 466
 
467
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reports/reports.php';
468
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reports/class-give-graph.php';
469
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reports/graphing.php';
467
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reports/reports.php';
468
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reports/class-give-graph.php';
469
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reports/graphing.php';
470 470
 
471
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/logs/logs.php';
471
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/logs/logs.php';
472 472
 
473
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/data/tools-actions.php';
473
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/data/tools-actions.php';
474 474
 
475
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/abstract-shortcode-generator.php';
476
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/class-shortcode-button.php';
477
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-form.php';
478
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-goal.php';
479
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-login.php';
480
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-register.php';
481
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-profile-editor.php';
482
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-donation-history.php';
483
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-receipt.php';
475
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/abstract-shortcode-generator.php';
476
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/class-shortcode-button.php';
477
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-form.php';
478
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-goal.php';
479
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-login.php';
480
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-register.php';
481
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-profile-editor.php';
482
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-donation-history.php';
483
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-receipt.php';
484 484
 
485
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/class-give-updates.php';
485
+				require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/class-give-updates.php';
486 486
 
487 487
 			}// End if().
488 488
 
489
-			require_once GIVE_PLUGIN_DIR . 'includes/install.php';
489
+			require_once GIVE_PLUGIN_DIR.'includes/install.php';
490 490
 
491 491
 		}
492 492
 
@@ -501,16 +501,16 @@  discard block
 block discarded – undo
501 501
 		public function load_textdomain() {
502 502
 
503 503
 			// Set filter for Give's languages directory
504
-			$give_lang_dir = dirname( plugin_basename( GIVE_PLUGIN_FILE ) ) . '/languages/';
505
-			$give_lang_dir = apply_filters( 'give_languages_directory', $give_lang_dir );
504
+			$give_lang_dir = dirname(plugin_basename(GIVE_PLUGIN_FILE)).'/languages/';
505
+			$give_lang_dir = apply_filters('give_languages_directory', $give_lang_dir);
506 506
 
507 507
 			// Traditional WordPress plugin locale filter.
508
-			$locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale();
509
-			$locale = apply_filters( 'plugin_locale', $locale, 'give' );
508
+			$locale = is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale();
509
+			$locale = apply_filters('plugin_locale', $locale, 'give');
510 510
 
511
-			unload_textdomain( 'give' );
512
-			load_textdomain( 'give', WP_LANG_DIR . '/give/give-' . $locale . '.mo' );
513
-			load_plugin_textdomain( 'give', false, $give_lang_dir );
511
+			unload_textdomain('give');
512
+			load_textdomain('give', WP_LANG_DIR.'/give/give-'.$locale.'.mo');
513
+			load_plugin_textdomain('give', false, $give_lang_dir);
514 514
 
515 515
 		}
516 516
 
@@ -523,17 +523,17 @@  discard block
 block discarded – undo
523 523
 		 */
524 524
 		public function minmum_phpversion_notice() {
525 525
 			// Bailout.
526
-			if ( ! is_admin() ) {
526
+			if ( ! is_admin()) {
527 527
 				return;
528 528
 			}
529 529
 
530
-			$notice_desc = '<p><strong>' . __( 'Your site could be faster and more secure with a newer PHP version.', 'give' ) . '</strong></p>';
531
-			$notice_desc .= '<p>' . __( 'Hey, we\'ve noticed that you\'re running an outdated version of PHP. PHP is the programming language that WordPress and Give are built on. The version that is currently used for your site is no longer supported. Newer versions of PHP are both faster and more secure. In fact, your version of PHP no longer receives security updates, which is why we\'re sending you this notice.', 'give' ) . '</p>';
532
-			$notice_desc .= '<p>' . __( 'Hosts have the ability to update your PHP version, but sometimes they don\'t dare to do that because they\'re afraid they\'ll break your site.', 'give' ) . '</p>';
533
-			$notice_desc .= '<p><strong>' . __( 'To which version should I update?', 'give' ) . '</strong></p>';
534
-			$notice_desc .= '<p>' . __( 'You should update your PHP version to either 5.6 or to 7.0 or 7.1. On a normal WordPress site, switching to PHP 5.6 should never cause issues. We would however actually recommend you switch to PHP7. There are some plugins that are not ready for PHP7 though, so do some testing first. PHP7 is much faster than PHP 5.6. It\'s also the only PHP version still in active development and therefore the better option for your site in the long run.', 'give' ) . '</p>';
535
-			$notice_desc .= '<p><strong>' . __( 'Can\'t update? Ask your host!', 'give' ) . '</strong></p>';
536
-			$notice_desc .= '<p>' . sprintf( __( 'If you cannot upgrade your PHP version yourself, you can send an email to your host. If they don\'t want to upgrade your PHP version, we would suggest you switch hosts. Have a look at one of the recommended %1$sWordPress hosting partners%2$s.', 'give' ), sprintf( '<a href="%1$s" target="_blank">', esc_url( 'https://wordpress.org/hosting/' ) ), '</a>' ) . '</p>';
530
+			$notice_desc = '<p><strong>'.__('Your site could be faster and more secure with a newer PHP version.', 'give').'</strong></p>';
531
+			$notice_desc .= '<p>'.__('Hey, we\'ve noticed that you\'re running an outdated version of PHP. PHP is the programming language that WordPress and Give are built on. The version that is currently used for your site is no longer supported. Newer versions of PHP are both faster and more secure. In fact, your version of PHP no longer receives security updates, which is why we\'re sending you this notice.', 'give').'</p>';
532
+			$notice_desc .= '<p>'.__('Hosts have the ability to update your PHP version, but sometimes they don\'t dare to do that because they\'re afraid they\'ll break your site.', 'give').'</p>';
533
+			$notice_desc .= '<p><strong>'.__('To which version should I update?', 'give').'</strong></p>';
534
+			$notice_desc .= '<p>'.__('You should update your PHP version to either 5.6 or to 7.0 or 7.1. On a normal WordPress site, switching to PHP 5.6 should never cause issues. We would however actually recommend you switch to PHP7. There are some plugins that are not ready for PHP7 though, so do some testing first. PHP7 is much faster than PHP 5.6. It\'s also the only PHP version still in active development and therefore the better option for your site in the long run.', 'give').'</p>';
535
+			$notice_desc .= '<p><strong>'.__('Can\'t update? Ask your host!', 'give').'</strong></p>';
536
+			$notice_desc .= '<p>'.sprintf(__('If you cannot upgrade your PHP version yourself, you can send an email to your host. If they don\'t want to upgrade your PHP version, we would suggest you switch hosts. Have a look at one of the recommended %1$sWordPress hosting partners%2$s.', 'give'), sprintf('<a href="%1$s" target="_blank">', esc_url('https://wordpress.org/hosting/')), '</a>').'</p>';
537 537
 
538 538
 			echo sprintf(
539 539
 				'<div class="notice notice-error">%1$s</div>',
Please login to merge, or discard this patch.
includes/admin/tools/data/class-give-tools-delete-test-donors.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 	 * Return the calculated completion percentage.
217 217
 	 *
218 218
 	 * @since 1.8.12
219
-	 * @return int
219
+	 * @return double
220 220
 	 */
221 221
 	public function get_percentage_complete() {
222 222
 		return ceil( ( 100 * $this->step_completed ) / $this->total_step );
@@ -353,6 +353,9 @@  discard block
 block discarded – undo
353 353
 		return true;
354 354
 	}
355 355
 
356
+	/**
357
+	 * @param integer $page
358
+	 */
356 359
 	public function get_delete_ids( $donation_ids, $page ) {
357 360
 		$index            = $page --;
358 361
 		$count            = count( $donation_ids );
Please login to merge, or discard this patch.
Spacing   +91 added lines, -91 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
 
@@ -109,32 +109,32 @@  discard block
 block discarded – undo
109 109
 		$donor_ids    = array();
110 110
 
111 111
 		// Check if the ajax request if running for the first time.
112
-		if ( 1 === (int) $this->step ) {
112
+		if (1 === (int) $this->step) {
113 113
 			// Delete all the donation ids.
114
-			$this->delete_option( $this->donation_key );
114
+			$this->delete_option($this->donation_key);
115 115
 			// Delete all the donor ids.
116
-			$this->delete_option( $this->donor_key );
116
+			$this->delete_option($this->donor_key);
117 117
 
118 118
 			// Delete all the step and set to 'count' which if the first step in the process of deleting the donors.
119
-			$this->update_option( $this->step_key, 'count' );
119
+			$this->update_option($this->step_key, 'count');
120 120
 
121 121
 			// Delete tha page count of the step.
122
-			$this->update_option( $this->step_on_key, '0' );
122
+			$this->update_option($this->step_on_key, '0');
123 123
 		} else {
124 124
 			// Get the old donors list.
125
-			$donor_ids = $this->get_option( $this->donor_key );
125
+			$donor_ids = $this->get_option($this->donor_key);
126 126
 
127 127
 			// Get the old donation list.
128
-			$donation_ids = $this->get_option( $this->donation_key );
128
+			$donation_ids = $this->get_option($this->donation_key);
129 129
 		}
130 130
 
131 131
 		// Get the step and check for it if it's on the first step( 'count' ) or not.
132 132
 		$step = (int) $this->get_step();
133
-		if ( 1 === $step ) {
133
+		if (1 === $step) {
134 134
 			/**
135 135
 			 * Will add or update the donation and donor data by running wp query.
136 136
 			 */
137
-			$this->count( $step, $donation_ids, $donor_ids );
137
+			$this->count($step, $donation_ids, $donor_ids);
138 138
 		}
139 139
 	}
140 140
 
@@ -145,17 +145,17 @@  discard block
 block discarded – undo
145 145
 	 * @param array $donation_ids Contain the list of all the donation id's that has being add before this
146 146
 	 * @param array $donor_ids Contain the list of all the donors id's that has being add before this
147 147
 	 */
148
-	private function count( $step, $donation_ids = array(), $donor_ids = array() ) {
148
+	private function count($step, $donation_ids = array(), $donor_ids = array()) {
149 149
 
150 150
 		// Get the Page count by default it's zero.
151 151
 		$paged = (int) $this->get_step_page();
152 152
 		// Incresed the page count by one.
153
-		++ $paged;
153
+		++$paged;
154 154
 
155 155
 		/**
156 156
 		 * Filter add to alter the argument before the wp quest run
157 157
 		 */
158
-		$args = apply_filters( 'give_tools_reset_stats_total_args', array(
158
+		$args = apply_filters('give_tools_reset_stats_total_args', array(
159 159
 			'post_type'      => 'give_payment',
160 160
 			'post_status'    => 'any',
161 161
 			'posts_per_page' => $this->per_step,
@@ -163,16 +163,16 @@  discard block
 block discarded – undo
163 163
 			// ONLY TEST MODE TRANSACTIONS!!!
164 164
 			'meta_key'       => '_give_payment_mode',
165 165
 			'meta_value'     => 'test',
166
-		) );
166
+		));
167 167
 
168 168
 		// Reset the post data.
169 169
 		wp_reset_postdata();
170 170
 		// Getting the new donation.
171
-		$donation_posts = new WP_Query( $args );
171
+		$donation_posts = new WP_Query($args);
172 172
 
173 173
 		// The Loop.
174
-		if ( $donation_posts->have_posts() ) {
175
-			while ( $donation_posts->have_posts() ) {
174
+		if ($donation_posts->have_posts()) {
175
+			while ($donation_posts->have_posts()) {
176 176
 				$donation_posts->the_post();
177 177
 				global $post;
178 178
 				// Add the donation id in side the array.
@@ -191,23 +191,23 @@  discard block
 block discarded – undo
191 191
 		$max_num_pages = (int) $donation_posts->max_num_pages;
192 192
 
193 193
 		// Check current page is less then max number of page or not
194
-		if ( $paged < $max_num_pages ) {
194
+		if ($paged < $max_num_pages) {
195 195
 			// Update the curretn page virable for the next step
196
-			$this->update_option( $this->step_on_key, $paged );
196
+			$this->update_option($this->step_on_key, $paged);
197 197
 
198 198
 			// Calculating percentage.
199 199
 			$page_remain          = $max_num_pages - $paged;
200
-			$this->total_step     = (int) $max_num_pages + ( $total_donation / $this->per_step ) + ( ( $page_remain * 2 ) * count( $donor_ids ) );
200
+			$this->total_step     = (int) $max_num_pages + ($total_donation / $this->per_step) + (($page_remain * 2) * count($donor_ids));
201 201
 			$this->step_completed = $paged;
202 202
 		} else {
203
-			$donation_ids_count = count( $donor_ids );
204
-			$this->update_option( $this->step_key, 'donation' );
205
-			$this->update_option( $this->step_on_key, '0' );
203
+			$donation_ids_count = count($donor_ids);
204
+			$this->update_option($this->step_key, 'donation');
205
+			$this->update_option($this->step_on_key, '0');
206 206
 		}
207 207
 
208
-		$donor_ids = array_unique( $donor_ids );
209
-		$this->update_option( $this->donor_key, $donor_ids );
210
-		$this->update_option( $this->donation_key, $donation_ids );
208
+		$donor_ids = array_unique($donor_ids);
209
+		$this->update_option($this->donor_key, $donor_ids);
210
+		$this->update_option($this->donation_key, $donation_ids);
211 211
 
212 212
 		wp_reset_postdata();
213 213
 	}
@@ -219,34 +219,34 @@  discard block
 block discarded – undo
219 219
 	 * @return int
220 220
 	 */
221 221
 	public function get_percentage_complete() {
222
-		return ceil( ( 100 * $this->step_completed ) / $this->total_step );
222
+		return ceil((100 * $this->step_completed) / $this->total_step);
223 223
 	}
224 224
 
225 225
 	public function process_step() {
226 226
 
227
-		if ( ! $this->can_export() ) {
228
-			wp_die( __( 'You do not have permission to delete test transactions.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) );
227
+		if ( ! $this->can_export()) {
228
+			wp_die(__('You do not have permission to delete test transactions.', 'give'), __('Error', 'give'), array('response' => 403));
229 229
 		}
230 230
 
231 231
 		$had_data = $this->get_data();
232 232
 
233
-		if ( $had_data ) {
233
+		if ($had_data) {
234 234
 			$this->done = false;
235 235
 
236 236
 			return true;
237 237
 		} else {
238
-			update_option( 'give_earnings_total', give_get_total_earnings( true ) );
239
-			Give_Cache::delete( Give_Cache::get_key( 'give_estimated_monthly_stats' ) );
238
+			update_option('give_earnings_total', give_get_total_earnings(true));
239
+			Give_Cache::delete(Give_Cache::get_key('give_estimated_monthly_stats'));
240 240
 
241
-			$this->delete_option( $this->donation_key );
241
+			$this->delete_option($this->donation_key);
242 242
 
243 243
 			// Reset the sequential order numbers
244
-			if ( give_get_option( 'enable_sequential' ) ) {
245
-				delete_option( 'give_last_payment_number' );
244
+			if (give_get_option('enable_sequential')) {
245
+				delete_option('give_last_payment_number');
246 246
 			}
247 247
 
248 248
 			$this->done    = true;
249
-			$this->message = __( 'Test donor and transactions successfully deleted.', 'give' );
249
+			$this->message = __('Test donor and transactions successfully deleted.', 'give');
250 250
 
251 251
 			return false;
252 252
 		}
@@ -264,12 +264,12 @@  discard block
 block discarded – undo
264 264
 	public function get_data() {
265 265
 
266 266
 		// Get the donation id's.
267
-		$donation_ids = $this->get_option( $this->donation_key );
267
+		$donation_ids = $this->get_option($this->donation_key);
268 268
 
269 269
 		/**
270 270
 		 * Return false id not test donation is found.
271 271
 		 */
272
-		if ( empty( $donation_ids ) ) {
272
+		if (empty($donation_ids)) {
273 273
 			$this->is_empty   = true;
274 274
 			$this->total_step = 1;
275 275
 
@@ -280,81 +280,81 @@  discard block
 block discarded – undo
280 280
 		$step = (int) $this->get_step();
281 281
 
282 282
 		// get teh donor ids.
283
-		$donor_ids = $this->get_option( $this->donor_key );
283
+		$donor_ids = $this->get_option($this->donor_key);
284 284
 
285 285
 		// In step to we delete all the donation in loop.
286
-		if ( 2 === $step ) {
286
+		if (2 === $step) {
287 287
 			$pass_to_donor = false;
288 288
 			$page          = (int) $this->get_step_page();
289
-			$page ++;
290
-			$count = count( $donation_ids );
289
+			$page++;
290
+			$count = count($donation_ids);
291 291
 
292
-			$this->total_step     = ( ( count( $donation_ids ) / $this->per_step ) * 2 ) + count( $donor_ids );
292
+			$this->total_step     = ((count($donation_ids) / $this->per_step) * 2) + count($donor_ids);
293 293
 			$this->step_completed = $page;
294 294
 
295 295
 
296
-			if ( $count > $this->per_step ) {
296
+			if ($count > $this->per_step) {
297 297
 
298
-				$this->update_option( $this->step_on_key, $page );
299
-				$donation_ids = $this->get_delete_ids( $donation_ids, $page );
300
-				$current_page = (int) ceil( $count / $this->per_step );
298
+				$this->update_option($this->step_on_key, $page);
299
+				$donation_ids = $this->get_delete_ids($donation_ids, $page);
300
+				$current_page = (int) ceil($count / $this->per_step);
301 301
 
302
-				if ( $page === $current_page ) {
302
+				if ($page === $current_page) {
303 303
 					$pass_to_donor = true;
304 304
 				}
305 305
 			} else {
306 306
 				$pass_to_donor = true;
307 307
 			}
308 308
 
309
-			if ( true === $pass_to_donor ) {
310
-				$this->update_option( $this->step_key, 'donor' );
311
-				$this->update_option( $this->step_on_key, '0' );
309
+			if (true === $pass_to_donor) {
310
+				$this->update_option($this->step_key, 'donor');
311
+				$this->update_option($this->step_on_key, '0');
312 312
 			}
313 313
 
314 314
 			global $wpdb;
315
-			foreach ( $donation_ids as $item ) {
315
+			foreach ($donation_ids as $item) {
316 316
 
317 317
 				// will delete the payment log first.
318
-				$parent_query = $wpdb->prepare( "SELECT post_id as id FROM $wpdb->postmeta WHERE meta_key = %s AND meta_value = %d", '_give_log_payment_id', (int) $item );
319
-				$log_id       = $wpdb->get_row( $parent_query, ARRAY_A );
318
+				$parent_query = $wpdb->prepare("SELECT post_id as id FROM $wpdb->postmeta WHERE meta_key = %s AND meta_value = %d", '_give_log_payment_id', (int) $item);
319
+				$log_id       = $wpdb->get_row($parent_query, ARRAY_A);
320 320
 				// Check if payment has it log or not if yes then delete it.
321
-				if ( ! empty( $log_id['id'] ) ) {
321
+				if ( ! empty($log_id['id'])) {
322 322
 					// Deleting the payment log.
323
-					wp_delete_post( $log_id['id'], true );
323
+					wp_delete_post($log_id['id'], true);
324 324
 				}
325 325
 
326 326
 				// Delete the main payment.
327
-				wp_delete_post( $item, true );
327
+				wp_delete_post($item, true);
328 328
 			}
329
-			do_action( 'give_delete_log_cache' );
329
+			do_action('give_delete_log_cache');
330 330
 		}
331 331
 
332 332
 
333 333
 		// Here we delete all the donor
334
-		if ( 3 === $step ) {
334
+		if (3 === $step) {
335 335
 			$page  = (int) $this->get_step_page();
336
-			$count = count( $donor_ids );
336
+			$count = count($donor_ids);
337 337
 
338
-			$this->total_step     = ( ( count( $donation_ids ) / $this->per_step ) * 2 ) + count( $donor_ids );
339
-			$this->step_completed = $page + ( count( $donation_ids ) / $this->per_step );
338
+			$this->total_step     = ((count($donation_ids) / $this->per_step) * 2) + count($donor_ids);
339
+			$this->step_completed = $page + (count($donation_ids) / $this->per_step);
340 340
 
341
-			$args = apply_filters( 'give_tools_reset_stats_total_args', array(
341
+			$args = apply_filters('give_tools_reset_stats_total_args', array(
342 342
 				'post_type'      => 'give_payment',
343 343
 				'post_status'    => 'any',
344 344
 				'posts_per_page' => 1,
345 345
 				'meta_key'       => '_give_payment_mode',
346 346
 				'meta_value'     => 'live',
347
-				'author'         => $donor_ids[ $page ],
348
-			) );
347
+				'author'         => $donor_ids[$page],
348
+			));
349 349
 
350
-			$donation_posts = get_posts( $args );
351
-			if ( empty( $donation_posts ) ) {
352
-				Give()->donors->delete_by_user_id( $donor_ids[ $page ] );
350
+			$donation_posts = get_posts($args);
351
+			if (empty($donation_posts)) {
352
+				Give()->donors->delete_by_user_id($donor_ids[$page]);
353 353
 			}
354 354
 
355
-			$page ++;
356
-			$this->update_option( $this->step_on_key, $page );
357
-			if ( $count === $page ) {
355
+			$page++;
356
+			$this->update_option($this->step_on_key, $page);
357
+			if ($count === $page) {
358 358
 				$this->is_empty = false;
359 359
 
360 360
 				return false;
@@ -366,24 +366,24 @@  discard block
 block discarded – undo
366 366
 		return true;
367 367
 	}
368 368
 
369
-	public function get_delete_ids( $donation_ids, $page ) {
370
-		$index            = $page --;
371
-		$count            = count( $donation_ids );
369
+	public function get_delete_ids($donation_ids, $page) {
370
+		$index            = $page--;
371
+		$count            = count($donation_ids);
372 372
 		$temp             = 0;
373 373
 		$current_page     = 0;
374 374
 		$post_delete      = $this->per_step;
375 375
 		$page_donation_id = array();
376 376
 
377
-		foreach ( $donation_ids as $item ) {
378
-			$temp ++;
379
-			$page_donation_id[ $current_page ][] = $item;
380
-			if ( $temp === $post_delete ) {
381
-				$current_page ++;
377
+		foreach ($donation_ids as $item) {
378
+			$temp++;
379
+			$page_donation_id[$current_page][] = $item;
380
+			if ($temp === $post_delete) {
381
+				$current_page++;
382 382
 				$temp = 0;
383 383
 			}
384 384
 		}
385 385
 
386
-		return $page_donation_id[ $page ];
386
+		return $page_donation_id[$page];
387 387
 	}
388 388
 
389 389
 	/**
@@ -395,8 +395,8 @@  discard block
 block discarded – undo
395 395
 	 *
396 396
 	 * @return mixed       Returns the data from the database
397 397
 	 */
398
-	public function get_option( $key, $defalut_value = false ) {
399
-		return get_option( $key, $defalut_value );
398
+	public function get_option($key, $defalut_value = false) {
399
+		return get_option($key, $defalut_value);
400 400
 	}
401 401
 
402 402
 	/**
@@ -409,8 +409,8 @@  discard block
 block discarded – undo
409 409
 	 *
410 410
 	 * @return void
411 411
 	 */
412
-	public function update_option( $key, $value ) {
413
-		update_option( $key, $value, false );
412
+	public function update_option($key, $value) {
413
+		update_option($key, $value, false);
414 414
 	}
415 415
 
416 416
 	/**
@@ -422,8 +422,8 @@  discard block
 block discarded – undo
422 422
 	 *
423 423
 	 * @return void
424 424
 	 */
425
-	public function delete_option( $key ) {
426
-		delete_option( $key );
425
+	public function delete_option($key) {
426
+		delete_option($key);
427 427
 	}
428 428
 
429 429
 	/**
@@ -434,12 +434,12 @@  discard block
 block discarded – undo
434 434
 	 * @return int|string
435 435
 	 */
436 436
 	private function get_step() {
437
-		$step_key = (string) $this->get_option( $this->step_key, false );
438
-		if ( 'count' === $step_key ) {
437
+		$step_key = (string) $this->get_option($this->step_key, false);
438
+		if ('count' === $step_key) {
439 439
 			return 1;
440
-		} elseif ( 'donation' === $step_key ) {
440
+		} elseif ('donation' === $step_key) {
441 441
 			return 2;
442
-		} elseif ( 'donor' === $step_key ) {
442
+		} elseif ('donor' === $step_key) {
443 443
 			return 3;
444 444
 		} else {
445 445
 			return $step_key;
@@ -450,6 +450,6 @@  discard block
 block discarded – undo
450 450
 	 * Get the current $page value in the ajax.
451 451
 	 */
452 452
 	private function get_step_page() {
453
-		return $this->get_option( $this->step_on_key, false );
453
+		return $this->get_option($this->step_on_key, false);
454 454
 	}
455 455
 }
Please login to merge, or discard this patch.
includes/formatting.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -340,7 +340,7 @@
 block discarded – undo
340 340
  * @since 1.0
341 341
  *
342 342
  * @param int|float|string $amount   Formatted or sanitized price
343
- * @param int|bool         $dp       number of decimals
343
+ * @param boolean         $dp       number of decimals
344 344
  * @param bool             $sanitize Whether or not sanitize number
345 345
  *
346 346
  * @return string $amount Newly formatted amount or Price Not Available
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
 	// Bailout.
97 97
 	if( empty( $number ) || ( ! is_numeric( $number ) && ! is_string( $number ) ) ) {
98 98
 		return $number;
99
-	}elseif (
99
+	} elseif (
100 100
 		( false == strpos( $number, $thousand_separator ) ) &&
101 101
 		( false === strpos( $number, $decimal_separator ) )
102 102
 	) {
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -107,9 +107,9 @@
 block discarded – undo
107 107
 	// Handle sanitize database values.
108 108
 	$number_parts = explode( '.', $number );
109 109
 	$is_db_sanitize_val = ( 2 === count( $number_parts ) &&
110
-	                        is_numeric( $number_parts[0] ) &&
111
-	                        is_numeric( $number_parts[1] ) &&
112
-	                        ( 6 === strlen( $number_parts[1] ) ) );
110
+							is_numeric( $number_parts[0] ) &&
111
+							is_numeric( $number_parts[1] ) &&
112
+							( 6 === strlen( $number_parts[1] ) ) );
113 113
 
114 114
 	if( $is_db_sanitize_val ) {
115 115
 		// Sanitize database value.
Please login to merge, or discard this patch.
Spacing   +148 added lines, -151 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly.
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
  * @return mixed
24 24
  */
25 25
 function give_get_price_decimals() {
26
-	return apply_filters( 'give_sanitize_amount_decimals', give_get_option( 'number_decimals', 0 ) );
26
+	return apply_filters('give_sanitize_amount_decimals', give_get_option('number_decimals', 0));
27 27
 }
28 28
 
29 29
 /**
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
  */
36 36
 function give_get_price_thousand_separator() {
37 37
 	$give_options       = give_get_settings();
38
-	$thousand_separator = isset( $give_options['thousands_separator'] ) ? $give_options['thousands_separator'] : ',';
39
-	$thousand_separator = empty( $thousand_separator ) ? ' ' : $thousand_separator;
38
+	$thousand_separator = isset($give_options['thousands_separator']) ? $give_options['thousands_separator'] : ',';
39
+	$thousand_separator = empty($thousand_separator) ? ' ' : $thousand_separator;
40 40
 
41 41
 	return $thousand_separator;
42 42
 }
@@ -55,11 +55,10 @@  discard block
 block discarded – undo
55 55
 	);
56 56
 
57 57
 	$thousand_separator = give_get_price_thousand_separator();
58
-	$default_decimal_separator = in_array( $thousand_separator, $default_decimal_separators ) ?
59
-		$default_decimal_separators[$thousand_separator] :
60
-		'.';
58
+	$default_decimal_separator = in_array($thousand_separator, $default_decimal_separators) ?
59
+		$default_decimal_separators[$thousand_separator] : '.';
61 60
 
62
-	$decimal_separator = give_get_option( 'decimal_separator', $default_decimal_separator );
61
+	$decimal_separator = give_get_option('decimal_separator', $default_decimal_separator);
63 62
 
64 63
 	return $decimal_separator;
65 64
 }
@@ -74,8 +73,8 @@  discard block
 block discarded – undo
74 73
  *
75 74
  * @return string $amount Newly sanitized amount
76 75
  */
77
-function give_sanitize_amount_for_db( $number ) {
78
-	return give_maybe_sanitize_amount( $number, 6 );
76
+function give_sanitize_amount_for_db($number) {
77
+	return give_maybe_sanitize_amount($number, 6);
79 78
 }
80 79
 
81 80
 /**
@@ -89,41 +88,41 @@  discard block
 block discarded – undo
89 88
  *
90 89
  * @return string $amount Newly sanitized amount
91 90
  */
92
-function give_maybe_sanitize_amount( $number, $dp = false, $trim_zeros = false ) {
91
+function give_maybe_sanitize_amount($number, $dp = false, $trim_zeros = false) {
93 92
 	$thousand_separator = give_get_price_thousand_separator();
94 93
 	$decimal_separator  = give_get_price_decimal_separator();
95 94
 
96 95
 	// Bailout.
97
-	if( empty( $number ) || ( ! is_numeric( $number ) && ! is_string( $number ) ) ) {
96
+	if (empty($number) || ( ! is_numeric($number) && ! is_string($number))) {
98 97
 		return $number;
99 98
 	}elseif (
100
-		( false == strpos( $number, $thousand_separator ) ) &&
101
-		( false === strpos( $number, $decimal_separator ) )
99
+		(false == strpos($number, $thousand_separator)) &&
100
+		(false === strpos($number, $decimal_separator))
102 101
 	) {
103
-		return number_format( $number, ( is_bool( $dp ) ? give_get_price_decimals() : $dp ), '.', '' );
102
+		return number_format($number, (is_bool($dp) ? give_get_price_decimals() : $dp), '.', '');
104 103
 	}
105 104
 
106 105
 	// Handle thousand separator as '.'
107 106
 	// Handle sanitize database values.
108
-	$number_parts = explode( '.', $number );
109
-	$is_db_sanitize_val = ( 2 === count( $number_parts ) &&
110
-	                        is_numeric( $number_parts[0] ) &&
111
-	                        is_numeric( $number_parts[1] ) &&
112
-	                        ( 6 === strlen( $number_parts[1] ) ) );
107
+	$number_parts = explode('.', $number);
108
+	$is_db_sanitize_val = (2 === count($number_parts) &&
109
+	                        is_numeric($number_parts[0]) &&
110
+	                        is_numeric($number_parts[1]) &&
111
+	                        (6 === strlen($number_parts[1])));
113 112
 
114
-	if( $is_db_sanitize_val ) {
113
+	if ($is_db_sanitize_val) {
115 114
 		// Sanitize database value.
116
-		return number_format( $number, ( is_bool( $dp ) ? give_get_price_decimals() : $dp ), '.', '' );
115
+		return number_format($number, (is_bool($dp) ? give_get_price_decimals() : $dp), '.', '');
117 116
 
118 117
 	} elseif (
119 118
 		'.' === $thousand_separator &&
120
-		false !== strpos( $number, $thousand_separator )
121
-	){
119
+		false !== strpos($number, $thousand_separator)
120
+	) {
122 121
 		// Fix point thousand separator value.
123
-		$number = str_replace( '.', '', $number );
122
+		$number = str_replace('.', '', $number);
124 123
 	}
125 124
 
126
-	return give_sanitize_amount( $number, $dp, $trim_zeros );
125
+	return give_sanitize_amount($number, $dp, $trim_zeros);
127 126
 }
128 127
 
129 128
 /**
@@ -139,67 +138,67 @@  discard block
 block discarded – undo
139 138
  *
140 139
  * @return string $amount Newly sanitized amount
141 140
  */
142
-function give_sanitize_amount( $number, $dp = false, $trim_zeros = false ) {
141
+function give_sanitize_amount($number, $dp = false, $trim_zeros = false) {
143 142
 
144 143
 	// Bailout.
145
-	if ( empty( $number ) || ( ! is_numeric( $number ) && ! is_string( $number ) ) ) {
144
+	if (empty($number) || ( ! is_numeric($number) && ! is_string($number))) {
146 145
 		return $number;
147 146
 	}
148 147
 
149 148
 	// Remove slash from amount.
150 149
 	// If thousand or decimal separator is set to ' then in $_POST or $_GET param we will get an escaped number.
151 150
 	// To prevent notices and warning remove slash from amount/number.
152
-	$number = wp_unslash( $number );
151
+	$number = wp_unslash($number);
153 152
 
154 153
 	$thousand_separator = give_get_price_thousand_separator();
155 154
 
156 155
 	$locale   = localeconv();
157
-	$decimals = array( give_get_price_decimal_separator(), $locale['decimal_point'], $locale['mon_decimal_point'] );
156
+	$decimals = array(give_get_price_decimal_separator(), $locale['decimal_point'], $locale['mon_decimal_point']);
158 157
 
159 158
 	// Remove locale from string
160
-	if ( ! is_float( $number ) ) {
161
-		$number = str_replace( $decimals, '.', $number );
159
+	if ( ! is_float($number)) {
160
+		$number = str_replace($decimals, '.', $number);
162 161
 	}
163 162
 
164 163
 	// Remove thousand amount formatting if amount has.
165 164
 	// This condition use to add backward compatibility to version before 1.6, because before version 1.6 we were saving formatted amount to db.
166 165
 	// Do not replace thousand separator from price if it is same as decimal separator, because it will be already replace by above code.
167
-	if ( ! in_array( $thousand_separator, $decimals ) && ( false !== strpos( $number, $thousand_separator ) ) ) {
168
-		$number = str_replace( $thousand_separator, '', $number );
169
-	} elseif ( in_array( $thousand_separator, $decimals ) ) {
170
-		$number = preg_replace( '/\.(?=.*\.)/', '', $number );
166
+	if ( ! in_array($thousand_separator, $decimals) && (false !== strpos($number, $thousand_separator))) {
167
+		$number = str_replace($thousand_separator, '', $number);
168
+	} elseif (in_array($thousand_separator, $decimals)) {
169
+		$number = preg_replace('/\.(?=.*\.)/', '', $number);
171 170
 	}
172 171
 
173 172
 	// Remove non numeric entity before decimal separator.
174
-	$number     = preg_replace( '/[^0-9\.]/', '', $number );
173
+	$number     = preg_replace('/[^0-9\.]/', '', $number);
175 174
 	$default_dp = give_get_price_decimals();
176 175
 
177 176
 	// Reset negative amount to zero.
178
-	if ( 0 > $number ) {
179
-		$number = number_format( 0, $default_dp, '.' );
177
+	if (0 > $number) {
178
+		$number = number_format(0, $default_dp, '.');
180 179
 	}
181 180
 
182 181
 	// If number does not have decimal then add number of decimals to it.
183 182
 	if (
184
-		false === strpos( $number, '.' )
185
-		|| ( $default_dp > strlen( substr( $number, strpos( $number, '.' ) + 1 ) ) )
183
+		false === strpos($number, '.')
184
+		|| ($default_dp > strlen(substr($number, strpos($number, '.') + 1)))
186 185
 	) {
187
-		$number = number_format( $number, $default_dp, '.', '' );
186
+		$number = number_format($number, $default_dp, '.', '');
188 187
 	}
189 188
 
190 189
 	// Format number by custom number of decimals.
191
-	if ( false !== $dp ) {
192
-		$dp     = intval( is_bool( $dp ) ? $default_dp : $dp );
193
-		$dp     = apply_filters( 'give_sanitize_amount_decimals', $dp, $number );
194
-		$number = number_format( floatval( $number ), $dp, '.', '' );
190
+	if (false !== $dp) {
191
+		$dp     = intval(is_bool($dp) ? $default_dp : $dp);
192
+		$dp     = apply_filters('give_sanitize_amount_decimals', $dp, $number);
193
+		$number = number_format(floatval($number), $dp, '.', '');
195 194
 	}
196 195
 
197 196
 	// Trim zeros.
198
-	if ( $trim_zeros && strstr( $number, '.' ) ) {
199
-		$number = rtrim( rtrim( $number, '0' ), '.' );
197
+	if ($trim_zeros && strstr($number, '.')) {
198
+		$number = rtrim(rtrim($number, '0'), '.');
200 199
 	}
201 200
 
202
-	return apply_filters( 'give_sanitize_amount', $number );
201
+	return apply_filters('give_sanitize_amount', $number);
203 202
 }
204 203
 
205 204
 /**
@@ -212,10 +211,10 @@  discard block
 block discarded – undo
212 211
  *
213 212
  * @return string $amount   Newly formatted amount or Price Not Available
214 213
  */
215
-function give_format_amount( $amount, $args = array() ) {
214
+function give_format_amount($amount, $args = array()) {
216 215
 	// Backward compatibility.
217
-	if( is_bool( $args ) ) {
218
-		$args = array( 'decimal' => $args );
216
+	if (is_bool($args)) {
217
+		$args = array('decimal' => $args);
219 218
 	}
220 219
 
221 220
 	$default_args = array(
@@ -224,60 +223,59 @@  discard block
 block discarded – undo
224 223
 		'currency' => give_get_currency(),
225 224
 	);
226 225
 
227
-	$args = wp_parse_args( $args, $default_args );
226
+	$args = wp_parse_args($args, $default_args);
228 227
 
229 228
 	$formatted     = 0;
230 229
 	$thousands_sep = give_get_price_thousand_separator();
231 230
 	$decimal_sep   = give_get_price_decimal_separator();
232
-	$decimals      = ! empty( $args['decimal'] ) ? give_get_price_decimals() : 0;
231
+	$decimals      = ! empty($args['decimal']) ? give_get_price_decimals() : 0;
233 232
 	$currency      = $args['currency'];
234 233
 
235
-	if ( ! empty( $amount ) ) {
234
+	if ( ! empty($amount)) {
236 235
 		// Sanitize amount before formatting.
237
-		$amount = ! empty( $args['sanitize'] ) ?
238
-			give_maybe_sanitize_amount( $amount, $decimals ) :
239
-			number_format( $amount, $decimals, '.', '' );
236
+		$amount = ! empty($args['sanitize']) ?
237
+			give_maybe_sanitize_amount($amount, $decimals) : number_format($amount, $decimals, '.', '');
240 238
 
241
-		switch ( $currency ) {
239
+		switch ($currency) {
242 240
 			case 'INR':
243 241
 				$decimal_amount = '';
244 242
 
245 243
 				// Extract decimals from amount
246
-				if ( ( $pos = strpos( $amount, '.' ) ) !== false ) {
247
-					if ( ! empty( $decimals ) ) {
248
-						$decimal_amount = substr( round( substr( $amount, $pos ), $decimals ), 1 );
249
-						$amount         = substr( $amount, 0, $pos );
250
-
251
-						if ( ! $decimal_amount ) {
252
-							$decimal_amount = substr( '.0000000000', 0, ( $decimals + 1 ) );
253
-						} elseif ( ( $decimals + 1 ) > strlen( $decimal_amount ) ) {
254
-							$decimal_amount = substr( "{$decimal_amount}000000000", 0, ( $decimals + 1 ) );
244
+				if (($pos = strpos($amount, '.')) !== false) {
245
+					if ( ! empty($decimals)) {
246
+						$decimal_amount = substr(round(substr($amount, $pos), $decimals), 1);
247
+						$amount         = substr($amount, 0, $pos);
248
+
249
+						if ( ! $decimal_amount) {
250
+							$decimal_amount = substr('.0000000000', 0, ($decimals + 1));
251
+						} elseif (($decimals + 1) > strlen($decimal_amount)) {
252
+							$decimal_amount = substr("{$decimal_amount}000000000", 0, ($decimals + 1));
255 253
 						}
256 254
 
257 255
 					} else {
258
-						$amount = number_format( $amount, $decimals, $decimal_sep, '' );
256
+						$amount = number_format($amount, $decimals, $decimal_sep, '');
259 257
 					}
260 258
 				}
261 259
 
262 260
 				// Extract last 3 from amount
263
-				$result = substr( $amount, - 3 );
264
-				$amount = substr( $amount, 0, - 3 );
261
+				$result = substr($amount, - 3);
262
+				$amount = substr($amount, 0, - 3);
265 263
 
266 264
 				// Apply digits 2 by 2
267
-				while ( strlen( $amount ) > 0 ) {
268
-					$result = substr( $amount, - 2 ) . $thousands_sep . $result;
269
-					$amount = substr( $amount, 0, - 2 );
265
+				while (strlen($amount) > 0) {
266
+					$result = substr($amount, - 2).$thousands_sep.$result;
267
+					$amount = substr($amount, 0, - 2);
270 268
 				}
271 269
 
272
-				$formatted = $result . $decimal_amount;
270
+				$formatted = $result.$decimal_amount;
273 271
 				break;
274 272
 
275 273
 			default:
276
-				$formatted = number_format( $amount, $decimals, $decimal_sep, $thousands_sep );
274
+				$formatted = number_format($amount, $decimals, $decimal_sep, $thousands_sep);
277 275
 		}
278 276
 	}
279 277
 
280
-	return apply_filters( 'give_format_amount', $formatted, $amount, $decimals, $decimal_sep, $thousands_sep, $currency, $args );
278
+	return apply_filters('give_format_amount', $formatted, $amount, $decimals, $decimal_sep, $thousands_sep, $currency, $args);
281 279
 }
282 280
 
283 281
 
@@ -295,51 +293,51 @@  discard block
 block discarded – undo
295 293
  *
296 294
  * @return float|string  formatted amount number with large number names.
297 295
  */
298
-function give_human_format_large_amount( $amount, $args = array() ) {
296
+function give_human_format_large_amount($amount, $args = array()) {
299 297
 	$default_args = array(
300 298
 		'currency' => give_get_currency(),
301 299
 	);
302 300
 
303
-	$args = wp_parse_args( $args, $default_args );
301
+	$args = wp_parse_args($args, $default_args);
304 302
 
305 303
 	// Get thousand separator.
306 304
 	$thousands_sep = give_get_price_thousand_separator();
307 305
 
308 306
 	// Sanitize amount.
309
-	$sanitize_amount = give_maybe_sanitize_amount( $amount );
307
+	$sanitize_amount = give_maybe_sanitize_amount($amount);
310 308
 
311 309
 	// Explode amount to calculate name of large numbers.
312
-	$amount_array = explode( $thousands_sep, $amount );
310
+	$amount_array = explode($thousands_sep, $amount);
313 311
 
314 312
 	// Calculate amount parts count.
315
-	$amount_count_parts = count( $amount_array );
313
+	$amount_count_parts = count($amount_array);
316 314
 
317 315
 	// Human format amount (default).
318 316
 	$human_format_amount = $amount;
319 317
 
320
-	switch ( $args['currency'] ) {
318
+	switch ($args['currency']) {
321 319
 		case 'INR':
322 320
 			// Calculate large number formatted amount.
323
-			if ( 4 < $amount_count_parts ) {
324
-				$human_format_amount = sprintf( esc_html__( '%s arab', 'give' ), round( ( $sanitize_amount / 1000000000 ), 2 ) );
325
-			} elseif ( 3 < $amount_count_parts ) {
326
-				$human_format_amount = sprintf( esc_html__( '%s crore', 'give' ), round( ( $sanitize_amount / 10000000 ), 2 ) );
327
-			} elseif ( 2 < $amount_count_parts ) {
328
-				$human_format_amount = sprintf( esc_html__( '%s lakh', 'give' ), round( ( $sanitize_amount / 100000 ), 2 ) );
321
+			if (4 < $amount_count_parts) {
322
+				$human_format_amount = sprintf(esc_html__('%s arab', 'give'), round(($sanitize_amount / 1000000000), 2));
323
+			} elseif (3 < $amount_count_parts) {
324
+				$human_format_amount = sprintf(esc_html__('%s crore', 'give'), round(($sanitize_amount / 10000000), 2));
325
+			} elseif (2 < $amount_count_parts) {
326
+				$human_format_amount = sprintf(esc_html__('%s lakh', 'give'), round(($sanitize_amount / 100000), 2));
329 327
 			}
330 328
 			break;
331 329
 		default:
332 330
 			// Calculate large number formatted amount.
333
-			if ( 4 < $amount_count_parts ) {
334
-				$human_format_amount = sprintf( esc_html__( '%s trillion', 'give' ), round( ( $sanitize_amount / 1000000000000 ), 2 ) );
335
-			} elseif ( 3 < $amount_count_parts ) {
336
-				$human_format_amount = sprintf( esc_html__( '%s billion', 'give' ), round( ( $sanitize_amount / 1000000000 ), 2 ) );
337
-			} elseif ( 2 < $amount_count_parts ) {
338
-				$human_format_amount = sprintf( esc_html__( '%s million', 'give' ), round( ( $sanitize_amount / 1000000 ), 2 ) );
331
+			if (4 < $amount_count_parts) {
332
+				$human_format_amount = sprintf(esc_html__('%s trillion', 'give'), round(($sanitize_amount / 1000000000000), 2));
333
+			} elseif (3 < $amount_count_parts) {
334
+				$human_format_amount = sprintf(esc_html__('%s billion', 'give'), round(($sanitize_amount / 1000000000), 2));
335
+			} elseif (2 < $amount_count_parts) {
336
+				$human_format_amount = sprintf(esc_html__('%s million', 'give'), round(($sanitize_amount / 1000000), 2));
339 337
 			}
340 338
 	}
341 339
 
342
-	return apply_filters( 'give_human_format_large_amount', $human_format_amount, $amount, $sanitize_amount );
340
+	return apply_filters('give_human_format_large_amount', $human_format_amount, $amount, $sanitize_amount);
343 341
 }
344 342
 
345 343
 /**
@@ -353,17 +351,16 @@  discard block
 block discarded – undo
353 351
  *
354 352
  * @return string $amount Newly formatted amount or Price Not Available
355 353
  */
356
-function give_format_decimal( $amount, $dp = false, $sanitize = true ) {
354
+function give_format_decimal($amount, $dp = false, $sanitize = true) {
357 355
 	$decimal_separator = give_get_price_decimal_separator();
358 356
 	$formatted_amount  = $sanitize ?
359
-		give_maybe_sanitize_amount( $amount, $dp ) :
360
-		number_format( $amount, ( is_bool( $dp ) ? give_get_price_decimals() : $dp ), '.', '' );
357
+		give_maybe_sanitize_amount($amount, $dp) : number_format($amount, (is_bool($dp) ? give_get_price_decimals() : $dp), '.', '');
361 358
 
362
-	if ( false !== strpos( $formatted_amount, '.' ) ) {
363
-		$formatted_amount = str_replace( '.', $decimal_separator, $formatted_amount );
359
+	if (false !== strpos($formatted_amount, '.')) {
360
+		$formatted_amount = str_replace('.', $decimal_separator, $formatted_amount);
364 361
 	}
365 362
 
366
-	return apply_filters( 'give_format_decimal', $formatted_amount, $amount, $decimal_separator );
363
+	return apply_filters('give_format_decimal', $formatted_amount, $amount, $decimal_separator);
367 364
 }
368 365
 
369 366
 /**
@@ -377,24 +374,24 @@  discard block
 block discarded – undo
377 374
  *
378 375
  * @return mixed|string
379 376
  */
380
-function give_currency_filter( $price = '', $currency = '', $decode_currency = false ) {
377
+function give_currency_filter($price = '', $currency = '', $decode_currency = false) {
381 378
 
382
-	if ( empty( $currency ) || ! array_key_exists( (string) $currency, give_get_currencies() ) ) {
379
+	if (empty($currency) || ! array_key_exists((string) $currency, give_get_currencies())) {
383 380
 		$currency = give_get_currency();
384 381
 	}
385 382
 
386
-	$position = give_get_option( 'currency_position', 'before' );
383
+	$position = give_get_option('currency_position', 'before');
387 384
 
388 385
 	$negative = $price < 0;
389 386
 
390
-	if ( $negative ) {
387
+	if ($negative) {
391 388
 		// Remove proceeding "-".
392
-		$price = substr( $price, 1 );
389
+		$price = substr($price, 1);
393 390
 	}
394 391
 
395
-	$symbol = give_currency_symbol( $currency, $decode_currency );
392
+	$symbol = give_currency_symbol($currency, $decode_currency);
396 393
 
397
-	switch ( $currency ) :
394
+	switch ($currency) :
398 395
 		case 'GBP' :
399 396
 		case 'BRL' :
400 397
 		case 'EUR' :
@@ -423,13 +420,13 @@  discard block
 block discarded – undo
423 420
 		case 'MAD' :
424 421
 		case 'KRW' :
425 422
 		case 'ZAR' :
426
-			$formatted = ( 'before' === $position ? $symbol . $price : $price . $symbol );
423
+			$formatted = ('before' === $position ? $symbol.$price : $price.$symbol);
427 424
 			break;
428 425
 		case 'NOK' :
429
-			$formatted = ( 'before' === $position ? $symbol . ' ' . $price : $price . ' ' . $symbol );
426
+			$formatted = ('before' === $position ? $symbol.' '.$price : $price.' '.$symbol);
430 427
 			break;
431 428
 		default :
432
-			$formatted = ( 'before' === $position ? $currency . ' ' . $price : $price . ' ' . $currency );
429
+			$formatted = ('before' === $position ? $currency.' '.$price : $price.' '.$currency);
433 430
 			break;
434 431
 	endswitch;
435 432
 
@@ -444,11 +441,11 @@  discard block
 block discarded – undo
444 441
 	 *           and if currency is USD and currency position is after then
445 442
 	 *           filter name will be give_usd_currency_filter_after
446 443
 	 */
447
-	$formatted = apply_filters( 'give_' . strtolower( $currency ) . "_currency_filter_{$position}", $formatted, $currency, $price );
444
+	$formatted = apply_filters('give_'.strtolower($currency)."_currency_filter_{$position}", $formatted, $currency, $price);
448 445
 
449
-	if ( $negative ) {
446
+	if ($negative) {
450 447
 		// Prepend the minus sign before the currency sign.
451
-		$formatted = '-' . $formatted;
448
+		$formatted = '-'.$formatted;
452 449
 	}
453 450
 
454 451
 	return $formatted;
@@ -464,21 +461,21 @@  discard block
 block discarded – undo
464 461
  */
465 462
 function give_currency_decimal_filter() {
466 463
 
467
-	remove_filter( 'give_sanitize_amount_decimals', 'give_currency_decimal_filter' );
464
+	remove_filter('give_sanitize_amount_decimals', 'give_currency_decimal_filter');
468 465
 
469 466
 	// Set default number of decimals.
470 467
 	$decimals = give_get_price_decimals();
471 468
 
472
-	add_filter( 'give_sanitize_amount_decimals', 'give_currency_decimal_filter' );
469
+	add_filter('give_sanitize_amount_decimals', 'give_currency_decimal_filter');
473 470
 
474 471
 	// Get number of decimals with backward compatibility ( version < 1.6 )
475
-	if ( 1 <= func_num_args() ) {
476
-		$decimals = ( false === func_get_arg( 0 ) ? $decimals : absint( func_get_arg( 0 ) ) );
472
+	if (1 <= func_num_args()) {
473
+		$decimals = (false === func_get_arg(0) ? $decimals : absint(func_get_arg(0)));
477 474
 	}
478 475
 
479 476
 	$currency = give_get_currency();
480 477
 
481
-	switch ( $currency ) {
478
+	switch ($currency) {
482 479
 		case 'RIAL' :
483 480
 		case 'JPY' :
484 481
 		case 'TWD' :
@@ -488,11 +485,11 @@  discard block
 block discarded – undo
488 485
 			break;
489 486
 	}
490 487
 
491
-	return apply_filters( 'give_currency_decimal_count', $decimals, $currency );
488
+	return apply_filters('give_currency_decimal_count', $decimals, $currency);
492 489
 }
493 490
 
494
-add_filter( 'give_sanitize_amount_decimals', 'give_currency_decimal_filter' );
495
-add_filter( 'give_format_amount_decimals', 'give_currency_decimal_filter' );
491
+add_filter('give_sanitize_amount_decimals', 'give_currency_decimal_filter');
492
+add_filter('give_format_amount_decimals', 'give_currency_decimal_filter');
496 493
 
497 494
 
498 495
 /**
@@ -504,7 +501,7 @@  discard block
 block discarded – undo
504 501
  *
505 502
  * @return string                  Date format string
506 503
  */
507
-function give_date_format( $date_context = '' ) {
504
+function give_date_format($date_context = '') {
508 505
 	/**
509 506
 	 * Filter the date context
510 507
 	 *
@@ -525,19 +522,19 @@  discard block
 block discarded – undo
525 522
 	 *
526 523
 	 *    }
527 524
 	 */
528
-	$date_format_contexts = apply_filters( 'give_date_format_contexts', array() );
525
+	$date_format_contexts = apply_filters('give_date_format_contexts', array());
529 526
 
530 527
 	// Set date format to default date format.
531
-	$date_format = get_option( 'date_format' );
528
+	$date_format = get_option('date_format');
532 529
 
533 530
 	// Update date format if we have non empty date format context array and non empty date format string for that context.
534
-	if ( $date_context && ! empty( $date_format_contexts ) && array_key_exists( $date_context, $date_format_contexts ) ) {
535
-		$date_format = ! empty( $date_format_contexts[ $date_context ] )
536
-			? $date_format_contexts[ $date_context ]
531
+	if ($date_context && ! empty($date_format_contexts) && array_key_exists($date_context, $date_format_contexts)) {
532
+		$date_format = ! empty($date_format_contexts[$date_context])
533
+			? $date_format_contexts[$date_context]
537 534
 			: $date_format;
538 535
 	}
539 536
 
540
-	return apply_filters( 'give_date_format', $date_format );
537
+	return apply_filters('give_date_format', $date_format);
541 538
 }
542 539
 
543 540
 /**
@@ -551,8 +548,8 @@  discard block
 block discarded – undo
551 548
  *
552 549
  * @return string
553 550
  */
554
-function give_get_cache_key( $action, $query_args ) {
555
-	return Give_Cache::get_key( $action, $query_args );
551
+function give_get_cache_key($action, $query_args) {
552
+	return Give_Cache::get_key($action, $query_args);
556 553
 }
557 554
 
558 555
 /**
@@ -565,11 +562,11 @@  discard block
 block discarded – undo
565 562
  *
566 563
  * @return string|array
567 564
  */
568
-function give_clean( $var ) {
569
-	if ( is_array( $var ) ) {
570
-		return array_map( 'give_clean', $var );
565
+function give_clean($var) {
566
+	if (is_array($var)) {
567
+		return array_map('give_clean', $var);
571 568
 	} else {
572
-		return is_scalar( $var ) ? sanitize_text_field( $var ) : $var;
569
+		return is_scalar($var) ? sanitize_text_field($var) : $var;
573 570
 	}
574 571
 }
575 572
 
@@ -582,10 +579,10 @@  discard block
 block discarded – undo
582 579
  *
583 580
  * @return int
584 581
  */
585
-function give_let_to_num( $size ) {
586
-	$l   = substr( $size, - 1 );
587
-	$ret = substr( $size, 0, - 1 );
588
-	switch ( strtoupper( $l ) ) {
582
+function give_let_to_num($size) {
583
+	$l   = substr($size, - 1);
584
+	$ret = substr($size, 0, - 1);
585
+	switch (strtoupper($l)) {
589 586
 		case 'P':
590 587
 			$ret *= 1024;
591 588
 		case 'T':
@@ -610,19 +607,19 @@  discard block
 block discarded – undo
610 607
  * @param int   $action
611 608
  * @param array $wp_die_args
612 609
  */
613
-function give_validate_nonce( $nonce, $action = - 1, $wp_die_args = array() ) {
610
+function give_validate_nonce($nonce, $action = - 1, $wp_die_args = array()) {
614 611
 
615 612
 	$default_wp_die_args = array(
616
-		'message' => esc_html__( 'Nonce verification has failed.', 'give' ),
617
-		'title'   => esc_html__( 'Error', 'give' ),
613
+		'message' => esc_html__('Nonce verification has failed.', 'give'),
614
+		'title'   => esc_html__('Error', 'give'),
618 615
 		'args'    => array(
619 616
 			'response' => 403,
620 617
 		),
621 618
 	);
622 619
 
623
-	$wp_die_args = wp_parse_args( $wp_die_args, $default_wp_die_args );
620
+	$wp_die_args = wp_parse_args($wp_die_args, $default_wp_die_args);
624 621
 
625
-	if ( ! wp_verify_nonce( $nonce, $action ) ) {
622
+	if ( ! wp_verify_nonce($nonce, $action)) {
626 623
 		wp_die(
627 624
 			$wp_die_args['message'],
628 625
 			$wp_die_args['title'],
@@ -644,23 +641,23 @@  discard block
 block discarded – undo
644 641
  *
645 642
  * @return mixed
646 643
  */
647
-function give_check_variable( $variable, $conditional = '', $default = false ) {
644
+function give_check_variable($variable, $conditional = '', $default = false) {
648 645
 
649
-	switch ( $conditional ) {
646
+	switch ($conditional) {
650 647
 		case 'isset_empty':
651
-			$variable = ( isset( $variable ) && ! empty( $variable ) ) ? $variable : $default;
648
+			$variable = (isset($variable) && ! empty($variable)) ? $variable : $default;
652 649
 			break;
653 650
 
654 651
 		case 'empty':
655
-			$variable = ! empty( $variable ) ? $variable : $default;
652
+			$variable = ! empty($variable) ? $variable : $default;
656 653
 			break;
657 654
 
658 655
 		case 'null':
659
-			$variable = ! is_null( $variable ) ? $variable : $default;
656
+			$variable = ! is_null($variable) ? $variable : $default;
660 657
 			break;
661 658
 
662 659
 		default:
663
-			$variable = isset( $variable ) ? $variable : $default;
660
+			$variable = isset($variable) ? $variable : $default;
664 661
 
665 662
 	}
666 663
 
Please login to merge, or discard this patch.
includes/forms/functions.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
  *
156 156
  * Used to redirect a user back to the donation form if there are errors present.
157 157
  *
158
- * @param array $args
158
+ * @param string $args
159 159
  *
160 160
  * @access public
161 161
  * @since  1.0
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
  *
442 442
  * @param int $form_id Give Form ID
443 443
  *
444
- * @return int $earnings Earnings for a certain form
444
+ * @return double $earnings Earnings for a certain form
445 445
  */
446 446
 function give_get_form_earnings_stats( $form_id = 0 ) {
447 447
 	$give_form = new Give_Donate_Form( $form_id );
@@ -708,7 +708,7 @@  discard block
 block discarded – undo
708 708
  *
709 709
  * @param int $form_id ID number of the form to retrieve the minimum price for
710 710
  *
711
- * @return mixed string|int Minimum price of the form
711
+ * @return string string|int Minimum price of the form
712 712
  */
713 713
 function give_get_form_minimum_price( $form_id = 0 ) {
714 714
 
Please login to merge, or discard this patch.
Spacing   +203 added lines, -203 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly.
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -23,14 +23,14 @@  discard block
 block discarded – undo
23 23
 
24 24
 	global $typenow;
25 25
 
26
-	if ( $typenow != 'give_forms' ) {
26
+	if ($typenow != 'give_forms') {
27 27
 		return true;
28 28
 	}
29 29
 
30 30
 	return false;
31 31
 }
32 32
 
33
-add_filter( 'give_shortcode_button_condition', 'give_shortcode_button_condition' );
33
+add_filter('give_shortcode_button_condition', 'give_shortcode_button_condition');
34 34
 
35 35
 
36 36
 /**
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
  *
41 41
  * @return int|false
42 42
  */
43
-function get_form_id_from_args( $args ) {
43
+function get_form_id_from_args($args) {
44 44
 
45
-	if ( isset( $args['form_id'] ) && $args['form_id'] != 0 ) {
45
+	if (isset($args['form_id']) && $args['form_id'] != 0) {
46 46
 
47
-		return intval( $args['form_id'] );
47
+		return intval($args['form_id']);
48 48
 	}
49 49
 
50 50
 	return false;
@@ -59,23 +59,23 @@  discard block
 block discarded – undo
59 59
  *
60 60
  * @return bool
61 61
  */
62
-function give_is_float_labels_enabled( $args ) {
62
+function give_is_float_labels_enabled($args) {
63 63
 
64 64
 	$float_labels = '';
65 65
 
66
-	if ( ! empty( $args['float_labels'] ) ) {
66
+	if ( ! empty($args['float_labels'])) {
67 67
 		$float_labels = $args['float_labels'];
68 68
 	}
69 69
 
70
-	if ( empty( $float_labels ) ) {
71
-		$float_labels = give_get_meta( $args['form_id'], '_give_form_floating_labels', true );
70
+	if (empty($float_labels)) {
71
+		$float_labels = give_get_meta($args['form_id'], '_give_form_floating_labels', true);
72 72
 	}
73 73
 
74
-	if ( empty( $float_labels ) || ( 'global' === $float_labels ) ) {
75
-		$float_labels = give_get_option( 'floatlabels', 'disabled' );
74
+	if (empty($float_labels) || ('global' === $float_labels)) {
75
+		$float_labels = give_get_option('floatlabels', 'disabled');
76 76
 	}
77 77
 
78
-	return give_is_setting_enabled( $float_labels );
78
+	return give_is_setting_enabled($float_labels);
79 79
 }
80 80
 
81 81
 /**
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
 	$can_checkout = true;
93 93
 
94
-	return (bool) apply_filters( 'give_can_checkout', $can_checkout );
94
+	return (bool) apply_filters('give_can_checkout', $can_checkout);
95 95
 }
96 96
 
97 97
 /**
@@ -105,9 +105,9 @@  discard block
 block discarded – undo
105 105
 function give_get_success_page_uri() {
106 106
 	$give_options = give_get_settings();
107 107
 
108
-	$success_page = isset( $give_options['success_page'] ) ? get_permalink( absint( $give_options['success_page'] ) ) : get_bloginfo( 'url' );
108
+	$success_page = isset($give_options['success_page']) ? get_permalink(absint($give_options['success_page'])) : get_bloginfo('url');
109 109
 
110
-	return apply_filters( 'give_get_success_page_uri', $success_page );
110
+	return apply_filters('give_get_success_page_uri', $success_page);
111 111
 }
112 112
 
113 113
 /**
@@ -119,9 +119,9 @@  discard block
 block discarded – undo
119 119
  */
120 120
 function give_is_success_page() {
121 121
 	$give_options    = give_get_settings();
122
-	$is_success_page = isset( $give_options['success_page'] ) ? is_page( $give_options['success_page'] ) : false;
122
+	$is_success_page = isset($give_options['success_page']) ? is_page($give_options['success_page']) : false;
123 123
 
124
-	return apply_filters( 'give_is_success_page', $is_success_page );
124
+	return apply_filters('give_is_success_page', $is_success_page);
125 125
 }
126 126
 
127 127
 /**
@@ -135,17 +135,17 @@  discard block
 block discarded – undo
135 135
  * @since       1.0
136 136
  * @return      void
137 137
  */
138
-function give_send_to_success_page( $query_string = null ) {
138
+function give_send_to_success_page($query_string = null) {
139 139
 
140 140
 	$redirect = give_get_success_page_uri();
141 141
 
142
-	if ( $query_string ) {
142
+	if ($query_string) {
143 143
 		$redirect .= $query_string;
144 144
 	}
145 145
 
146
-	$gateway = isset( $_REQUEST['give-gateway'] ) ? $_REQUEST['give-gateway'] : '';
146
+	$gateway = isset($_REQUEST['give-gateway']) ? $_REQUEST['give-gateway'] : '';
147 147
 
148
-	wp_redirect( apply_filters( 'give_success_page_redirect', $redirect, $gateway, $query_string ) );
148
+	wp_redirect(apply_filters('give_success_page_redirect', $redirect, $gateway, $query_string));
149 149
 	give_die();
150 150
 }
151 151
 
@@ -161,19 +161,19 @@  discard block
 block discarded – undo
161 161
  * @since  1.0
162 162
  * @return Void
163 163
  */
164
-function give_send_back_to_checkout( $args = array() ) {
164
+function give_send_back_to_checkout($args = array()) {
165 165
 
166
-	$url     = isset( $_POST['give-current-url'] ) ? sanitize_text_field( $_POST['give-current-url'] ) : '';
166
+	$url     = isset($_POST['give-current-url']) ? sanitize_text_field($_POST['give-current-url']) : '';
167 167
 	$form_id = 0;
168 168
 
169 169
 	// Set the form_id.
170
-	if ( isset( $_POST['give-form-id'] ) ) {
171
-		$form_id = sanitize_text_field( $_POST['give-form-id'] );
170
+	if (isset($_POST['give-form-id'])) {
171
+		$form_id = sanitize_text_field($_POST['give-form-id']);
172 172
 	}
173 173
 
174 174
 	// Need a URL to continue. If none, redirect back to single form.
175
-	if ( empty( $url ) ) {
176
-		wp_safe_redirect( get_permalink( $form_id ) );
175
+	if (empty($url)) {
176
+		wp_safe_redirect(get_permalink($form_id));
177 177
 		give_die();
178 178
 	}
179 179
 
@@ -182,41 +182,41 @@  discard block
 block discarded – undo
182 182
 	);
183 183
 
184 184
 	// Set the $level_id.
185
-	if ( isset( $_POST['give-price-id'] ) ) {
186
-		$defaults['level-id'] = sanitize_text_field( $_POST['give-price-id'] );
185
+	if (isset($_POST['give-price-id'])) {
186
+		$defaults['level-id'] = sanitize_text_field($_POST['give-price-id']);
187 187
 	}
188 188
 
189 189
 	// Check for backward compatibility.
190
-	if ( is_string( $args ) ) {
191
-		$args = str_replace( '?', '', $args );
190
+	if (is_string($args)) {
191
+		$args = str_replace('?', '', $args);
192 192
 	}
193 193
 
194
-	$args = wp_parse_args( $args, $defaults );
194
+	$args = wp_parse_args($args, $defaults);
195 195
 
196 196
 	// Merge URL query with $args to maintain third-party URL parameters after redirect.
197
-	$url_data = wp_parse_url( $url );
197
+	$url_data = wp_parse_url($url);
198 198
 
199 199
 	// Check if an array to prevent notices before parsing.
200
-	if ( isset( $url_data['query'] ) && ! empty( $url_data['query'] ) ) {
201
-		parse_str( $url_data['query'], $query );
200
+	if (isset($url_data['query']) && ! empty($url_data['query'])) {
201
+		parse_str($url_data['query'], $query);
202 202
 
203 203
 		// Precaution: don't allow any CC info.
204
-		unset( $query['card_number'] );
205
-		unset( $query['card_cvc'] );
204
+		unset($query['card_number']);
205
+		unset($query['card_cvc']);
206 206
 
207 207
 	} else {
208 208
 		// No $url_data so pass empty array.
209 209
 		$query = array();
210 210
 	}
211 211
 
212
-	$new_query        = array_merge( $args, $query );
213
-	$new_query_string = http_build_query( $new_query );
212
+	$new_query        = array_merge($args, $query);
213
+	$new_query_string = http_build_query($new_query);
214 214
 
215 215
 	// Assemble URL parts.
216
-	$redirect = home_url( '/' . $url_data['path'] . '?' . $new_query_string . '#give-form-' . $form_id . '-wrap' );
216
+	$redirect = home_url('/'.$url_data['path'].'?'.$new_query_string.'#give-form-'.$form_id.'-wrap');
217 217
 
218 218
 	// Redirect them.
219
-	wp_safe_redirect( apply_filters( 'give_send_back_to_checkout', $redirect, $args ) );
219
+	wp_safe_redirect(apply_filters('give_send_back_to_checkout', $redirect, $args));
220 220
 	give_die();
221 221
 
222 222
 }
@@ -232,16 +232,16 @@  discard block
 block discarded – undo
232 232
  * @since       1.0
233 233
  * @return      string
234 234
  */
235
-function give_get_success_page_url( $query_string = null ) {
235
+function give_get_success_page_url($query_string = null) {
236 236
 
237
-	$success_page = give_get_option( 'success_page', 0 );
238
-	$success_page = get_permalink( $success_page );
237
+	$success_page = give_get_option('success_page', 0);
238
+	$success_page = get_permalink($success_page);
239 239
 
240
-	if ( $query_string ) {
240
+	if ($query_string) {
241 241
 		$success_page .= $query_string;
242 242
 	}
243 243
 
244
-	return apply_filters( 'give_success_page_url', $success_page );
244
+	return apply_filters('give_success_page_url', $success_page);
245 245
 
246 246
 }
247 247
 
@@ -254,15 +254,15 @@  discard block
 block discarded – undo
254 254
  *
255 255
  * @return mixed Full URL to the Failed Donation Page, if present, home page if it doesn't exist.
256 256
  */
257
-function give_get_failed_transaction_uri( $extras = false ) {
257
+function give_get_failed_transaction_uri($extras = false) {
258 258
 	$give_options = give_get_settings();
259 259
 
260
-	$uri = ! empty( $give_options['failure_page'] ) ? trailingslashit( get_permalink( $give_options['failure_page'] ) ) : home_url();
261
-	if ( $extras ) {
260
+	$uri = ! empty($give_options['failure_page']) ? trailingslashit(get_permalink($give_options['failure_page'])) : home_url();
261
+	if ($extras) {
262 262
 		$uri .= $extras;
263 263
 	}
264 264
 
265
-	return apply_filters( 'give_get_failed_transaction_uri', $uri );
265
+	return apply_filters('give_get_failed_transaction_uri', $uri);
266 266
 }
267 267
 
268 268
 /**
@@ -273,9 +273,9 @@  discard block
 block discarded – undo
273 273
  */
274 274
 function give_is_failed_transaction_page() {
275 275
 	$give_options = give_get_settings();
276
-	$ret          = isset( $give_options['failure_page'] ) ? is_page( $give_options['failure_page'] ) : false;
276
+	$ret          = isset($give_options['failure_page']) ? is_page($give_options['failure_page']) : false;
277 277
 
278
-	return apply_filters( 'give_is_failure_page', $ret );
278
+	return apply_filters('give_is_failure_page', $ret);
279 279
 }
280 280
 
281 281
 /**
@@ -287,18 +287,18 @@  discard block
 block discarded – undo
287 287
  */
288 288
 function give_listen_for_failed_payments() {
289 289
 
290
-	$failed_page = give_get_option( 'failure_page', 0 );
290
+	$failed_page = give_get_option('failure_page', 0);
291 291
 
292
-	if ( ! empty( $failed_page ) && is_page( $failed_page ) && ! empty( $_GET['payment-id'] ) ) {
292
+	if ( ! empty($failed_page) && is_page($failed_page) && ! empty($_GET['payment-id'])) {
293 293
 
294
-		$payment_id = absint( $_GET['payment-id'] );
295
-		give_update_payment_status( $payment_id, 'failed' );
294
+		$payment_id = absint($_GET['payment-id']);
295
+		give_update_payment_status($payment_id, 'failed');
296 296
 
297 297
 	}
298 298
 
299 299
 }
300 300
 
301
-add_action( 'template_redirect', 'give_listen_for_failed_payments' );
301
+add_action('template_redirect', 'give_listen_for_failed_payments');
302 302
 
303 303
 /**
304 304
  * Retrieve the Donation History page URI
@@ -311,9 +311,9 @@  discard block
 block discarded – undo
311 311
 function give_get_history_page_uri() {
312 312
 	$give_options = give_get_settings();
313 313
 
314
-	$history_page = isset( $give_options['history_page'] ) ? get_permalink( absint( $give_options['history_page'] ) ) : get_bloginfo( 'url' );
314
+	$history_page = isset($give_options['history_page']) ? get_permalink(absint($give_options['history_page'])) : get_bloginfo('url');
315 315
 
316
-	return apply_filters( 'give_get_history_page_uri', $history_page );
316
+	return apply_filters('give_get_history_page_uri', $history_page);
317 317
 }
318 318
 
319 319
 /**
@@ -326,11 +326,11 @@  discard block
 block discarded – undo
326 326
  * @since       1.0
327 327
  * @return      bool
328 328
  */
329
-function give_field_is_required( $field = '', $form_id ) {
329
+function give_field_is_required($field = '', $form_id) {
330 330
 
331
-	$required_fields = give_get_required_fields( $form_id );
331
+	$required_fields = give_get_required_fields($form_id);
332 332
 
333
-	return array_key_exists( $field, $required_fields );
333
+	return array_key_exists($field, $required_fields);
334 334
 }
335 335
 
336 336
 /**
@@ -348,14 +348,14 @@  discard block
 block discarded – undo
348 348
  *
349 349
  * @return void
350 350
  */
351
-function give_record_donation_in_log( $give_form_id = 0, $payment_id, $price_id = false, $donation_date = null ) {
351
+function give_record_donation_in_log($give_form_id = 0, $payment_id, $price_id = false, $donation_date = null) {
352 352
 	global $give_logs;
353 353
 
354 354
 	$log_data = array(
355 355
 		'post_parent'   => $give_form_id,
356 356
 		'log_type'      => 'sale',
357
-		'post_date'     => isset( $donation_date ) ? $donation_date : null,
358
-		'post_date_gmt' => isset( $donation_date ) ? $donation_date : null,
357
+		'post_date'     => isset($donation_date) ? $donation_date : null,
358
+		'post_date_gmt' => isset($donation_date) ? $donation_date : null,
359 359
 	);
360 360
 
361 361
 	$log_meta = array(
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
 		'price_id'   => (int) $price_id,
364 364
 	);
365 365
 
366
-	$give_logs->insert_log( $log_data, $log_meta );
366
+	$give_logs->insert_log($log_data, $log_meta);
367 367
 }
368 368
 
369 369
 
@@ -377,11 +377,11 @@  discard block
 block discarded – undo
377 377
  *
378 378
  * @return bool|int
379 379
  */
380
-function give_increase_donation_count( $form_id = 0, $quantity = 1 ) {
380
+function give_increase_donation_count($form_id = 0, $quantity = 1) {
381 381
 	$quantity = (int) $quantity;
382
-	$form     = new Give_Donate_Form( $form_id );
382
+	$form     = new Give_Donate_Form($form_id);
383 383
 
384
-	return $form->increase_sales( $quantity );
384
+	return $form->increase_sales($quantity);
385 385
 }
386 386
 
387 387
 /**
@@ -394,11 +394,11 @@  discard block
 block discarded – undo
394 394
  *
395 395
  * @return bool|int
396 396
  */
397
-function give_decrease_donation_count( $form_id = 0, $quantity = 1 ) {
397
+function give_decrease_donation_count($form_id = 0, $quantity = 1) {
398 398
 	$quantity = (int) $quantity;
399
-	$form     = new Give_Donate_Form( $form_id );
399
+	$form     = new Give_Donate_Form($form_id);
400 400
 
401
-	return $form->decrease_sales( $quantity );
401
+	return $form->decrease_sales($quantity);
402 402
 }
403 403
 
404 404
 /**
@@ -411,10 +411,10 @@  discard block
 block discarded – undo
411 411
  *
412 412
  * @return bool|int
413 413
  */
414
-function give_increase_earnings( $give_form_id = 0, $amount ) {
415
-	$form = new Give_Donate_Form( $give_form_id );
414
+function give_increase_earnings($give_form_id = 0, $amount) {
415
+	$form = new Give_Donate_Form($give_form_id);
416 416
 
417
-	return $form->increase_earnings( $amount );
417
+	return $form->increase_earnings($amount);
418 418
 }
419 419
 
420 420
 /**
@@ -427,10 +427,10 @@  discard block
 block discarded – undo
427 427
  *
428 428
  * @return bool|int
429 429
  */
430
-function give_decrease_earnings( $form_id = 0, $amount ) {
431
-	$form = new Give_Donate_Form( $form_id );
430
+function give_decrease_earnings($form_id = 0, $amount) {
431
+	$form = new Give_Donate_Form($form_id);
432 432
 
433
-	return $form->decrease_earnings( $amount );
433
+	return $form->decrease_earnings($amount);
434 434
 }
435 435
 
436 436
 
@@ -443,8 +443,8 @@  discard block
 block discarded – undo
443 443
  *
444 444
  * @return int $earnings Earnings for a certain form
445 445
  */
446
-function give_get_form_earnings_stats( $form_id = 0 ) {
447
-	$give_form = new Give_Donate_Form( $form_id );
446
+function give_get_form_earnings_stats($form_id = 0) {
447
+	$give_form = new Give_Donate_Form($form_id);
448 448
 
449 449
 	return $give_form->earnings;
450 450
 }
@@ -459,8 +459,8 @@  discard block
 block discarded – undo
459 459
  *
460 460
  * @return int $sales Amount of sales for a certain form
461 461
  */
462
-function give_get_form_sales_stats( $give_form_id = 0 ) {
463
-	$give_form = new Give_Donate_Form( $give_form_id );
462
+function give_get_form_sales_stats($give_form_id = 0) {
463
+	$give_form = new Give_Donate_Form($give_form_id);
464 464
 
465 465
 	return $give_form->sales;
466 466
 }
@@ -475,16 +475,16 @@  discard block
 block discarded – undo
475 475
  *
476 476
  * @return float $sales Average monthly sales
477 477
  */
478
-function give_get_average_monthly_form_sales( $form_id = 0 ) {
479
-	$sales        = give_get_form_sales_stats( $form_id );
480
-	$release_date = get_post_field( 'post_date', $form_id );
478
+function give_get_average_monthly_form_sales($form_id = 0) {
479
+	$sales        = give_get_form_sales_stats($form_id);
480
+	$release_date = get_post_field('post_date', $form_id);
481 481
 
482
-	$diff = abs( current_time( 'timestamp' ) - strtotime( $release_date ) );
482
+	$diff = abs(current_time('timestamp') - strtotime($release_date));
483 483
 
484
-	$months = floor( $diff / ( 30 * 60 * 60 * 24 ) ); // Number of months since publication
484
+	$months = floor($diff / (30 * 60 * 60 * 24)); // Number of months since publication
485 485
 
486
-	if ( $months > 0 ) {
487
-		$sales = ( $sales / $months );
486
+	if ($months > 0) {
487
+		$sales = ($sales / $months);
488 488
 	}
489 489
 
490 490
 	return $sales;
@@ -500,16 +500,16 @@  discard block
 block discarded – undo
500 500
  *
501 501
  * @return float $earnings Average monthly earnings
502 502
  */
503
-function give_get_average_monthly_form_earnings( $form_id = 0 ) {
504
-	$earnings     = give_get_form_earnings_stats( $form_id );
505
-	$release_date = get_post_field( 'post_date', $form_id );
503
+function give_get_average_monthly_form_earnings($form_id = 0) {
504
+	$earnings     = give_get_form_earnings_stats($form_id);
505
+	$release_date = get_post_field('post_date', $form_id);
506 506
 
507
-	$diff = abs( current_time( 'timestamp' ) - strtotime( $release_date ) );
507
+	$diff = abs(current_time('timestamp') - strtotime($release_date));
508 508
 
509
-	$months = floor( $diff / ( 30 * 60 * 60 * 24 ) ); // Number of months since publication
509
+	$months = floor($diff / (30 * 60 * 60 * 24)); // Number of months since publication
510 510
 
511
-	if ( $months > 0 ) {
512
-		$earnings = ( $earnings / $months );
511
+	if ($months > 0) {
512
+		$earnings = ($earnings / $months);
513 513
 	}
514 514
 
515 515
 	return $earnings < 0 ? 0 : $earnings;
@@ -529,23 +529,23 @@  discard block
 block discarded – undo
529 529
  *
530 530
  * @return string $price_name Name of the price option
531 531
  */
532
-function give_get_price_option_name( $form_id = 0, $price_id = 0, $payment_id = 0 ) {
532
+function give_get_price_option_name($form_id = 0, $price_id = 0, $payment_id = 0) {
533 533
 
534
-	$prices     = give_get_variable_prices( $form_id );
534
+	$prices     = give_get_variable_prices($form_id);
535 535
 	$price_name = '';
536 536
 
537
-	foreach ( $prices as $price ) {
537
+	foreach ($prices as $price) {
538 538
 
539
-		if ( intval( $price['_give_id']['level_id'] ) == intval( $price_id ) ) {
539
+		if (intval($price['_give_id']['level_id']) == intval($price_id)) {
540 540
 
541
-			$price_text     = isset( $price['_give_text'] ) ? $price['_give_text'] : '';
542
-			$price_fallback = give_currency_filter( give_format_amount( $price['_give_amount'], array( 'sanitize' => false ) ), '', true );
543
-			$price_name     = ! empty( $price_text ) ? $price_text : $price_fallback;
541
+			$price_text     = isset($price['_give_text']) ? $price['_give_text'] : '';
542
+			$price_fallback = give_currency_filter(give_format_amount($price['_give_amount'], array('sanitize' => false)), '', true);
543
+			$price_name     = ! empty($price_text) ? $price_text : $price_fallback;
544 544
 
545 545
 		}
546 546
 	}
547 547
 
548
-	return apply_filters( 'give_get_price_option_name', $price_name, $form_id, $payment_id, $price_id );
548
+	return apply_filters('give_get_price_option_name', $price_name, $form_id, $payment_id, $price_id);
549 549
 }
550 550
 
551 551
 
@@ -558,23 +558,23 @@  discard block
 block discarded – undo
558 558
  *
559 559
  * @return string $range A fully formatted price range
560 560
  */
561
-function give_price_range( $form_id = 0 ) {
562
-	$low        = give_get_lowest_price_option( $form_id );
563
-	$high       = give_get_highest_price_option( $form_id );
564
-	$order_type = ! empty( $_REQUEST['order'] ) ? $_REQUEST['order'] : 'asc';
561
+function give_price_range($form_id = 0) {
562
+	$low        = give_get_lowest_price_option($form_id);
563
+	$high       = give_get_highest_price_option($form_id);
564
+	$order_type = ! empty($_REQUEST['order']) ? $_REQUEST['order'] : 'asc';
565 565
 
566 566
 	$range = sprintf(
567 567
 		'<span class="give_price_range_%1$s">%2$s</span>
568 568
 				<span class="give_price_range_sep">&nbsp;&ndash;&nbsp;</span>
569 569
 				<span class="give_price_range_%3$s">%4$s</span>',
570 570
 		'asc' === $order_type ? 'low' : 'high',
571
-		'asc' === $order_type ? give_currency_filter( give_format_amount( $low, array( 'sanitize' => false ) ) ) : give_currency_filter( give_format_amount( $high, array( 'sanitize' => false ) ) ),
571
+		'asc' === $order_type ? give_currency_filter(give_format_amount($low, array('sanitize' => false))) : give_currency_filter(give_format_amount($high, array('sanitize' => false))),
572 572
 		'asc' === $order_type ? 'high' : 'low',
573
-		'asc' === $order_type ? give_currency_filter( give_format_amount( $high, array( 'sanitize' => false ) ) ) : give_currency_filter( give_format_amount( $low, array( 'sanitize' => false ) ) )
573
+		'asc' === $order_type ? give_currency_filter(give_format_amount($high, array('sanitize' => false))) : give_currency_filter(give_format_amount($low, array('sanitize' => false)))
574 574
 
575 575
 	);
576 576
 
577
-	return apply_filters( 'give_price_range', $range, $form_id, $low, $high );
577
+	return apply_filters('give_price_range', $range, $form_id, $low, $high);
578 578
 }
579 579
 
580 580
 
@@ -589,35 +589,35 @@  discard block
 block discarded – undo
589 589
  *
590 590
  * @return int ID of the lowest price
591 591
  */
592
-function give_get_lowest_price_id( $form_id = 0 ) {
592
+function give_get_lowest_price_id($form_id = 0) {
593 593
 
594
-	if ( empty( $form_id ) ) {
594
+	if (empty($form_id)) {
595 595
 		$form_id = get_the_ID();
596 596
 	}
597 597
 
598
-	if ( ! give_has_variable_prices( $form_id ) ) {
599
-		return give_get_form_price( $form_id );
598
+	if ( ! give_has_variable_prices($form_id)) {
599
+		return give_get_form_price($form_id);
600 600
 	}
601 601
 
602
-	$prices = give_get_variable_prices( $form_id );
602
+	$prices = give_get_variable_prices($form_id);
603 603
 
604 604
 	$min = $min_id = 0;
605 605
 
606
-	if ( ! empty( $prices ) ) {
606
+	if ( ! empty($prices)) {
607 607
 
608
-		foreach ( $prices as $key => $price ) {
608
+		foreach ($prices as $key => $price) {
609 609
 
610
-			if ( empty( $price['_give_amount'] ) ) {
610
+			if (empty($price['_give_amount'])) {
611 611
 				continue;
612 612
 			}
613 613
 
614
-			if ( ! isset( $min ) ) {
614
+			if ( ! isset($min)) {
615 615
 				$min = $price['_give_amount'];
616 616
 			} else {
617
-				$min = min( $min, $price['_give_amount'] );
617
+				$min = min($min, $price['_give_amount']);
618 618
 			}
619 619
 
620
-			if ( $price['_give_amount'] == $min ) {
620
+			if ($price['_give_amount'] == $min) {
621 621
 				$min_id = $price['_give_id']['level_id'];
622 622
 			}
623 623
 		}
@@ -635,22 +635,22 @@  discard block
 block discarded – undo
635 635
  *
636 636
  * @return float Amount of the lowest price
637 637
  */
638
-function give_get_lowest_price_option( $form_id = 0 ) {
639
-	if ( empty( $form_id ) ) {
638
+function give_get_lowest_price_option($form_id = 0) {
639
+	if (empty($form_id)) {
640 640
 		$form_id = get_the_ID();
641 641
 	}
642 642
 
643
-	if ( ! give_has_variable_prices( $form_id ) ) {
644
-		return give_get_form_price( $form_id );
643
+	if ( ! give_has_variable_prices($form_id)) {
644
+		return give_get_form_price($form_id);
645 645
 	}
646 646
 
647
-	if ( ! ( $low = get_post_meta( $form_id, '_give_levels_minimum_amount', true ) ) ) {
647
+	if ( ! ($low = get_post_meta($form_id, '_give_levels_minimum_amount', true))) {
648 648
 		// Backward compatibility.
649
-		$prices = wp_list_pluck( give_get_variable_prices( $form_id ), '_give_amount' );
650
-		$low    = ! empty( $prices ) ? min( $prices ) : 0;
649
+		$prices = wp_list_pluck(give_get_variable_prices($form_id), '_give_amount');
650
+		$low    = ! empty($prices) ? min($prices) : 0;
651 651
 	}
652 652
 
653
-	return give_maybe_sanitize_amount( $low );
653
+	return give_maybe_sanitize_amount($low);
654 654
 }
655 655
 
656 656
 /**
@@ -662,23 +662,23 @@  discard block
 block discarded – undo
662 662
  *
663 663
  * @return float Amount of the highest price
664 664
  */
665
-function give_get_highest_price_option( $form_id = 0 ) {
665
+function give_get_highest_price_option($form_id = 0) {
666 666
 
667
-	if ( empty( $form_id ) ) {
667
+	if (empty($form_id)) {
668 668
 		$form_id = get_the_ID();
669 669
 	}
670 670
 
671
-	if ( ! give_has_variable_prices( $form_id ) ) {
672
-		return give_get_form_price( $form_id );
671
+	if ( ! give_has_variable_prices($form_id)) {
672
+		return give_get_form_price($form_id);
673 673
 	}
674 674
 
675
-	if ( ! ( $high = get_post_meta( $form_id, '_give_levels_maximum_amount', true ) ) ) {
675
+	if ( ! ($high = get_post_meta($form_id, '_give_levels_maximum_amount', true))) {
676 676
 		// Backward compatibility.
677
-		$prices = wp_list_pluck( give_get_variable_prices( $form_id ), '_give_amount' );
678
-		$high   = ! empty( $prices ) ? max( $prices ) : 0;
677
+		$prices = wp_list_pluck(give_get_variable_prices($form_id), '_give_amount');
678
+		$high   = ! empty($prices) ? max($prices) : 0;
679 679
 	}
680 680
 
681
-	return give_maybe_sanitize_amount( $high );
681
+	return give_maybe_sanitize_amount($high);
682 682
 }
683 683
 
684 684
 /**
@@ -690,15 +690,15 @@  discard block
 block discarded – undo
690 690
  *
691 691
  * @return mixed string|int Price of the form
692 692
  */
693
-function give_get_form_price( $form_id = 0 ) {
693
+function give_get_form_price($form_id = 0) {
694 694
 
695
-	if ( empty( $form_id ) ) {
695
+	if (empty($form_id)) {
696 696
 		return false;
697 697
 	}
698 698
 
699
-	$form = new Give_Donate_Form( $form_id );
699
+	$form = new Give_Donate_Form($form_id);
700 700
 
701
-	return $form->__get( 'price' );
701
+	return $form->__get('price');
702 702
 }
703 703
 
704 704
 /**
@@ -710,15 +710,15 @@  discard block
 block discarded – undo
710 710
  *
711 711
  * @return mixed string|int Minimum price of the form
712 712
  */
713
-function give_get_form_minimum_price( $form_id = 0 ) {
713
+function give_get_form_minimum_price($form_id = 0) {
714 714
 
715
-	if ( empty( $form_id ) ) {
715
+	if (empty($form_id)) {
716 716
 		return false;
717 717
 	}
718 718
 
719
-	$form = new Give_Donate_Form( $form_id );
719
+	$form = new Give_Donate_Form($form_id);
720 720
 
721
-	return $form->__get( 'minimum_price' );
721
+	return $form->__get('minimum_price');
722 722
 
723 723
 }
724 724
 
@@ -733,48 +733,48 @@  discard block
 block discarded – undo
733 733
  *
734 734
  * @return int $formatted_price
735 735
  */
736
-function give_price( $form_id = 0, $echo = true, $price_id = false ) {
736
+function give_price($form_id = 0, $echo = true, $price_id = false) {
737 737
 	$price = 0;
738 738
 
739
-	if ( empty( $form_id ) ) {
739
+	if (empty($form_id)) {
740 740
 		$form_id = get_the_ID();
741 741
 	}
742 742
 
743
-	if ( give_has_variable_prices( $form_id ) ) {
743
+	if (give_has_variable_prices($form_id)) {
744 744
 
745
-		$prices = give_get_variable_prices( $form_id );
745
+		$prices = give_get_variable_prices($form_id);
746 746
 
747
-		if ( false !== $price_id ) {
747
+		if (false !== $price_id) {
748 748
 
749 749
 			// loop through multi-prices to see which is default
750
-			foreach ( $prices as $price ) {
750
+			foreach ($prices as $price) {
751 751
 				// this is the default price
752
-				if ( isset( $price['_give_default'] ) && $price['_give_default'] === 'default' ) {
752
+				if (isset($price['_give_default']) && $price['_give_default'] === 'default') {
753 753
 					$price = (float) $price['_give_amount'];
754 754
 				};
755 755
 			}
756 756
 		} else {
757 757
 
758
-			$price = give_get_lowest_price_option( $form_id );
758
+			$price = give_get_lowest_price_option($form_id);
759 759
 		}
760 760
 	} else {
761 761
 
762
-		$price = give_get_form_price( $form_id );
762
+		$price = give_get_form_price($form_id);
763 763
 	}
764 764
 
765
-	$price           = apply_filters( 'give_form_price', give_maybe_sanitize_amount( $price ), $form_id );
766
-	$formatted_price = '<span class="give_price" id="give_price_' . $form_id . '">' . $price . '</span>';
767
-	$formatted_price = apply_filters( 'give_form_price_after_html', $formatted_price, $form_id, $price );
765
+	$price           = apply_filters('give_form_price', give_maybe_sanitize_amount($price), $form_id);
766
+	$formatted_price = '<span class="give_price" id="give_price_'.$form_id.'">'.$price.'</span>';
767
+	$formatted_price = apply_filters('give_form_price_after_html', $formatted_price, $form_id, $price);
768 768
 
769
-	if ( $echo ) {
769
+	if ($echo) {
770 770
 		echo $formatted_price;
771 771
 	} else {
772 772
 		return $formatted_price;
773 773
 	}
774 774
 }
775 775
 
776
-add_filter( 'give_form_price', 'give_format_amount', 10 );
777
-add_filter( 'give_form_price', 'give_currency_filter', 20 );
776
+add_filter('give_form_price', 'give_format_amount', 10);
777
+add_filter('give_form_price', 'give_currency_filter', 20);
778 778
 
779 779
 
780 780
 /**
@@ -787,19 +787,19 @@  discard block
 block discarded – undo
787 787
  *
788 788
  * @return float $amount Amount of the price option
789 789
  */
790
-function give_get_price_option_amount( $form_id = 0, $price_id = 0 ) {
791
-	$prices = give_get_variable_prices( $form_id );
790
+function give_get_price_option_amount($form_id = 0, $price_id = 0) {
791
+	$prices = give_get_variable_prices($form_id);
792 792
 
793 793
 	$amount = 0.00;
794 794
 
795
-	foreach ( $prices as $price ) {
796
-		if ( isset( $price['_give_id']['level_id'] ) && $price['_give_id']['level_id'] == $price_id ) {
797
-			$amount = isset( $price['_give_amount'] ) ? $price['_give_amount'] : 0.00;
795
+	foreach ($prices as $price) {
796
+		if (isset($price['_give_id']['level_id']) && $price['_give_id']['level_id'] == $price_id) {
797
+			$amount = isset($price['_give_amount']) ? $price['_give_amount'] : 0.00;
798 798
 			break;
799 799
 		};
800 800
 	}
801 801
 
802
-	return apply_filters( 'give_get_price_option_amount', give_maybe_sanitize_amount( $amount ), $form_id, $price_id );
802
+	return apply_filters('give_get_price_option_amount', give_maybe_sanitize_amount($amount), $form_id, $price_id);
803 803
 }
804 804
 
805 805
 /**
@@ -811,13 +811,13 @@  discard block
 block discarded – undo
811 811
  *
812 812
  * @return mixed string|int Goal of the form
813 813
  */
814
-function give_get_form_goal( $form_id = 0 ) {
814
+function give_get_form_goal($form_id = 0) {
815 815
 
816
-	if ( empty( $form_id ) ) {
816
+	if (empty($form_id)) {
817 817
 		return false;
818 818
 	}
819 819
 
820
-	$form = new Give_Donate_Form( $form_id );
820
+	$form = new Give_Donate_Form($form_id);
821 821
 
822 822
 	return $form->goal;
823 823
 
@@ -833,27 +833,27 @@  discard block
 block discarded – undo
833 833
  *
834 834
  * @return string $formatted_goal
835 835
  */
836
-function give_goal( $form_id = 0, $echo = true ) {
836
+function give_goal($form_id = 0, $echo = true) {
837 837
 
838
-	if ( empty( $form_id ) ) {
838
+	if (empty($form_id)) {
839 839
 		$form_id = get_the_ID();
840 840
 	}
841 841
 
842
-	$goal = give_get_form_goal( $form_id );
842
+	$goal = give_get_form_goal($form_id);
843 843
 
844
-	$goal           = apply_filters( 'give_form_goal', give_maybe_sanitize_amount( $goal ), $form_id );
845
-	$formatted_goal = '<span class="give_price" id="give_price_' . $form_id . '">' . $goal . '</span>';
846
-	$formatted_goal = apply_filters( 'give_form_price_after_html', $formatted_goal, $form_id, $goal );
844
+	$goal           = apply_filters('give_form_goal', give_maybe_sanitize_amount($goal), $form_id);
845
+	$formatted_goal = '<span class="give_price" id="give_price_'.$form_id.'">'.$goal.'</span>';
846
+	$formatted_goal = apply_filters('give_form_price_after_html', $formatted_goal, $form_id, $goal);
847 847
 
848
-	if ( $echo ) {
848
+	if ($echo) {
849 849
 		echo $formatted_goal;
850 850
 	} else {
851 851
 		return $formatted_goal;
852 852
 	}
853 853
 }
854 854
 
855
-add_filter( 'give_form_goal', 'give_format_amount', 10 );
856
-add_filter( 'give_form_goal', 'give_currency_filter', 20 );
855
+add_filter('give_form_goal', 'give_format_amount', 10);
856
+add_filter('give_form_goal', 'give_currency_filter', 20);
857 857
 
858 858
 
859 859
 /**
@@ -865,15 +865,15 @@  discard block
 block discarded – undo
865 865
  *
866 866
  * @return bool  $ret Whether or not the logged_in_only setting is set
867 867
  */
868
-function give_logged_in_only( $form_id ) {
868
+function give_logged_in_only($form_id) {
869 869
 	// If _give_logged_in_only is set to enable then guest can donate from that specific form.
870 870
 	// Otherwise it is member only donation form.
871
-	$val = give_get_meta( $form_id, '_give_logged_in_only', true );
872
-	$val = ! empty( $val ) ? $val : 'enabled';
871
+	$val = give_get_meta($form_id, '_give_logged_in_only', true);
872
+	$val = ! empty($val) ? $val : 'enabled';
873 873
 
874
-	$ret = ! give_is_setting_enabled( $val );
874
+	$ret = ! give_is_setting_enabled($val);
875 875
 
876
-	return (bool) apply_filters( 'give_logged_in_only', $ret, $form_id );
876
+	return (bool) apply_filters('give_logged_in_only', $ret, $form_id);
877 877
 }
878 878
 
879 879
 
@@ -886,11 +886,11 @@  discard block
 block discarded – undo
886 886
  *
887 887
  * @return string
888 888
  */
889
-function give_show_login_register_option( $form_id ) {
889
+function give_show_login_register_option($form_id) {
890 890
 
891
-	$show_register_form = give_get_meta( $form_id, '_give_show_register_form', true );
891
+	$show_register_form = give_get_meta($form_id, '_give_show_register_form', true);
892 892
 
893
-	return apply_filters( 'give_show_register_form', $show_register_form, $form_id );
893
+	return apply_filters('give_show_register_form', $show_register_form, $form_id);
894 894
 
895 895
 }
896 896
 
@@ -906,12 +906,12 @@  discard block
 block discarded – undo
906 906
  *
907 907
  * @return array
908 908
  */
909
-function _give_get_prefill_form_field_values( $form_id ) {
909
+function _give_get_prefill_form_field_values($form_id) {
910 910
 	$logged_in_donor_info = array();
911 911
 
912
-	if ( is_user_logged_in() ) :
913
-		$donor_data    = get_userdata( get_current_user_id() );
914
-		$donor_address = get_user_meta( get_current_user_id(), '_give_user_address', true );
912
+	if (is_user_logged_in()) :
913
+		$donor_data    = get_userdata(get_current_user_id());
914
+		$donor_address = get_user_meta(get_current_user_id(), '_give_user_address', true);
915 915
 
916 916
 		$logged_in_donor_info = array(
917 917
 			// First name.
@@ -924,42 +924,42 @@  discard block
 block discarded – undo
924 924
 			'give_email'      => $donor_data->user_email,
925 925
 
926 926
 			// Street address 1.
927
-			'card_address'    => ( ! empty( $donor_address['line1'] ) ? $donor_address['line1'] : '' ),
927
+			'card_address'    => ( ! empty($donor_address['line1']) ? $donor_address['line1'] : ''),
928 928
 
929 929
 			// Street address 2.
930
-			'card_address_2'  => ( ! empty( $donor_address['line2'] ) ? $donor_address['line2'] : '' ),
930
+			'card_address_2'  => ( ! empty($donor_address['line2']) ? $donor_address['line2'] : ''),
931 931
 
932 932
 			// Country.
933
-			'billing_country' => ( ! empty( $donor_address['country'] ) ? $donor_address['country'] : '' ),
933
+			'billing_country' => ( ! empty($donor_address['country']) ? $donor_address['country'] : ''),
934 934
 
935 935
 			// State.
936
-			'card_state'      => ( ! empty( $donor_address['state'] ) ? $donor_address['state'] : '' ),
936
+			'card_state'      => ( ! empty($donor_address['state']) ? $donor_address['state'] : ''),
937 937
 
938 938
 			// City.
939
-			'card_city'       => ( ! empty( $donor_address['city'] ) ? $donor_address['city'] : '' ),
939
+			'card_city'       => ( ! empty($donor_address['city']) ? $donor_address['city'] : ''),
940 940
 
941 941
 			// Zipcode
942
-			'card_zip'        => ( ! empty( $donor_address['zip'] ) ? $donor_address['zip'] : '' ),
942
+			'card_zip'        => ( ! empty($donor_address['zip']) ? $donor_address['zip'] : ''),
943 943
 		);
944 944
 	endif;
945 945
 
946 946
 	// Bailout: Auto fill form field values only form form which donor is donating.
947 947
 	if (
948
-		empty( $_GET['form-id'] )
948
+		empty($_GET['form-id'])
949 949
 		|| ! $form_id
950
-		|| ( $form_id !== absint( $_GET['form-id'] ) )
950
+		|| ($form_id !== absint($_GET['form-id']))
951 951
 	) {
952 952
 		return $logged_in_donor_info;
953 953
 	}
954 954
 
955 955
 	// Get purchase data.
956
-	$give_purchase_data = Give()->session->get( 'give_purchase' );
956
+	$give_purchase_data = Give()->session->get('give_purchase');
957 957
 
958 958
 	// Get donor info from form data.
959
-	$give_donor_info_in_session = empty( $give_purchase_data['post_data'] )
959
+	$give_donor_info_in_session = empty($give_purchase_data['post_data'])
960 960
 		? array()
961 961
 		: $give_purchase_data['post_data'];
962 962
 
963 963
 	// Output.
964
-	return wp_parse_args( $give_donor_info_in_session, $logged_in_donor_info );
964
+	return wp_parse_args($give_donor_info_in_session, $logged_in_donor_info);
965 965
 }
Please login to merge, or discard this patch.
includes/ajax-functions.php 1 patch
Spacing   +111 added lines, -111 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
 
@@ -26,26 +26,26 @@  discard block
 block discarded – undo
26 26
 function give_test_ajax_works() {
27 27
 
28 28
 	// Check if the Airplane Mode plugin is installed.
29
-	if ( class_exists( 'Airplane_Mode_Core' ) ) {
29
+	if (class_exists('Airplane_Mode_Core')) {
30 30
 
31 31
 		$airplane = Airplane_Mode_Core::getInstance();
32 32
 
33
-		if ( method_exists( $airplane, 'enabled' ) ) {
33
+		if (method_exists($airplane, 'enabled')) {
34 34
 
35
-			if ( $airplane->enabled() ) {
35
+			if ($airplane->enabled()) {
36 36
 				return true;
37 37
 			}
38 38
 		} else {
39 39
 
40
-			if ( 'on' === $airplane->check_status()  ) {
40
+			if ('on' === $airplane->check_status()) {
41 41
 				return true;
42 42
 			}
43 43
 		}
44 44
 	}
45 45
 
46
-	add_filter( 'block_local_requests', '__return_false' );
46
+	add_filter('block_local_requests', '__return_false');
47 47
 
48
-	if ( Give_Cache::get( '_give_ajax_works', true ) ) {
48
+	if (Give_Cache::get('_give_ajax_works', true)) {
49 49
 		return true;
50 50
 	}
51 51
 
@@ -57,35 +57,35 @@  discard block
 block discarded – undo
57 57
 		),
58 58
 	);
59 59
 
60
-	$ajax = wp_remote_post( give_get_ajax_url(), $params );
60
+	$ajax = wp_remote_post(give_get_ajax_url(), $params);
61 61
 
62 62
 	$works = true;
63 63
 
64
-	if ( is_wp_error( $ajax ) ) {
64
+	if (is_wp_error($ajax)) {
65 65
 
66 66
 		$works = false;
67 67
 
68 68
 	} else {
69 69
 
70
-		if ( empty( $ajax['response'] ) ) {
70
+		if (empty($ajax['response'])) {
71 71
 			$works = false;
72 72
 		}
73 73
 
74
-		if ( empty( $ajax['response']['code'] ) || 200 !== (int) $ajax['response']['code'] ) {
74
+		if (empty($ajax['response']['code']) || 200 !== (int) $ajax['response']['code']) {
75 75
 			$works = false;
76 76
 		}
77 77
 
78
-		if ( empty( $ajax['response']['message'] ) || 'OK' !== $ajax['response']['message'] ) {
78
+		if (empty($ajax['response']['message']) || 'OK' !== $ajax['response']['message']) {
79 79
 			$works = false;
80 80
 		}
81 81
 
82
-		if ( ! isset( $ajax['body'] ) || 0 !== (int) $ajax['body'] ) {
82
+		if ( ! isset($ajax['body']) || 0 !== (int) $ajax['body']) {
83 83
 			$works = false;
84 84
 		}
85 85
 	}
86 86
 
87
-	if ( $works ) {
88
-		Give_Cache::set( '_give_ajax_works', '1', DAY_IN_SECONDS, true );
87
+	if ($works) {
88
+		Give_Cache::set('_give_ajax_works', '1', DAY_IN_SECONDS, true);
89 89
 	}
90 90
 
91 91
 	return $works;
@@ -100,16 +100,16 @@  discard block
 block discarded – undo
100 100
  * @return string
101 101
  */
102 102
 function give_get_ajax_url() {
103
-	$scheme = defined( 'FORCE_SSL_ADMIN' ) && FORCE_SSL_ADMIN ? 'https' : 'admin';
103
+	$scheme = defined('FORCE_SSL_ADMIN') && FORCE_SSL_ADMIN ? 'https' : 'admin';
104 104
 
105 105
 	$current_url = give_get_current_page_url();
106
-	$ajax_url    = admin_url( 'admin-ajax.php', $scheme );
106
+	$ajax_url    = admin_url('admin-ajax.php', $scheme);
107 107
 
108
-	if ( preg_match( '/^https/', $current_url ) && ! preg_match( '/^https/', $ajax_url ) ) {
109
-		$ajax_url = preg_replace( '/^http/', 'https', $ajax_url );
108
+	if (preg_match('/^https/', $current_url) && ! preg_match('/^https/', $ajax_url)) {
109
+		$ajax_url = preg_replace('/^http/', 'https', $ajax_url);
110 110
 	}
111 111
 
112
-	return apply_filters( 'give_ajax_url', $ajax_url );
112
+	return apply_filters('give_ajax_url', $ajax_url);
113 113
 }
114 114
 
115 115
 /**
@@ -125,12 +125,12 @@  discard block
 block discarded – undo
125 125
 	 *
126 126
 	 * @since 1.7
127 127
 	 */
128
-	do_action( 'give_donation_form_login_fields' );
128
+	do_action('give_donation_form_login_fields');
129 129
 
130 130
 	give_die();
131 131
 }
132 132
 
133
-add_action( 'wp_ajax_nopriv_give_checkout_login', 'give_load_checkout_login_fields' );
133
+add_action('wp_ajax_nopriv_give_checkout_login', 'give_load_checkout_login_fields');
134 134
 
135 135
 /**
136 136
  * Load Checkout Fields
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
  * @return void
141 141
  */
142 142
 function give_load_checkout_fields() {
143
-	$form_id = isset( $_POST['form_id'] ) ? $_POST['form_id'] : '';
143
+	$form_id = isset($_POST['form_id']) ? $_POST['form_id'] : '';
144 144
 
145 145
 	ob_start();
146 146
 
@@ -149,18 +149,18 @@  discard block
 block discarded – undo
149 149
 	 *
150 150
 	 * @since 1.7
151 151
 	 */
152
-	do_action( 'give_donation_form_register_login_fields', $form_id );
152
+	do_action('give_donation_form_register_login_fields', $form_id);
153 153
 
154 154
 	$fields = ob_get_clean();
155 155
 
156
-	wp_send_json( array(
157
-		'fields' => wp_json_encode( $fields ),
158
-		'submit' => wp_json_encode( give_get_donation_form_submit_button( $form_id ) ),
159
-	) );
156
+	wp_send_json(array(
157
+		'fields' => wp_json_encode($fields),
158
+		'submit' => wp_json_encode(give_get_donation_form_submit_button($form_id)),
159
+	));
160 160
 }
161 161
 
162
-add_action( 'wp_ajax_nopriv_give_cancel_login', 'give_load_checkout_fields' );
163
-add_action( 'wp_ajax_nopriv_give_checkout_register', 'give_load_checkout_fields' );
162
+add_action('wp_ajax_nopriv_give_cancel_login', 'give_load_checkout_fields');
163
+add_action('wp_ajax_nopriv_give_checkout_register', 'give_load_checkout_fields');
164 164
 
165 165
 /**
166 166
  * Get Form Title via AJAX (used only in WordPress Admin)
@@ -170,9 +170,9 @@  discard block
 block discarded – undo
170 170
  * @return void
171 171
  */
172 172
 function give_ajax_get_form_title() {
173
-	if ( isset( $_POST['form_id'] ) ) {
174
-		$title = get_the_title( $_POST['form_id'] );
175
-		if ( $title ) {
173
+	if (isset($_POST['form_id'])) {
174
+		$title = get_the_title($_POST['form_id']);
175
+		if ($title) {
176 176
 			echo $title;
177 177
 		} else {
178 178
 			echo 'fail';
@@ -181,8 +181,8 @@  discard block
 block discarded – undo
181 181
 	give_die();
182 182
 }
183 183
 
184
-add_action( 'wp_ajax_give_get_form_title', 'give_ajax_get_form_title' );
185
-add_action( 'wp_ajax_nopriv_give_get_form_title', 'give_ajax_get_form_title' );
184
+add_action('wp_ajax_give_get_form_title', 'give_ajax_get_form_title');
185
+add_action('wp_ajax_nopriv_give_get_form_title', 'give_ajax_get_form_title');
186 186
 
187 187
 /**
188 188
  * Retrieve a states drop down
@@ -196,35 +196,35 @@  discard block
 block discarded – undo
196 196
 	$show_field = true;
197 197
 	$states_require = true;
198 198
 	// Get the Country code from the $_POST.
199
-	$country = sanitize_text_field( $_POST['country'] );
199
+	$country = sanitize_text_field($_POST['country']);
200 200
 
201 201
 	// Get the field name from the $_POST.
202
-	$field_name = sanitize_text_field( $_POST['field_name'] );
202
+	$field_name = sanitize_text_field($_POST['field_name']);
203 203
 
204
-	$label = __( 'State', 'give' );
204
+	$label = __('State', 'give');
205 205
 	$states_label = give_get_states_label();
206 206
 
207 207
 	// Check if $country code exists in the array key for states label.
208
-	if ( array_key_exists( $country, $states_label ) ) {
209
-		$label = $states_label[ $country ];
208
+	if (array_key_exists($country, $states_label)) {
209
+		$label = $states_label[$country];
210 210
 	}
211 211
 
212
-	if ( empty( $country ) ) {
212
+	if (empty($country)) {
213 213
 		$country = give_get_country();
214 214
 	}
215 215
 
216
-	$states = give_get_states( $country );
217
-	if ( ! empty( $states ) ) {
216
+	$states = give_get_states($country);
217
+	if ( ! empty($states)) {
218 218
 		$args = array(
219 219
 			'name'             => $field_name,
220 220
 			'id'               => $field_name,
221
-			'class'            => $field_name . '  give-select',
221
+			'class'            => $field_name.'  give-select',
222 222
 			'options'          => $states,
223 223
 			'show_option_all'  => false,
224 224
 			'show_option_none' => false,
225 225
 			'placeholder' => $label,
226 226
 		);
227
-		$data = Give()->html->select( $args );
227
+		$data = Give()->html->select($args);
228 228
 		$states_found = true;
229 229
 	} else {
230 230
 		$data = 'nostates';
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 		$no_states_country = give_no_states_country_list();
234 234
 
235 235
 		// Check if $country code exists in the array key.
236
-		if ( array_key_exists( $country, $no_states_country ) ) {
236
+		if (array_key_exists($country, $no_states_country)) {
237 237
 			$show_field = false;
238 238
 		}
239 239
 
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 		$states_not_required_country_list = give_states_not_required_country_list();
242 242
 
243 243
 		// Check if $country code exists in the array key.
244
-		if ( array_key_exists( $country, $states_not_required_country_list ) ) {
244
+		if (array_key_exists($country, $states_not_required_country_list)) {
245 245
 			$states_require = false;
246 246
 		}
247 247
 	}
@@ -253,10 +253,10 @@  discard block
 block discarded – undo
253 253
 		'states_require' => $states_require,
254 254
 		'data' => $data,
255 255
 	);
256
-	wp_send_json( $response );
256
+	wp_send_json($response);
257 257
 }
258
-add_action( 'wp_ajax_give_get_states', 'give_ajax_get_states_field' );
259
-add_action( 'wp_ajax_nopriv_give_get_states', 'give_ajax_get_states_field' );
258
+add_action('wp_ajax_give_get_states', 'give_ajax_get_states_field');
259
+add_action('wp_ajax_nopriv_give_get_states', 'give_ajax_get_states_field');
260 260
 
261 261
 /**
262 262
  * Retrieve donation forms via AJAX for chosen dropdown search field.
@@ -268,19 +268,19 @@  discard block
 block discarded – undo
268 268
 function give_ajax_form_search() {
269 269
 	global $wpdb;
270 270
 
271
-	$search   = esc_sql( sanitize_text_field( $_GET['s'] ) );
272
-	$excludes = ( isset( $_GET['current_id'] ) ? (array) $_GET['current_id'] : array() );
271
+	$search   = esc_sql(sanitize_text_field($_GET['s']));
272
+	$excludes = (isset($_GET['current_id']) ? (array) $_GET['current_id'] : array());
273 273
 
274 274
 	$results = array();
275
-	if ( current_user_can( 'edit_give_forms' ) ) {
276
-		$items = $wpdb->get_results( "SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_title` LIKE '%$search%' LIMIT 50" );
275
+	if (current_user_can('edit_give_forms')) {
276
+		$items = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_title` LIKE '%$search%' LIMIT 50");
277 277
 	} else {
278
-		$items = $wpdb->get_results( "SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_status` = 'publish' AND `post_title` LIKE '%$search%' LIMIT 50" );
278
+		$items = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_status` = 'publish' AND `post_title` LIKE '%$search%' LIMIT 50");
279 279
 	}
280 280
 
281
-	if ( $items ) {
281
+	if ($items) {
282 282
 
283
-		foreach ( $items as $item ) {
283
+		foreach ($items as $item) {
284 284
 
285 285
 			$results[] = array(
286 286
 				'id'   => $item->ID,
@@ -291,18 +291,18 @@  discard block
 block discarded – undo
291 291
 
292 292
 		$items[] = array(
293 293
 			'id'   => 0,
294
-			'name' => __( 'No forms found.', 'give' ),
294
+			'name' => __('No forms found.', 'give'),
295 295
 		);
296 296
 
297 297
 	}
298 298
 
299
-	echo json_encode( $results );
299
+	echo json_encode($results);
300 300
 
301 301
 	give_die();
302 302
 }
303 303
 
304
-add_action( 'wp_ajax_give_form_search', 'give_ajax_form_search' );
305
-add_action( 'wp_ajax_nopriv_give_form_search', 'give_ajax_form_search' );
304
+add_action('wp_ajax_give_form_search', 'give_ajax_form_search');
305
+add_action('wp_ajax_nopriv_give_form_search', 'give_ajax_form_search');
306 306
 
307 307
 /**
308 308
  * Search the donors database via Ajax
@@ -314,38 +314,38 @@  discard block
 block discarded – undo
314 314
 function give_ajax_donor_search() {
315 315
 	global $wpdb;
316 316
 
317
-	$search  = esc_sql( sanitize_text_field( $_GET['s'] ) );
317
+	$search  = esc_sql(sanitize_text_field($_GET['s']));
318 318
 	$results = array();
319
-	if ( ! current_user_can( 'view_give_reports' ) ) {
319
+	if ( ! current_user_can('view_give_reports')) {
320 320
 		$donors = array();
321 321
 	} else {
322
-		$donors = $wpdb->get_results( "SELECT id,name,email FROM {$wpdb->prefix}give_customers WHERE `name` LIKE '%$search%' OR `email` LIKE '%$search%' LIMIT 50" );
322
+		$donors = $wpdb->get_results("SELECT id,name,email FROM {$wpdb->prefix}give_customers WHERE `name` LIKE '%$search%' OR `email` LIKE '%$search%' LIMIT 50");
323 323
 	}
324 324
 
325
-	if ( $donors ) {
325
+	if ($donors) {
326 326
 
327
-		foreach ( $donors as $donor ) {
327
+		foreach ($donors as $donor) {
328 328
 
329 329
 			$results[] = array(
330 330
 				'id'   => $donor->id,
331
-				'name' => $donor->name . ' (' . $donor->email . ')',
331
+				'name' => $donor->name.' ('.$donor->email.')',
332 332
 			);
333 333
 		}
334 334
 	} else {
335 335
 
336 336
 		$donors[] = array(
337 337
 			'id'   => 0,
338
-			'name' => __( 'No donors found.', 'give' ),
338
+			'name' => __('No donors found.', 'give'),
339 339
 		);
340 340
 
341 341
 	}
342 342
 
343
-	echo json_encode( $results );
343
+	echo json_encode($results);
344 344
 
345 345
 	give_die();
346 346
 }
347 347
 
348
-add_action( 'wp_ajax_give_donor_search', 'give_ajax_donor_search' );
348
+add_action('wp_ajax_give_donor_search', 'give_ajax_donor_search');
349 349
 
350 350
 
351 351
 /**
@@ -357,39 +357,39 @@  discard block
 block discarded – undo
357 357
  */
358 358
 function give_ajax_search_users() {
359 359
 
360
-	if ( current_user_can( 'manage_give_settings' ) ) {
360
+	if (current_user_can('manage_give_settings')) {
361 361
 
362
-		$search   = esc_sql( sanitize_text_field( $_GET['s'] ) );
362
+		$search = esc_sql(sanitize_text_field($_GET['s']));
363 363
 
364 364
 		$get_users_args = array(
365 365
 			'number' => 9999,
366
-			'search' => $search . '*',
366
+			'search' => $search.'*',
367 367
 		);
368 368
 
369
-		$get_users_args = apply_filters( 'give_search_users_args', $get_users_args );
369
+		$get_users_args = apply_filters('give_search_users_args', $get_users_args);
370 370
 
371
-		$found_users = apply_filters( 'give_ajax_found_users', get_users( $get_users_args ), $search );
371
+		$found_users = apply_filters('give_ajax_found_users', get_users($get_users_args), $search);
372 372
 		$results     = array();
373 373
 
374
-		if ( $found_users ) {
374
+		if ($found_users) {
375 375
 
376
-			foreach ( $found_users as $user ) {
376
+			foreach ($found_users as $user) {
377 377
 
378 378
 				$results[] = array(
379 379
 					'id'   => $user->ID,
380
-					'name' => esc_html( $user->user_login . ' (' . $user->user_email . ')' ),
380
+					'name' => esc_html($user->user_login.' ('.$user->user_email.')'),
381 381
 				);
382 382
 			}
383 383
 		} else {
384 384
 
385 385
 			$results[] = array(
386 386
 				'id'   => 0,
387
-				'name' => __( 'No users found.', 'give' ),
387
+				'name' => __('No users found.', 'give'),
388 388
 			);
389 389
 
390 390
 		}
391 391
 
392
-		echo json_encode( $results );
392
+		echo json_encode($results);
393 393
 
394 394
 	}// End if().
395 395
 
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
 
398 398
 }
399 399
 
400
-add_action( 'wp_ajax_give_user_search', 'give_ajax_search_users' );
400
+add_action('wp_ajax_give_user_search', 'give_ajax_search_users');
401 401
 
402 402
 
403 403
 /**
@@ -409,32 +409,32 @@  discard block
 block discarded – undo
409 409
  */
410 410
 function give_check_for_form_price_variations() {
411 411
 
412
-	if ( ! current_user_can( 'edit_give_forms', get_current_user_id() ) ) {
413
-		die( '-1' );
412
+	if ( ! current_user_can('edit_give_forms', get_current_user_id())) {
413
+		die('-1');
414 414
 	}
415 415
 
416
-	$form_id = intval( $_POST['form_id'] );
417
-	$form    = get_post( $form_id );
416
+	$form_id = intval($_POST['form_id']);
417
+	$form    = get_post($form_id);
418 418
 
419
-	if ( 'give_forms' != $form->post_type ) {
420
-		die( '-2' );
419
+	if ('give_forms' != $form->post_type) {
420
+		die('-2');
421 421
 	}
422 422
 
423
-	if ( give_has_variable_prices( $form_id ) ) {
424
-		$variable_prices = give_get_variable_prices( $form_id );
423
+	if (give_has_variable_prices($form_id)) {
424
+		$variable_prices = give_get_variable_prices($form_id);
425 425
 
426
-		if ( $variable_prices ) {
426
+		if ($variable_prices) {
427 427
 			$ajax_response = '<select class="give_price_options_select give-select give-select" name="give_price_option">';
428 428
 
429
-			if ( isset( $_POST['all_prices'] ) ) {
430
-				$ajax_response .= '<option value="all">' . esc_html__( 'All Levels', 'give' ) . '</option>';
429
+			if (isset($_POST['all_prices'])) {
430
+				$ajax_response .= '<option value="all">'.esc_html__('All Levels', 'give').'</option>';
431 431
 			}
432 432
 
433
-			foreach ( $variable_prices as $key => $price ) {
433
+			foreach ($variable_prices as $key => $price) {
434 434
 
435
-				$level_text = ! empty( $price['_give_text'] ) ? esc_html( $price['_give_text'] ) : give_currency_filter( give_format_amount( $price['_give_amount'], array( 'sanitize' => false ) ) );
435
+				$level_text = ! empty($price['_give_text']) ? esc_html($price['_give_text']) : give_currency_filter(give_format_amount($price['_give_amount'], array('sanitize' => false)));
436 436
 
437
-				$ajax_response .= '<option value="' . esc_attr( $price['_give_id']['level_id'] ) . '">' . $level_text . '</option>';
437
+				$ajax_response .= '<option value="'.esc_attr($price['_give_id']['level_id']).'">'.$level_text.'</option>';
438 438
 			}
439 439
 			$ajax_response .= '</select>';
440 440
 			echo $ajax_response;
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
 	give_die();
445 445
 }
446 446
 
447
-add_action( 'wp_ajax_give_check_for_form_price_variations', 'give_check_for_form_price_variations' );
447
+add_action('wp_ajax_give_check_for_form_price_variations', 'give_check_for_form_price_variations');
448 448
 
449 449
 
450 450
 /**
@@ -455,25 +455,25 @@  discard block
 block discarded – undo
455 455
  * @return void
456 456
  */
457 457
 function give_check_for_form_price_variations_html() {
458
-	if ( ! current_user_can( 'edit_give_payments', get_current_user_id() ) ) {
458
+	if ( ! current_user_can('edit_give_payments', get_current_user_id())) {
459 459
 		wp_die();
460 460
 	}
461 461
 
462
-	$form_id    = ! empty( $_POST['form_id'] ) ? intval( $_POST['form_id'] ) : 0;
463
-	$payment_id = ! empty( $_POST['payment_id'] ) ? intval( $_POST['payment_id'] ) : 0;
464
-	$form       = get_post( $form_id );
462
+	$form_id    = ! empty($_POST['form_id']) ? intval($_POST['form_id']) : 0;
463
+	$payment_id = ! empty($_POST['payment_id']) ? intval($_POST['payment_id']) : 0;
464
+	$form       = get_post($form_id);
465 465
 
466
-	if ( 'give_forms' != $form->post_type ) {
466
+	if ('give_forms' != $form->post_type) {
467 467
 		wp_die();
468 468
 	}
469 469
 
470
-	if ( ! give_has_variable_prices( $form_id ) || ! $form_id ) {
471
-		esc_html_e( 'n/a', 'give' );
470
+	if ( ! give_has_variable_prices($form_id) || ! $form_id) {
471
+		esc_html_e('n/a', 'give');
472 472
 	} else {
473 473
 		$prices_atts = '';
474
-		if ( $variable_prices = give_get_variable_prices( $form_id ) ) {
475
-			foreach ( $variable_prices as $variable_price ) {
476
-				$prices_atts[ $variable_price['_give_id']['level_id'] ] = give_format_amount( $variable_price['_give_amount'], array( 'sanitize' => false ) );
474
+		if ($variable_prices = give_get_variable_prices($form_id)) {
475
+			foreach ($variable_prices as $variable_price) {
476
+				$prices_atts[$variable_price['_give_id']['level_id']] = give_format_amount($variable_price['_give_amount'], array('sanitize' => false));
477 477
 			}
478 478
 		}
479 479
 
@@ -484,12 +484,12 @@  discard block
 block discarded – undo
484 484
 			'chosen'           => true,
485 485
 			'show_option_all'  => '',
486 486
 			'show_option_none' => '',
487
-			'select_atts'      => 'data-prices=' . esc_attr( json_encode( $prices_atts ) ),
487
+			'select_atts'      => 'data-prices='.esc_attr(json_encode($prices_atts)),
488 488
 		);
489 489
 
490
-		if ( $payment_id ) {
490
+		if ($payment_id) {
491 491
 			// Payment object.
492
-			$payment = new Give_Payment( $payment_id );
492
+			$payment = new Give_Payment($payment_id);
493 493
 
494 494
 			// Payment meta.
495 495
 			$payment_meta                               = $payment->get_meta();
@@ -497,10 +497,10 @@  discard block
 block discarded – undo
497 497
 		}
498 498
 
499 499
 		// Render variable prices select tag html.
500
-		give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true );
500
+		give_get_form_variable_price_dropdown($variable_price_dropdown_option, true);
501 501
 	}
502 502
 
503 503
 	give_die();
504 504
 }
505 505
 
506
-add_action( 'wp_ajax_give_check_for_form_price_variations_html', 'give_check_for_form_price_variations_html' );
506
+add_action('wp_ajax_give_check_for_form_price_variations_html', 'give_check_for_form_price_variations_html');
Please login to merge, or discard this patch.
includes/class-give-donate-form.php 1 patch
Spacing   +115 added lines, -115 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
 
@@ -337,11 +337,11 @@  discard block
 block discarded – undo
337 337
 	 * @param  bool  $_id   Post id. Default is false.
338 338
 	 * @param  array $_args Arguments passed.
339 339
 	 */
340
-	public function __construct( $_id = false, $_args = array() ) {
340
+	public function __construct($_id = false, $_args = array()) {
341 341
 
342
-		$donation_form = WP_Post::get_instance( $_id );
342
+		$donation_form = WP_Post::get_instance($_id);
343 343
 
344
-		return $this->setup_donation_form( $donation_form );
344
+		return $this->setup_donation_form($donation_form);
345 345
 	}
346 346
 
347 347
 	/**
@@ -354,23 +354,23 @@  discard block
 block discarded – undo
354 354
 	 *
355 355
 	 * @return bool                   If the setup was successful or not.
356 356
 	 */
357
-	private function setup_donation_form( $donation_form ) {
357
+	private function setup_donation_form($donation_form) {
358 358
 
359
-		if ( ! is_object( $donation_form ) ) {
359
+		if ( ! is_object($donation_form)) {
360 360
 			return false;
361 361
 		}
362 362
 
363
-		if ( ! is_a( $donation_form, 'WP_Post' ) ) {
363
+		if ( ! is_a($donation_form, 'WP_Post')) {
364 364
 			return false;
365 365
 		}
366 366
 
367
-		if ( 'give_forms' !== $donation_form->post_type ) {
367
+		if ('give_forms' !== $donation_form->post_type) {
368 368
 			return false;
369 369
 		}
370 370
 
371
-		foreach ( $donation_form as $key => $value ) {
371
+		foreach ($donation_form as $key => $value) {
372 372
 
373
-			switch ( $key ) {
373
+			switch ($key) {
374 374
 
375 375
 				default:
376 376
 					$this->$key = $value;
@@ -394,16 +394,16 @@  discard block
 block discarded – undo
394 394
 	 *
395 395
 	 * @return mixed
396 396
 	 */
397
-	public function __get( $key ) {
397
+	public function __get($key) {
398 398
 
399
-		if ( method_exists( $this, 'get_' . $key ) ) {
399
+		if (method_exists($this, 'get_'.$key)) {
400 400
 
401
-			return call_user_func( array( $this, 'get_' . $key ) );
401
+			return call_user_func(array($this, 'get_'.$key));
402 402
 
403 403
 		} else {
404 404
 
405 405
 			/* translators: %s: property key */
406
-			return new WP_Error( 'give-form-invalid-property', sprintf( esc_html__( 'Can\'t get property %s.', 'give' ), $key ) );
406
+			return new WP_Error('give-form-invalid-property', sprintf(esc_html__('Can\'t get property %s.', 'give'), $key));
407 407
 
408 408
 		}
409 409
 
@@ -419,30 +419,30 @@  discard block
 block discarded – undo
419 419
 	 *
420 420
 	 * @return bool|int    False if data isn't passed and class not instantiated for creation, or New Form ID.
421 421
 	 */
422
-	public function create( $data = array() ) {
422
+	public function create($data = array()) {
423 423
 
424
-		if ( $this->id != 0 ) {
424
+		if ($this->id != 0) {
425 425
 			return false;
426 426
 		}
427 427
 
428 428
 		$defaults = array(
429 429
 			'post_type'   => 'give_forms',
430 430
 			'post_status' => 'draft',
431
-			'post_title'  => __( 'New Donation Form', 'give' ),
431
+			'post_title'  => __('New Donation Form', 'give'),
432 432
 		);
433 433
 
434
-		$args = wp_parse_args( $data, $defaults );
434
+		$args = wp_parse_args($data, $defaults);
435 435
 
436 436
 		/**
437 437
 		 * Fired before a donation form is created
438 438
 		 *
439 439
 		 * @param array $args The post object arguments used for creation.
440 440
 		 */
441
-		do_action( 'give_form_pre_create', $args );
441
+		do_action('give_form_pre_create', $args);
442 442
 
443
-		$id = wp_insert_post( $args, true );
443
+		$id = wp_insert_post($args, true);
444 444
 
445
-		$donation_form = WP_Post::get_instance( $id );
445
+		$donation_form = WP_Post::get_instance($id);
446 446
 
447 447
 		/**
448 448
 		 * Fired after a donation form is created
@@ -450,9 +450,9 @@  discard block
 block discarded – undo
450 450
 		 * @param int   $id   The post ID of the created item.
451 451
 		 * @param array $args The post object arguments used for creation.
452 452
 		 */
453
-		do_action( 'give_form_post_create', $id, $args );
453
+		do_action('give_form_post_create', $id, $args);
454 454
 
455
-		return $this->setup_donation_form( $donation_form );
455
+		return $this->setup_donation_form($donation_form);
456 456
 
457 457
 	}
458 458
 
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
 	 * @return string Donation form name.
478 478
 	 */
479 479
 	public function get_name() {
480
-		return get_the_title( $this->ID );
480
+		return get_the_title($this->ID);
481 481
 	}
482 482
 
483 483
 	/**
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
 	 */
491 491
 	public function get_price() {
492 492
 
493
-		if ( ! isset( $this->price ) ) {
493
+		if ( ! isset($this->price)) {
494 494
 
495 495
 			$this->price = give_maybe_sanitize_amount(
496 496
 				give_get_meta(
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
 				)
501 501
 			);
502 502
 
503
-			if ( ! $this->price ) {
503
+			if ( ! $this->price) {
504 504
 				$this->price = 0;
505 505
 			}
506 506
 
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
 		 * @param string     $price The donation form price.
515 515
 		 * @param string|int $id    The form ID.
516 516
 		 */
517
-		return apply_filters( 'give_get_set_price', $this->price, $this->ID );
517
+		return apply_filters('give_get_set_price', $this->price, $this->ID);
518 518
 	}
519 519
 
520 520
 	/**
@@ -527,18 +527,18 @@  discard block
 block discarded – undo
527 527
 	 */
528 528
 	public function get_minimum_price() {
529 529
 
530
-		if ( ! isset( $this->minimum_price ) ) {
530
+		if ( ! isset($this->minimum_price)) {
531 531
 
532
-			$allow_custom_amount = give_get_meta( $this->ID, '_give_custom_amount', true );
533
-			$this->minimum_price = give_get_meta( $this->ID, '_give_custom_amount_minimum', true );
532
+			$allow_custom_amount = give_get_meta($this->ID, '_give_custom_amount', true);
533
+			$this->minimum_price = give_get_meta($this->ID, '_give_custom_amount_minimum', true);
534 534
 
535
-			if ( ! give_is_setting_enabled( $allow_custom_amount ) ) {
535
+			if ( ! give_is_setting_enabled($allow_custom_amount)) {
536 536
 				$this->minimum_price = 0;
537 537
 			}
538 538
 
539 539
 		}
540 540
 
541
-		return apply_filters( 'give_get_set_minimum_price', $this->minimum_price, $this->ID );
541
+		return apply_filters('give_get_set_minimum_price', $this->minimum_price, $this->ID);
542 542
 	}
543 543
 
544 544
 	/**
@@ -551,9 +551,9 @@  discard block
 block discarded – undo
551 551
 	 */
552 552
 	public function get_prices() {
553 553
 
554
-		if ( ! isset( $this->prices ) ) {
554
+		if ( ! isset($this->prices)) {
555 555
 
556
-			$this->prices = give_get_meta( $this->ID, '_give_donation_levels', true );
556
+			$this->prices = give_get_meta($this->ID, '_give_donation_levels', true);
557 557
 
558 558
 		}
559 559
 
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
 		 * @param array      $prices The array of mulit-level prices.
566 566
 		 * @param int|string $ID     The ID of the form.
567 567
 		 */
568
-		return apply_filters( 'give_get_donation_levels', $this->prices, $this->ID );
568
+		return apply_filters('give_get_donation_levels', $this->prices, $this->ID);
569 569
 
570 570
 	}
571 571
 
@@ -579,17 +579,17 @@  discard block
 block discarded – undo
579 579
 	 */
580 580
 	public function get_goal() {
581 581
 
582
-		if ( ! isset( $this->goal ) ) {
582
+		if ( ! isset($this->goal)) {
583 583
 
584
-			$this->goal = give_get_meta( $this->ID, '_give_set_goal', true );
584
+			$this->goal = give_get_meta($this->ID, '_give_set_goal', true);
585 585
 
586
-			if ( ! $this->goal ) {
586
+			if ( ! $this->goal) {
587 587
 				$this->goal = 0;
588 588
 			}
589 589
 
590 590
 		}
591 591
 
592
-		return apply_filters( 'give_get_set_goal', $this->goal, $this->ID );
592
+		return apply_filters('give_get_set_goal', $this->goal, $this->ID);
593 593
 
594 594
 	}
595 595
 
@@ -603,10 +603,10 @@  discard block
 block discarded – undo
603 603
 	 */
604 604
 	public function is_single_price_mode() {
605 605
 
606
-		$option = give_get_meta( $this->ID, '_give_price_option', true );
606
+		$option = give_get_meta($this->ID, '_give_price_option', true);
607 607
 		$ret    = 0;
608 608
 
609
-		if ( empty( $option ) || $option === 'set' ) {
609
+		if (empty($option) || $option === 'set') {
610 610
 			$ret = 1;
611 611
 		}
612 612
 
@@ -618,7 +618,7 @@  discard block
 block discarded – undo
618 618
 		 * @param bool       $ret Is donation form in single price mode?
619 619
 		 * @param int|string $ID The ID of the donation form.
620 620
 		 */
621
-		return (bool) apply_filters( 'give_single_price_option_mode', $ret, $this->ID );
621
+		return (bool) apply_filters('give_single_price_option_mode', $ret, $this->ID);
622 622
 
623 623
 	}
624 624
 
@@ -632,10 +632,10 @@  discard block
 block discarded – undo
632 632
 	 */
633 633
 	public function is_custom_price_mode() {
634 634
 
635
-		$option = give_get_meta( $this->ID, '_give_custom_amount', true );
635
+		$option = give_get_meta($this->ID, '_give_custom_amount', true);
636 636
 		$ret    = 0;
637 637
 
638
-		if ( give_is_setting_enabled( $option ) ) {
638
+		if (give_is_setting_enabled($option)) {
639 639
 			$ret = 1;
640 640
 		}
641 641
 
@@ -647,7 +647,7 @@  discard block
 block discarded – undo
647 647
 		 * @param bool       $ret Is donation form in custom price mode?
648 648
 		 * @param int|string $ID  The ID of the donation form.
649 649
 		 */
650
-		return (bool) apply_filters( 'give_custom_price_option_mode', $ret, $this->ID );
650
+		return (bool) apply_filters('give_custom_price_option_mode', $ret, $this->ID);
651 651
 
652 652
 	}
653 653
 
@@ -663,10 +663,10 @@  discard block
 block discarded – undo
663 663
 	 */
664 664
 	public function has_variable_prices() {
665 665
 
666
-		$option = give_get_meta( $this->ID, '_give_price_option', true );
666
+		$option = give_get_meta($this->ID, '_give_price_option', true);
667 667
 		$ret    = 0;
668 668
 
669
-		if ( $option === 'multi' ) {
669
+		if ($option === 'multi') {
670 670
 			$ret = 1;
671 671
 		}
672 672
 
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
 		 * @param bool       $ret Does donation form have variable prices?
677 677
 		 * @param int|string $ID  The ID of the donation form.
678 678
 		 */
679
-		return (bool) apply_filters( 'give_has_variable_prices', $ret, $this->ID );
679
+		return (bool) apply_filters('give_has_variable_prices', $ret, $this->ID);
680 680
 
681 681
 	}
682 682
 
@@ -690,17 +690,17 @@  discard block
 block discarded – undo
690 690
 	 */
691 691
 	public function get_type() {
692 692
 
693
-		if ( ! isset( $this->type ) ) {
693
+		if ( ! isset($this->type)) {
694 694
 
695
-			$this->type = give_get_meta( $this->ID, '_give_price_option', true );
695
+			$this->type = give_get_meta($this->ID, '_give_price_option', true);
696 696
 
697
-			if ( empty( $this->type ) ) {
697
+			if (empty($this->type)) {
698 698
 				$this->type = 'set';
699 699
 			}
700 700
 
701 701
 		}
702 702
 
703
-		return apply_filters( 'give_get_form_type', $this->type, $this->ID );
703
+		return apply_filters('give_get_form_type', $this->type, $this->ID);
704 704
 
705 705
 	}
706 706
 
@@ -716,23 +716,23 @@  discard block
 block discarded – undo
716 716
 	 *
717 717
 	 * @return string
718 718
 	 */
719
-	public function get_form_classes( $args ) {
719
+	public function get_form_classes($args) {
720 720
 
721
-		$float_labels_option = give_is_float_labels_enabled( $args )
721
+		$float_labels_option = give_is_float_labels_enabled($args)
722 722
 			? 'float-labels-enabled'
723 723
 			: '';
724 724
 
725
-		$form_classes_array = apply_filters( 'give_form_classes', array(
725
+		$form_classes_array = apply_filters('give_form_classes', array(
726 726
 			'give-form',
727
-			'give-form-' . $this->ID,
728
-			'give-form-type-' . $this->get_type(),
727
+			'give-form-'.$this->ID,
728
+			'give-form-type-'.$this->get_type(),
729 729
 			$float_labels_option,
730
-		), $this->ID, $args );
730
+		), $this->ID, $args);
731 731
 
732 732
 		// Remove empty class names.
733
-		$form_classes_array = array_filter( $form_classes_array );
733
+		$form_classes_array = array_filter($form_classes_array);
734 734
 
735
-		return implode( ' ', $form_classes_array );
735
+		return implode(' ', $form_classes_array);
736 736
 
737 737
 	}
738 738
 
@@ -747,24 +747,24 @@  discard block
 block discarded – undo
747 747
 	 *
748 748
 	 * @return string
749 749
 	 */
750
-	public function get_form_wrap_classes( $args ) {
750
+	public function get_form_wrap_classes($args) {
751 751
 
752
-		$display_option = ( isset( $args['display_style'] ) && ! empty( $args['display_style'] ) )
752
+		$display_option = (isset($args['display_style']) && ! empty($args['display_style']))
753 753
 			? $args['display_style']
754
-			: give_get_meta( $this->ID, '_give_payment_display', true );
754
+			: give_get_meta($this->ID, '_give_payment_display', true);
755 755
 
756 756
 		// If admin want to show only button for form then user inbuilt modal functionality.
757
-		if( 'button' === $display_option ) {
757
+		if ('button' === $display_option) {
758 758
 			$display_option = 'modal give-display-button-only';
759 759
 		}
760 760
 
761
-		$form_wrap_classes_array = apply_filters( 'give_form_wrap_classes', array(
761
+		$form_wrap_classes_array = apply_filters('give_form_wrap_classes', array(
762 762
 			'give-form-wrap',
763
-			'give-display-' . $display_option,
764
-		), $this->ID, $args );
763
+			'give-display-'.$display_option,
764
+		), $this->ID, $args);
765 765
 
766 766
 
767
-		return implode( ' ', $form_wrap_classes_array );
767
+		return implode(' ', $form_wrap_classes_array);
768 768
 
769 769
 	}
770 770
 
@@ -779,7 +779,7 @@  discard block
 block discarded – undo
779 779
 	public function is_set_type_donation_form() {
780 780
 		$form_type = $this->get_type();
781 781
 
782
-		return ( 'set' === $form_type ? true : false );
782
+		return ('set' === $form_type ? true : false);
783 783
 	}
784 784
 
785 785
 	/**
@@ -793,7 +793,7 @@  discard block
 block discarded – undo
793 793
 	public function is_multi_type_donation_form() {
794 794
 		$form_type = $this->get_type();
795 795
 
796
-		return ( 'multi' === $form_type ? true : false );
796
+		return ('multi' === $form_type ? true : false);
797 797
 
798 798
 	}
799 799
 
@@ -807,15 +807,15 @@  discard block
 block discarded – undo
807 807
 	 */
808 808
 	public function get_sales() {
809 809
 
810
-		if ( ! isset( $this->sales ) ) {
810
+		if ( ! isset($this->sales)) {
811 811
 
812
-			if ( '' == give_get_meta( $this->ID, '_give_form_sales', true ) ) {
813
-				add_post_meta( $this->ID, '_give_form_sales', 0 );
812
+			if ('' == give_get_meta($this->ID, '_give_form_sales', true)) {
813
+				add_post_meta($this->ID, '_give_form_sales', 0);
814 814
 			} // End if
815 815
 
816
-			$this->sales = give_get_meta( $this->ID, '_give_form_sales', true );
816
+			$this->sales = give_get_meta($this->ID, '_give_form_sales', true);
817 817
 
818
-			if ( $this->sales < 0 ) {
818
+			if ($this->sales < 0) {
819 819
 				// Never let sales be less than zero
820 820
 				$this->sales = 0;
821 821
 			}
@@ -836,13 +836,13 @@  discard block
 block discarded – undo
836 836
 	 *
837 837
 	 * @return int|false     New number of total sales.
838 838
 	 */
839
-	public function increase_sales( $quantity = 1 ) {
839
+	public function increase_sales($quantity = 1) {
840 840
 
841
-		$sales       = give_get_form_sales_stats( $this->ID );
842
-		$quantity    = absint( $quantity );
841
+		$sales       = give_get_form_sales_stats($this->ID);
842
+		$quantity    = absint($quantity);
843 843
 		$total_sales = $sales + $quantity;
844 844
 
845
-		if ( $this->update_meta( '_give_form_sales', $total_sales ) ) {
845
+		if ($this->update_meta('_give_form_sales', $total_sales)) {
846 846
 
847 847
 			$this->sales = $total_sales;
848 848
 
@@ -863,17 +863,17 @@  discard block
 block discarded – undo
863 863
 	 *
864 864
 	 * @return int|false     New number of total sales.
865 865
 	 */
866
-	public function decrease_sales( $quantity = 1 ) {
866
+	public function decrease_sales($quantity = 1) {
867 867
 
868
-		$sales = give_get_form_sales_stats( $this->ID );
868
+		$sales = give_get_form_sales_stats($this->ID);
869 869
 
870 870
 		// Only decrease if not already zero
871
-		if ( $sales > 0 ) {
871
+		if ($sales > 0) {
872 872
 
873
-			$quantity    = absint( $quantity );
873
+			$quantity    = absint($quantity);
874 874
 			$total_sales = $sales - $quantity;
875 875
 
876
-			if ( $this->update_meta( '_give_form_sales', $total_sales ) ) {
876
+			if ($this->update_meta('_give_form_sales', $total_sales)) {
877 877
 
878 878
 				$this->sales = $sales;
879 879
 
@@ -897,15 +897,15 @@  discard block
 block discarded – undo
897 897
 	 */
898 898
 	public function get_earnings() {
899 899
 
900
-		if ( ! isset( $this->earnings ) ) {
900
+		if ( ! isset($this->earnings)) {
901 901
 
902
-			if ( '' == give_get_meta( $this->ID, '_give_form_earnings', true ) ) {
903
-				add_post_meta( $this->ID, '_give_form_earnings', 0 );
902
+			if ('' == give_get_meta($this->ID, '_give_form_earnings', true)) {
903
+				add_post_meta($this->ID, '_give_form_earnings', 0);
904 904
 			}
905 905
 
906
-			$this->earnings = give_get_meta( $this->ID, '_give_form_earnings', true );
906
+			$this->earnings = give_get_meta($this->ID, '_give_form_earnings', true);
907 907
 
908
-			if ( $this->earnings < 0 ) {
908
+			if ($this->earnings < 0) {
909 909
 				// Never let earnings be less than zero
910 910
 				$this->earnings = 0;
911 911
 			}
@@ -926,12 +926,12 @@  discard block
 block discarded – undo
926 926
 	 *
927 927
 	 * @return float|false
928 928
 	 */
929
-	public function increase_earnings( $amount = 0 ) {
929
+	public function increase_earnings($amount = 0) {
930 930
 
931
-		$earnings   = give_get_form_earnings_stats( $this->ID );
931
+		$earnings   = give_get_form_earnings_stats($this->ID);
932 932
 		$new_amount = $earnings + (float) $amount;
933 933
 
934
-		if ( $this->update_meta( '_give_form_earnings', $new_amount ) ) {
934
+		if ($this->update_meta('_give_form_earnings', $new_amount)) {
935 935
 
936 936
 			$this->earnings = $new_amount;
937 937
 
@@ -953,16 +953,16 @@  discard block
 block discarded – undo
953 953
 	 *
954 954
 	 * @return float|false
955 955
 	 */
956
-	public function decrease_earnings( $amount ) {
956
+	public function decrease_earnings($amount) {
957 957
 
958
-		$earnings = give_get_form_earnings_stats( $this->ID );
958
+		$earnings = give_get_form_earnings_stats($this->ID);
959 959
 
960
-		if ( $earnings > 0 ) {
960
+		if ($earnings > 0) {
961 961
 			// Only decrease if greater than zero
962 962
 			$new_amount = $earnings - (float) $amount;
963 963
 
964 964
 
965
-			if ( $this->update_meta( '_give_form_earnings', $new_amount ) ) {
965
+			if ($this->update_meta('_give_form_earnings', $new_amount)) {
966 966
 
967 967
 				$this->earnings = $new_amount;
968 968
 
@@ -986,22 +986,22 @@  discard block
 block discarded – undo
986 986
 	 *
987 987
 	 * @return bool
988 988
 	 */
989
-	public function is_free( $price_id = false ) {
989
+	public function is_free($price_id = false) {
990 990
 
991 991
 		$is_free          = false;
992
-		$variable_pricing = give_has_variable_prices( $this->ID );
992
+		$variable_pricing = give_has_variable_prices($this->ID);
993 993
 
994
-		if ( $variable_pricing && ! is_null( $price_id ) && $price_id !== false ) {
995
-			$price = give_get_price_option_amount( $this->ID, $price_id );
996
-		} elseif ( ! $variable_pricing ) {
997
-			$price = give_get_meta( $this->ID, '_give_set_price', true );
994
+		if ($variable_pricing && ! is_null($price_id) && $price_id !== false) {
995
+			$price = give_get_price_option_amount($this->ID, $price_id);
996
+		} elseif ( ! $variable_pricing) {
997
+			$price = give_get_meta($this->ID, '_give_set_price', true);
998 998
 		}
999 999
 
1000
-		if ( isset( $price ) && (float) $price == 0 ) {
1000
+		if (isset($price) && (float) $price == 0) {
1001 1001
 			$is_free = true;
1002 1002
 		}
1003 1003
 
1004
-		return (bool) apply_filters( 'give_is_free_donation', $is_free, $this->ID, $price_id );
1004
+		return (bool) apply_filters('give_is_free_donation', $is_free, $this->ID, $price_id);
1005 1005
 
1006 1006
 	}
1007 1007
 
@@ -1028,9 +1028,9 @@  discard block
 block discarded – undo
1028 1028
 		$is_close_form = apply_filters(
1029 1029
 			'give_is_close_donation_form',
1030 1030
 			(
1031
-			give_is_setting_enabled( give_get_meta( $this->ID, '_give_goal_option', true ) ) )
1032
-			&& give_is_setting_enabled( give_get_meta( $this->ID, '_give_close_form_when_goal_achieved', true ) )
1033
-			&& ( $this->get_goal() <= $this->get_earnings()
1031
+			give_is_setting_enabled(give_get_meta($this->ID, '_give_goal_option', true)) )
1032
+			&& give_is_setting_enabled(give_get_meta($this->ID, '_give_close_form_when_goal_achieved', true))
1033
+			&& ($this->get_goal() <= $this->get_earnings()
1034 1034
 			),
1035 1035
 			$this->ID
1036 1036
 		);
@@ -1049,29 +1049,29 @@  discard block
 block discarded – undo
1049 1049
 	 *
1050 1050
 	 * @return bool                            The result of the update query.
1051 1051
 	 */
1052
-	private function update_meta( $meta_key = '', $meta_value = '' ) {
1052
+	private function update_meta($meta_key = '', $meta_value = '') {
1053 1053
 
1054 1054
 		/* @var WPDB $wpdb */
1055 1055
 		global $wpdb;
1056 1056
 
1057
-		if ( empty( $meta_key ) ) {
1057
+		if (empty($meta_key)) {
1058 1058
 			return false;
1059 1059
 		}
1060 1060
 
1061 1061
 		// Make sure if it needs to be serialized, we do
1062
-		$meta_value = maybe_serialize( $meta_value );
1062
+		$meta_value = maybe_serialize($meta_value);
1063 1063
 
1064
-		if ( is_numeric( $meta_value ) ) {
1065
-			$value_type = is_float( $meta_value ) ? '%f' : '%d';
1064
+		if (is_numeric($meta_value)) {
1065
+			$value_type = is_float($meta_value) ? '%f' : '%d';
1066 1066
 		} else {
1067 1067
 			$value_type = "'%s'";
1068 1068
 		}
1069 1069
 
1070
-		$sql = $wpdb->prepare( "UPDATE $wpdb->postmeta SET meta_value = $value_type WHERE post_id = $this->ID AND meta_key = '%s'", $meta_value, $meta_key );
1070
+		$sql = $wpdb->prepare("UPDATE $wpdb->postmeta SET meta_value = $value_type WHERE post_id = $this->ID AND meta_key = '%s'", $meta_value, $meta_key);
1071 1071
 
1072
-		if ( $wpdb->query( $sql ) ) {
1072
+		if ($wpdb->query($sql)) {
1073 1073
 
1074
-			clean_post_cache( $this->ID );
1074
+			clean_post_cache($this->ID);
1075 1075
 
1076 1076
 			return true;
1077 1077
 
Please login to merge, or discard this patch.
includes/admin/reports/class-form-reports-table.php 1 patch
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  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
 
17 17
 // Load WP_List_Table if not loaded
18
-if ( ! class_exists( 'WP_List_Table' ) ) {
19
-	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
18
+if ( ! class_exists('WP_List_Table')) {
19
+	require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php';
20 20
 }
21 21
 
22 22
 /**
@@ -56,13 +56,13 @@  discard block
 block discarded – undo
56 56
 		global $status, $page;
57 57
 
58 58
 		// Set parent defaults
59
-		parent::__construct( array(
60
-			'singular' => give_get_forms_label_singular(),    // Singular name of the listed records.
61
-			'plural'   => give_get_forms_label_plural(),        // Plural name of the listed records.
59
+		parent::__construct(array(
60
+			'singular' => give_get_forms_label_singular(), // Singular name of the listed records.
61
+			'plural'   => give_get_forms_label_plural(), // Plural name of the listed records.
62 62
 			'ajax'     => false                        // Does this table support ajax?
63
-		) );
63
+		));
64 64
 
65
-		add_action( 'give_report_view_actions', array( $this, 'category_filter' ) );
65
+		add_action('give_report_view_actions', array($this, 'category_filter'));
66 66
 		$this->query();
67 67
 
68 68
 	}
@@ -78,32 +78,32 @@  discard block
 block discarded – undo
78 78
 	 *
79 79
 	 * @return string Column Name
80 80
 	 */
81
-	public function column_default( $item, $column_name ) {
82
-		switch ( $column_name ) {
81
+	public function column_default($item, $column_name) {
82
+		switch ($column_name) {
83 83
 			case 'title':
84
-				$title = empty( $item['title'] ) ? sprintf( __( 'Untitled (#%s)', 'give' ), $item['ID'] ) : $item['title'];
84
+				$title = empty($item['title']) ? sprintf(__('Untitled (#%s)', 'give'), $item['ID']) : $item['title'];
85 85
 
86 86
 				return sprintf(
87 87
 					'<a href="%s">%s</a>',
88
-					get_edit_post_link( $item['ID'] ),
88
+					get_edit_post_link($item['ID']),
89 89
 					$title
90 90
 				);
91 91
 			case 'sales':
92 92
 				return sprintf(
93 93
 					'<a href="%s">%s</a>',
94
-					admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&form_id=' . urlencode( $item['ID'] ) ),
94
+					admin_url('edit.php?post_type=give_forms&page=give-payment-history&form_id='.urlencode($item['ID'])),
95 95
 					$item['sales']
96 96
 				);
97 97
 			case 'earnings' :
98
-				return give_currency_filter( give_format_amount( $item[ $column_name ], array( 'sanitize' => false ) ) );
98
+				return give_currency_filter(give_format_amount($item[$column_name], array('sanitize' => false)));
99 99
 			case 'average_sales' :
100
-				return round( $item[ $column_name ] );
100
+				return round($item[$column_name]);
101 101
 			case 'average_earnings' :
102
-				return give_currency_filter( give_format_amount( $item[ $column_name ], array( 'sanitize' => false ) ) );
102
+				return give_currency_filter(give_format_amount($item[$column_name], array('sanitize' => false)));
103 103
 			case 'details' :
104
-				return '<a href="' . admin_url( 'edit.php?post_type=give_forms&page=give-reports&tab=forms&form-id=' . $item['ID'] ) . '">' . esc_html__( 'View Detailed Report', 'give' ) . '</a>';
104
+				return '<a href="'.admin_url('edit.php?post_type=give_forms&page=give-reports&tab=forms&form-id='.$item['ID']).'">'.esc_html__('View Detailed Report', 'give').'</a>';
105 105
 			default:
106
-				return $item[ $column_name ];
106
+				return $item[$column_name];
107 107
 		}
108 108
 	}
109 109
 
@@ -117,12 +117,12 @@  discard block
 block discarded – undo
117 117
 	 */
118 118
 	public function get_columns() {
119 119
 		$columns = array(
120
-			'title'            => esc_html__( 'Form', 'give' ),
121
-			'sales'            => esc_html__( 'Donations', 'give' ),
122
-			'earnings'         => esc_html__( 'Income', 'give' ),
123
-			'average_sales'    => esc_html__( 'Monthly Average Donations', 'give' ),
124
-			'average_earnings' => esc_html__( 'Monthly Average Income', 'give' ),
125
-			'details'          => esc_html__( 'Detailed Report', 'give' )
120
+			'title'            => esc_html__('Form', 'give'),
121
+			'sales'            => esc_html__('Donations', 'give'),
122
+			'earnings'         => esc_html__('Income', 'give'),
123
+			'average_sales'    => esc_html__('Monthly Average Donations', 'give'),
124
+			'average_earnings' => esc_html__('Monthly Average Income', 'give'),
125
+			'details'          => esc_html__('Detailed Report', 'give')
126 126
 		);
127 127
 
128 128
 		return $columns;
@@ -138,9 +138,9 @@  discard block
 block discarded – undo
138 138
 	 */
139 139
 	public function get_sortable_columns() {
140 140
 		return array(
141
-			'title'    => array( 'title', true ),
142
-			'sales'    => array( 'sales', false ),
143
-			'earnings' => array( 'earnings', false ),
141
+			'title'    => array('title', true),
142
+			'sales'    => array('sales', false),
143
+			'earnings' => array('earnings', false),
144 144
 		);
145 145
 	}
146 146
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 	 * @return int Current page number
154 154
 	 */
155 155
 	public function get_paged() {
156
-		return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1;
156
+		return isset($_GET['paged']) ? absint($_GET['paged']) : 1;
157 157
 	}
158 158
 
159 159
 	/**
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 	 * @return int Category ID
166 166
 	 */
167 167
 	public function get_category() {
168
-		return isset( $_GET['category'] ) ? absint( $_GET['category'] ) : 0;
168
+		return isset($_GET['category']) ? absint($_GET['category']) : 0;
169 169
 	}
170 170
 
171 171
 	/**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 	 *
177 177
 	 * @return void
178 178
 	 */
179
-	public function bulk_actions( $which = '' ) {
179
+	public function bulk_actions($which = '') {
180 180
 
181 181
 	}
182 182
 
@@ -188,27 +188,27 @@  discard block
 block discarded – undo
188 188
 	 *
189 189
 	 * @param string $which
190 190
 	 */
191
-	protected function display_tablenav( $which ) {
191
+	protected function display_tablenav($which) {
192 192
 
193
-		if ( 'top' === $which ) {
194
-			wp_nonce_field( 'bulk-' . $this->_args['plural'] );
193
+		if ('top' === $which) {
194
+			wp_nonce_field('bulk-'.$this->_args['plural']);
195 195
 		}
196 196
 		?>
197
-		<div class="tablenav give-clearfix <?php echo esc_attr( $which ); ?>">
197
+		<div class="tablenav give-clearfix <?php echo esc_attr($which); ?>">
198 198
 
199
-			<?php if ( 'top' === $which ) { ?>
199
+			<?php if ('top' === $which) { ?>
200 200
 				<h3 class="alignleft reports-earnings-title">
201
-					<span><?php esc_html_e( 'Donation Forms Report', 'give' ); ?></span>
201
+					<span><?php esc_html_e('Donation Forms Report', 'give'); ?></span>
202 202
 				</h3>
203 203
 			<?php } ?>
204 204
 
205 205
 			<div class="alignright tablenav-right">
206 206
 				<div class="actions bulkactions">
207
-					<?php $this->bulk_actions( $which ); ?>
207
+					<?php $this->bulk_actions($which); ?>
208 208
 				</div>
209 209
 				<?php
210
-				$this->extra_tablenav( $which );
211
-				$this->pagination( $which );
210
+				$this->extra_tablenav($which);
211
+				$this->pagination($which);
212 212
 				?>
213 213
 			</div>
214 214
 
@@ -228,9 +228,9 @@  discard block
 block discarded – undo
228 228
 	 */
229 229
 	public function category_filter() {
230 230
 
231
-		$categories = get_terms( 'form_category' );
232
-		if ( $categories && ! is_wp_error( $categories ) ) {
233
-			echo Give()->html->category_dropdown( 'category', $this->get_category() );
231
+		$categories = get_terms('form_category');
232
+		if ($categories && ! is_wp_error($categories)) {
233
+			echo Give()->html->category_dropdown('category', $this->get_category());
234 234
 		}
235 235
 	}
236 236
 
@@ -244,8 +244,8 @@  discard block
 block discarded – undo
244 244
 	 */
245 245
 	public function query() {
246 246
 
247
-		$orderby  = isset( $_GET['orderby'] ) ? $_GET['orderby'] : 'title';
248
-		$order    = isset( $_GET['order'] ) ? $_GET['order'] : 'DESC';
247
+		$orderby  = isset($_GET['orderby']) ? $_GET['orderby'] : 'title';
248
+		$order    = isset($_GET['order']) ? $_GET['order'] : 'DESC';
249 249
 		$category = $this->get_category();
250 250
 
251 251
 		$args = array(
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
 			'suppress_filters' => true
259 259
 		);
260 260
 
261
-		if ( ! empty( $category ) ) {
261
+		if ( ! empty($category)) {
262 262
 			$args['tax_query'] = array(
263 263
 				array(
264 264
 					'taxonomy' => 'form_category',
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 			);
268 268
 		}
269 269
 
270
-		switch ( $orderby ) :
270
+		switch ($orderby) :
271 271
 			case 'title' :
272 272
 				$args['orderby'] = 'title';
273 273
 				break;
@@ -283,9 +283,9 @@  discard block
 block discarded – undo
283 283
 				break;
284 284
 		endswitch;
285 285
 
286
-		$args = apply_filters( 'give_form_reports_prepare_items_args', $args, $this );
286
+		$args = apply_filters('give_form_reports_prepare_items_args', $args, $this);
287 287
 
288
-		$this->donation_forms = new WP_Query( $args );
288
+		$this->donation_forms = new WP_Query($args);
289 289
 
290 290
 		// Store total number of donation forms count.
291 291
 		$this->count = $this->donation_forms->found_posts;
@@ -305,15 +305,15 @@  discard block
 block discarded – undo
305 305
 
306 306
 		$give_forms = $this->donation_forms->posts;
307 307
 
308
-		if ( $give_forms ) {
309
-			foreach ( $give_forms as $form ) {
308
+		if ($give_forms) {
309
+			foreach ($give_forms as $form) {
310 310
 				$reports_data[] = array(
311 311
 					'ID'               => $form,
312
-					'title'            => get_the_title( $form ),
313
-					'sales'            => give_get_form_sales_stats( $form ),
314
-					'earnings'         => give_get_form_earnings_stats( $form ),
315
-					'average_sales'    => give_get_average_monthly_form_sales( $form ),
316
-					'average_earnings' => give_get_average_monthly_form_earnings( $form )
312
+					'title'            => get_the_title($form),
313
+					'sales'            => give_get_form_sales_stats($form),
314
+					'earnings'         => give_get_form_earnings_stats($form),
315
+					'average_sales'    => give_get_average_monthly_form_sales($form),
316
+					'average_earnings' => give_get_average_monthly_form_earnings($form)
317 317
 				);
318 318
 			}
319 319
 		}
@@ -338,14 +338,14 @@  discard block
 block discarded – undo
338 338
 		$columns = $this->get_columns();
339 339
 		$hidden = array(); // No hidden columns
340 340
 		$sortable = $this->get_sortable_columns();
341
-		$this->_column_headers = array( $columns, $hidden, $sortable );
341
+		$this->_column_headers = array($columns, $hidden, $sortable);
342 342
 		$this->items = $this->reports_data();
343 343
 		$total_items = $this->count;
344 344
 
345
-		$this->set_pagination_args( array(
345
+		$this->set_pagination_args(array(
346 346
 				'total_items' => $total_items,
347 347
 				'per_page'    => $this->per_page,
348
-				'total_pages' => ceil( $total_items / $this->per_page )
348
+				'total_pages' => ceil($total_items / $this->per_page)
349 349
 			)
350 350
 		);
351 351
 	}
Please login to merge, or discard this patch.
includes/admin/tools/export/class-export-earnings.php 1 patch
Spacing   +28 added lines, -28 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
 
@@ -38,16 +38,16 @@  discard block
 block discarded – undo
38 38
 	 * @return void
39 39
 	 */
40 40
 	public function headers() {
41
-		ignore_user_abort( true );
41
+		ignore_user_abort(true);
42 42
 
43
-		if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) {
44
-			set_time_limit( 0 );
43
+		if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) {
44
+			set_time_limit(0);
45 45
 		}
46 46
 
47 47
 		nocache_headers();
48
-		header( 'Content-Type: text/csv; charset=utf-8' );
49
-		header( 'Content-Disposition: attachment; filename=' . apply_filters( 'give_earnings_export_filename', 'give-export-' . $this->export_type . '-' . date( 'n' ) . '-' . date( 'Y' ) ) . '.csv' );
50
-		header( "Expires: 0" );
48
+		header('Content-Type: text/csv; charset=utf-8');
49
+		header('Content-Disposition: attachment; filename='.apply_filters('give_earnings_export_filename', 'give-export-'.$this->export_type.'-'.date('n').'-'.date('Y')).'.csv');
50
+		header("Expires: 0");
51 51
 
52 52
 	}
53 53
 
@@ -61,10 +61,10 @@  discard block
 block discarded – undo
61 61
 	public function csv_cols() {
62 62
 
63 63
 		$cols = array(
64
-			'date'      => __( 'Date', 'give' ),
65
-			'donations' => __( 'Donations', 'give' ),
64
+			'date'      => __('Date', 'give'),
65
+			'donations' => __('Donations', 'give'),
66 66
 			/* translators: %s: currency */
67
-			'earnings'  => sprintf( __( 'Income (%s)', 'give' ), give_currency_symbol('', true) )
67
+			'earnings'  => sprintf(__('Income (%s)', 'give'), give_currency_symbol('', true))
68 68
 		);
69 69
 
70 70
 		return $cols;
@@ -79,28 +79,28 @@  discard block
 block discarded – undo
79 79
 	 */
80 80
 	public function get_data() {
81 81
 
82
-		$start_year  = isset( $_POST['start_year'] ) ? absint( $_POST['start_year'] ) : date( 'Y' );
83
-		$end_year    = isset( $_POST['end_year'] ) ? absint( $_POST['end_year'] ) : date( 'Y' );
84
-		$start_month = isset( $_POST['start_month'] ) ? absint( $_POST['start_month'] ) : date( 'n' );
85
-		$end_month   = isset( $_POST['end_month'] ) ? absint( $_POST['end_month'] ) : date( 'n' );
82
+		$start_year  = isset($_POST['start_year']) ? absint($_POST['start_year']) : date('Y');
83
+		$end_year    = isset($_POST['end_year']) ? absint($_POST['end_year']) : date('Y');
84
+		$start_month = isset($_POST['start_month']) ? absint($_POST['start_month']) : date('n');
85
+		$end_month   = isset($_POST['end_month']) ? absint($_POST['end_month']) : date('n');
86 86
 
87 87
 		$data  = array();
88 88
 		$year  = $start_year;
89 89
 		$stats = new Give_Payment_Stats;
90 90
 
91
-		while ( $year <= $end_year ) {
91
+		while ($year <= $end_year) {
92 92
 
93
-			if ( $year == $start_year && $year == $end_year ) {
93
+			if ($year == $start_year && $year == $end_year) {
94 94
 
95 95
 				$m1 = $start_month;
96 96
 				$m2 = $end_month;
97 97
 
98
-			} elseif ( $year == $start_year ) {
98
+			} elseif ($year == $start_year) {
99 99
 
100 100
 				$m1 = $start_month;
101 101
 				$m2 = 12;
102 102
 
103
-			} elseif ( $year == $end_year ) {
103
+			} elseif ($year == $end_year) {
104 104
 
105 105
 				$m1 = 1;
106 106
 				$m2 = $end_month;
@@ -112,28 +112,28 @@  discard block
 block discarded – undo
112 112
 
113 113
 			}
114 114
 
115
-			while ( $m1 <= $m2 ) {
115
+			while ($m1 <= $m2) {
116 116
 
117
-				$date1 = mktime( 0, 0, 0, $m1, 1, $year );
118
-				$date2 = mktime( 0, 0, 0, $m1, cal_days_in_month( CAL_GREGORIAN, $m1, $year ), $year );
117
+				$date1 = mktime(0, 0, 0, $m1, 1, $year);
118
+				$date2 = mktime(0, 0, 0, $m1, cal_days_in_month(CAL_GREGORIAN, $m1, $year), $year);
119 119
 
120 120
 				$data[] = array(
121
-					'date'      => date_i18n( 'F Y', $date1 ),
122
-					'donations' => $stats->get_sales( 0, $date1, $date2 ),
123
-					'earnings'  => give_format_amount( $stats->get_earnings( 0, $date1, $date2 ), array( 'sanitize' => false ) ),
121
+					'date'      => date_i18n('F Y', $date1),
122
+					'donations' => $stats->get_sales(0, $date1, $date2),
123
+					'earnings'  => give_format_amount($stats->get_earnings(0, $date1, $date2), array('sanitize' => false)),
124 124
 				);
125 125
 
126
-				$m1 ++;
126
+				$m1++;
127 127
 
128 128
 			}
129 129
 
130 130
 
131
-			$year ++;
131
+			$year++;
132 132
 
133 133
 		}
134 134
 
135
-		$data = apply_filters( 'give_export_get_data', $data );
136
-		$data = apply_filters( "give_export_get_data_{$this->export_type}", $data );
135
+		$data = apply_filters('give_export_get_data', $data);
136
+		$data = apply_filters("give_export_get_data_{$this->export_type}", $data);
137 137
 
138 138
 		return $data;
139 139
 	}
Please login to merge, or discard this patch.
includes/admin/tools/export/class-batch-export-payments.php 1 patch
Spacing   +71 added lines, -71 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
 
@@ -39,30 +39,30 @@  discard block
 block discarded – undo
39 39
 	 */
40 40
 	public function csv_cols() {
41 41
 		$cols = array(
42
-			'id'        => __( 'ID', 'give' ), // unaltered payment ID (use for querying).
43
-			'seq_id'    => __( 'Payment Number', 'give' ), // sequential payment ID.
44
-			'email'     => __( 'Email', 'give' ),
45
-			'first'     => __( 'First Name', 'give' ),
46
-			'last'      => __( 'Last Name', 'give' ),
47
-			'address1'  => __( 'Address 1', 'give' ),
48
-			'address2'  => __( 'Address 2', 'give' ),
49
-			'city'      => __( 'City', 'give' ),
50
-			'state'     => __( 'State', 'give' ),
51
-			'country'   => __( 'Country', 'give' ),
52
-			'zip'       => __( 'Zip / Postal Code', 'give' ),
53
-			'form_id'   => __( 'Form ID', 'give' ),
54
-			'form_name' => __( 'Form Name', 'give' ),
55
-			'amount'    => __( 'Amount', 'give' ) . ' (' . give_currency_symbol( '', true ) . ')',
56
-			'gateway'   => __( 'Payment Method', 'give' ),
57
-			'trans_id'  => __( 'Transaction ID', 'give' ),
58
-			'key'       => __( 'Key', 'give' ),
59
-			'date'      => __( 'Date', 'give' ),
60
-			'user'      => __( 'User', 'give' ),
61
-			'status'    => __( 'Status', 'give' )
42
+			'id'        => __('ID', 'give'), // unaltered payment ID (use for querying).
43
+			'seq_id'    => __('Payment Number', 'give'), // sequential payment ID.
44
+			'email'     => __('Email', 'give'),
45
+			'first'     => __('First Name', 'give'),
46
+			'last'      => __('Last Name', 'give'),
47
+			'address1'  => __('Address 1', 'give'),
48
+			'address2'  => __('Address 2', 'give'),
49
+			'city'      => __('City', 'give'),
50
+			'state'     => __('State', 'give'),
51
+			'country'   => __('Country', 'give'),
52
+			'zip'       => __('Zip / Postal Code', 'give'),
53
+			'form_id'   => __('Form ID', 'give'),
54
+			'form_name' => __('Form Name', 'give'),
55
+			'amount'    => __('Amount', 'give').' ('.give_currency_symbol('', true).')',
56
+			'gateway'   => __('Payment Method', 'give'),
57
+			'trans_id'  => __('Transaction ID', 'give'),
58
+			'key'       => __('Key', 'give'),
59
+			'date'      => __('Date', 'give'),
60
+			'user'      => __('User', 'give'),
61
+			'status'    => __('Status', 'give')
62 62
 		);
63 63
 
64
-		if ( ! give_get_option( 'enable_sequential' ) ) {
65
-			unset( $cols['seq_id'] );
64
+		if ( ! give_get_option('enable_sequential')) {
65
+			unset($cols['seq_id']);
66 66
 		}
67 67
 
68 68
 		return $cols;
@@ -86,12 +86,12 @@  discard block
 block discarded – undo
86 86
 			'status' => $this->status
87 87
 		);
88 88
 
89
-		if ( ! empty( $this->start ) || ! empty( $this->end ) ) {
89
+		if ( ! empty($this->start) || ! empty($this->end)) {
90 90
 
91 91
 			$args['date_query'] = array(
92 92
 				array(
93
-					'after'     => date( 'Y-n-d 00:00:00', strtotime( $this->start ) ),
94
-					'before'    => date( 'Y-n-d 23:59:59', strtotime( $this->end ) ),
93
+					'after'     => date('Y-n-d 00:00:00', strtotime($this->start)),
94
+					'before'    => date('Y-n-d 23:59:59', strtotime($this->end)),
95 95
 					'inclusive' => true
96 96
 				)
97 97
 			);
@@ -99,11 +99,11 @@  discard block
 block discarded – undo
99 99
 		}
100 100
 
101 101
 		// Add category or tag to payment query if any.
102
-		if ( ! empty( $this->categories ) || ! empty( $this->tags ) ) {
102
+		if ( ! empty($this->categories) || ! empty($this->tags)) {
103 103
 			$form_args = array(
104 104
 				'post_type'      => 'give_forms',
105 105
 				'post_status'    => 'publish',
106
-				'posts_per_page' => - 1,
106
+				'posts_per_page' => -1,
107 107
 				'fields'         => 'ids',
108 108
 				'tax_query'      => array(
109 109
 					'relation' => 'AND',
@@ -111,72 +111,72 @@  discard block
 block discarded – undo
111 111
 			);
112 112
 
113 113
 
114
-			if ( ! empty( $this->categories ) ) {
114
+			if ( ! empty($this->categories)) {
115 115
 				$form_args['tax_query'][] = array(
116 116
 					'taxonomy' => 'give_forms_category',
117 117
 					'terms'    => $this->categories,
118 118
 				);
119 119
 			}
120 120
 
121
-			if ( ! empty( $this->tags ) ) {
121
+			if ( ! empty($this->tags)) {
122 122
 				$form_args['tax_query'][] = array(
123 123
 					'taxonomy' => 'give_forms_tag',
124 124
 					'terms'    => $this->tags,
125 125
 				);
126 126
 			}
127 127
 
128
-			$forms = new WP_Query( $form_args );
128
+			$forms = new WP_Query($form_args);
129 129
 
130
-			if ( empty( $forms->posts ) ) {
130
+			if (empty($forms->posts)) {
131 131
 				return array();
132 132
 			}
133 133
 
134 134
 			$args['give_forms'] = $forms->posts;
135 135
 		}
136 136
 
137
-		$payments = give_get_payments( $args );
137
+		$payments = give_get_payments($args);
138 138
 
139
-		if ( $payments ) {
139
+		if ($payments) {
140 140
 
141
-			foreach ( $payments as $payment ) {
142
-				$payment_meta = give_get_payment_meta( $payment->ID );
143
-				$user_info    = give_get_payment_meta_user_info( $payment->ID );
144
-				$total        = give_get_payment_amount( $payment->ID );
145
-				$user_id      = isset( $user_info['id'] ) && $user_info['id'] != - 1 ? $user_info['id'] : $user_info['email'];
141
+			foreach ($payments as $payment) {
142
+				$payment_meta = give_get_payment_meta($payment->ID);
143
+				$user_info    = give_get_payment_meta_user_info($payment->ID);
144
+				$total        = give_get_payment_amount($payment->ID);
145
+				$user_id      = isset($user_info['id']) && $user_info['id'] != - 1 ? $user_info['id'] : $user_info['email'];
146 146
 
147
-				if ( is_numeric( $user_id ) ) {
148
-					$user = get_userdata( $user_id );
147
+				if (is_numeric($user_id)) {
148
+					$user = get_userdata($user_id);
149 149
 				} else {
150 150
 					$user = false;
151 151
 				}
152 152
 
153 153
 				$data[] = array(
154 154
 					'id'        => $payment->ID,
155
-					'seq_id'    => give_get_payment_number( $payment->ID ),
155
+					'seq_id'    => give_get_payment_number($payment->ID),
156 156
 					'email'     => $payment_meta['email'],
157 157
 					'first'     => $user_info['first_name'],
158 158
 					'last'      => $user_info['last_name'],
159
-					'address1'  => isset( $user_info['address']['line1'] ) ? $user_info['address']['line1'] : '',
160
-					'address2'  => isset( $user_info['address']['line2'] ) ? $user_info['address']['line2'] : '',
161
-					'city'      => isset( $user_info['address']['city'] ) ? $user_info['address']['city'] : '',
162
-					'state'     => isset( $user_info['address']['state'] ) ? $user_info['address']['state'] : '',
163
-					'country'   => isset( $user_info['address']['country'] ) ? $user_info['address']['country'] : '',
164
-					'zip'       => isset( $user_info['address']['zip'] ) ? $user_info['address']['zip'] : '',
165
-					'form_id'   => isset( $payment_meta['form_id'] ) ? $payment_meta['form_id'] : '',
166
-					'form_name' => isset( $payment_meta['form_title'] ) ? $payment_meta['form_title'] : '',
167
-					'amount'    => html_entity_decode( give_format_amount( $total, array( 'sanitize' => false ) ) ),
168
-					'gateway'   => give_get_gateway_admin_label( give_get_meta( $payment->ID, '_give_payment_gateway', true ) ),
169
-					'trans_id'  => give_get_payment_transaction_id( $payment->ID ),
159
+					'address1'  => isset($user_info['address']['line1']) ? $user_info['address']['line1'] : '',
160
+					'address2'  => isset($user_info['address']['line2']) ? $user_info['address']['line2'] : '',
161
+					'city'      => isset($user_info['address']['city']) ? $user_info['address']['city'] : '',
162
+					'state'     => isset($user_info['address']['state']) ? $user_info['address']['state'] : '',
163
+					'country'   => isset($user_info['address']['country']) ? $user_info['address']['country'] : '',
164
+					'zip'       => isset($user_info['address']['zip']) ? $user_info['address']['zip'] : '',
165
+					'form_id'   => isset($payment_meta['form_id']) ? $payment_meta['form_id'] : '',
166
+					'form_name' => isset($payment_meta['form_title']) ? $payment_meta['form_title'] : '',
167
+					'amount'    => html_entity_decode(give_format_amount($total, array('sanitize' => false))),
168
+					'gateway'   => give_get_gateway_admin_label(give_get_meta($payment->ID, '_give_payment_gateway', true)),
169
+					'trans_id'  => give_get_payment_transaction_id($payment->ID),
170 170
 					'key'       => $payment_meta['key'],
171 171
 					'date'      => $payment->post_date,
172
-					'user'      => $user ? $user->display_name : __( 'guest', 'give' ),
173
-					'status'    => give_get_payment_status( $payment, true )
172
+					'user'      => $user ? $user->display_name : __('guest', 'give'),
173
+					'status'    => give_get_payment_status($payment, true)
174 174
 				);
175 175
 
176 176
 			}
177 177
 
178
-			$data = apply_filters( 'give_export_get_data', $data );
179
-			$data = apply_filters( "give_export_get_data_{$this->export_type}", $data );
178
+			$data = apply_filters('give_export_get_data', $data);
179
+			$data = apply_filters("give_export_get_data_{$this->export_type}", $data);
180 180
 
181 181
 			return $data;
182 182
 
@@ -196,27 +196,27 @@  discard block
 block discarded – undo
196 196
 
197 197
 		$status = $this->status;
198 198
 		$args   = array(
199
-			'start-date' => date( 'n/d/Y', strtotime( $this->start ) ),
200
-			'end-date'   => date( 'n/d/Y', strtotime( $this->end ) ),
199
+			'start-date' => date('n/d/Y', strtotime($this->start)),
200
+			'end-date'   => date('n/d/Y', strtotime($this->end)),
201 201
 		);
202 202
 
203
-		if ( 'any' == $status ) {
203
+		if ('any' == $status) {
204 204
 
205
-			$total = array_sum( (array) give_count_payments( $args ) );
205
+			$total = array_sum((array) give_count_payments($args));
206 206
 
207 207
 		} else {
208 208
 
209
-			$total = give_count_payments( $args )->$status;
209
+			$total = give_count_payments($args)->$status;
210 210
 
211 211
 		}
212 212
 
213 213
 		$percentage = 100;
214 214
 
215
-		if ( $total > 0 ) {
216
-			$percentage = ( ( 30 * $this->step ) / $total ) * 100;
215
+		if ($total > 0) {
216
+			$percentage = ((30 * $this->step) / $total) * 100;
217 217
 		}
218 218
 
219
-		if ( $percentage > 100 ) {
219
+		if ($percentage > 100) {
220 220
 			$percentage = 100;
221 221
 		}
222 222
 
@@ -230,11 +230,11 @@  discard block
 block discarded – undo
230 230
 	 *
231 231
 	 * @param array $request The Form Data passed into the batch processing.
232 232
 	 */
233
-	public function set_properties( $request ) {
234
-		$this->start      = isset( $request['start'] ) ? sanitize_text_field( $request['start'] ) : '';
235
-		$this->end        = isset( $request['end'] ) ? sanitize_text_field( $request['end'] ) : '';
236
-		$this->status     = isset( $request['status'] ) ? sanitize_text_field( $request['status'] ) : 'complete';
237
-		$this->categories = isset( $request['give_forms_categories'] ) ? give_clean( $request['give_forms_categories'] ) : array();
238
-		$this->tags       = isset( $request['give_forms_tags'] ) ? give_clean( $request['give_forms_tags'] ) : array();
233
+	public function set_properties($request) {
234
+		$this->start      = isset($request['start']) ? sanitize_text_field($request['start']) : '';
235
+		$this->end        = isset($request['end']) ? sanitize_text_field($request['end']) : '';
236
+		$this->status     = isset($request['status']) ? sanitize_text_field($request['status']) : 'complete';
237
+		$this->categories = isset($request['give_forms_categories']) ? give_clean($request['give_forms_categories']) : array();
238
+		$this->tags       = isset($request['give_forms_tags']) ? give_clean($request['give_forms_tags']) : array();
239 239
 	}
240 240
 }
Please login to merge, or discard this patch.