-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuddyblog.php
202 lines (175 loc) · 3.95 KB
/
buddyblog.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?php
/**
* Plugin Name: BuddyBlog
* Version: 1.3.8
* Author: BuddyDev
* Author URI: https://buddydev.com/members/sbrajesh/
* Plugin URI: https://buddydev.com/plugins/buddyblog/
* Description: Allow users to post/edit/manage blog posts from their BuddyPress profile
*
* @package buddyblog
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* BuddyBlog main class
*/
class BuddyBlog {
/**
* Singleton instance
*
* @var BuddyBlog
*/
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->setup();
}
/**
* Get singleton instance
*
* @return BuddyBlog
*/
public static function get_instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Setup hooks.
*/
public function setup() {
register_activation_hook( __FILE__, array( $this, 'install' ) );
add_action( 'plugins_loaded', array( $this, 'setup_constants' ), 0 );
add_action( 'bp_include', array( $this, 'load' ) );
add_action( 'bp_init', array( $this, 'load_textdomain' ), 2 );
// add_action( 'bp_enqueue_scripts', array( $this, 'load_comment_js' ) );
}
/**
* Setup constants.
*/
public function setup_constants() {
if ( ! defined( 'BUDDYBLOG_ARCHIVE_SLUG' ) ) {
define( 'BUDDYBLOG_ARCHIVE_SLUG', 'my-posts' );
}
}
/**
* Load required files
*/
public function load() {
$files = array(
'buddyblog-loader.php',
);
if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
$files[] = 'admin/admin.php';
}
foreach ( $files as $file ) {
require_once $this->path . $file;
}
}
/**
* Load translation files
*/
public function load_textdomain() {
load_plugin_textdomain( 'buddyblog', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Load comment js on singular posts.
*/
public function load_comment_js() {
if ( bp_is_current_component( 'buddyblog' ) && bp_is_current_action( 'my-posts' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
/**
* Update settings on activation.
*/
public function install() {
$default = array(
//'root_slug' => 'buddyblog',
'post_type' => 'post',
'post_status' => 'publish',
'comment_status' => 'open',
'show_comment_option' => 1,
'custom_field_title' => '',
'enable_taxonomy' => 1,
'allowed_taxonomies' => 1,
'enable_category' => 1,
'enable_tags' => 1,
'show_posts_on_profile' => 0,
'limit_no_of_posts' => 0,
'max_allowed_posts' => 20,
'publish_cap' => 'read',
'allow_unpublishing' => 1, // subscriber //see https://codex.wordpress.org/Roles_and_Capabilities.
'post_cap' => 'read',
'allow_edit' => 1,
'allow_delete' => 1,
// 'enabled_tags' => 1,
// 'taxonomies' => array( 'category' ),
'allow_upload' => 0,
'max_upload_count' => 2,
);
if ( ! get_site_option( 'buddyblog-settings' ) ) {
add_site_option( 'buddyblog-settings', $default );
}
}
/**
* 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;
}
}
/**
* Helper function to access the BuddyBlog singleton instance.
*
* @return BuddyBlog
*/
function buddyblog() {
return BuddyBlog::get_instance();
}
// Instantiate.
buddyblog();