-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbp-dynamic-user-tab-content.php
159 lines (134 loc) · 2.8 KB
/
bp-dynamic-user-tab-content.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
150
151
152
153
154
155
156
157
158
<?php
/**
* Plugin Name: BuddyPress Dynamic User Tab Content
* Version: 1.0.1
* Plugin URI: https://buddydev.com/create-dynamic-user-profile-tabs-for-buddypress/
* Author: BuddyDev
* Author URI: https://BuddyDev.com
* Description: Create dynamic content for BuddyPress profile tabs created with BuddyPress User Profile Tabs Creator Pro plugin.
*
* License: GPL2 or above
*/
if ( ! defined( 'ABSPATH' ) ) {
exit( 0 );
}
/**
* Dynamic User tab contents helper.
*/
class BP_Dynamic_User_Tab_Content {
/**
* Singleton instance
*
* @var BP_Dynamic_User_Tab_Content
*/
private static $instance = null;
/**
* Absolute path to this plugin directory.
*
* @var string
*/
private $path;
/**
* Absolute url to this plugin directory.
*
* @var string
*/
private $url;
/**
* Plugin basename.
*
* @var string
*/
private $basename;
/**
* Constructor
*/
private function __construct() {
$this->path = plugin_dir_path( __FILE__ );
$this->url = plugin_dir_url( __FILE__ );
$this->basename = plugin_basename( __FILE__ );
$this->load();
}
/**
* Get singleton instance
*
* @return BP_Dynamic_User_Tab_Content
*/
public static function get_instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Load dependencies
*/
private function load() {
$path = $this->get_path();
require_once $path . 'core/bp-dutc-functions.php';
require_once $path . 'core/bp-dutc-post-type-helper.php';
require_once $path . 'core/bp-dutc-shortcode.php';
if ( is_admin() ) {
require_once $path . 'core/bp-dutc-admin.php';
}
}
/**
* Get the main plugin file.
*
* @return string
*/
public function get_file() {
return __FILE__;
}
/**
* Get absolute url to this plugin dir.
*
* @return string
*/
public function get_url() {
return $this->url;
}
/**
* Get absolute path to this plugin dir.
*
* @return string
*/
public function get_path() {
return $this->path;
}
/**
* Check if network active.
*
* @return bool
*/
public function is_network_active() {
if ( ! is_multisite() ) {
return false;
}
// Check the sitewide plugins array.
$base = $this->basename;
$plugins = get_site_option( 'active_sitewide_plugins' );
if ( ! is_array( $plugins ) || ! isset( $plugins[ $base ] ) ) {
return false;
}
return true;
}
/**
* Is the PHp version good enough for us?
* Checks if php version >= 5.4
*
* @return boolean
*/
public function has_php_version() {
return version_compare( PHP_VERSION, '5.4', '>=' );
}
}
/**
* Helper method to access BP_Dynamic_Tab_Content instance
*
* @return BP_Dynamic_User_Tab_Content
*/
function bp_dynamic_tab_content() {
return BP_Dynamic_User_Tab_Content::get_instance();
}
bp_dynamic_tab_content();