Completed
Push — master ( 371369...9890f4 )
by Devin
05:35 queued 02:38
created
give.php 1 patch
Spacing   +146 added lines, -146 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
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 			$this->includes();
218 218
 			$this->init_hooks();
219 219
 
220
-			do_action( 'give_loaded' );
220
+			do_action('give_loaded');
221 221
 		}
222 222
 
223 223
 		/**
@@ -226,8 +226,8 @@  discard block
 block discarded – undo
226 226
 		 * @since  1.8.9
227 227
 		 */
228 228
 		private function init_hooks() {
229
-			register_activation_hook( __FILE__, 'give_install' );
230
-			add_action( 'plugins_loaded', array( $this, 'init' ), 0 );
229
+			register_activation_hook(__FILE__, 'give_install');
230
+			add_action('plugins_loaded', array($this, 'init'), 0);
231 231
 		}
232 232
 		/**
233 233
 		 * Init Give when WordPress Initializes.
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 			 *
242 242
 			 * @since 1.8.9
243 243
 			 */
244
-			do_action( 'before_give_init' );
244
+			do_action('before_give_init');
245 245
 
246 246
 			// Set up localization.
247 247
 			$this->load_textdomain();
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
 			 *
267 267
 			 * @since 1.8.7
268 268
 			 */
269
-			do_action( 'give_init', $this );
269
+			do_action('give_init', $this);
270 270
 
271 271
 		}
272 272
 
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 		 */
284 284
 		public function __clone() {
285 285
 			// Cloning instances of the class is forbidden.
286
-			_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'give' ), '1.0' );
286
+			_doing_it_wrong(__FUNCTION__, __('Cheatin’ huh?', 'give'), '1.0');
287 287
 		}
288 288
 
289 289
 		/**
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
 		 */
297 297
 		public function __wakeup() {
298 298
 			// Unserializing instances of the class is forbidden.
299
-			_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'give' ), '1.0' );
299
+			_doing_it_wrong(__FUNCTION__, __('Cheatin’ huh?', 'give'), '1.0');
300 300
 		}
301 301
 
302 302
 		/**
@@ -310,38 +310,38 @@  discard block
 block discarded – undo
310 310
 		private function setup_constants() {
311 311
 
312 312
 			// Plugin version
313
-			if ( ! defined( 'GIVE_VERSION' ) ) {
314
-				define( 'GIVE_VERSION', '1.8.11' );
313
+			if ( ! defined('GIVE_VERSION')) {
314
+				define('GIVE_VERSION', '1.8.11');
315 315
 			}
316 316
 
317 317
 			// Plugin Folder Path
318
-			if ( ! defined( 'GIVE_PLUGIN_DIR' ) ) {
319
-				define( 'GIVE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
318
+			if ( ! defined('GIVE_PLUGIN_DIR')) {
319
+				define('GIVE_PLUGIN_DIR', plugin_dir_path(__FILE__));
320 320
 			}
321 321
 
322 322
 			// Plugin Folder URL
323
-			if ( ! defined( 'GIVE_PLUGIN_URL' ) ) {
324
-				define( 'GIVE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
323
+			if ( ! defined('GIVE_PLUGIN_URL')) {
324
+				define('GIVE_PLUGIN_URL', plugin_dir_url(__FILE__));
325 325
 			}
326 326
 
327 327
 			// Plugin Basename aka: "give/give.php"
328
-			if ( ! defined( 'GIVE_PLUGIN_BASENAME' ) ) {
329
-				define( 'GIVE_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
328
+			if ( ! defined('GIVE_PLUGIN_BASENAME')) {
329
+				define('GIVE_PLUGIN_BASENAME', plugin_basename(__FILE__));
330 330
 			}
331 331
 
332 332
 			// Plugin Root File
333
-			if ( ! defined( 'GIVE_PLUGIN_FILE' ) ) {
334
-				define( 'GIVE_PLUGIN_FILE', __FILE__ );
333
+			if ( ! defined('GIVE_PLUGIN_FILE')) {
334
+				define('GIVE_PLUGIN_FILE', __FILE__);
335 335
 			}
336 336
 
337 337
 			// Make sure CAL_GREGORIAN is defined
338
-			if ( ! defined( 'CAL_GREGORIAN' ) ) {
339
-				define( 'CAL_GREGORIAN', 1 );
338
+			if ( ! defined('CAL_GREGORIAN')) {
339
+				define('CAL_GREGORIAN', 1);
340 340
 			}
341 341
 
342 342
 			// PHP version
343
-			if ( ! defined( 'GIVE_REQUIRED_PHP_VERSION' ) ) {
344
-				define( 'GIVE_REQUIRED_PHP_VERSION', '5.3' );
343
+			if ( ! defined('GIVE_REQUIRED_PHP_VERSION')) {
344
+				define('GIVE_REQUIRED_PHP_VERSION', '5.3');
345 345
 			}
346 346
 		}
347 347
 
@@ -356,128 +356,128 @@  discard block
 block discarded – undo
356 356
 		private function includes() {
357 357
 			global $give_options;
358 358
 
359
-			require_once GIVE_PLUGIN_DIR . 'includes/admin/class-admin-settings.php';
360
-			require_once GIVE_PLUGIN_DIR . 'includes/admin/class-give-settings.php';
359
+			require_once GIVE_PLUGIN_DIR.'includes/admin/class-admin-settings.php';
360
+			require_once GIVE_PLUGIN_DIR.'includes/admin/class-give-settings.php';
361 361
 			$give_options = give_get_settings();
362 362
 
363
-			require_once GIVE_PLUGIN_DIR . 'includes/admin/give-metabox-functions.php';
364
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-cache.php';
365
-			require_once GIVE_PLUGIN_DIR . 'includes/post-types.php';
366
-			require_once GIVE_PLUGIN_DIR . 'includes/scripts.php';
367
-			require_once GIVE_PLUGIN_DIR . 'includes/ajax-functions.php';
368
-			require_once GIVE_PLUGIN_DIR . 'includes/actions.php';
369
-			require_once GIVE_PLUGIN_DIR . 'includes/filters.php';
370
-			require_once GIVE_PLUGIN_DIR . 'includes/api/class-give-api.php';
371
-			require_once GIVE_PLUGIN_DIR . 'includes/class-notices.php';
372
-
373
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-roles.php';
374
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-template-loader.php';
375
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-donate-form.php';
376
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db.php';
377
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-donors.php';
378
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-donor-meta.php';
379
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-donor.php';
380
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-stats.php';
381
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-session.php';
382
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-html-elements.php';
383
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-logging.php';
384
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-license-handler.php';
385
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-cron.php';
386
-			require_once GIVE_PLUGIN_DIR . 'includes/class-give-email-access.php';
387
-
388
-			require_once GIVE_PLUGIN_DIR . 'includes/country-functions.php';
389
-			require_once GIVE_PLUGIN_DIR . 'includes/template-functions.php';
390
-			require_once GIVE_PLUGIN_DIR . 'includes/misc-functions.php';
391
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/functions.php';
392
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/template.php';
393
-			require_once GIVE_PLUGIN_DIR . 'includes/forms/widget.php';
394
-			require_once GIVE_PLUGIN_DIR . 'includes/shortcodes.php';
395
-			require_once GIVE_PLUGIN_DIR . 'includes/formatting.php';
396
-			require_once GIVE_PLUGIN_DIR . 'includes/price-functions.php';
397
-			require_once GIVE_PLUGIN_DIR . 'includes/error-tracking.php';
398
-			require_once GIVE_PLUGIN_DIR . 'includes/process-donation.php';
399
-			require_once GIVE_PLUGIN_DIR . 'includes/login-register.php';
400
-			require_once GIVE_PLUGIN_DIR . 'includes/user-functions.php';
401
-			require_once GIVE_PLUGIN_DIR . 'includes/plugin-compatibility.php';
402
-			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-classes.php';
403
-			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-functions.php';
404
-			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-actions.php';
405
-			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-filters.php';
406
-
407
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/functions.php';
408
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/actions.php';
409
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-payment-stats.php';
410
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-payments-query.php';
411
-			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-give-payment.php';
412
-
413
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/functions.php';
414
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/actions.php';
415
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/paypal-standard.php';
416
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/offline-donations.php';
417
-			require_once GIVE_PLUGIN_DIR . 'includes/gateways/manual.php';
418
-
419
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/class-give-emails.php';
420
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/class-give-email-tags.php';
421
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/functions.php';
422
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/template.php';
423
-			require_once GIVE_PLUGIN_DIR . 'includes/emails/actions.php';
424
-
425
-			if ( defined( 'WP_CLI' ) && WP_CLI ) {
426
-				require_once GIVE_PLUGIN_DIR . 'includes/class-give-cli-commands.php';
363
+			require_once GIVE_PLUGIN_DIR.'includes/admin/give-metabox-functions.php';
364
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-cache.php';
365
+			require_once GIVE_PLUGIN_DIR.'includes/post-types.php';
366
+			require_once GIVE_PLUGIN_DIR.'includes/scripts.php';
367
+			require_once GIVE_PLUGIN_DIR.'includes/ajax-functions.php';
368
+			require_once GIVE_PLUGIN_DIR.'includes/actions.php';
369
+			require_once GIVE_PLUGIN_DIR.'includes/filters.php';
370
+			require_once GIVE_PLUGIN_DIR.'includes/api/class-give-api.php';
371
+			require_once GIVE_PLUGIN_DIR.'includes/class-notices.php';
372
+
373
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-roles.php';
374
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-template-loader.php';
375
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-donate-form.php';
376
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-db.php';
377
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-db-donors.php';
378
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-db-donor-meta.php';
379
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-donor.php';
380
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-stats.php';
381
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-session.php';
382
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-html-elements.php';
383
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-logging.php';
384
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-license-handler.php';
385
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-cron.php';
386
+			require_once GIVE_PLUGIN_DIR.'includes/class-give-email-access.php';
387
+
388
+			require_once GIVE_PLUGIN_DIR.'includes/country-functions.php';
389
+			require_once GIVE_PLUGIN_DIR.'includes/template-functions.php';
390
+			require_once GIVE_PLUGIN_DIR.'includes/misc-functions.php';
391
+			require_once GIVE_PLUGIN_DIR.'includes/forms/functions.php';
392
+			require_once GIVE_PLUGIN_DIR.'includes/forms/template.php';
393
+			require_once GIVE_PLUGIN_DIR.'includes/forms/widget.php';
394
+			require_once GIVE_PLUGIN_DIR.'includes/shortcodes.php';
395
+			require_once GIVE_PLUGIN_DIR.'includes/formatting.php';
396
+			require_once GIVE_PLUGIN_DIR.'includes/price-functions.php';
397
+			require_once GIVE_PLUGIN_DIR.'includes/error-tracking.php';
398
+			require_once GIVE_PLUGIN_DIR.'includes/process-donation.php';
399
+			require_once GIVE_PLUGIN_DIR.'includes/login-register.php';
400
+			require_once GIVE_PLUGIN_DIR.'includes/user-functions.php';
401
+			require_once GIVE_PLUGIN_DIR.'includes/plugin-compatibility.php';
402
+			require_once GIVE_PLUGIN_DIR.'includes/deprecated/deprecated-classes.php';
403
+			require_once GIVE_PLUGIN_DIR.'includes/deprecated/deprecated-functions.php';
404
+			require_once GIVE_PLUGIN_DIR.'includes/deprecated/deprecated-actions.php';
405
+			require_once GIVE_PLUGIN_DIR.'includes/deprecated/deprecated-filters.php';
406
+
407
+			require_once GIVE_PLUGIN_DIR.'includes/payments/functions.php';
408
+			require_once GIVE_PLUGIN_DIR.'includes/payments/actions.php';
409
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-payment-stats.php';
410
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-payments-query.php';
411
+			require_once GIVE_PLUGIN_DIR.'includes/payments/class-give-payment.php';
412
+
413
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/functions.php';
414
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/actions.php';
415
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/paypal-standard.php';
416
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/offline-donations.php';
417
+			require_once GIVE_PLUGIN_DIR.'includes/gateways/manual.php';
418
+
419
+			require_once GIVE_PLUGIN_DIR.'includes/emails/class-give-emails.php';
420
+			require_once GIVE_PLUGIN_DIR.'includes/emails/class-give-email-tags.php';
421
+			require_once GIVE_PLUGIN_DIR.'includes/emails/functions.php';
422
+			require_once GIVE_PLUGIN_DIR.'includes/emails/template.php';
423
+			require_once GIVE_PLUGIN_DIR.'includes/emails/actions.php';
424
+
425
+			if (defined('WP_CLI') && WP_CLI) {
426
+				require_once GIVE_PLUGIN_DIR.'includes/class-give-cli-commands.php';
427 427
 			}
428 428
 
429
-			if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) {
430
-
431
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-footer.php';
432
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/welcome.php';
433
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-pages.php';
434
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/class-api-keys-table.php';
435
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/class-i18n-module.php';
436
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-actions.php';
437
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/admin-filters.php';
438
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/system-info.php';
439
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/add-ons.php';
440
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/plugins.php';
441
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/dashboard-widgets.php';
442
-
443
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/actions.php';
444
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/payments-history.php';
445
-
446
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/donors/donors.php';
447
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/donors/donor-functions.php';
448
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/donors/donor-actions.php';
449
-
450
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/forms/metabox.php';
451
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/forms/class-metabox-form-data.php';
452
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/forms/dashboard-columns.php';
453
-
454
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/export-functions.php';
455
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/class-export.php';
456
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/export-actions.php';
457
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/pdf-reports.php';
458
-
459
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reporting/reports.php';
460
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reporting/class-give-graph.php';
461
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/reporting/graphing.php';
462
-
463
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/data/tools-actions.php';
464
-
465
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/abstract-shortcode-generator.php';
466
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/class-shortcode-button.php';
467
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-form.php';
468
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-goal.php';
469
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-login.php';
470
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-register.php';
471
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-profile-editor.php';
472
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-donation-history.php';
473
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/shortcodes/shortcode-give-receipt.php';
474
-
475
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php';
476
-				require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrades.php';
429
+			if (is_admin() || (defined('WP_CLI') && WP_CLI)) {
430
+
431
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-footer.php';
432
+				require_once GIVE_PLUGIN_DIR.'includes/admin/welcome.php';
433
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-pages.php';
434
+				require_once GIVE_PLUGIN_DIR.'includes/admin/class-api-keys-table.php';
435
+				require_once GIVE_PLUGIN_DIR.'includes/admin/class-i18n-module.php';
436
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-actions.php';
437
+				require_once GIVE_PLUGIN_DIR.'includes/admin/admin-filters.php';
438
+				require_once GIVE_PLUGIN_DIR.'includes/admin/system-info.php';
439
+				require_once GIVE_PLUGIN_DIR.'includes/admin/add-ons.php';
440
+				require_once GIVE_PLUGIN_DIR.'includes/admin/plugins.php';
441
+				require_once GIVE_PLUGIN_DIR.'includes/admin/dashboard-widgets.php';
442
+
443
+				require_once GIVE_PLUGIN_DIR.'includes/admin/payments/actions.php';
444
+				require_once GIVE_PLUGIN_DIR.'includes/admin/payments/payments-history.php';
445
+
446
+				require_once GIVE_PLUGIN_DIR.'includes/admin/donors/donors.php';
447
+				require_once GIVE_PLUGIN_DIR.'includes/admin/donors/donor-functions.php';
448
+				require_once GIVE_PLUGIN_DIR.'includes/admin/donors/donor-actions.php';
449
+
450
+				require_once GIVE_PLUGIN_DIR.'includes/admin/forms/metabox.php';
451
+				require_once GIVE_PLUGIN_DIR.'includes/admin/forms/class-metabox-form-data.php';
452
+				require_once GIVE_PLUGIN_DIR.'includes/admin/forms/dashboard-columns.php';
453
+
454
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/export-functions.php';
455
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/class-export.php';
456
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/export-actions.php';
457
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/pdf-reports.php';
458
+
459
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reporting/reports.php';
460
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reporting/class-give-graph.php';
461
+				require_once GIVE_PLUGIN_DIR.'includes/admin/reporting/graphing.php';
462
+
463
+				require_once GIVE_PLUGIN_DIR.'includes/admin/tools/data/tools-actions.php';
464
+
465
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/abstract-shortcode-generator.php';
466
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/class-shortcode-button.php';
467
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-form.php';
468
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-goal.php';
469
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-login.php';
470
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-register.php';
471
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-profile-editor.php';
472
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-donation-history.php';
473
+				require_once GIVE_PLUGIN_DIR.'includes/admin/shortcodes/shortcode-give-receipt.php';
474
+
475
+				require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrade-functions.php';
476
+				require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrades.php';
477 477
 
478 478
 			}// End if().
479 479
 
480
-			require_once GIVE_PLUGIN_DIR . 'includes/install.php';
480
+			require_once GIVE_PLUGIN_DIR.'includes/install.php';
481 481
 
482 482
 		}
483 483
 
@@ -492,16 +492,16 @@  discard block
 block discarded – undo
492 492
 		public function load_textdomain() {
493 493
 
494 494
 			// Set filter for Give's languages directory
495
-			$give_lang_dir = dirname( plugin_basename( GIVE_PLUGIN_FILE ) ) . '/languages/';
496
-			$give_lang_dir = apply_filters( 'give_languages_directory', $give_lang_dir );
495
+			$give_lang_dir = dirname(plugin_basename(GIVE_PLUGIN_FILE)).'/languages/';
496
+			$give_lang_dir = apply_filters('give_languages_directory', $give_lang_dir);
497 497
 
498 498
 			// Traditional WordPress plugin locale filter.
499
-			$locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale();
500
-			$locale = apply_filters( 'plugin_locale', $locale, 'give' );
499
+			$locale = is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale();
500
+			$locale = apply_filters('plugin_locale', $locale, 'give');
501 501
 
502
-			unload_textdomain( 'give' );
503
-			load_textdomain( 'give', WP_LANG_DIR . '/give/give-' . $locale . '.mo' );
504
-			load_plugin_textdomain( 'give', false, $give_lang_dir );
502
+			unload_textdomain('give');
503
+			load_textdomain('give', WP_LANG_DIR.'/give/give-'.$locale.'.mo');
504
+			load_plugin_textdomain('give', false, $give_lang_dir);
505 505
 
506 506
 		}
507 507
 
Please login to merge, or discard this patch.
includes/install.php 1 patch
Spacing   +62 added lines, -62 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly.
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -26,15 +26,15 @@  discard block
 block discarded – undo
26 26
  * @global     $wpdb
27 27
  * @return void
28 28
  */
29
-function give_install( $network_wide = false ) {
29
+function give_install($network_wide = false) {
30 30
 
31 31
 	global $wpdb;
32 32
 
33
-	if ( is_multisite() && $network_wide ) {
33
+	if (is_multisite() && $network_wide) {
34 34
 
35
-		foreach ( $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs LIMIT 100" ) as $blog_id ) {
35
+		foreach ($wpdb->get_col("SELECT blog_id FROM $wpdb->blogs LIMIT 100") as $blog_id) {
36 36
 
37
-			switch_to_blog( $blog_id );
37
+			switch_to_blog($blog_id);
38 38
 			give_run_install();
39 39
 			restore_current_blog();
40 40
 
@@ -62,34 +62,34 @@  discard block
 block discarded – undo
62 62
 	give_setup_post_types();
63 63
 
64 64
 	// Clear the permalinks.
65
-	flush_rewrite_rules( false );
65
+	flush_rewrite_rules(false);
66 66
 
67 67
 	// Add Upgraded From Option.
68
-	$current_version = get_option( 'give_version' );
69
-	if ( $current_version ) {
70
-		update_option( 'give_version_upgraded_from', $current_version );
68
+	$current_version = get_option('give_version');
69
+	if ($current_version) {
70
+		update_option('give_version_upgraded_from', $current_version);
71 71
 	}
72 72
 
73 73
 	// Setup some default options.
74 74
 	$options = array();
75 75
 
76 76
 	//Fresh Install? Setup Test Mode, Base Country (US), Test Gateway, Currency.
77
-	if ( empty( $current_version ) ) {
78
-		$options = array_merge( $options, give_get_default_settings() );
77
+	if (empty($current_version)) {
78
+		$options = array_merge($options, give_get_default_settings());
79 79
 	}
80 80
 
81 81
 	// Populate the default values.
82
-	update_option( 'give_settings', array_merge( $give_options, $options ) );
82
+	update_option('give_settings', array_merge($give_options, $options));
83 83
 
84 84
 	/**
85 85
 	 * Run plugin upgrades.
86 86
 	 *
87 87
 	 * @since 1.8
88 88
 	 */
89
-	do_action( 'give_upgrades' );
89
+	do_action('give_upgrades');
90 90
 
91
-	if ( GIVE_VERSION !== get_option( 'give_version' ) ) {
92
-		update_option( 'give_version', GIVE_VERSION );
91
+	if (GIVE_VERSION !== get_option('give_version')) {
92
+		update_option('give_version', GIVE_VERSION);
93 93
 	}
94 94
 
95 95
 	// Create Give roles.
@@ -98,18 +98,18 @@  discard block
 block discarded – undo
98 98
 	$roles->add_caps();
99 99
 
100 100
 	$api = new Give_API();
101
-	update_option( 'give_default_api_version', 'v' . $api->get_version() );
101
+	update_option('give_default_api_version', 'v'.$api->get_version());
102 102
 
103 103
 	// Check for PHP Session support, and enable if available.
104 104
 	$give_sessions = new Give_Session();
105 105
 	$give_sessions->use_php_sessions();
106 106
 
107 107
 	// Add a temporary option to note that Give pages have been created.
108
-	Give_Cache::set( '_give_installed', $options, 30, true );
108
+	Give_Cache::set('_give_installed', $options, 30, true);
109 109
 
110
-	if ( ! $current_version ) {
110
+	if ( ! $current_version) {
111 111
 
112
-		require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php';
112
+		require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrade-functions.php';
113 113
 
114 114
 		// When new upgrade routines are added, mark them as complete on fresh install.
115 115
 		$upgrade_routines = array(
@@ -121,18 +121,18 @@  discard block
 block discarded – undo
121 121
 			'v189_upgrades_levels_post_meta'
122 122
 		);
123 123
 
124
-		foreach ( $upgrade_routines as $upgrade ) {
125
-			give_set_upgrade_complete( $upgrade );
124
+		foreach ($upgrade_routines as $upgrade) {
125
+			give_set_upgrade_complete($upgrade);
126 126
 		}
127 127
 	}
128 128
 
129 129
 	// Bail if activating from network, or bulk.
130
-	if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
130
+	if (is_network_admin() || isset($_GET['activate-multi'])) {
131 131
 		return;
132 132
 	}
133 133
 
134 134
 	// Add the transient to redirect.
135
-	Give_Cache::set( '_give_activation_redirect', true, 30, true );
135
+	Give_Cache::set('_give_activation_redirect', true, 30, true);
136 136
 
137 137
 	// Set 'Donation Form' meta box enabled by default.
138 138
 	give_nav_donation_metabox_enabled();
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
  * @param  int $site_id The Site ID.
153 153
  * @param  array $meta Blog Meta.
154 154
  */
155
-function give_on_create_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) {
155
+function give_on_create_blog($blog_id, $user_id, $domain, $path, $site_id, $meta) {
156 156
 
157
-	if ( is_plugin_active_for_network( GIVE_PLUGIN_BASENAME ) ) {
157
+	if (is_plugin_active_for_network(GIVE_PLUGIN_BASENAME)) {
158 158
 
159
-		switch_to_blog( $blog_id );
159
+		switch_to_blog($blog_id);
160 160
 		give_install();
161 161
 		restore_current_blog();
162 162
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 
165 165
 }
166 166
 
167
-add_action( 'wpmu_new_blog', 'give_on_create_blog', 10, 6 );
167
+add_action('wpmu_new_blog', 'give_on_create_blog', 10, 6);
168 168
 
169 169
 
170 170
 /**
@@ -177,13 +177,13 @@  discard block
 block discarded – undo
177 177
  *
178 178
  * @return array          The tables to drop.
179 179
  */
180
-function give_wpmu_drop_tables( $tables, $blog_id ) {
180
+function give_wpmu_drop_tables($tables, $blog_id) {
181 181
 
182
-	switch_to_blog( $blog_id );
182
+	switch_to_blog($blog_id);
183 183
 	$donors_db     = new Give_DB_Donors();
184 184
 	$donor_meta_db = new Give_DB_Donor_Meta();
185 185
 
186
-	if ( $donors_db->installed() ) {
186
+	if ($donors_db->installed()) {
187 187
 		$tables[] = $donors_db->table_name;
188 188
 		$tables[] = $donor_meta_db->table_name;
189 189
 	}
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 
194 194
 }
195 195
 
196
-add_filter( 'wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2 );
196
+add_filter('wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2);
197 197
 
198 198
 /**
199 199
  * Post-installation
@@ -205,16 +205,16 @@  discard block
 block discarded – undo
205 205
  */
206 206
 function give_after_install() {
207 207
 
208
-	if ( ! is_admin() ) {
208
+	if ( ! is_admin()) {
209 209
 		return;
210 210
 	}
211 211
 
212
-	$give_options     = Give_Cache::get( '_give_installed', true );
213
-	$give_table_check = get_option( '_give_table_check', false );
212
+	$give_options     = Give_Cache::get('_give_installed', true);
213
+	$give_table_check = get_option('_give_table_check', false);
214 214
 
215
-	if ( false === $give_table_check || current_time( 'timestamp' ) > $give_table_check ) {
215
+	if (false === $give_table_check || current_time('timestamp') > $give_table_check) {
216 216
 
217
-		if ( ! @Give()->donor_meta->installed() ) {
217
+		if ( ! @Give()->donor_meta->installed()) {
218 218
 
219 219
 			// Create the donor meta database.
220 220
 			// (this ensures it creates it on multisite instances where it is network activated).
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 
223 223
 		}
224 224
 
225
-		if ( ! @Give()->donors->installed() ) {
225
+		if ( ! @Give()->donors->installed()) {
226 226
 			// Create the donor database.
227 227
 			// (this ensures it creates it on multisite instances where it is network activated).
228 228
 			@Give()->donors->create_table();
@@ -234,22 +234,22 @@  discard block
 block discarded – undo
234 234
 			 *
235 235
 			 * @param array $give_options Give plugin options.
236 236
 			 */
237
-			do_action( 'give_after_install', $give_options );
237
+			do_action('give_after_install', $give_options);
238 238
 		}
239 239
 
240
-		update_option( '_give_table_check', ( current_time( 'timestamp' ) + WEEK_IN_SECONDS ) );
240
+		update_option('_give_table_check', (current_time('timestamp') + WEEK_IN_SECONDS));
241 241
 
242 242
 	}
243 243
 
244 244
 	// Delete the transient
245
-	if ( false !== $give_options ) {
246
-		Give_Cache::delete( Give_Cache::get_key( '_give_installed' ) );
245
+	if (false !== $give_options) {
246
+		Give_Cache::delete(Give_Cache::get_key('_give_installed'));
247 247
 	}
248 248
 
249 249
 
250 250
 }
251 251
 
252
-add_action( 'admin_init', 'give_after_install' );
252
+add_action('admin_init', 'give_after_install');
253 253
 
254 254
 
255 255
 /**
@@ -264,11 +264,11 @@  discard block
 block discarded – undo
264 264
 
265 265
 	global $wp_roles;
266 266
 
267
-	if ( ! is_object( $wp_roles ) ) {
267
+	if ( ! is_object($wp_roles)) {
268 268
 		return;
269 269
 	}
270 270
 
271
-	if ( ! array_key_exists( 'give_manager', $wp_roles->roles ) ) {
271
+	if ( ! array_key_exists('give_manager', $wp_roles->roles)) {
272 272
 
273 273
 		// Create Give plugin roles
274 274
 		$roles = new Give_Roles();
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 
280 280
 }
281 281
 
282
-add_action( 'admin_init', 'give_install_roles_on_network' );
282
+add_action('admin_init', 'give_install_roles_on_network');
283 283
 
284 284
 /**
285 285
  * Default core setting values.
@@ -315,14 +315,14 @@  discard block
 block discarded – undo
315 315
 		'uninstall_on_delete'                         => 'disabled',
316 316
 		'the_content_filter'                          => 'enabled',
317 317
 		'scripts_footer'                              => 'disabled',
318
-		'agree_to_terms_label'                        => __( 'Agree to Terms?', 'give' ),
318
+		'agree_to_terms_label'                        => __('Agree to Terms?', 'give'),
319 319
 		'agreement_text'                              => give_get_default_agreement_text(),
320 320
 
321 321
 		// Paypal IPN verification.
322 322
 		'paypal_verification'                         => 'enabled',
323 323
 
324 324
 		// Default is manual gateway.
325
-		'gateways'                                    => array( 'manual' => 1, 'offline' => 1 ),
325
+		'gateways'                                    => array('manual' => 1, 'offline' => 1),
326 326
 		'default_gateway'                             => 'manual',
327 327
 
328 328
 		// Offline gateway setup.
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
  */
348 348
 function give_get_default_agreement_text() {
349 349
 
350
-	$org_name = get_bloginfo( 'name' );
350
+	$org_name = get_bloginfo('name');
351 351
 
352 352
 	$agreement = sprintf(
353 353
 		'<p>Acceptance of any contribution, gift or grant is at the discretion of the %1$s. The  %1$s will not accept any gift unless it can be used or expended consistently with the purpose and mission of the  %1$s.</p>
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
 		$org_name
362 362
 	);
363 363
 
364
-	return apply_filters( 'give_get_default_agreement_text', $agreement, $org_name );
364
+	return apply_filters('give_get_default_agreement_text', $agreement, $org_name);
365 365
 }
366 366
 
367 367
 
@@ -370,22 +370,22 @@  discard block
 block discarded – undo
370 370
  *
371 371
  * @since 1.8.11
372 372
  */
373
-function give_create_pages(){
373
+function give_create_pages() {
374 374
 
375 375
 	// Bailout if pages already created.
376
-	if( get_option( 'give_install_pages_created') ) {
376
+	if (get_option('give_install_pages_created')) {
377 377
 		return false;
378 378
 	}
379 379
 
380 380
 	$options = array();
381 381
 
382 382
 	// Checks if the Success Page option exists AND that the page exists.
383
-	if ( ! get_post( give_get_option( 'success_page' ) ) ) {
383
+	if ( ! get_post(give_get_option('success_page'))) {
384 384
 
385 385
 		// Donation Confirmation (Success) Page
386 386
 		$success = wp_insert_post(
387 387
 			array(
388
-				'post_title'     => esc_html__( 'Donation Confirmation', 'give' ),
388
+				'post_title'     => esc_html__('Donation Confirmation', 'give'),
389 389
 				'post_content'   => '[give_receipt]',
390 390
 				'post_status'    => 'publish',
391 391
 				'post_author'    => 1,
@@ -399,13 +399,13 @@  discard block
 block discarded – undo
399 399
 	}
400 400
 
401 401
 	// Checks if the Failure Page option exists AND that the page exists.
402
-	if ( ! get_post( give_get_option( 'failure_page' ) ) ) {
402
+	if ( ! get_post(give_get_option('failure_page'))) {
403 403
 
404 404
 		// Failed Donation Page
405 405
 		$failed = wp_insert_post(
406 406
 			array(
407
-				'post_title'     => esc_html__( 'Donation Failed', 'give' ),
408
-				'post_content'   => esc_html__( 'We\'re sorry, your donation failed to process. Please try again or contact site support.', 'give' ),
407
+				'post_title'     => esc_html__('Donation Failed', 'give'),
408
+				'post_content'   => esc_html__('We\'re sorry, your donation failed to process. Please try again or contact site support.', 'give'),
409 409
 				'post_status'    => 'publish',
410 410
 				'post_author'    => 1,
411 411
 				'post_type'      => 'page',
@@ -417,11 +417,11 @@  discard block
 block discarded – undo
417 417
 	}
418 418
 
419 419
 	// Checks if the History Page option exists AND that the page exists.
420
-	if ( ! get_post( give_get_option( 'history_page' ) ) ) {
420
+	if ( ! get_post(give_get_option('history_page'))) {
421 421
 		// Donation History Page
422 422
 		$history = wp_insert_post(
423 423
 			array(
424
-				'post_title'     => esc_html__( 'Donation History', 'give' ),
424
+				'post_title'     => esc_html__('Donation History', 'give'),
425 425
 				'post_content'   => '[donation_history]',
426 426
 				'post_status'    => 'publish',
427 427
 				'post_author'    => 1,
@@ -433,10 +433,10 @@  discard block
 block discarded – undo
433 433
 		$options['history_page'] = $history;
434 434
 	}
435 435
 
436
-	if( ! empty( $options ) ) {
437
-		update_option( 'give_settings', array_merge( give_get_settings(), $options ) );
436
+	if ( ! empty($options)) {
437
+		update_option('give_settings', array_merge(give_get_settings(), $options));
438 438
 	}
439 439
 
440
-	add_option( 'give_install_pages_created', 1, '', 'no' );
440
+	add_option('give_install_pages_created', 1, '', 'no');
441 441
 }
442
-add_action( 'admin_init', 'give_create_pages', -1 );
442
+add_action('admin_init', 'give_create_pages', -1);
Please login to merge, or discard this patch.
includes/error-tracking.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly.
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
  * @return mixed array if errors are present, false if none found
26 26
  */
27 27
 function give_get_errors() {
28
-	return Give()->session->get( 'give_errors' );
28
+	return Give()->session->get('give_errors');
29 29
 }
30 30
 
31 31
 /**
@@ -42,23 +42,23 @@  discard block
 block discarded – undo
42 42
  *
43 43
  * @return void
44 44
  */
45
-function give_set_error( $error_id, $error_message, $notice_args = array() ) {
45
+function give_set_error($error_id, $error_message, $notice_args = array()) {
46 46
 	$errors = give_get_errors();
47
-	if ( ! $errors ) {
47
+	if ( ! $errors) {
48 48
 		$errors = array();
49 49
 	}
50 50
 
51
-	if( is_array( $notice_args ) && ! empty( $notice_args ) ) {
52
-		$errors[ $error_id ] = array(
51
+	if (is_array($notice_args) && ! empty($notice_args)) {
52
+		$errors[$error_id] = array(
53 53
 			'message'     => $error_message,
54 54
 			'notice_args' => $notice_args,
55 55
 		);
56 56
 	} else {
57 57
 		// Backward compatibility v<1.8.11.
58
-		$errors[ $error_id ] = $error_message;
58
+		$errors[$error_id] = $error_message;
59 59
 	}
60 60
 
61
-	Give()->session->set( 'give_errors', $errors );
61
+	Give()->session->set('give_errors', $errors);
62 62
 }
63 63
 
64 64
 /**
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
  * @return void
70 70
  */
71 71
 function give_clear_errors() {
72
-	Give()->session->set( 'give_errors', null );
72
+	Give()->session->set('give_errors', null);
73 73
 }
74 74
 
75 75
 /**
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
  *
83 83
  * @return void
84 84
  */
85
-function give_unset_error( $error_id ) {
85
+function give_unset_error($error_id) {
86 86
 	$errors = give_get_errors();
87
-	if ( $errors ) {
88
-		unset( $errors[ $error_id ] );
89
-		Give()->session->set( 'give_errors', $errors );
87
+	if ($errors) {
88
+		unset($errors[$error_id]);
89
+		Give()->session->set('give_errors', $errors);
90 90
 	}
91 91
 }
92 92
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
  * @return string
98 98
  */
99 99
 function _give_die_handler() {
100
-	if ( defined( 'GIVE_UNIT_TESTS' ) ) {
100
+	if (defined('GIVE_UNIT_TESTS')) {
101 101
 		return '_give_die_handler';
102 102
 	} else {
103 103
 		die();
@@ -117,8 +117,8 @@  discard block
 block discarded – undo
117 117
  *
118 118
  * @return void
119 119
  */
120
-function give_die( $message = '', $title = '', $status = 400 ) {
121
-	add_filter( 'wp_die_ajax_handler', '_give_die_handler', 10, 3 );
122
-	add_filter( 'wp_die_handler', '_give_die_handler', 10, 3 );
123
-	wp_die( $message, $title, array( 'response' => $status ) );
120
+function give_die($message = '', $title = '', $status = 400) {
121
+	add_filter('wp_die_ajax_handler', '_give_die_handler', 10, 3);
122
+	add_filter('wp_die_handler', '_give_die_handler', 10, 3);
123
+	wp_die($message, $title, array('response' => $status));
124 124
 }
Please login to merge, or discard this patch.
includes/class-notices.php 1 patch
Spacing   +82 added lines, -82 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
 
@@ -53,12 +53,12 @@  discard block
 block discarded – undo
53 53
 	 * @since 1.0
54 54
 	 */
55 55
 	public function __construct() {
56
-		add_action( 'admin_notices', array( $this, 'render_admin_notices' ), 999 );
57
-		add_action( 'give_dismiss_notices', array( $this, 'dismiss_notices' ) );
56
+		add_action('admin_notices', array($this, 'render_admin_notices'), 999);
57
+		add_action('give_dismiss_notices', array($this, 'dismiss_notices'));
58 58
 
59
-		add_action( 'give_frontend_notices', array( $this, 'render_frontend_notices' ), 999 );
60
-		add_action( 'give_donation_form_before_personal_info', array( $this, 'render_frontend_notices' ) );
61
-		add_action( 'give_ajax_donation_errors', array( $this, 'render_frontend_notices' ) );
59
+		add_action('give_frontend_notices', array($this, 'render_frontend_notices'), 999);
60
+		add_action('give_donation_form_before_personal_info', array($this, 'render_frontend_notices'));
61
+		add_action('give_ajax_donation_errors', array($this, 'render_frontend_notices'));
62 62
 	}
63 63
 
64 64
 	/**
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
 	 *
72 72
 	 * @return bool
73 73
 	 */
74
-	public function register_notice( $notice_args ) {
74
+	public function register_notice($notice_args) {
75 75
 		// Bailout.
76
-		if ( empty( $notice_args['id'] ) || array_key_exists( $notice_args['id'], self::$notices ) ) {
76
+		if (empty($notice_args['id']) || array_key_exists($notice_args['id'], self::$notices)) {
77 77
 			return false;
78 78
 		}
79 79
 
@@ -100,36 +100,36 @@  discard block
 block discarded – undo
100 100
 		);
101 101
 
102 102
 		// Set extra dismiss links if any.
103
-		if ( false !== strpos( $notice_args['description'], 'data-dismiss-interval' ) ) {
103
+		if (false !== strpos($notice_args['description'], 'data-dismiss-interval')) {
104 104
 
105
-			preg_match_all( "/data-([^\"]*)=\"([^\"]*)\"/", $notice_args['description'], $extra_notice_dismiss_link );
105
+			preg_match_all("/data-([^\"]*)=\"([^\"]*)\"/", $notice_args['description'], $extra_notice_dismiss_link);
106 106
 
107
-			if ( ! empty( $extra_notice_dismiss_link ) ) {
108
-				$extra_notice_dismiss_links = array_chunk( current( $extra_notice_dismiss_link ), 3 );
109
-				foreach ( $extra_notice_dismiss_links as $extra_notice_dismiss_link ) {
107
+			if ( ! empty($extra_notice_dismiss_link)) {
108
+				$extra_notice_dismiss_links = array_chunk(current($extra_notice_dismiss_link), 3);
109
+				foreach ($extra_notice_dismiss_links as $extra_notice_dismiss_link) {
110 110
 					// Create array og key ==> value by parsing query string created after renaming data attributes.
111
-					$data_attribute_query_str = str_replace( array( 'data-', '-', '"' ), array(
111
+					$data_attribute_query_str = str_replace(array('data-', '-', '"'), array(
112 112
 						'',
113 113
 						'_',
114 114
 						'',
115
-					), implode( '&', $extra_notice_dismiss_link ) );
115
+					), implode('&', $extra_notice_dismiss_link));
116 116
 
117
-					$notice_args['extra_links'][] = wp_parse_args( $data_attribute_query_str );
117
+					$notice_args['extra_links'][] = wp_parse_args($data_attribute_query_str);
118 118
 				}
119 119
 			}
120 120
 		}
121 121
 
122 122
 
123
-		self::$notices[ $notice_args['id'] ] = $notice_args;
123
+		self::$notices[$notice_args['id']] = $notice_args;
124 124
 
125 125
 		// Auto set show param if not already set.
126
-		if ( ! isset( self::$notices[ $notice_args['id'] ]['show'] ) ) {
127
-			self::$notices[ $notice_args['id'] ]['show'] = $this->is_notice_dismissed( $notice_args ) ? false : true;
126
+		if ( ! isset(self::$notices[$notice_args['id']]['show'])) {
127
+			self::$notices[$notice_args['id']]['show'] = $this->is_notice_dismissed($notice_args) ? false : true;
128 128
 		}
129 129
 
130 130
 		// Auto set time interval for shortly.
131
-		if ( 'shortly' === self::$notices[ $notice_args['id'] ]['dismiss_interval'] ) {
132
-			self::$notices[ $notice_args['id'] ]['dismiss_interval_time'] = DAY_IN_SECONDS;
131
+		if ('shortly' === self::$notices[$notice_args['id']]['dismiss_interval']) {
132
+			self::$notices[$notice_args['id']]['dismiss_interval_time'] = DAY_IN_SECONDS;
133 133
 		}
134 134
 
135 135
 		return true;
@@ -143,44 +143,44 @@  discard block
 block discarded – undo
143 143
 	 */
144 144
 	public function render_admin_notices() {
145 145
 		// Bailout.
146
-		if ( empty( self::$notices ) ) {
146
+		if (empty(self::$notices)) {
147 147
 			return;
148 148
 		}
149 149
 
150 150
 		$output = '';
151 151
 
152
-		foreach ( self::$notices as $notice_id => $notice ) {
152
+		foreach (self::$notices as $notice_id => $notice) {
153 153
 			// Check flag set to true to show notice.
154
-			if ( ! $notice['show'] ) {
154
+			if ( ! $notice['show']) {
155 155
 				continue;
156 156
 			}
157 157
 
158 158
 			// Check if notice dismissible or not.
159
-			if ( ! self::$has_auto_dismissible_notice ) {
159
+			if ( ! self::$has_auto_dismissible_notice) {
160 160
 				self::$has_auto_dismissible_notice = $notice['auto_dismissible'];
161 161
 			}
162 162
 
163 163
 			// Check if notice dismissible or not.
164
-			if ( ! self::$has_dismiss_interval_notice ) {
164
+			if ( ! self::$has_dismiss_interval_notice) {
165 165
 				self::$has_dismiss_interval_notice = $notice['dismiss_interval'];
166 166
 			}
167 167
 
168
-			$css_id = ( false === strpos( $notice['id'], 'give' ) ? "give-{$notice['id']}" : $notice['id'] );
168
+			$css_id = (false === strpos($notice['id'], 'give') ? "give-{$notice['id']}" : $notice['id']);
169 169
 
170 170
 			$css_class = "give-notice notice is-dismissible {$notice['type']} notice-{$notice['type']}";
171
-			$output    .= sprintf(
172
-				'<div id="%1$s" class="%2$s" data-auto-dismissible="%3$s" data-dismissible-type="%4$s" data-dismiss-interval="%5$s" data-notice-id="%6$s" data-security="%7$s" data-dismiss-interval-time="%8$s">' . " \n",
171
+			$output .= sprintf(
172
+				'<div id="%1$s" class="%2$s" data-auto-dismissible="%3$s" data-dismissible-type="%4$s" data-dismiss-interval="%5$s" data-notice-id="%6$s" data-security="%7$s" data-dismiss-interval-time="%8$s">'." \n",
173 173
 				$css_id,
174 174
 				$css_class,
175 175
 				$notice['auto_dismissible'],
176 176
 				$notice['dismissible_type'],
177 177
 				$notice['dismiss_interval'],
178 178
 				$notice['id'],
179
-				empty( $notice['dismissible_type'] ) ? '' : wp_create_nonce( "give_edit_{$notice_id}_notice" ),
179
+				empty($notice['dismissible_type']) ? '' : wp_create_nonce("give_edit_{$notice_id}_notice"),
180 180
 				$notice['dismiss_interval_time']
181 181
 			);
182 182
 
183
-			$output .= ( 0 === strpos( $notice['description'], '<div' ) || 0 === strpos( $notice['description'], '<p' ) ? $notice['description'] : "<p>{$notice['description']}</p>" );
183
+			$output .= (0 === strpos($notice['description'], '<div') || 0 === strpos($notice['description'], '<p') ? $notice['description'] : "<p>{$notice['description']}</p>");
184 184
 			$output .= "</div> \n";
185 185
 		}
186 186
 
@@ -198,18 +198,18 @@  discard block
 block discarded – undo
198 198
 	 *
199 199
 	 * @param int $form_id
200 200
 	 */
201
-	public function render_frontend_notices( $form_id = 0 ) {
201
+	public function render_frontend_notices($form_id = 0) {
202 202
 		$errors = give_get_errors();
203 203
 
204
-		$request_form_id = isset( $_REQUEST['form-id'] ) ? intval( $_REQUEST['form-id'] ) : 0;
204
+		$request_form_id = isset($_REQUEST['form-id']) ? intval($_REQUEST['form-id']) : 0;
205 205
 
206 206
 		// Sanity checks first: Ensure that gateway returned errors display on the appropriate form.
207
-		if ( ! isset( $_POST['give_ajax'] ) && $request_form_id !== $form_id ) {
207
+		if ( ! isset($_POST['give_ajax']) && $request_form_id !== $form_id) {
208 208
 			return;
209 209
 		}
210 210
 
211
-		if ( $errors ) {
212
-			self::print_frontend_errors( $errors );
211
+		if ($errors) {
212
+			self::print_frontend_errors($errors);
213 213
 
214 214
 			give_clear_errors();
215 215
 		}
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 	 * @access private
223 223
 	 */
224 224
 	private function print_js() {
225
-		if ( self::$has_auto_dismissible_notice ) :
225
+		if (self::$has_auto_dismissible_notice) :
226 226
 			?>
227 227
 			<script>
228 228
 				jQuery(document).ready(function () {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 			<?php
239 239
 		endif;
240 240
 
241
-		if ( self::$has_dismiss_interval_notice ) :
241
+		if (self::$has_dismiss_interval_notice) :
242 242
 			?>
243 243
 			<script>
244 244
 				jQuery(document).ready(function () {
@@ -304,29 +304,29 @@  discard block
 block discarded – undo
304 304
 	 * @access public
305 305
 	 */
306 306
 	public function dismiss_notices() {
307
-		$_post     = give_clean( $_POST );
308
-		$notice_id = esc_attr( $_post['notice_id'] );
307
+		$_post     = give_clean($_POST);
308
+		$notice_id = esc_attr($_post['notice_id']);
309 309
 
310 310
 		// Bailout.
311 311
 		if (
312
-			empty( $notice_id ) ||
313
-			empty( $_post['dismissible_type'] ) ||
314
-			empty( $_post['dismiss_interval'] ) ||
315
-			! check_ajax_referer( "give_edit_{$notice_id}_notice", '_wpnonce' )
312
+			empty($notice_id) ||
313
+			empty($_post['dismissible_type']) ||
314
+			empty($_post['dismiss_interval']) ||
315
+			! check_ajax_referer("give_edit_{$notice_id}_notice", '_wpnonce')
316 316
 		) {
317 317
 			wp_send_json_error();
318 318
 		}
319 319
 
320
-		$notice_key = Give()->notices->get_notice_key( $notice_id, $_post['dismiss_interval'] );
321
-		if ( 'user' === $_post['dismissible_type'] ) {
320
+		$notice_key = Give()->notices->get_notice_key($notice_id, $_post['dismiss_interval']);
321
+		if ('user' === $_post['dismissible_type']) {
322 322
 			$current_user = wp_get_current_user();
323
-			$notice_key   = Give()->notices->get_notice_key( $notice_id, $_post['dismiss_interval'], $current_user->ID );
323
+			$notice_key   = Give()->notices->get_notice_key($notice_id, $_post['dismiss_interval'], $current_user->ID);
324 324
 		}
325 325
 
326
-		$notice_dismiss_time = ! empty( $_post['dismiss_interval_time'] ) ? $_post['dismiss_interval_time'] : null;
326
+		$notice_dismiss_time = ! empty($_post['dismiss_interval_time']) ? $_post['dismiss_interval_time'] : null;
327 327
 
328 328
 		// Save option to hide notice.
329
-		Give_Cache::set( $notice_key, true, $notice_dismiss_time, true );
329
+		Give_Cache::set($notice_key, true, $notice_dismiss_time, true);
330 330
 
331 331
 		wp_send_json_success();
332 332
 	}
@@ -344,18 +344,18 @@  discard block
 block discarded – undo
344 344
 	 *
345 345
 	 * @return string
346 346
 	 */
347
-	public function get_notice_key( $notice_id, $dismiss_interval = null, $user_id = 0 ) {
347
+	public function get_notice_key($notice_id, $dismiss_interval = null, $user_id = 0) {
348 348
 		$notice_key = "_give_notice_{$notice_id}";
349 349
 
350
-		if ( ! empty( $dismiss_interval ) ) {
350
+		if ( ! empty($dismiss_interval)) {
351 351
 			$notice_key .= "_{$dismiss_interval}";
352 352
 		}
353 353
 
354
-		if ( $user_id ) {
354
+		if ($user_id) {
355 355
 			$notice_key .= "_{$user_id}";
356 356
 		}
357 357
 
358
-		$notice_key = sanitize_key( $notice_key );
358
+		$notice_key = sanitize_key($notice_key);
359 359
 
360 360
 		return $notice_key;
361 361
 	}
@@ -368,11 +368,11 @@  discard block
 block discarded – undo
368 368
 	 *
369 369
 	 * @return string
370 370
 	 */
371
-	public function get_dismiss_link( $notice_args ) {
371
+	public function get_dismiss_link($notice_args) {
372 372
 		$notice_args = wp_parse_args(
373 373
 			$notice_args,
374 374
 			array(
375
-				'title'                 => __( 'Click here', 'give' ),
375
+				'title'                 => __('Click here', 'give'),
376 376
 				'dismissible_type'      => '',
377 377
 				'dismiss_interval'      => '',
378 378
 				'dismiss_interval_time' => null,
@@ -399,31 +399,31 @@  discard block
 block discarded – undo
399 399
 	 *
400 400
 	 * @return bool|null
401 401
 	 */
402
-	public function is_notice_dismissed( $notice ) {
403
-		$notice_key          = $this->get_notice_key( $notice['id'], $notice['dismiss_interval'] );
402
+	public function is_notice_dismissed($notice) {
403
+		$notice_key          = $this->get_notice_key($notice['id'], $notice['dismiss_interval']);
404 404
 		$is_notice_dismissed = false;
405 405
 
406
-		if ( 'user' === $notice['dismissible_type'] ) {
406
+		if ('user' === $notice['dismissible_type']) {
407 407
 			$current_user = wp_get_current_user();
408
-			$notice_key   = Give()->notices->get_notice_key( $notice['id'], $notice['dismiss_interval'], $current_user->ID );
408
+			$notice_key   = Give()->notices->get_notice_key($notice['id'], $notice['dismiss_interval'], $current_user->ID);
409 409
 		}
410 410
 
411
-		$notice_data = Give_Cache::get( $notice_key, true );
411
+		$notice_data = Give_Cache::get($notice_key, true);
412 412
 
413 413
 		// Find notice dismiss link status if notice has extra dismissible links.
414
-		if ( ( empty( $notice_data ) || is_wp_error( $notice_data ) ) && ! empty( $notice['extra_links'] ) ) {
414
+		if ((empty($notice_data) || is_wp_error($notice_data)) && ! empty($notice['extra_links'])) {
415 415
 
416
-			foreach ( $notice['extra_links'] as $extra_link ) {
417
-				$new_notice_data = wp_parse_args( $extra_link, $notice );
418
-				unset( $new_notice_data['extra_links'] );
416
+			foreach ($notice['extra_links'] as $extra_link) {
417
+				$new_notice_data = wp_parse_args($extra_link, $notice);
418
+				unset($new_notice_data['extra_links']);
419 419
 
420
-				if ( $is_notice_dismissed = $this->is_notice_dismissed( $new_notice_data ) ) {
420
+				if ($is_notice_dismissed = $this->is_notice_dismissed($new_notice_data)) {
421 421
 					return $is_notice_dismissed;
422 422
 				}
423 423
 			}
424 424
 		}
425 425
 
426
-		$is_notice_dismissed = ! empty( $notice_data ) && ! is_wp_error( $notice_data );
426
+		$is_notice_dismissed = ! empty($notice_data) && ! is_wp_error($notice_data);
427 427
 
428 428
 		return $is_notice_dismissed;
429 429
 	}
@@ -437,8 +437,8 @@  discard block
 block discarded – undo
437 437
 	 *
438 438
 	 * @param $errors
439 439
 	 */
440
-	static function print_frontend_errors( $errors ) {
441
-		if ( ! $errors ) {
440
+	static function print_frontend_errors($errors) {
441
+		if ( ! $errors) {
442 442
 			return;
443 443
 		}
444 444
 
@@ -448,30 +448,30 @@  discard block
 block discarded – undo
448 448
 		);
449 449
 
450 450
 		// Note: we will remove give_errors class in future.
451
-		$classes = apply_filters( 'give_error_class', array( 'give_notices', 'give_errors' ) );
451
+		$classes = apply_filters('give_error_class', array('give_notices', 'give_errors'));
452 452
 
453
-		echo sprintf( '<div class="%s">', implode( ' ', $classes ) );
453
+		echo sprintf('<div class="%s">', implode(' ', $classes));
454 454
 
455 455
 			// Loop error codes and display errors.
456
-			foreach ( $errors as $error_id => $error ) {
456
+			foreach ($errors as $error_id => $error) {
457 457
 				// Backward compatibility v<1.8.11
458
-				if ( is_string( $error ) ) {
458
+				if (is_string($error)) {
459 459
 					$error = array(
460 460
 						'message'     => $error,
461 461
 						'notice_args' => array(),
462 462
 					);
463 463
 				}
464 464
 
465
-				$notice_args = wp_parse_args( $error['notice_args'], $default_notice_args );
465
+				$notice_args = wp_parse_args($error['notice_args'], $default_notice_args);
466 466
 
467 467
 				echo sprintf(
468 468
 					'<div class="give_error give_notice" id="give_error_%1$s" data-auto-dismissible="%2$d" data-dismiss-interval="%3$d">
469 469
 								<p><strong>%4$s</strong>: %5$s</p>
470 470
 							</div>',
471 471
 					$error_id,
472
-					absint( $notice_args['auto_dismissible'] ),
473
-					absint( $notice_args['dismiss_interval'] ),
474
-					esc_html__( 'Error', 'give' ),
472
+					absint($notice_args['auto_dismissible']),
473
+					absint($notice_args['dismiss_interval']),
474
+					esc_html__('Error', 'give'),
475 475
 					$error['message']
476 476
 				);
477 477
 			}
@@ -493,8 +493,8 @@  discard block
 block discarded – undo
493 493
 	 *
494 494
 	 * @return  string
495 495
 	 */
496
-	static function print_frontend_notice( $message, $echo = true, $notice_type = 'warning', $notice_args = array() ) {
497
-		if ( empty( $message ) ) {
496
+	static function print_frontend_notice($message, $echo = true, $notice_type = 'warning', $notice_args = array()) {
497
+		if (empty($message)) {
498 498
 			return '';
499 499
 		}
500 500
 
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
 			'dismiss_interval' => 5000,
504 504
 		);
505 505
 
506
-		$notice_args = wp_parse_args( $notice_args, $default_notice_args );
506
+		$notice_args = wp_parse_args($notice_args, $default_notice_args);
507 507
 
508 508
 		// Note: we will remove give_errors class in future.
509 509
 		$error = sprintf(
@@ -513,12 +513,12 @@  discard block
 block discarded – undo
513 513
 						</p>
514 514
 					</div>',
515 515
 			$notice_type,
516
-			absint( $notice_args['auto_dismissible'] ),
517
-			absint( $notice_args['dismiss_interval'] ),
516
+			absint($notice_args['auto_dismissible']),
517
+			absint($notice_args['dismiss_interval']),
518 518
 			$message
519 519
 		);
520 520
 
521
-		if ( ! $echo ) {
521
+		if ( ! $echo) {
522 522
 			return $error;
523 523
 		}
524 524
 
Please login to merge, or discard this patch.