-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwpmn-taxonomy-functions.php
461 lines (394 loc) · 12.3 KB
/
wpmn-taxonomy-functions.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<?php
/**
* Multi-network taxonomy functions.
*
* Most Multi-network taxonomy functions are wrappers for their WordPress counterparts.
* Because users and therefore some taxonomies are on the main network in a multi-network environment, we
* must be able switch to the proper blog before using the WP functions.
*
* @package Xxxx
* @subpackage Xxxx
* @since x.x.x
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* Register any taxonomies needed.
*
* @since x.x.x
*/
if ( ! function_exists( 'wpmn_register_taxonomies' ) ) {
function wpmn_register_taxonomies() {
do_action( 'wpmn_register_taxonomies' );
}
}
//add_action( 'wpmn_register_taxonomies', 'wpmn_register_taxonomies' );
/**
* Gets the ID of the site that we should use for taxonomy term storage.
*
* Defaults to the root blog ID.
*
* @since x.x.x
*
* @return int
*/
if ( ! function_exists( 'wpmn_get_taxonomy_term_site_id' ) ) {
function wpmn_get_taxonomy_term_site_id( $taxonomy = '' ) {
global $wpdb;
$site_id = $wpdb->blogid;
/**
* Filters the ID of the site where we should store taxonomy terms.
*
* @since x.x.x
*
* @param int $site_id
* @param string $taxonomy
*/
return (int) apply_filters( 'wpmn_get_taxonomy_term_site_id', $site_id, $taxonomy );
}
}
/**
* Set taxonomy terms on an object.
*
* @since x.x.x
*
* @see wp_set_object_terms() for a full description of function and parameters.
*
* @param int $object_id Object ID.
* @param string|array $terms Term or terms to set.
* @param string $taxonomy Taxonomy name.
* @param bool $append Optional. True to append terms to existing terms. Default: false.
* @return array Array of term taxonomy IDs.
*/
if ( ! function_exists( 'wpmn_set_object_terms' ) ) {
function wpmn_set_object_terms( $object_id, $terms, $taxonomy, $append = false ) {
$site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
$switched = false;
if ( get_current_blog_id() !== $site_id ) {
switch_to_blog( $site_id );
wpmn_register_taxonomies();
$switched = true;
}
$retval = wp_set_object_terms( $object_id, $terms, $taxonomy, $append );
if ( $switched ) {
restore_current_blog();
}
return $retval;
}
}
/**
* Get taxonomy terms for an object.
*
* @since x.x.x
*
* @see wp_get_object_terms() for a full description of function and parameters.
*
* @param int|array $object_ids ID or IDs of objects.
* @param string|array $taxonomies Name or names of taxonomies to match.
* @param array $args See {@see wp_get_object_terms()}.
* @return array
*/
if ( ! function_exists( 'wpmn_get_object_terms' ) ) {
function wpmn_get_object_terms( $object_ids, $taxonomies, $args = array() ) {
// Different taxonomies must be stored on different sites.
$taxonomy_site_map = array();
foreach ( (array) $taxonomies as $taxonomy ) {
$taxonomy_site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
$taxonomy_site_map[ $taxonomy_site_id ][] = $taxonomy;
}
$retval = array();
foreach ( $taxonomy_site_map as $taxonomy_site_id => $site_taxonomies ) {
$switched = false;
if ( get_current_blog_id() !== $site_id ) {
switch_to_blog( $taxonomy_site_id );
wpmn_register_taxonomies();
$switched = true;
}
$site_terms = wp_get_object_terms( $object_ids, $site_taxonomies, $args );
$retval = array_merge( $retval, $site_terms );
//TODO Handle taxonomy error.
if ( $switched ) {
restore_current_blog();
}
}
return $retval;
}
}
/**
* Remove taxonomy terms on an object.
*
* @since x.x.x
*
* @see wp_remove_object_terms() for a full description of function and parameters.
*
* @param int $object_id Object ID.
* @param string|array $terms Term or terms to remove.
* @param string $taxonomy Taxonomy name.
* @return bool|WP_Error True on success, false or WP_Error on failure.
*/
if ( ! function_exists( 'wpmn_remove_object_terms' ) ) {
function wpmn_remove_object_terms( $object_id, $terms, $taxonomy ) {
$site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
$switched = false;
if ( get_current_blog_id() !== $site_id ) {
switch_to_blog( $site_id );
wpmn_register_taxonomies();
$switched = true;
}
$retval = wp_remove_object_terms( $object_id, $terms, $taxonomy );
if ( $switched ) {
restore_current_blog();
}
return $retval;
}
}
/**
* Retrieve the terms in a given taxonomy or list of taxonomies
*
* @since x.x.x
*
* @see get_terms() for a full description of function and parameters.
*
* @param string|array $args Args or names of taxonomies to match.
* @param array $deprecated Args the old way.
* @return array
*/
if ( ! function_exists( 'wpmn_get_terms' ) ) {
function wpmn_get_terms( $args = array(), $deprecated = array() ) {
$key_intersect = array_intersect_key( array( 'taxonomy' => null ), (array) $args );
$is_legacy_args = $deprecated || empty( $key_intersect );
if ( $is_legacy_args ) {
$taxonomies = $args;
$wp_args = $deprecated;
} else {
$taxonomies = $args['taxonomy'];
$wp_args = $args;
unset( $wp_args['taxonomy'] );
}
// Different taxonomies must be stored on different sites.
$taxonomy_site_map = array();
foreach ( (array) $taxonomies as $taxonomy ) {
$taxonomy_site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
$taxonomy_site_map[ $taxonomy_site_id ][] = $taxonomy;
}
$retval = array();
foreach ( $taxonomy_site_map as $taxonomy_site_id => $site_taxonomies ) {
$switched = false;
if ( get_current_blog_id() !== $taxonomy_site_id ) {
switch_to_blog( $taxonomy_site_id );
wpmn_register_taxonomies();
$switched = true;
}
$wp_args['taxonomy'] = $site_taxonomies;
$site_terms = get_terms( $wp_args );
$retval = array_merge( $retval, $site_terms );
if ( $switched ) {
restore_current_blog();
}
}
return $retval;
}
}
/**
* Get all Term data from database by Term ID.
*
* @since x.x.x
*
* @see get_term() for a full description of function and parameters.
*
* @param int|WP_Term $term Term ID or object.
* @param string $taxonomy Optional. Taxonomy name.
* @param string $output Optional constant. Default: OBJECT.
* @param string $filter Optional. Default: raw.
* @return array Array of term taxonomy IDs.
*/
if ( ! function_exists( 'wpmn_get_term' ) ) {
function wpmn_get_term( $term, $taxonomy = '', $output = OBJECT, $filter = 'raw' ) {
$switched = false;
if ( ! empty( $taxonomy ) ) {
$site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
if ( get_current_blog_id() !== $site_id ) {
switch_to_blog( $site_id );
wpmn_register_taxonomies();
$switched = true;
}
}
$retval = get_term( $term, $taxonomy, $output, $filter );
if ( $switched ) {
restore_current_blog();
}
return $retval;
}
}
/**
* Get all Term data from database by Term field and data
*
* @since x.x.x
*
* @see get_term_by() for a full description of function and parameters.
*
* @param string $field Either 'slug', 'name', 'id' (term_id), or 'term_taxonomy_id'.
* @param string $value Search for this term value.
* @param string $taxonomy Optional. Taxonomy name.
* @param string $output Optional constant. Default: OBJECT.
* @param string $filter Optional. Default: raw.
* @return WP_Term|bool WP_Term instance on success.
*/
if ( ! function_exists( 'wpmn_get_term_by' ) ) {
function wpmn_get_term_by( $field, $value, $taxonomy = '', $output = OBJECT, $filter = 'raw' ) {
$switched = false;
if ( ! empty( $taxonomy ) ) {
$site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
if ( get_current_blog_id() !== $site_id ) {
switch_to_blog( $site_id );
wpmn_register_taxonomies();
$switched = true;
}
}
$retval = get_term_by( $field, $value, $taxonomy, $output, $filter );
if ( $switched ) {
restore_current_blog();
}
return $retval;
}
}
/**
* Get objects in term and taxonomy.
*
* @since x.x.x
*
* @see get_objects_in_term() for a full description of function and parameters.
*
* @param int|array $term_ids ID or IDs of terms.
* @param string|array $taxonomies Name or names of taxonomies to match.
* @param array $args See {@see get_objects_in_term()}.
* @return array
*/
if ( ! function_exists( 'wpmn_get_objects_in_term' ) ) {
function wpmn_get_objects_in_term( $term_ids, $taxonomies, $args = array() ) {
// Different taxonomies may be stored on different sites.
$taxonomy_site_map = array();
foreach ( (array) $taxonomies as $taxonomy ) {
$taxonomy_site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
$taxonomy_site_map[ $taxonomy_site_id ][] = $taxonomy;
}
$retval = array();
foreach ( $taxonomy_site_map as $taxonomy_site_id => $site_taxonomies ) {
$switched = false;
if ( get_current_blog_id() !== $taxonomy_site_id ) {
switch_to_blog( $taxonomy_site_id );
wpmn_register_taxonomies();
$switched = true;
}
$site_terms = get_objects_in_term( $term_ids, $site_taxonomies, $args );
$retval = array_merge( $retval, $site_terms );
//TODO Handle taxonomy error.
if ( $switched ) {
restore_current_blog();
}
}
return $retval;
}
}
/**
* Check if Term exists.
*
* @since x.x.x
*
* @see term_exists() for a full description of function and parameters.
*
* @param int|string $term Term ID or object.
* @param string $taxonomy Optional. Taxonomy name.
* @param int $parent Optional int. ID of parent term. Default: null.
* @return mixed Returns null, term ID or array of term ID and taxonomy.
*/
if ( ! function_exists( 'wpmn_term_exists' ) ) {
function wpmn_term_exists( $term, $taxonomy = '', $parent = '' ) {
$switched = false;
if ( ! empty( $taxonomy ) ) {
$site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
if ( get_current_blog_id() !== $site_id ) {
switch_to_blog( $site_id );
wpmn_register_taxonomies();
$switched = true;
}
}
$retval = term_exists( $term, $taxonomy, $parent );
if ( $switched ) {
restore_current_blog();
}
return $retval;
}
}
/**
* Add a new term to the database.
*
* @since x.x.x
*
* @see wp_insert_term() for a full description of function and parameters.
*
* @param string $term Term to add.
* @param string $taxonomy Taxonomy name.
* @param array $args Additional arguments.
* @return array|WP_Error Array on success, WP_Error on failure.
*/
if ( ! function_exists( 'wpmn_insert_term' ) ) {
function wpmn_insert_term( $term, $taxonomy, $args = array() ) {
$site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
$switched = false;
if ( get_current_blog_id() !== $site_id ) {
switch_to_blog( $site_id );
wpmn_register_taxonomies();
$switched = true;
}
$args = array();
$retval = wp_insert_term( $term, $taxonomy, $args );
if ( $switched ) {
restore_current_blog();
}
return $retval;
}
}
/**
* Removes the taxonomy relationship to terms from the cache.
*
* @since x.x.x
*
* @see clean_object_term_cache() for a full description of function and parameters.
*
* @param string|array $terms Term or terms to set.
* @param string $taxonomy Taxonomy name.
* @param bool $append Optional. True to append terms to existing terms. Default: false.
* @return array Array of term taxonomy IDs.
*/
if ( ! function_exists( 'wpmn_clean_object_term_cache' ) ) {
function wpmn_clean_object_term_cache( $terms, $taxonomy ) {
$site_id = wpmn_get_taxonomy_term_site_id( $taxonomy );
$switched = false;
if ( get_current_blog_id() !== $site_id ) {
switch_to_blog( $site_id );
wpmn_register_taxonomies();
$switched = true;
}
$retval = clean_object_term_cache( $terms, $taxonomy );
if ( $switched ) {
restore_current_blog();
}
return $retval;
}
}
/**
* Return the site url of the root blog of the primary network.
*
* @since x.x.x
*
*
* @return string Primary network root blog site url
*/
if ( ! function_exists( 'wpmn_get_primary_network_root_domain' ) ) {
function wpmn_get_primary_network_root_domain() {
$main_network = wp_get_network( get_main_network_id() );
$scheme = ( is_ssl() ) ? 'https://' : 'http://';
return apply_filters( 'wpmn_get_primary_network_root_domain', rtrim( $scheme . $main_network->domain . $main_network->path, '/' ) );
}
}