Completed
Push — es6/issue-1475 ( 93c1ad )
by Ravinder
1139:39 queued 1133:44
created

Give::minmum_phpversion_notice()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

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