forked from dangtrinhnt/multisite-site-category
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multisite-site-category.php
435 lines (377 loc) · 12.3 KB
/
multisite-site-category.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<?php
/**
* Plugin Name: Multisite Site Category
* Plugin URI: https://github.com/dangtrinh/multisite-site-category.git
* Description: Add a custom meta option when registering new sites in WordPress Multisite.
* Network: true
* Original author: Rodolfo Buaiz
* Author: Trinh Nguyen
* Author URI: http://me.dangtrinh.com
* Version: 2015.05.18
* License: GPLv2 or later
* Network: True
*/
/*
Multisite Site Category
Copyright (C) 2013 Rodolfo Buaiz
Copyright (C) 2015 Trinh Nguyen
This program 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 2 of the License, or
(at your option) any later version.
This program 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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
# BUSTED!
!defined( 'ABSPATH' ) AND exit(
"<pre>Hi there! I'm just part of a plugin, <h1>¿what exactly are you looking for?"
);
# ACTIVATION
register_activation_hook(
__FILE__, array( 'B5F_Multisite_Categories', 'on_activation' )
);
# INIT
add_action(
'plugins_loaded', array( B5F_Multisite_Categories::get_instance(), 'plugin_setup' )
);
class B5F_Multisite_Categories
{
/**
* Plugin instance.
*
* @see get_instance()
* @type object
*/
protected static $instance = NULL;
/**
* URL to this plugin's directory.
*
* @type string
*/
public $plugin_url = '';
/**
* Path to this plugin's directory.
*
* @type string
*/
public $plugin_path = '';
/**
* Option name for the Categories List
*
* @var object
*/
public static $option_name = 'sites_categories_list';
/**
* Holds the List of Categories and its IDs (mature)
*
* @var object
*/
public $options;
/**
* Debug only, show the mature column
*
* Use add_filter( 'msc_show_mature_column', '__return_true' );
*
* @var bool
*/
public static $show_mature_column = false;
/**
* Cache list of sites with id + mature
*
* add_filter( 'msc_transient_time', function(){ return 1; } );
*
* @var bool
*/
public static $sites_transient = 3600; // 1 hour
public static $repo_slug = 'multisite-site-category';
/**
* Access this plugin’s working instance
*
* @wp-hook plugins_loaded
* @since 2012.09.13
* @return object of this class
*/
public static function get_instance()
{
NULL === self::$instance and self::$instance = new self;
return self::$instance;
}
/**
* Activation hook
*
* Checks if option exist, otherwise fill it up
*
* @global type $wpdb
*/
public function on_activation()
{
if( !is_multisite() )
wp_die(
'Cannot install in Single Site. Multisite only!',
'Error',
array(
'response' => 500,
'back_link' => true
)
);
$blogs = self::get_blog_list();
$original_blog = get_current_blog_id();
foreach( $blogs as $blog )
{
switch_to_blog( $blog['blog_id'] );
$has_category = get_blog_option( $blog['blog_id'], 'site_category' );
if( empty( $has_category ) )
update_blog_option( $blog['blog_id'], 'site_category', '' );
}
switch_to_blog( $original_blog );
}
/**
* Used for regular plugin work.
*
* @wp-hook plugins_loaded
* @since 2012.09.10
* @return void
*/
public function plugin_setup()
{
global $pagenow;
$this->plugin_url = plugins_url( '/', __FILE__ );
$this->plugin_path = plugin_dir_path( __FILE__ );
$this->options = get_option( self::$option_name );
# SIGNUP FIELDS
# needs further work, disable for now
require_once 'inc/class-sites-categories-signup.php';
new B5F_Sites_Categories_Signup();
# WP, ALL MATURES ARE OK
if( 'sites.php' != $pagenow )
add_filter( 'site_details', array( $this, 'hack_mature_queries' ) );
# BAIL OUT
if( !is_network_admin() )
return;
# NETWORK MENU
require_once 'inc/class-sites-categories-menu.php';
new B5F_Sites_Categories_Menu();
# COLUMNS
require_once 'inc/class-sites-categories-columns.php';
new B5F_Sites_Categories_Columns();
# MANIPULATE FIELDS IN SITE-INFO
add_action( 'admin_init', array( $this, 'site_info_post_data' ) );
add_action( 'admin_footer', array( $this, 'site_info_scripts' ) );
# Self hosted updates
include_once 'inc/plugin-update-checker.php';
$updateChecker = new PluginUpdateCheckerB(
'https://raw.github.com/brasofilo/'.self::$repo_slug.'/master/inc/update.json',
__FILE__,
self::$repo_slug.'-master'
);
# Workaround to remove the suffix "-master" from the unzipped directory
add_filter( 'upgrader_source_selection', array( $this, 'rename_github_zip' ), 1, 3 );
}
/**
* Constructor. Intentionally left empty and public.
*
* @see plugin_setup()
* @since 2012.09.12
*/
public function __construct() {}
/**
* Tell WP all Matures are equal to 0
* Except in the screen sites.php
*
* @param object $details
* @return object
*/
public function hack_mature_queries( $details )
{
$details->mature = 0;
return $details;
}
/**
* Change site category in Site Info
*
* @return void
*/
public function site_info_post_data()
{
if (
!isset( $_POST['nonce_b5f_msc'] )
|| !wp_verify_nonce( $_POST['nonce_b5f_msc'], plugin_basename( __FILE__ ) )
)
return;
if( isset( $_POST['input_site_cat'] ) )
{
$val = $this->do_mature_to_name( $_POST['input_site_cat'] );
update_blog_option( $_POST['id'], 'site_category', $val );
update_blog_status( absint( $_POST['id'] ), 'mature', $_POST['input_site_cat'] );
get_blog_status(absint( $_POST['id'] ),'mature');
}
}
/**
* Manipulate fields on site-info.php
*
* @return string
*/
public function site_info_scripts()
{
if( 'site-info-network' != get_current_screen()->id || !isset( $_GET['id'] ) )
return;
$nonce = wp_nonce_field( plugin_basename( __FILE__ ), 'nonce_b5f_msc', true, false );
$dropdown = $this->get_dropdown( $_GET['id'], $nonce );
$dropdown = '<tr><th scope="row">Category</th><td>' . $dropdown . $nonce . '</td></tr>';
echo <<<HTML
<script type="text/javascript">
jQuery(document).ready( function($) {
$(".form-table").find("label:contains('Mature')").remove();
$('$dropdown').appendTo('.form-table')
});
</script>
HTML;
}
/**
* Generate HTML for categories dropdown
*
* @param type $nonce
*/
public function get_dropdown( $site_id )
{
$all_cats = get_option( self::$option_name );
$dropdown = '<select name="input_site_cat" id="input_site_cat">';
$site_cat = !empty( $site_id ) ? get_blog_option( $site_id, 'site_category' ) : false;
$empty_cat = '';
if( $site_cat )
$site_cat = $this->do_name_to_mature( $site_cat );
else
$empty_cat = 'selected="selected"';
$dropdown .= '<option value="empty" ' . $empty_cat . '>--select--</option>';
foreach ( $all_cats as $cat )
{
$sel = $cat['mature'] == $site_cat ? 'selected="selected"' : '';
$dropdown .= sprintf(
'<option value="%s" %s>%s</option>',
$cat['mature'],
$sel,//selected( $count, $site_cat, false ),
$cat['name']
);
}
$dropdown .= '</select>';
return $dropdown;
}
/**
* Categories settings changed, updated sites
*
* @param array $cats_arr
*/
public function update_sites( $cats_arr )
{
$this->options = $cats_arr;
$blogs = self::get_blog_list();
foreach( $blogs as $blog )
{
$id = $blog['blog_id'];
$opt = get_blog_option( $id, 'site_category' );
$mature = $this->do_name_to_mature( $opt );
if( !$mature )
update_blog_option( $id, 'site_category', '' );
update_blog_status( absint( $id ), 'mature', $mature );
get_blog_status( absint( $id ),'mature');
}
}
/**
* Get blog list
*
* @return array All blogs IDs
*/
public static function get_blog_list()
{
$blogs = get_site_transient( 'multisite_blog_list' );
if ( FALSE === $blogs )
{
$time = apply_filters( 'msc_transient_time', self::$sites_transient );
global $wpdb;
$limit = '';
//$limit = "LIMIT $start, $num";
$blogs = $wpdb->get_results(
$wpdb->prepare( "
SELECT blog_id, mature
FROM $wpdb->blogs
WHERE site_id = %d
$limit
", $wpdb->siteid ),
ARRAY_A );
set_site_transient( 'multisite_blog_list', $blogs, $time );
}
return $blogs;
}
/**
* Gets category name base on id (mature)
*
* @param int $mature
* @return string
*/
public function do_mature_to_name( $mature )
{
foreach( $this->options as $opt )
{
if( $mature == $opt['mature'] )
return $opt['name'];
}
return '';
}
/**
* Get id (mature) based on category name
*
* @param string $category
* @return int
*/
public function do_name_to_mature( $category )
{
foreach( $this->options as $opt )
{
if( $category == $opt['name'] )
return $opt['mature'];
}
return '';
}
/**
* Add donate link to plugin description in /wp-admin/plugins.php
*
* @param array $plugin_meta
* @param string $plugin_file
* @param string $plugin_data
* @param string $status
* @return array
*/
public function donate_link( $plugin_meta, $plugin_file, $plugin_data, $status )
{
if( plugin_basename( __FILE__ ) == $plugin_file )
$plugin_meta[] = sprintf(
'♥ <a href="%s">%s</a>',
'https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=JNJXKWBYM9JP6&lc=US&item_name=Rodolfo%20Buaiz&item_number=Plugin%20donation¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted',
__( 'Buy me a beer :)' )
);
return $plugin_meta;
}
/**
* Removes the prefix "-master" when updating from GitHub zip files
*
* See: https://github.com/YahnisElsts/plugin-update-checker/issues/1
*
* @param string $source
* @param string $remote_source
* @param object $thiz
* @return string
*/
public function rename_github_zip( $source, $remote_source, $thiz )
{
if( strpos( $source, self::$repo_slug ) === false )
return $source;
$path_parts = pathinfo($source);
$newsource = trailingslashit($path_parts['dirname']). trailingslashit( self::$repo_slug );
rename($source, $newsource);
return $newsource;
}
}