-
Notifications
You must be signed in to change notification settings - Fork 0
/
groundhogg-buddyboss.php
149 lines (121 loc) · 5.19 KB
/
groundhogg-buddyboss.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php
/*
* Plugin Name: Groundhogg - BuddyBoss
* Plugin URI: https://www.groundhogg.io/downloads/buddy-boss/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
* Description: Integrate Groundhogg wth BuddyBoss.
* Version: 1.2.3
* Author: Groundhogg Inc.
* Author URI: https://www.groundhogg.io/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
* Text Domain: groundhogg-buddyboss
* Domain Path: /languages
*
* Groundhogg is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Groundhogg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
namespace GroundhoggBuddyBoss;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
define( 'GROUNDHOGG_BUDDY_BOSS_VERSION', '1.2.3' );
define( 'GROUNDHOGG_BUDDY_BOSS_PREVIOUS_STABLE_VERSION', '1.2.1' );
define( 'GROUNDHOGG_BUDDY_BOSS_NAME', 'BuddyBoss' );
define( 'GROUNDHOGG_BUDDY_BOSS__FILE__', __FILE__ );
define( 'GROUNDHOGG_BUDDY_BOSS_PLUGIN_BASE', plugin_basename( GROUNDHOGG_BUDDY_BOSS__FILE__ ) );
define( 'GROUNDHOGG_BUDDY_BOSS_PATH', plugin_dir_path( GROUNDHOGG_BUDDY_BOSS__FILE__ ) );
define( 'GROUNDHOGG_BUDDY_BOSS_URL', plugins_url( '/', GROUNDHOGG_BUDDY_BOSS__FILE__ ) );
define( 'GROUNDHOGG_BUDDY_BOSS_ASSETS_PATH', GROUNDHOGG_BUDDY_BOSS_PATH . 'assets/' );
define( 'GROUNDHOGG_BUDDY_BOSS_ASSETS_URL', GROUNDHOGG_BUDDY_BOSS_URL . 'assets/' );
define( 'GROUNDHOGG_BUDDY_BOSS_REQUIRED_WP_VERSION', '4.9' );
define( 'GROUNDHOGG_BUDDY_BOSS_REQUIRED_PHP_VERSION', '7.0' );
define( 'GROUNDHOGG_BUDDY_BOSS_REQUIRED_CORE_VERSION', '2.1.14' );
add_action( 'plugins_loaded', function () {
load_plugin_textdomain( GROUNDHOGG_BUDDY_BOSS_TEXT_DOMAIN, false, basename( dirname( __FILE__ ) ) . '/languages' );
} );
define( 'GROUNDHOGG_BUDDY_BOSS_TEXT_DOMAIN', 'groundhogg-buddyboss' );
// Check PHP and WP are up to date!
if ( check_wp_version() && check_php_version() ){
// Groundhogg is loaded, load now.
if ( did_action( 'groundhogg/loaded' ) ) {
if ( check_core_version() ){
require __DIR__ . '/includes/plugin.php';
}
// Lazy load, wait for Groundhogg!
} else {
add_action( 'groundhogg/loaded', function () {
if ( check_core_version() ){
require __DIR__ . '/includes/plugin.php';
}
} );
// Might not actually be loaded, so we'll check in later.
check_groundhogg_active();
}
}
/**
* Check that Gorundhogg is using the latest available core version
*
* @return bool|int
*/
function check_core_version() {
$correct_version = version_compare( GROUNDHOGG_VERSION, GROUNDHOGG_BUDDY_BOSS_REQUIRED_CORE_VERSION, '>=' );
if ( ! $correct_version ) {
add_action( 'admin_notices', function () {
$message = sprintf( esc_html__( '%s requires Groundhogg version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.', 'groundhogg' ), GROUNDHOGG_BUDDY_BOSS_NAME, GROUNDHOGG_BUDDY_BOSS_REQUIRED_CORE_VERSION );
$html_message = sprintf( '<div class="notice notice-error">%s</div>', wpautop( $message ) );
echo wp_kses_post( $html_message );
} );
}
return $correct_version;
}
/**
* Check that the wp version is most recent
*
* @return bool|int
*/
function check_wp_version() {
$correct_version = version_compare( get_bloginfo( 'version' ), GROUNDHOGG_BUDDY_BOSS_REQUIRED_WP_VERSION, '>=' );
if ( ! $correct_version ) {
add_action( 'admin_notices', function () {
$message = sprintf( esc_html__( '%s requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.', 'groundhogg' ), GROUNDHOGG_BUDDY_BOSS_NAME, GROUNDHOGG_BUDDY_BOSS_REQUIRED_WP_VERSION );
$html_message = sprintf( '<div class="notice notice-error">%s</div>', wpautop( $message ) );
echo wp_kses_post( $html_message );
} );
}
return $correct_version;
}
/**
* Check that the PHP version is compatible
*
* @return bool|int
*/
function check_php_version() {
$correct_version = version_compare( PHP_VERSION, GROUNDHOGG_BUDDY_BOSS_REQUIRED_PHP_VERSION, '>=' );
if ( ! $correct_version ) {
add_action( 'admin_notices', function () {
$message = sprintf( esc_html__( '%s requires PHP version %s+, plugin is currently NOT RUNNING.', 'groundhogg' ), GROUNDHOGG_BUDDY_BOSS_NAME, GROUNDHOGG_BUDDY_BOSS_REQUIRED_PHP_VERSION );
$html_message = sprintf( '<div class="notice notice-error">%s</div>', wpautop( $message ) );
echo wp_kses_post( $html_message );
} );
}
return $correct_version;
}
/**
* Check that Groundhogg is active!
*/
function check_groundhogg_active() {
// Might not actually be loaded, so we'll check in later.
add_action( 'admin_notices', function () {
// Is not loaded!
if ( ! defined( 'GROUNDHOGG_VERSION' ) ) {
$message = sprintf( esc_html__( 'Groundhogg is not currently active, it must be active for %s to work.', 'groundhogg' ), GROUNDHOGG_BUDDY_BOSS_NAME );
$html_message = sprintf( '<div class="notice notice-warning">%s</div>', wpautop( $message ) );
echo wp_kses_post( $html_message );
}
} );
}