Test Failed
Push — master ( 315839...9b266f )
by Devin
05:39
created

Give   B

Complexity

Total Complexity 43

Size/Duplication

Total Lines 647
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 22

Importance

Changes 0
Metric Value
dl 0
loc 647
rs 8.913
c 0
b 0
f 0
wmc 43
lcom 2
cbo 22

11 Methods

Rating   Name   Duplication   Size   Complexity  
A instance() 0 7 2
A __construct() 0 19 4
A init_hooks() 0 4 1
A init() 0 45 1
A __clone() 0 4 1
A __wakeup() 0 4 1
B setup_constants() 0 32 7
C includes() 0 147 11
A load_textdomain() 0 15 3
A minimum_phpversion_notice() 0 19 2
B is_request() 0 14 10

How to fix   Complexity   

Complex Class

Complex classes like Give often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.

Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.

While breaking up the class, it is a good idea to analyze how other classes use Give, and based on these observations, apply Extract Interface, too.

1
<?php
2
/**
3
 * Plugin Name: Give - Donation Plugin
4
 * Plugin URI: https://givewp.com
5
 * Description: The most robust, flexible, and intuitive way to accept donations on WordPress.
6
 * Author: GiveWP
7
 * Author URI: https://givewp.com/
8
 * Version: 2.5.0
9
 * Text Domain: give
10
 * Domain Path: /languages
11
 *
12
 * Give is free software: you can redistribute it and/or modify
13
 * it under the terms of the GNU General Public License as published by
14
 * the Free Software Foundation, either version 3 of the License, or
15
 * any later version.
16
 *
17
 * Give is distributed in the hope that it will be useful,
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
 * GNU General Public License for more details.
21
 *
22
 * You should have received a copy of the GNU General Public License
23
 * along with Give. If not, see <https://www.gnu.org/licenses/>.
24
 *
25
 * A Tribute to Open Source:
26
 *
27
 * "Open source software is software that can be freely used, changed, and shared (in modified or unmodified form) by anyone. Open
28
 * source software is made by many people, and distributed under licenses that comply with the Open Source Definition."
29
 *
30
 * -- The Open Source Initiative
31
 *
32
 * Give is a tribute to the spirit and philosophy of Open Source. We at GiveWP gladly embrace the Open Source philosophy both
33
 * in how Give itself was developed, and how we hope to see others build more from our code base.
34
 *
35
 * Give would not have been possible without the tireless efforts of WordPress and the surrounding Open Source projects and their talented developers. Thank you all for your contribution to WordPress.
36
 *
37
 * - The GiveWP Team
38
 */
39
40
// Exit if accessed directly.
41
if ( ! defined( 'ABSPATH' ) ) {
42
	exit;
43
}
44
45
if ( ! class_exists( 'Give' ) ) :
46
47
	/**
48
	 * Main Give Class
49
	 *
50
	 * @since 1.0
51
	 */
52
	final class Give {
53
54
		/** Singleton *************************************************************/
55
56
		/**
57
		 * Give Instance
58
		 *
59
		 * @since  1.0
60
		 * @access private
61
		 *
62
		 * @var    Give() The one true Give
63
		 */
64
		protected static $_instance;
65
66
		/**
67
		 * Give Roles Object
68
		 *
69
		 * @since  1.0
70
		 * @access public
71
		 *
72
		 * @var    Give_Roles object
73
		 */
74
		public $roles;
75
76
		/**
77
		 * Give Settings Object
78
		 *
79
		 * @since  1.0
80
		 * @access public
81
		 *
82
		 * @var    Give_Admin_Settings object
83
		 */
84
		public $give_settings;
85
86
		/**
87
		 * Give Session Object
88
		 *
89
		 * This holds donation data for user's session.
90
		 *
91
		 * @since  1.0
92
		 * @access public
93
		 *
94
		 * @var    Give_Session object
95
		 */
96
		public $session;
97
98
		/**
99
		 * Give Session DB Object
100
		 *
101
		 * This holds donation data for user's session.
102
		 *
103
		 * @since  1.0
104
		 * @access public
105
		 *
106
		 * @var    Give_DB_Sessions object
107
		 */
108
		public $session_db;
109
110
		/**
111
		 * Give HTML Element Helper Object
112
		 *
113
		 * @since  1.0
114
		 * @access public
115
		 *
116
		 * @var    Give_HTML_Elements object
117
		 */
118
		public $html;
119
120
		/**
121
		 * Give Emails Object
122
		 *
123
		 * @since  1.0
124
		 * @access public
125
		 *
126
		 * @var    Give_Emails object
127
		 */
128
		public $emails;
129
130
		/**
131
		 * Give Email Template Tags Object
132
		 *
133
		 * @since  1.0
134
		 * @access public
135
		 *
136
		 * @var    Give_Email_Template_Tags object
137
		 */
138
		public $email_tags;
139
140
		/**
141
		 * Give Donors DB Object
142
		 *
143
		 * @since  1.0
144
		 * @access public
145
		 *
146
		 * @var    Give_DB_Donors object
147
		 */
148
		public $donors;
149
150
		/**
151
		 * Give Donor meta DB Object
152
		 *
153
		 * @since  1.6
154
		 * @access public
155
		 *
156
		 * @var    Give_DB_Donor_Meta object
157
		 */
158
		public $donor_meta;
159
160
		/**
161
		 * Give Sequential Donation DB Object
162
		 *
163
		 * @since  2.1.0
164
		 * @access public
165
		 *
166
		 * @var    Give_DB_Sequential_Ordering object
167
		 */
168
		public $sequential_donation_db;
169
170
		/**
171
		 * Give API Object
172
		 *
173
		 * @since  1.0
174
		 * @access public
175
		 *
176
		 * @var    Give_API object
177
		 */
178
		public $api;
179
180
		/**
181
		 * Give Template Loader Object
182
		 *
183
		 * @since  1.0
184
		 * @access public
185
		 *
186
		 * @var    Give_Template_Loader object
187
		 */
188
		public $template_loader;
189
190
		/**
191
		 * Give No Login Object
192
		 *
193
		 * @since  1.0
194
		 * @access public
195
		 *
196
		 * @var    Give_Email_Access object
197
		 */
198
		public $email_access;
199
200
		/**
201
		 * Give_tooltips Object
202
		 *
203
		 * @since  1.8.9
204
		 * @access public
205
		 *
206
		 * @var    Give_Tooltips object
207
		 */
208
		public $tooltips;
209
210
		/**
211
		 * Give notices Object
212
		 *
213
		 * @var    Give_Notices $notices
214
		 */
215
		public $notices;
216
217
218
		/**
219
		 * Give logging Object
220
		 *
221
		 * @var    Give_Logging $logs
222
		 */
223
		public $logs;
224
225
		/**
226
		 * Give log db Object
227
		 *
228
		 * @var    Give_DB_Logs $log_db
229
		 */
230
		public $log_db;
231
232
		/**
233
		 * Give log meta db Object
234
		 *
235
		 * @var    Give_DB_Log_Meta $logmeta_db
236
		 */
237
		public $logmeta_db;
238
239
		/**
240
		 * Give payment Object
241
		 *
242
		 * @var    Give_DB_Payment_Meta $payment_meta
243
		 */
244
		public $payment_meta;
245
246
		/**
247
		 * Give form Object
248
		 *
249
		 * @var    Give_DB_Form_Meta $form_meta
250
		 */
251
		public $form_meta;
252
253
		/**
254
		 * Give form Object
255
		 *
256
		 * @var    Give_Async_Process $async_process
257
		 */
258
		public $async_process;
259
260
		/**
261
		 * Give scripts Object.
262
		 *
263
		 * @var Give_Scripts
264
		 */
265
		public $scripts;
266
267
		/**
268
		 * Give_Seq_Donation_Number Object.
269
		 *
270
		 * @var Give_Sequential_Donation_Number
271
		 */
272
		public $seq_donation_number;
273
274
		/**
275
		 * Give_Comment Object
276
		 *
277
		 * @var Give_Comment
278
		 */
279
		public $comment;
280
281
		/**
282
		 * Give_Stripe Object.
283
		 *
284
		 * @since  2.5.0
285
		 * @access public
286
		 *
287
		 * @var Give_Stripe
288
		 */
289
		public $stripe;
290
291
		/**
292
		 * Main Give Instance
293
		 *
294
		 * Ensures that only one instance of Give exists in memory at any one
295
		 * time. Also prevents needing to define globals all over the place.
296
		 *
297
		 * @since     1.0
298
		 * @access    public
299
		 *
300
		 * @static
301
		 * @see       Give()
302
		 *
303
		 * @return    Give
304
		 */
305
		public static function instance() {
306
			if ( is_null( self::$_instance ) ) {
307
				self::$_instance = new self();
308
			}
309
310
			return self::$_instance;
311
		}
312
313
		/**
314
		 * Give Constructor.
315
		 */
316
		public function __construct() {
317
			// PHP version
318
			if ( ! defined( 'GIVE_REQUIRED_PHP_VERSION' ) ) {
319
				define( 'GIVE_REQUIRED_PHP_VERSION', '5.4.0' );
320
			}
321
322
			// Bailout: Need minimum php version to load plugin.
323
			if ( function_exists( 'phpversion' ) && version_compare( GIVE_REQUIRED_PHP_VERSION, phpversion(), '>' ) ) {
324
				add_action( 'admin_notices', array( $this, 'minimum_phpversion_notice' ) );
325
326
				return;
327
			}
328
329
			$this->setup_constants();
330
			$this->includes();
331
			$this->init_hooks();
332
333
			do_action( 'give_loaded' );
334
		}
335
336
		/**
337
		 * Hook into actions and filters.
338
		 *
339
		 * @since  1.8.9
340
		 */
341
		private function init_hooks() {
342
			register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' );
343
			add_action( 'plugins_loaded', array( $this, 'init' ), 0 );
344
		}
345
346
347
		/**
348
		 * Init Give when WordPress Initializes.
349
		 *
350
		 * @since 1.8.9
351
		 */
352
		public function init() {
353
354
			/**
355
			 * Fires before the Give core is initialized.
356
			 *
357
			 * @since 1.8.9
358
			 */
359
			do_action( 'before_give_init' );
360
361
			// Set up localization.
362
			$this->load_textdomain();
363
364
			$this->roles                  = new Give_Roles();
365
			$this->api                    = new Give_API();
366
			$this->give_settings          = new Give_Admin_Settings();
367
			$this->emails                 = new Give_Emails();
368
			$this->email_tags             = new Give_Email_Template_Tags();
369
			$this->html                   = Give_HTML_Elements::get_instance();
370
			$this->donors                 = new Give_DB_Donors();
371
			$this->donor_meta             = new Give_DB_Donor_Meta();
372
			$this->tooltips               = new Give_Tooltips();
373
			$this->notices                = new Give_Notices();
374
			$this->payment_meta           = new Give_DB_Payment_Meta();
375
			$this->log_db                 = new Give_DB_Logs();
376
			$this->logmeta_db             = new Give_DB_Log_Meta();
377
			$this->logs                   = new Give_Logging();
378
			$this->form_meta              = new Give_DB_Form_Meta();
379
			$this->sequential_donation_db = new Give_DB_Sequential_Ordering();
380
			$this->async_process          = new Give_Async_Process();
381
			$this->scripts                = new Give_Scripts();
382
			$this->seq_donation_number    = Give_Sequential_Donation_Number::get_instance();
383
			$this->comment                = Give_Comment::get_instance();
384
			$this->session_db             = new Give_DB_Sessions();
385
			$this->session                = Give_Session::get_instance();
386
387
			/**
388
			 * Fire the action after Give core loads.
389
			 *
390
			 * @param Give class instance.
391
			 *
392
			 * @since 1.8.7
393
			 */
394
			do_action( 'give_init', $this );
395
396
		}
397
398
		/**
399
		 * Throw error on object clone
400
		 *
401
		 * The whole idea of the singleton design pattern is that there is a single
402
		 * object, therefore we don't want the object to be cloned.
403
		 *
404
		 * @since  1.0
405
		 * @access protected
406
		 *
407
		 * @return void
408
		 */
409
		public function __clone() {
410
			// Cloning instances of the class is forbidden.
411
			give_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'give' ), '1.0' );
412
		}
413
414
		/**
415
		 * Disable unserializing of the class
416
		 *
417
		 * @since  1.0
418
		 * @access protected
419
		 *
420
		 * @return void
421
		 */
422
		public function __wakeup() {
423
			// Unserializing instances of the class is forbidden.
424
			give_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'give' ), '1.0' );
425
		}
426
427
		/**
428
		 * Setup plugin constants
429
		 *
430
		 * @since  1.0
431
		 * @access private
432
		 *
433
		 * @return void
434
		 */
435
		private function setup_constants() {
436
437
			// Plugin version.
438
			if ( ! defined( 'GIVE_VERSION' ) ) {
439
				define( 'GIVE_VERSION', '2.5.0' );
440
			}
441
442
			// Plugin Root File.
443
			if ( ! defined( 'GIVE_PLUGIN_FILE' ) ) {
444
				define( 'GIVE_PLUGIN_FILE', __FILE__ );
445
			}
446
447
			// Plugin Folder Path.
448
			if ( ! defined( 'GIVE_PLUGIN_DIR' ) ) {
449
				define( 'GIVE_PLUGIN_DIR', plugin_dir_path( GIVE_PLUGIN_FILE ) );
450
			}
451
452
			// Plugin Folder URL.
453
			if ( ! defined( 'GIVE_PLUGIN_URL' ) ) {
454
				define( 'GIVE_PLUGIN_URL', plugin_dir_url( GIVE_PLUGIN_FILE ) );
455
			}
456
457
			// Plugin Basename aka: "give/give.php".
458
			if ( ! defined( 'GIVE_PLUGIN_BASENAME' ) ) {
459
				define( 'GIVE_PLUGIN_BASENAME', plugin_basename( GIVE_PLUGIN_FILE ) );
460
			}
461
462
			// Make sure CAL_GREGORIAN is defined.
463
			if ( ! defined( 'CAL_GREGORIAN' ) ) {
464
				define( 'CAL_GREGORIAN', 1 );
465
			}
466
		}
467
468
		/**
469
		 * Include required files
470
		 *
471
		 * @since  1.0
472
		 * @access private
473
		 *
474
		 * @return void
475
		 */
476
		private function includes() {
477
			global $give_options;
478
479
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-cache-setting.php';
480
481
482
			/**
483
			 * Load libraries.
484
			 */
485
			if ( ! class_exists( 'WP_Async_Request' ) ) {
486
				include_once( GIVE_PLUGIN_DIR . 'includes/libraries/wp-async-request.php' );
487
			}
488
489
			if ( ! class_exists( 'WP_Background_Process' ) ) {
490
				include_once( GIVE_PLUGIN_DIR . 'includes/libraries/wp-background-process.php' );
491
			}
492
493
			require_once GIVE_PLUGIN_DIR . 'includes/setting-functions.php';
494
			require_once GIVE_PLUGIN_DIR . 'includes/country-functions.php';
495
			require_once GIVE_PLUGIN_DIR . 'includes/template-functions.php';
496
			require_once GIVE_PLUGIN_DIR . 'includes/misc-functions.php';
497
			require_once GIVE_PLUGIN_DIR . 'includes/forms/functions.php';
498
			require_once GIVE_PLUGIN_DIR . 'includes/ajax-functions.php';
499
			require_once GIVE_PLUGIN_DIR . 'includes/currency-functions.php';
500
			require_once GIVE_PLUGIN_DIR . 'includes/price-functions.php';
501
			require_once GIVE_PLUGIN_DIR . 'includes/user-functions.php';
502
			require_once GIVE_PLUGIN_DIR . 'includes/donors/frontend-donor-functions.php';
503
			require_once GIVE_PLUGIN_DIR . 'includes/payments/functions.php';
504
			require_once GIVE_PLUGIN_DIR . 'includes/gateways/functions.php';
505
506
			/**
507
			 * Load plugin files
508
			 */
509
			require_once GIVE_PLUGIN_DIR . 'includes/admin/class-admin-settings.php';
510
			$give_options = give_get_settings();
511
512
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-cron.php';
513
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-async-process.php';
514
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-cache.php';
515
			require_once GIVE_PLUGIN_DIR . 'includes/post-types.php';
516
			require_once GIVE_PLUGIN_DIR . 'includes/filters.php';
517
			require_once GIVE_PLUGIN_DIR . 'includes/api/class-give-api.php';
518
			require_once GIVE_PLUGIN_DIR . 'includes/api/class-give-api-v2.php';
519
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-tooltips.php';
520
			require_once GIVE_PLUGIN_DIR . 'includes/class-notices.php';
521
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-translation.php';
522
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-license-handler.php';
523
			require_once GIVE_PLUGIN_DIR . 'includes/admin/class-give-html-elements.php';
524
525
526
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-scripts.php';
527
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-roles.php';
528
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-donate-form.php';
529
530
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db.php';
531
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-meta.php';
532
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-comments.php';
533
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-comments-meta.php';
534
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-donors.php';
535
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-donor-meta.php';
536
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-form-meta.php';
537
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-sequential-ordering.php';
538
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-logs.php';
539
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-logs-meta.php';
540
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-sessions.php';
541
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-db-payment-meta.php';
542
543
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-donor.php';
544
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-stats.php';
545
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-session.php';
546
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-logging.php';
547
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-comment.php';
548
549
			require_once GIVE_PLUGIN_DIR . 'includes/class-give-donor-wall-widget.php';
550
			require_once GIVE_PLUGIN_DIR . 'includes/forms/widget.php';
551
			require_once GIVE_PLUGIN_DIR . 'includes/forms/class-give-forms-query.php';
552
553
554
			require_once GIVE_PLUGIN_DIR . 'includes/forms/template.php';
555
			require_once GIVE_PLUGIN_DIR . 'includes/shortcodes.php';
556
			require_once GIVE_PLUGIN_DIR . 'includes/formatting.php';
557
			require_once GIVE_PLUGIN_DIR . 'includes/error-tracking.php';
558
			require_once GIVE_PLUGIN_DIR . 'includes/login-register.php';
559
			require_once GIVE_PLUGIN_DIR . 'includes/plugin-compatibility.php';
560
			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-classes.php';
561
			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-functions.php';
562
			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-actions.php';
563
			require_once GIVE_PLUGIN_DIR . 'includes/deprecated/deprecated-filters.php';
564
565
			require_once GIVE_PLUGIN_DIR . 'includes/process-donation.php';
566
			require_once GIVE_PLUGIN_DIR . 'includes/payments/backward-compatibility.php';
567
			require_once GIVE_PLUGIN_DIR . 'includes/payments/actions.php';
568
			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-payment-stats.php';
569
			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-payments-query.php';
570
			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-give-payment.php';
571
			require_once GIVE_PLUGIN_DIR . 'includes/payments/class-give-sequential-donation-number.php';
572
573
			require_once GIVE_PLUGIN_DIR . 'includes/gateways/actions.php';
574
			require_once GIVE_PLUGIN_DIR . 'includes/gateways/paypal-standard.php';
575
			require_once GIVE_PLUGIN_DIR . 'includes/gateways/offline-donations.php';
576
			require_once GIVE_PLUGIN_DIR . 'includes/gateways/manual.php';
577
578
			// This conditional check will add backward compatibility to older Stripe versions (i.e. < 2.2.0) when used with Give 2.5.0.
579
			if (
580
				! defined( 'GIVE_STRIPE_VERSION' ) ||
581
				(
582
					defined( 'GIVE_STRIPE_VERSION' ) &&
583
					version_compare( '2.2.0', GIVE_STRIPE_VERSION, '>=' )
584
				)
585
			) {
586
				require_once GIVE_PLUGIN_DIR . 'includes/gateways/stripe/class-give-stripe.php';
587
			}
588
589
			require_once GIVE_PLUGIN_DIR . 'includes/emails/class-give-emails.php';
590
			require_once GIVE_PLUGIN_DIR . 'includes/emails/class-give-email-tags.php';
591
			require_once GIVE_PLUGIN_DIR . 'includes/admin/emails/class-email-notifications.php';
592
			require_once GIVE_PLUGIN_DIR . 'includes/emails/functions.php';
593
			require_once GIVE_PLUGIN_DIR . 'includes/emails/template.php';
594
			require_once GIVE_PLUGIN_DIR . 'includes/emails/actions.php';
595
596
			require_once GIVE_PLUGIN_DIR . 'includes/donors/class-give-donors-query.php';
597
			require_once GIVE_PLUGIN_DIR . 'includes/donors/class-give-donor-wall.php';
598
			require_once GIVE_PLUGIN_DIR . 'includes/donors/class-give-donor-stats.php';
599
			require_once GIVE_PLUGIN_DIR . 'includes/donors/backward-compatibility.php';
600
			require_once GIVE_PLUGIN_DIR . 'includes/donors/actions.php';
601
602
			require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/class-give-updates.php';
603
604
			require_once GIVE_PLUGIN_DIR . 'blocks/load.php';
605
606
			if ( defined( 'WP_CLI' ) && WP_CLI ) {
607
				require_once GIVE_PLUGIN_DIR . 'includes/class-give-cli-commands.php';
608
			}
609
610
			// Load file for frontend
611
			if( $this->is_request('frontend' ) ) {
612
				require_once GIVE_PLUGIN_DIR . 'includes/frontend/class-give-frontend.php';
613
			}
614
615
			if ( $this->is_request( 'admin' ) || $this->is_request( 'wpcli' ) ) {
616
				require_once GIVE_PLUGIN_DIR . 'includes/admin/class-give-admin.php';
617
			}// End if().
618
619
			require_once GIVE_PLUGIN_DIR . 'includes/actions.php';
620
			require_once GIVE_PLUGIN_DIR . 'includes/install.php';
621
622
		}
623
624
		/**
625
		 * Loads the plugin language files.
626
		 *
627
		 * @since  1.0
628
		 * @access public
629
		 *
630
		 * @return void
631
		 */
632
		public function load_textdomain() {
633
634
			// Set filter for Give's languages directory
635
			$give_lang_dir = dirname( plugin_basename( GIVE_PLUGIN_FILE ) ) . '/languages/';
636
			$give_lang_dir = apply_filters( 'give_languages_directory', $give_lang_dir );
637
638
			// Traditional WordPress plugin locale filter.
639
			$locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale();
640
			$locale = apply_filters( 'plugin_locale', $locale, 'give' );
641
642
			unload_textdomain( 'give' );
643
			load_textdomain( 'give', WP_LANG_DIR . '/give/give-' . $locale . '.mo' );
644
			load_plugin_textdomain( 'give', false, $give_lang_dir );
645
646
		}
647
648
649
		/**
650
		 *  Show minimum PHP version notice.
651
		 *
652
		 * @since  1.8.12
653
		 * @access public
654
		 */
655
		public function minimum_phpversion_notice() {
656
			// Bailout.
657
			if ( ! is_admin() ) {
658
				return;
659
			}
660
661
			$notice_desc  = '<p><strong>' . __( 'Your site could be faster and more secure with a newer PHP version.', 'give' ) . '</strong></p>';
662
			$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>';
663
			$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>';
664
			$notice_desc .= '<p><strong>' . __( 'To which version should I update?', 'give' ) . '</strong></p>';
665
			$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>';
666
			$notice_desc .= '<p><strong>' . __( 'Can\'t update? Ask your host!', 'give' ) . '</strong></p>';
667
			$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>';
668
669
			echo sprintf(
670
				'<div class="notice notice-error">%1$s</div>',
671
				wp_kses_post( $notice_desc )
672
			);
673
		}
674
675
		/**
676
		 * What type of request is this?
677
		 *
678
		 * @since 2.4.0
679
		 *
680
		 * @param  string $type admin, ajax, cron or frontend.
681
		 * @return bool
682
		 */
683
		private function is_request( $type ) {
684
			switch ( $type ) {
685
				case 'admin':
686
					return is_admin();
687
				case 'ajax':
688
					return defined( 'DOING_AJAX' );
689
				case 'cron':
690
					return defined( 'DOING_CRON' );
691
				case 'frontend':
692
					return ( ! is_admin() || defined( 'DOING_AJAX' ) ) && ! defined( 'DOING_CRON' ) && ! defined( 'REST_REQUEST' );
693
				case 'wpcli':
694
					return defined( 'WP_CLI' ) && WP_CLI;
695
			}
696
		}
697
698
	}
699
700
endif; // End if class_exists check
701
702
703
/**
704
 * Start Give
705
 *
706
 * The main function responsible for returning the one true Give instance to functions everywhere.
707
 *
708
 * Use this function like you would a global variable, except without needing
709
 * to declare the global.
710
 *
711
 * Example: <?php $give = Give(); ?>
712
 *
713
 * @since 1.0
714
 * @return object|Give
715
 */
716
function Give() {
717
	return Give::instance();
718
}
719
720
Give();
721