2010-02-13 23:35:11 +01:00
< ? php
/**
* Site / blog functions that work with the blogs table and related data .
*
* @ package WordPress
2010-02-15 02:08:23 +01:00
* @ subpackage Multisite
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-02-13 23:35:11 +01:00
*/
2010-10-01 03:32:31 +02:00
/**
2016-01-28 04:35:27 +01:00
* Update the last_updated field for the current site .
2010-10-01 03:32:31 +02:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-01 03:32:31 +02:00
*/
2010-02-13 23:35:11 +01:00
function wpmu_update_blogs_date () {
2017-10-02 03:44:47 +02:00
$site_id = get_current_blog_id ();
2010-02-13 23:35:11 +01:00
2017-10-02 03:44:47 +02:00
update_blog_details ( $site_id , array ( 'last_updated' => current_time ( 'mysql' , true ) ) );
2013-12-01 18:32:10 +01:00
/**
* Fires after the blog details are updated .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-01 18:32:10 +01:00
*
2016-01-28 04:35:27 +01:00
* @ param int $blog_id Site ID .
2013-12-01 18:32:10 +01:00
*/
2017-10-02 03:44:47 +02:00
do_action ( 'wpmu_blog_updated' , $site_id );
2010-02-13 23:35:11 +01:00
}
2010-10-01 03:32:31 +02:00
/**
* Get a full blog URL , given a blog id .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-01 03:32:31 +02:00
*
* @ param int $blog_id Blog ID
2015-01-12 03:24:22 +01:00
* @ return string Full URL of the blog if found . Empty string if not .
2010-10-01 03:32:31 +02:00
*/
2010-12-16 20:48:00 +01:00
function get_blogaddress_by_id ( $blog_id ) {
2016-10-25 20:50:30 +02:00
$bloginfo = get_site ( ( int ) $blog_id );
2015-10-30 03:02:24 +01:00
if ( empty ( $bloginfo ) ) {
return '' ;
}
$scheme = parse_url ( $bloginfo -> home , PHP_URL_SCHEME );
$scheme = empty ( $scheme ) ? 'http' : $scheme ;
return esc_url ( $scheme . '://' . $bloginfo -> domain . $bloginfo -> path );
2010-02-13 23:35:11 +01:00
}
2010-10-01 03:32:31 +02:00
/**
* Get a full blog URL , given a blog name .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-01 03:32:31 +02:00
*
* @ param string $blogname The ( subdomain or directory ) name
* @ return string
*/
2010-02-13 23:35:11 +01:00
function get_blogaddress_by_name ( $blogname ) {
if ( is_subdomain_install () ) {
2017-12-01 00:11:00 +01:00
if ( $blogname == 'main' ) {
2010-02-13 23:35:11 +01:00
$blogname = 'www' ;
2017-12-01 00:11:00 +01:00
}
2010-05-17 00:21:06 +02:00
$url = rtrim ( network_home_url (), '/' );
2017-12-01 00:11:00 +01:00
if ( ! empty ( $blogname ) ) {
$url = preg_replace ( '|^([^\.]+://)|' , '${1}' . $blogname . '.' , $url );
}
2010-02-13 23:35:11 +01:00
} else {
2010-05-17 00:21:06 +02:00
$url = network_home_url ( $blogname );
2010-02-13 23:35:11 +01:00
}
2010-05-17 00:21:06 +02:00
return esc_url ( $url . '/' );
2010-02-13 23:35:11 +01:00
}
2010-10-01 03:32:31 +02:00
/**
2017-10-17 00:35:47 +02:00
* Retrieves a sites ID given its ( subdomain or directory ) slug .
2010-10-01 03:32:31 +02:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2016-09-27 20:18:28 +02:00
* @ since 4.7 . 0 Converted to use get_sites () .
2010-10-01 03:32:31 +02:00
*
2016-09-27 20:18:28 +02:00
* @ param string $slug A site ' s slug .
* @ return int | null The site ID , or null if no site is found for the given slug .
2010-10-01 03:32:31 +02:00
*/
2012-09-24 21:31:37 +02:00
function get_id_from_blogname ( $slug ) {
2017-10-17 00:35:47 +02:00
$current_network = get_network ();
2017-12-01 00:11:00 +01:00
$slug = trim ( $slug , '/' );
2012-09-24 21:31:37 +02:00
2017-10-17 00:35:47 +02:00
if ( is_subdomain_install () ) {
$domain = $slug . '.' . preg_replace ( '|^www\.|' , '' , $current_network -> domain );
2017-12-01 00:11:00 +01:00
$path = $current_network -> path ;
2017-10-17 00:35:47 +02:00
} else {
$domain = $current_network -> domain ;
2017-12-01 00:11:00 +01:00
$path = $current_network -> path . $slug . '/' ;
2017-10-17 00:35:47 +02:00
}
2017-12-01 00:11:00 +01:00
$site_ids = get_sites (
array (
'number' => 1 ,
'fields' => 'ids' ,
'domain' => $domain ,
'path' => $path ,
)
);
2017-10-17 00:35:47 +02:00
if ( empty ( $site_ids ) ) {
2016-09-27 20:18:28 +02:00
return null ;
}
2017-10-17 00:35:47 +02:00
return array_shift ( $site_ids );
2010-02-13 23:35:11 +01:00
}
/**
* Retrieve the details for a blog from the blogs table and blog options .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2017-10-17 00:29:48 +02:00
*
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-26 23:51:31 +02:00
*
* @ param int | string | array $fields Optional . A blog ID , a blog slug , or an array of fields to query against .
* If not specified the current blog ID is used .
* @ param bool $get_all Whether to retrieve all details or only the details in the blogs table .
* Default is true .
2016-03-09 08:42:26 +01:00
* @ return WP_Site | false Blog details on success . False on failure .
2010-02-13 23:35:11 +01:00
*/
2012-10-04 14:40:09 +02:00
function get_blog_details ( $fields = null , $get_all = true ) {
2017-10-17 00:29:48 +02:00
global $wpdb ;
2017-12-01 00:11:00 +01:00
if ( is_array ( $fields ) ) {
if ( isset ( $fields [ 'blog_id' ] ) ) {
2017-10-17 00:29:48 +02:00
$blog_id = $fields [ 'blog_id' ];
2017-12-01 00:11:00 +01:00
} elseif ( isset ( $fields [ 'domain' ] ) && isset ( $fields [ 'path' ] ) ) {
$key = md5 ( $fields [ 'domain' ] . $fields [ 'path' ] );
$blog = wp_cache_get ( $key , 'blog-lookup' );
if ( false !== $blog ) {
2017-10-17 00:29:48 +02:00
return $blog ;
2017-12-01 00:11:00 +01:00
}
2017-10-17 00:29:48 +02:00
if ( substr ( $fields [ 'domain' ], 0 , 4 ) == 'www.' ) {
$nowww = substr ( $fields [ 'domain' ], 4 );
2017-12-01 00:11:00 +01:00
$blog = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->blogs WHERE domain IN (%s,%s) AND path = %s ORDER BY CHAR_LENGTH(domain) DESC " , $nowww , $fields [ 'domain' ], $fields [ 'path' ] ) );
2017-10-17 00:29:48 +02:00
} else {
$blog = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->blogs WHERE domain = %s AND path = %s " , $fields [ 'domain' ], $fields [ 'path' ] ) );
}
if ( $blog ) {
2017-12-01 00:11:00 +01:00
wp_cache_set ( $blog -> blog_id . 'short' , $blog , 'blog-details' );
2017-10-17 00:29:48 +02:00
$blog_id = $blog -> blog_id ;
} else {
return false ;
}
2017-12-01 00:11:00 +01:00
} elseif ( isset ( $fields [ 'domain' ] ) && is_subdomain_install () ) {
$key = md5 ( $fields [ 'domain' ] );
$blog = wp_cache_get ( $key , 'blog-lookup' );
if ( false !== $blog ) {
2017-10-17 00:29:48 +02:00
return $blog ;
2017-12-01 00:11:00 +01:00
}
2017-10-17 00:29:48 +02:00
if ( substr ( $fields [ 'domain' ], 0 , 4 ) == 'www.' ) {
$nowww = substr ( $fields [ 'domain' ], 4 );
2017-12-01 00:11:00 +01:00
$blog = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->blogs WHERE domain IN (%s,%s) ORDER BY CHAR_LENGTH(domain) DESC " , $nowww , $fields [ 'domain' ] ) );
2017-10-17 00:29:48 +02:00
} else {
$blog = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->blogs WHERE domain = %s " , $fields [ 'domain' ] ) );
}
if ( $blog ) {
2017-12-01 00:11:00 +01:00
wp_cache_set ( $blog -> blog_id . 'short' , $blog , 'blog-details' );
2017-10-17 00:29:48 +02:00
$blog_id = $blog -> blog_id ;
} else {
return false ;
}
2010-02-14 00:09:54 +01:00
} else {
return false ;
}
} else {
2017-12-01 00:11:00 +01:00
if ( ! $fields ) {
2017-10-17 00:29:48 +02:00
$blog_id = get_current_blog_id ();
2017-12-01 00:11:00 +01:00
} elseif ( ! is_numeric ( $fields ) ) {
2017-10-17 00:29:48 +02:00
$blog_id = get_id_from_blogname ( $fields );
2017-12-01 00:11:00 +01:00
} else {
2017-10-17 00:29:48 +02:00
$blog_id = $fields ;
2017-12-01 00:11:00 +01:00
}
2010-02-13 23:35:11 +01:00
}
2017-10-17 00:29:48 +02:00
$blog_id = ( int ) $blog_id ;
2010-02-14 00:09:54 +01:00
2017-12-01 00:11:00 +01:00
$all = $get_all == true ? '' : 'short' ;
2017-10-17 00:29:48 +02:00
$details = wp_cache_get ( $blog_id . $all , 'blog-details' );
if ( $details ) {
if ( ! is_object ( $details ) ) {
if ( $details == - 1 ) {
return false ;
} else {
// Clear old pre-serialized objects. Cache clients do better with that.
wp_cache_delete ( $blog_id . $all , 'blog-details' );
2017-12-01 00:11:00 +01:00
unset ( $details );
2017-10-17 00:29:48 +02:00
}
} else {
return $details ;
}
2016-01-25 22:51:26 +01:00
}
2017-10-17 00:29:48 +02:00
// Try the other cache.
2017-10-03 21:40:46 +02:00
if ( $get_all ) {
2017-10-17 00:29:48 +02:00
$details = wp_cache_get ( $blog_id . 'short' , 'blog-details' );
} else {
$details = wp_cache_get ( $blog_id , 'blog-details' );
// If short was requested and full cache is set, we can return.
if ( $details ) {
if ( ! is_object ( $details ) ) {
if ( $details == - 1 ) {
return false ;
} else {
// Clear old pre-serialized objects. Cache clients do better with that.
wp_cache_delete ( $blog_id , 'blog-details' );
2017-12-01 00:11:00 +01:00
unset ( $details );
2017-10-17 00:29:48 +02:00
}
} else {
return $details ;
}
2017-10-03 21:40:46 +02:00
}
2010-02-13 23:35:11 +01:00
}
2017-12-01 00:11:00 +01:00
if ( empty ( $details ) ) {
2017-10-17 00:29:48 +02:00
$details = WP_Site :: get_instance ( $blog_id );
if ( ! $details ) {
// Set the full cache.
wp_cache_set ( $blog_id , - 1 , 'blog-details' );
return false ;
}
}
if ( ! $details instanceof WP_Site ) {
$details = new WP_Site ( $details );
}
if ( ! $get_all ) {
wp_cache_set ( $blog_id . $all , $details , 'blog-details' );
return $details ;
}
switch_to_blog ( $blog_id );
$details -> blogname = get_option ( 'blogname' );
$details -> siteurl = get_option ( 'siteurl' );
$details -> post_count = get_option ( 'post_count' );
$details -> home = get_option ( 'home' );
restore_current_blog ();
/**
* Filters a blog ' s details .
*
* @ since MU ( 3.0 . 0 )
* @ deprecated 4.7 . 0 Use site_details
*
* @ param object $details The blog details .
*/
$details = apply_filters_deprecated ( 'blog_details' , array ( $details ), '4.7.0' , 'site_details' );
wp_cache_set ( $blog_id . $all , $details , 'blog-details' );
$key = md5 ( $details -> domain . $details -> path );
wp_cache_set ( $key , $details , 'blog-lookup' );
return $details ;
2010-02-13 23:35:11 +01:00
}
/**
* Clear the blog details cache .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-02-13 23:35:11 +01:00
*
2014-09-02 09:30:16 +02:00
* @ param int $blog_id Optional . Blog ID . Defaults to current blog .
2010-02-13 23:35:11 +01:00
*/
2014-09-02 09:30:16 +02:00
function refresh_blog_details ( $blog_id = 0 ) {
2010-02-13 23:35:11 +01:00
$blog_id = ( int ) $blog_id ;
2014-09-02 09:30:16 +02:00
if ( ! $blog_id ) {
$blog_id = get_current_blog_id ();
}
2017-10-03 20:41:48 +02:00
clean_blog_cache ( $blog_id );
2010-02-13 23:35:11 +01:00
}
/**
* Update the details for a blog . Updates the blogs table for a given blog id .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-02-13 23:35:11 +01:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-26 23:51:31 +02:00
*
* @ param int $blog_id Blog ID
2010-02-13 23:35:11 +01:00
* @ param array $details Array of details keyed by blogs table field names .
* @ return bool True if update succeeds , false otherwise .
*/
function update_blog_details ( $blog_id , $details = array () ) {
global $wpdb ;
2017-12-01 00:11:00 +01:00
if ( empty ( $details ) ) {
2010-02-13 23:35:11 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-02-13 23:35:11 +01:00
2017-12-01 00:11:00 +01:00
if ( is_object ( $details ) ) {
$details = get_object_vars ( $details );
}
2010-02-13 23:35:11 +01:00
2016-10-25 20:50:30 +02:00
$current_details = get_site ( $blog_id );
2017-12-01 00:11:00 +01:00
if ( empty ( $current_details ) ) {
2010-02-13 23:35:11 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-02-13 23:35:11 +01:00
2017-12-01 00:11:00 +01:00
$current_details = get_object_vars ( $current_details );
2010-02-13 23:35:11 +01:00
2017-12-01 00:11:00 +01:00
$details = array_merge ( $current_details , $details );
$details [ 'last_updated' ] = current_time ( 'mysql' , true );
2010-02-13 23:35:11 +01:00
$update_details = array ();
2017-12-01 00:11:00 +01:00
$fields = array ( 'site_id' , 'domain' , 'path' , 'registered' , 'last_updated' , 'public' , 'archived' , 'mature' , 'spam' , 'deleted' , 'lang_id' );
2015-01-12 02:43:22 +01:00
foreach ( array_intersect ( array_keys ( $details ), $fields ) as $field ) {
if ( 'path' === $field ) {
2015-01-12 05:21:22 +01:00
$details [ $field ] = trailingslashit ( '/' . trim ( $details [ $field ], '/' ) );
2015-01-12 02:43:22 +01:00
}
$update_details [ $field ] = $details [ $field ];
}
2010-02-13 23:35:11 +01:00
2017-12-01 00:11:00 +01:00
$result = $wpdb -> update ( $wpdb -> blogs , $update_details , array ( 'blog_id' => $blog_id ) );
2012-10-11 14:37:46 +02:00
2017-12-01 00:11:00 +01:00
if ( false === $result ) {
2012-10-11 14:37:46 +02:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-02-13 23:35:11 +01:00
// If spam status changed, issue actions.
2013-12-01 18:32:10 +01:00
if ( $details [ 'spam' ] != $current_details [ 'spam' ] ) {
if ( $details [ 'spam' ] == 1 ) {
/**
2017-03-30 06:36:43 +02:00
* Fires when the 'spam' status is added to a blog .
2013-12-01 18:32:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-01 18:32:10 +01:00
*
* @ param int $blog_id Blog ID .
*/
2012-10-11 14:37:46 +02:00
do_action ( 'make_spam_blog' , $blog_id );
2013-12-01 18:32:10 +01:00
} else {
/**
2017-03-30 06:36:43 +02:00
* Fires when the 'spam' status is removed from a blog .
2013-12-01 18:32:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-01 18:32:10 +01:00
*
* @ param int $blog_id Blog ID .
*/
2012-10-11 14:37:46 +02:00
do_action ( 'make_ham_blog' , $blog_id );
2013-12-01 18:32:10 +01:00
}
2012-10-11 14:37:46 +02:00
}
// If mature status changed, issue actions.
2013-12-01 18:32:10 +01:00
if ( $details [ 'mature' ] != $current_details [ 'mature' ] ) {
if ( $details [ 'mature' ] == 1 ) {
/**
2017-03-30 06:36:43 +02:00
* Fires when the 'mature' status is added to a blog .
2013-12-01 18:32:10 +01:00
*
* @ since 3.1 . 0
*
* @ param int $blog_id Blog ID .
*/
2012-10-11 14:37:46 +02:00
do_action ( 'mature_blog' , $blog_id );
2013-12-01 18:32:10 +01:00
} else {
/**
2017-03-30 06:36:43 +02:00
* Fires when the 'mature' status is removed from a blog .
2013-12-01 18:32:10 +01:00
*
* @ since 3.1 . 0
*
* @ param int $blog_id Blog ID .
*/
2012-10-11 14:37:46 +02:00
do_action ( 'unmature_blog' , $blog_id );
2013-12-01 18:32:10 +01:00
}
2012-10-11 14:37:46 +02:00
}
// If archived status changed, issue actions.
2013-12-01 18:32:10 +01:00
if ( $details [ 'archived' ] != $current_details [ 'archived' ] ) {
if ( $details [ 'archived' ] == 1 ) {
/**
2017-03-30 06:36:43 +02:00
* Fires when the 'archived' status is added to a blog .
2013-12-01 18:32:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-01 18:32:10 +01:00
*
* @ param int $blog_id Blog ID .
*/
2012-10-11 14:37:46 +02:00
do_action ( 'archive_blog' , $blog_id );
2013-12-01 18:32:10 +01:00
} else {
/**
2017-03-30 06:36:43 +02:00
* Fires when the 'archived' status is removed from a blog .
2013-12-01 18:32:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-01 18:32:10 +01:00
*
* @ param int $blog_id Blog ID .
*/
2012-10-11 14:37:46 +02:00
do_action ( 'unarchive_blog' , $blog_id );
2013-12-01 18:32:10 +01:00
}
2010-02-13 23:35:11 +01:00
}
2012-10-11 14:37:46 +02:00
// If deleted status changed, issue actions.
2013-12-01 18:32:10 +01:00
if ( $details [ 'deleted' ] != $current_details [ 'deleted' ] ) {
if ( $details [ 'deleted' ] == 1 ) {
/**
2017-03-30 06:36:43 +02:00
* Fires when the 'deleted' status is added to a blog .
2013-12-01 18:32:10 +01:00
*
* @ since 3.5 . 0
*
* @ param int $blog_id Blog ID .
*/
2012-10-11 14:37:46 +02:00
do_action ( 'make_delete_blog' , $blog_id );
2013-12-01 18:32:10 +01:00
} else {
/**
2017-03-30 06:36:43 +02:00
* Fires when the 'deleted' status is removed from a blog .
2013-12-01 18:32:10 +01:00
*
* @ since 3.5 . 0
*
* @ param int $blog_id Blog ID .
*/
2012-10-11 14:37:46 +02:00
do_action ( 'make_undelete_blog' , $blog_id );
2013-12-01 18:32:10 +01:00
}
2012-11-17 16:11:29 +01:00
}
2013-12-01 18:32:10 +01:00
if ( isset ( $details [ 'public' ] ) ) {
2012-08-03 19:51:42 +02:00
switch_to_blog ( $blog_id );
2013-12-01 18:32:10 +01:00
update_option ( 'blog_public' , $details [ 'public' ] );
2012-08-03 19:51:42 +02:00
restore_current_blog ();
}
2010-02-13 23:35:11 +01:00
2017-10-03 21:05:46 +02:00
clean_blog_cache ( $blog_id );
2010-02-13 23:35:11 +01:00
return true ;
}
2012-10-01 20:03:23 +02:00
/**
* Clean the blog cache
*
* @ since 3.5 . 0
*
2017-03-28 21:36:49 +02:00
* @ global bool $_wp_suspend_cache_invalidation
*
2017-10-03 20:41:48 +02:00
* @ param WP_Site | int $blog The site object or ID to be cleared from cache .
2012-10-01 20:03:23 +02:00
*/
function clean_blog_cache ( $blog ) {
2017-03-28 21:36:49 +02:00
global $_wp_suspend_cache_invalidation ;
if ( ! empty ( $_wp_suspend_cache_invalidation ) ) {
return ;
}
2017-10-03 20:41:48 +02:00
if ( empty ( $blog ) ) {
return ;
}
$blog_id = $blog ;
2017-12-01 00:11:00 +01:00
$blog = get_site ( $blog_id );
2017-10-03 20:41:48 +02:00
if ( ! $blog ) {
if ( ! is_numeric ( $blog_id ) ) {
return ;
}
// Make sure a WP_Site object exists even when the site has been deleted.
2017-12-01 00:11:00 +01:00
$blog = new WP_Site (
( object ) array (
'blog_id' => $blog_id ,
'domain' => null ,
'path' => null ,
)
);
2017-10-03 20:41:48 +02:00
}
2017-12-01 00:11:00 +01:00
$blog_id = $blog -> blog_id ;
2012-10-01 20:03:23 +02:00
$domain_path_key = md5 ( $blog -> domain . $blog -> path );
2016-01-25 22:51:26 +01:00
wp_cache_delete ( $blog_id , 'sites' );
2016-06-29 21:32:27 +02:00
wp_cache_delete ( $blog_id , 'site-details' );
2017-03-28 21:36:49 +02:00
wp_cache_delete ( $blog_id , 'blog-details' );
2017-12-01 00:11:00 +01:00
wp_cache_delete ( $blog_id . 'short' , 'blog-details' );
2017-03-28 21:36:49 +02:00
wp_cache_delete ( $domain_path_key , 'blog-lookup' );
wp_cache_delete ( $domain_path_key , 'blog-id-cache' );
2012-10-01 20:03:23 +02:00
wp_cache_delete ( 'current_blog_' . $blog -> domain , 'site-options' );
wp_cache_delete ( 'current_blog_' . $blog -> domain . $blog -> path , 'site-options' );
2016-04-14 06:19:27 +02:00
/**
* Fires immediately after a site has been removed from the object cache .
*
* @ since 4.6 . 0
*
2016-07-20 21:33:30 +02:00
* @ param int $id Blog ID .
* @ param WP_Site $blog Site object .
2016-04-14 06:19:27 +02:00
* @ param string $domain_path_key md5 hash of domain and path .
*/
do_action ( 'clean_site_cache' , $blog_id , $blog , $domain_path_key );
2016-06-02 02:59:27 +02:00
wp_cache_set ( 'last_changed' , microtime (), 'sites' );
2017-10-03 20:41:48 +02:00
/**
* Fires after the blog details cache is cleared .
*
* @ since 3.4 . 0
* @ deprecated 4.9 . 0 Use clean_site_cache
*
* @ param int $blog_id Blog ID .
*/
do_action_deprecated ( 'refresh_blog_details' , array ( $blog_id ), '4.9.0' , 'clean_site_cache' );
2012-10-01 20:03:23 +02:00
}
2017-03-19 17:22:45 +01:00
/**
* Cleans the site details cache for a site .
*
* @ since 4.7 . 4
*
* @ param int $site_id Optional . Site ID . Default is the current site ID .
*/
2017-03-25 16:31:43 +01:00
function clean_site_details_cache ( $site_id = 0 ) {
2017-03-19 17:22:45 +01:00
$site_id = ( int ) $site_id ;
if ( ! $site_id ) {
$site_id = get_current_blog_id ();
}
wp_cache_delete ( $site_id , 'site-details' );
wp_cache_delete ( $site_id , 'blog-details' );
}
2016-05-20 06:41:27 +02:00
/**
* Retrieves site data given a site ID or site object .
*
* Site data will be cached and returned after being passed through a filter .
* If the provided site is empty , the current site global will be used .
*
* @ since 4.6 . 0
*
2016-06-14 20:14:27 +02:00
* @ param WP_Site | int | null $site Optional . Site to retrieve . Default is the current site .
* @ return WP_Site | null The site object or null if not found .
2016-05-20 06:41:27 +02:00
*/
2016-08-09 20:12:31 +02:00
function get_site ( $site = null ) {
2016-08-09 00:33:28 +02:00
if ( empty ( $site ) ) {
$site = get_current_blog_id ();
2016-05-20 06:41:27 +02:00
}
if ( $site instanceof WP_Site ) {
$_site = $site ;
} elseif ( is_object ( $site ) ) {
$_site = new WP_Site ( $site );
} else {
$_site = WP_Site :: get_instance ( $site );
}
if ( ! $_site ) {
return null ;
}
/**
* Fires after a site is retrieved .
*
* @ since 4.6 . 0
*
2016-06-14 20:14:27 +02:00
* @ param WP_Site $_site Site data .
2016-05-20 06:41:27 +02:00
*/
$_site = apply_filters ( 'get_site' , $_site );
return $_site ;
}
2016-05-21 00:04:27 +02:00
/**
* Adds any sites from the given ids to the cache that do not already exist in cache .
*
* @ since 4.6 . 0
* @ access private
*
* @ see update_site_cache ()
* @ global wpdb $wpdb WordPress database abstraction object .
*
* @ param array $ids ID list .
*/
function _prime_site_caches ( $ids ) {
global $wpdb ;
$non_cached_ids = _get_non_cached_ids ( $ids , 'sites' );
if ( ! empty ( $non_cached_ids ) ) {
2017-12-01 00:11:00 +01:00
$fresh_sites = $wpdb -> get_results ( sprintf ( " SELECT * FROM $wpdb->blogs WHERE blog_id IN (%s) " , join ( ',' , array_map ( 'intval' , $non_cached_ids ) ) ) );
2016-05-21 00:04:27 +02:00
update_site_cache ( $fresh_sites );
}
}
/**
* Updates sites in cache .
*
* @ since 4.6 . 0
*
2016-08-09 20:12:31 +02:00
* @ param array $sites Array of site objects .
2016-05-21 00:04:27 +02:00
*/
2016-08-09 20:12:31 +02:00
function update_site_cache ( $sites ) {
2016-05-21 00:04:27 +02:00
if ( ! $sites ) {
return ;
}
foreach ( $sites as $site ) {
wp_cache_add ( $site -> blog_id , $site , 'sites' );
wp_cache_add ( $site -> blog_id . 'short' , $site , 'blog-details' );
}
}
2016-06-02 01:21:27 +02:00
/**
* Retrieves a list of sites matching requested arguments .
*
* @ since 4.6 . 0
2017-03-27 21:48:52 +02:00
* @ since 4.8 . 0 Introduced the 'lang_id' , 'lang__in' , and 'lang__not_in' parameters .
2016-06-02 01:21:27 +02:00
*
* @ see WP_Site_Query :: parse_query ()
*
* @ param string | array $args {
* Optional . Array or query string of site query parameters . Default empty .
*
* @ type array $site__in Array of site IDs to include . Default empty .
* @ type array $site__not_in Array of site IDs to exclude . Default empty .
* @ type bool $count Whether to return a site count ( true ) or array of site objects .
* Default false .
* @ type array $date_query Date query clauses to limit sites by . See WP_Date_Query .
* Default null .
2016-09-13 15:20:35 +02:00
* @ type string $fields Site fields to return . Accepts 'ids' ( returns an array of site IDs )
* or empty ( returns an array of complete site objects ) . Default empty .
2016-06-02 01:21:27 +02:00
* @ type int $ID A site ID to only return that site . Default empty .
2016-09-13 15:20:35 +02:00
* @ type int $number Maximum number of sites to retrieve . Default 100.
2016-06-02 01:21:27 +02:00
* @ type int $offset Number of sites to offset the query . Used to build LIMIT clause .
* Default 0.
* @ type bool $no_found_rows Whether to disable the `SQL_CALC_FOUND_ROWS` query . Default true .
* @ type string | array $orderby Site status or array of statuses . Accepts 'id' , 'domain' , 'path' ,
* 'network_id' , 'last_updated' , 'registered' , 'domain_length' ,
* 'path_length' , 'site__in' and 'network__in' . Also accepts false ,
* an empty array , or 'none' to disable `ORDER BY` clause .
* Default 'id' .
* @ type string $order How to order retrieved sites . Accepts 'ASC' , 'DESC' . Default 'ASC' .
2016-09-13 15:20:35 +02:00
* @ type int $network_id Limit results to those affiliated with a given network ID . If 0 ,
* include all networks . Default 0.
2016-06-02 01:21:27 +02:00
* @ type array $network__in Array of network IDs to include affiliated sites for . Default empty .
* @ type array $network__not_in Array of network IDs to exclude affiliated sites for . Default empty .
2016-09-13 15:10:32 +02:00
* @ type string $domain Limit results to those affiliated with a given domain . Default empty .
2016-06-02 01:21:27 +02:00
* @ type array $domain__in Array of domains to include affiliated sites for . Default empty .
* @ type array $domain__not_in Array of domains to exclude affiliated sites for . Default empty .
2016-09-13 15:10:32 +02:00
* @ type string $path Limit results to those affiliated with a given path . Default empty .
2016-06-02 01:21:27 +02:00
* @ type array $path__in Array of paths to include affiliated sites for . Default empty .
* @ type array $path__not_in Array of paths to exclude affiliated sites for . Default empty .
* @ type int $public Limit results to public sites . Accepts '1' or '0' . Default empty .
* @ type int $archived Limit results to archived sites . Accepts '1' or '0' . Default empty .
* @ type int $mature Limit results to mature sites . Accepts '1' or '0' . Default empty .
* @ type int $spam Limit results to spam sites . Accepts '1' or '0' . Default empty .
* @ type int $deleted Limit results to deleted sites . Accepts '1' or '0' . Default empty .
2017-03-27 21:48:52 +02:00
* @ type int $lang_id Limit results to a language ID . Default empty .
* @ type array $lang__in Array of language IDs to include affiliated sites for . Default empty .
* @ type array $lang__not_in Array of language IDs to exclude affiliated sites for . Default empty .
2016-06-02 01:21:27 +02:00
* @ type string $search Search term ( s ) to retrieve matching sites for . Default empty .
2016-09-13 15:20:35 +02:00
* @ type array $search_columns Array of column names to be searched . Accepts 'domain' and 'path' .
* Default empty array .
2017-10-09 16:26:49 +02:00
* @ type bool $update_site_cache Whether to prime the cache for found sites . Default true .
2016-06-02 01:21:27 +02:00
* }
2017-10-18 19:39:46 +02:00
* @ return array | int List of WP_Site objects , a list of site ids when 'fields' is set to 'ids' ,
* or the number of sites when 'count' is passed as a query var .
2016-06-02 01:21:27 +02:00
*/
function get_sites ( $args = array () ) {
$query = new WP_Site_Query ();
return $query -> query ( $args );
}
2012-08-08 19:11:15 +02:00
/**
* Retrieve option value for a given blog id based on name of option .
*
* If the option does not exist or does not have a value , then the return value
* will be false . This is useful to check whether you need to install an option
* and is commonly used during installation of plugin options and to test
* whether upgrading is required .
*
* If the option was serialized then it will be unserialized when it is returned .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2012-08-08 19:11:15 +02:00
*
2015-05-26 23:51:31 +02:00
* @ param int $id A blog ID . Can be null to refer to the current blog .
* @ param string $option Name of option to retrieve . Expected to not be SQL - escaped .
* @ param mixed $default Optional . Default value to return if the option does not exist .
2012-08-08 19:11:15 +02:00
* @ return mixed Value set for the option .
*/
function get_blog_option ( $id , $option , $default = false ) {
$id = ( int ) $id ;
2017-12-01 00:11:00 +01:00
if ( empty ( $id ) ) {
2012-08-08 19:11:15 +02:00
$id = get_current_blog_id ();
2017-12-01 00:11:00 +01:00
}
2012-08-08 19:11:15 +02:00
2017-12-01 00:11:00 +01:00
if ( get_current_blog_id () == $id ) {
2012-08-08 19:11:15 +02:00
return get_option ( $option , $default );
2017-12-01 00:11:00 +01:00
}
2012-08-08 19:11:15 +02:00
switch_to_blog ( $id );
2012-08-23 18:04:39 +02:00
$value = get_option ( $option , $default );
2012-08-08 19:11:15 +02:00
restore_current_blog ();
2013-12-01 18:32:10 +01:00
/**
2016-05-22 20:50:28 +02:00
* Filters a blog option value .
2013-12-01 18:32:10 +01:00
*
2014-11-30 13:10:23 +01:00
* The dynamic portion of the hook name , `$option` , refers to the blog option name .
2013-12-01 18:32:10 +01:00
*
* @ since 3.5 . 0
*
* @ param string $value The option value .
* @ param int $id Blog ID .
*/
return apply_filters ( " blog_option_ { $option } " , $value , $id );
2012-08-08 19:11:15 +02:00
}
/**
* Add a new option for a given blog id .
*
* You do not need to serialize values . If the value needs to be serialized , then
* it will be serialized before it is inserted into the database . Remember ,
* resources can not be serialized or added as an option .
*
* You can create options without values and then update the values later .
* Existing options will not be updated and checks are performed to ensure that you
* aren ' t adding a protected WordPress option . Care should be taken to not name
* options the same as the ones which are protected .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2012-08-08 19:11:15 +02:00
*
2015-05-26 23:51:31 +02:00
* @ param int $id A blog ID . Can be null to refer to the current blog .
2012-08-08 19:11:15 +02:00
* @ param string $option Name of option to add . Expected to not be SQL - escaped .
2015-05-26 23:51:31 +02:00
* @ param mixed $value Optional . Option value , can be anything . Expected to not be SQL - escaped .
2012-08-08 19:11:15 +02:00
* @ return bool False if option was not added and true if option was added .
*/
function add_blog_option ( $id , $option , $value ) {
$id = ( int ) $id ;
2017-12-01 00:11:00 +01:00
if ( empty ( $id ) ) {
2012-08-08 19:11:15 +02:00
$id = get_current_blog_id ();
2017-12-01 00:11:00 +01:00
}
2012-08-08 19:11:15 +02:00
2017-12-01 00:11:00 +01:00
if ( get_current_blog_id () == $id ) {
2012-08-08 19:11:15 +02:00
return add_option ( $option , $value );
2017-12-01 00:11:00 +01:00
}
2012-08-08 19:11:15 +02:00
switch_to_blog ( $id );
$return = add_option ( $option , $value );
restore_current_blog ();
return $return ;
}
/**
* Removes option by name for a given blog id . Prevents removal of protected WordPress options .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2012-08-08 19:11:15 +02:00
*
2015-05-26 23:51:31 +02:00
* @ param int $id A blog ID . Can be null to refer to the current blog .
2012-08-08 19:11:15 +02:00
* @ param string $option Name of option to remove . Expected to not be SQL - escaped .
* @ return bool True , if option is successfully deleted . False on failure .
*/
function delete_blog_option ( $id , $option ) {
$id = ( int ) $id ;
2017-12-01 00:11:00 +01:00
if ( empty ( $id ) ) {
2012-08-08 19:11:15 +02:00
$id = get_current_blog_id ();
2017-12-01 00:11:00 +01:00
}
2012-08-08 19:11:15 +02:00
2017-12-01 00:11:00 +01:00
if ( get_current_blog_id () == $id ) {
2012-08-08 19:11:15 +02:00
return delete_option ( $option );
2017-12-01 00:11:00 +01:00
}
2012-08-08 19:11:15 +02:00
switch_to_blog ( $id );
$return = delete_option ( $option );
restore_current_blog ();
return $return ;
}
/**
* Update an option for a particular blog .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2012-08-08 19:11:15 +02:00
*
2016-01-09 02:45:26 +01:00
* @ param int $id The blog id .
* @ param string $option The option key .
* @ param mixed $value The option value .
* @ param mixed $deprecated Not used .
2013-04-29 14:49:33 +02:00
* @ return bool True on success , false on failure .
2012-08-08 19:11:15 +02:00
*/
function update_blog_option ( $id , $option , $value , $deprecated = null ) {
$id = ( int ) $id ;
2017-12-01 00:11:00 +01:00
if ( null !== $deprecated ) {
2016-07-06 14:40:29 +02:00
_deprecated_argument ( __FUNCTION__ , '3.1.0' );
2017-12-01 00:11:00 +01:00
}
2012-08-08 19:11:15 +02:00
2017-12-01 00:11:00 +01:00
if ( get_current_blog_id () == $id ) {
2012-08-08 19:11:15 +02:00
return update_option ( $option , $value );
2017-12-01 00:11:00 +01:00
}
2012-08-08 19:11:15 +02:00
switch_to_blog ( $id );
$return = update_option ( $option , $value );
restore_current_blog ();
return $return ;
}
2010-10-01 03:32:31 +02:00
/**
* Switch the current blog .
*
* This function is useful if you need to pull posts , or other information ,
* from other blogs . You can switch back afterwards using restore_current_blog () .
*
* Things that aren ' t switched :
* - plugins . See #14941
*
* @ see restore_current_blog ()
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-01 03:32:31 +02:00
*
2015-05-26 23:51:31 +02:00
* @ global wpdb $wpdb
* @ global int $blog_id
* @ global array $_wp_switched_stack
* @ global bool $switched
* @ global string $table_prefix
* @ global WP_Object_Cache $wp_object_cache
*
* @ param int $new_blog The id of the blog you want to switch to . Default : current blog
2012-08-15 17:56:14 +02:00
* @ param bool $deprecated Deprecated argument
2015-05-26 23:51:31 +02:00
* @ return true Always returns True .
2010-10-01 03:32:31 +02:00
*/
2012-08-09 18:28:15 +02:00
function switch_to_blog ( $new_blog , $deprecated = null ) {
2017-09-27 23:44:44 +02:00
global $wpdb ;
2010-02-13 23:35:11 +01:00
2016-08-31 06:55:54 +02:00
$blog_id = get_current_blog_id ();
if ( empty ( $new_blog ) ) {
$new_blog = $blog_id ;
}
2010-02-13 23:35:11 +01:00
2016-08-31 06:55:54 +02:00
$GLOBALS [ '_wp_switched_stack' ][] = $blog_id ;
2010-02-13 23:35:11 +01:00
2013-12-01 18:32:10 +01:00
/*
* If we 're switching to the same blog id that we' re on ,
* set the right vars , do the associated actions , but skip
* the extra unnecessary work
*/
2016-08-31 06:55:54 +02:00
if ( $new_blog == $blog_id ) {
2013-12-01 18:32:10 +01:00
/**
* Fires when the blog is switched .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-01 18:32:10 +01:00
*
* @ param int $new_blog New blog ID .
* @ param int $new_blog Blog ID .
*/
2012-08-09 18:28:15 +02:00
do_action ( 'switch_blog' , $new_blog , $new_blog );
2012-08-22 05:34:00 +02:00
$GLOBALS [ 'switched' ] = true ;
2010-02-13 23:35:11 +01:00
return true ;
}
2012-08-09 18:28:15 +02:00
$wpdb -> set_blog_id ( $new_blog );
2013-09-25 01:41:10 +02:00
$GLOBALS [ 'table_prefix' ] = $wpdb -> get_blog_prefix ();
2017-12-01 00:11:00 +01:00
$prev_blog_id = $blog_id ;
$GLOBALS [ 'blog_id' ] = $new_blog ;
2010-10-19 09:48:22 +02:00
2012-08-02 20:31:14 +02:00
if ( function_exists ( 'wp_cache_switch_to_blog' ) ) {
2012-08-09 18:28:15 +02:00
wp_cache_switch_to_blog ( $new_blog );
2012-08-02 20:31:14 +02:00
} else {
2012-08-09 18:28:15 +02:00
global $wp_object_cache ;
2016-08-31 06:55:54 +02:00
if ( is_object ( $wp_object_cache ) && isset ( $wp_object_cache -> global_groups ) ) {
2012-08-02 20:31:14 +02:00
$global_groups = $wp_object_cache -> global_groups ;
2016-08-31 06:55:54 +02:00
} else {
2012-08-02 20:31:14 +02:00
$global_groups = false ;
2016-08-31 06:55:54 +02:00
}
2012-08-02 20:31:14 +02:00
wp_cache_init ();
2012-08-09 18:28:15 +02:00
if ( function_exists ( 'wp_cache_add_global_groups' ) ) {
2015-02-06 04:24:23 +01:00
if ( is_array ( $global_groups ) ) {
2012-08-02 20:31:14 +02:00
wp_cache_add_global_groups ( $global_groups );
2015-02-06 04:24:23 +01:00
} else {
2017-03-28 23:08:47 +02:00
wp_cache_add_global_groups ( array ( 'users' , 'userlogins' , 'usermeta' , 'user_meta' , 'useremail' , 'userslugs' , 'site-transient' , 'site-options' , 'blog-lookup' , 'blog-details' , 'rss' , 'global-posts' , 'blog-id-cache' , 'networks' , 'sites' , 'site-details' ) );
2015-02-06 04:24:23 +01:00
}
2016-06-01 23:26:27 +02:00
wp_cache_add_non_persistent_groups ( array ( 'counts' , 'plugins' ) );
2012-08-02 20:31:14 +02:00
}
2010-02-13 23:35:11 +01:00
}
2013-12-01 18:32:10 +01:00
/** This filter is documented in wp-includes/ms-blogs.php */
2012-08-09 18:28:15 +02:00
do_action ( 'switch_blog' , $new_blog , $prev_blog_id );
2012-08-22 05:34:00 +02:00
$GLOBALS [ 'switched' ] = true ;
2012-08-09 18:28:15 +02:00
2010-02-13 23:35:11 +01:00
return true ;
}
2010-10-01 03:32:31 +02:00
/**
* Restore the current blog , after calling switch_to_blog ()
*
* @ see switch_to_blog ()
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-01 03:32:31 +02:00
*
2015-05-26 23:51:31 +02:00
* @ global wpdb $wpdb
* @ global array $_wp_switched_stack
* @ global int $blog_id
* @ global bool $switched
* @ global string $table_prefix
* @ global WP_Object_Cache $wp_object_cache
*
2012-08-15 17:56:14 +02:00
* @ return bool True on success , false if we ' re already on the current blog
2010-10-01 03:32:31 +02:00
*/
2010-02-13 23:35:11 +01:00
function restore_current_blog () {
2017-09-27 23:44:44 +02:00
global $wpdb ;
2010-02-13 23:35:11 +01:00
2016-08-31 06:55:54 +02:00
if ( empty ( $GLOBALS [ '_wp_switched_stack' ] ) ) {
2010-02-13 23:35:11 +01:00
return false ;
2016-08-31 06:55:54 +02:00
}
2010-02-13 23:35:11 +01:00
2017-12-01 00:11:00 +01:00
$blog = array_pop ( $GLOBALS [ '_wp_switched_stack' ] );
2016-08-31 06:55:54 +02:00
$blog_id = get_current_blog_id ();
2010-02-13 23:35:11 +01:00
2016-08-31 06:55:54 +02:00
if ( $blog_id == $blog ) {
2013-12-01 18:32:10 +01:00
/** This filter is documented in wp-includes/ms-blogs.php */
2010-02-13 23:35:11 +01:00
do_action ( 'switch_blog' , $blog , $blog );
2012-08-09 18:28:15 +02:00
// If we still have items in the switched stack, consider ourselves still 'switched'
2012-08-22 05:34:00 +02:00
$GLOBALS [ 'switched' ] = ! empty ( $GLOBALS [ '_wp_switched_stack' ] );
2010-02-13 23:35:11 +01:00
return true ;
}
2012-08-09 18:28:15 +02:00
$wpdb -> set_blog_id ( $blog );
2017-12-01 00:11:00 +01:00
$prev_blog_id = $blog_id ;
$GLOBALS [ 'blog_id' ] = $blog ;
2013-09-25 01:41:10 +02:00
$GLOBALS [ 'table_prefix' ] = $wpdb -> get_blog_prefix ();
2010-02-13 23:35:11 +01:00
2012-08-02 20:31:14 +02:00
if ( function_exists ( 'wp_cache_switch_to_blog' ) ) {
2012-08-09 18:28:15 +02:00
wp_cache_switch_to_blog ( $blog );
2012-08-02 20:31:14 +02:00
} else {
2012-08-09 18:28:15 +02:00
global $wp_object_cache ;
2016-08-31 06:55:54 +02:00
if ( is_object ( $wp_object_cache ) && isset ( $wp_object_cache -> global_groups ) ) {
2012-08-02 20:31:14 +02:00
$global_groups = $wp_object_cache -> global_groups ;
2016-08-31 06:55:54 +02:00
} else {
2012-08-02 20:31:14 +02:00
$global_groups = false ;
2016-08-31 06:55:54 +02:00
}
2012-11-17 16:11:29 +01:00
2012-08-02 20:31:14 +02:00
wp_cache_init ();
2012-08-09 18:28:15 +02:00
if ( function_exists ( 'wp_cache_add_global_groups' ) ) {
2015-02-06 04:24:23 +01:00
if ( is_array ( $global_groups ) ) {
2012-08-02 20:31:14 +02:00
wp_cache_add_global_groups ( $global_groups );
2015-02-06 04:24:23 +01:00
} else {
2017-03-28 23:08:47 +02:00
wp_cache_add_global_groups ( array ( 'users' , 'userlogins' , 'usermeta' , 'user_meta' , 'useremail' , 'userslugs' , 'site-transient' , 'site-options' , 'blog-lookup' , 'blog-details' , 'rss' , 'global-posts' , 'blog-id-cache' , 'networks' , 'sites' , 'site-details' ) );
2015-02-06 04:24:23 +01:00
}
2016-06-01 23:26:27 +02:00
wp_cache_add_non_persistent_groups ( array ( 'counts' , 'plugins' ) );
2012-08-02 20:31:14 +02:00
}
2010-02-13 23:35:11 +01:00
}
2013-12-01 18:32:10 +01:00
/** This filter is documented in wp-includes/ms-blogs.php */
2012-08-09 18:28:15 +02:00
do_action ( 'switch_blog' , $blog , $prev_blog_id );
// If we still have items in the switched stack, consider ourselves still 'switched'
2012-08-22 05:34:00 +02:00
$GLOBALS [ 'switched' ] = ! empty ( $GLOBALS [ '_wp_switched_stack' ] );
2010-02-13 23:35:11 +01:00
return true ;
}
2017-09-27 23:44:44 +02:00
/**
* Switches the initialized roles and current user capabilities to another site .
*
* @ since 4.9 . 0
*
* @ param int $new_site_id New site ID .
* @ param int $old_site_id Old site ID .
*/
function wp_switch_roles_and_user ( $new_site_id , $old_site_id ) {
if ( $new_site_id == $old_site_id ) {
return ;
}
if ( ! did_action ( 'init' ) ) {
return ;
}
wp_roles () -> for_site ( $new_site_id );
wp_get_current_user () -> for_site ( $new_site_id );
}
2012-08-20 22:48:35 +02:00
/**
* Determines if switch_to_blog () is in effect
*
* @ since 3.5 . 0
*
2015-05-26 23:51:31 +02:00
* @ global array $_wp_switched_stack
*
2012-08-20 22:48:35 +02:00
* @ return bool True if switched , false otherwise .
*/
2012-08-20 22:56:34 +02:00
function ms_is_switched () {
2012-09-26 19:02:44 +02:00
return ! empty ( $GLOBALS [ '_wp_switched_stack' ] );
2012-08-20 22:48:35 +02:00
}
2010-10-01 03:32:31 +02:00
/**
* Check if a particular blog is archived .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-01 03:32:31 +02:00
*
* @ param int $id The blog id
2010-10-08 04:35:06 +02:00
* @ return string Whether the blog is archived or not
2010-10-01 03:32:31 +02:00
*/
2010-02-13 23:35:11 +01:00
function is_archived ( $id ) {
2017-12-01 00:11:00 +01:00
return get_blog_status ( $id , 'archived' );
2010-02-13 23:35:11 +01:00
}
2010-10-01 03:32:31 +02:00
/**
* Update the 'archived' status of a particular blog .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-01 03:32:31 +02:00
*
2015-05-26 23:51:31 +02:00
* @ param int $id The blog id
2010-10-01 03:32:31 +02:00
* @ param string $archived The new status
* @ return string $archived
*/
2010-02-13 23:35:11 +01:00
function update_archived ( $id , $archived ) {
2017-12-01 00:11:00 +01:00
update_blog_status ( $id , 'archived' , $archived );
2010-02-13 23:35:11 +01:00
return $archived ;
}
/**
* Update a blog details field .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-02-13 23:35:11 +01:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-26 23:51:31 +02:00
*
* @ param int $blog_id BLog ID
* @ param string $pref A field name
* @ param string $value Value for $pref
* @ param null $deprecated
* @ return string | false $value
2010-02-13 23:35:11 +01:00
*/
2010-12-01 23:12:09 +01:00
function update_blog_status ( $blog_id , $pref , $value , $deprecated = null ) {
2010-02-13 23:35:11 +01:00
global $wpdb ;
2017-12-01 00:11:00 +01:00
if ( null !== $deprecated ) {
2016-07-06 14:40:29 +02:00
_deprecated_argument ( __FUNCTION__ , '3.1.0' );
2017-12-01 00:11:00 +01:00
}
2010-12-01 23:12:09 +01:00
2017-12-01 00:11:00 +01:00
if ( ! in_array ( $pref , array ( 'site_id' , 'domain' , 'path' , 'registered' , 'last_updated' , 'public' , 'archived' , 'mature' , 'spam' , 'deleted' , 'lang_id' ) ) ) {
2010-02-13 23:35:11 +01:00
return $value ;
2017-12-01 00:11:00 +01:00
}
2010-02-13 23:35:11 +01:00
2017-12-01 00:11:00 +01:00
$result = $wpdb -> update (
$wpdb -> blogs , array (
$pref => $value ,
'last_updated' => current_time ( 'mysql' , true ),
), array ( 'blog_id' => $blog_id )
);
2010-02-13 23:35:11 +01:00
2017-12-01 00:11:00 +01:00
if ( false === $result ) {
2012-10-11 14:37:46 +02:00
return false ;
2017-12-01 00:11:00 +01:00
}
2012-10-11 14:37:46 +02:00
2017-10-03 21:05:46 +02:00
clean_blog_cache ( $blog_id );
2010-02-13 23:35:11 +01:00
2013-12-01 18:32:10 +01:00
if ( 'spam' == $pref ) {
if ( $value == 1 ) {
/** This filter is documented in wp-includes/ms-blogs.php */
do_action ( 'make_spam_blog' , $blog_id );
} else {
/** This filter is documented in wp-includes/ms-blogs.php */
do_action ( 'make_ham_blog' , $blog_id );
}
} elseif ( 'mature' == $pref ) {
if ( $value == 1 ) {
/** This filter is documented in wp-includes/ms-blogs.php */
do_action ( 'mature_blog' , $blog_id );
} else {
/** This filter is documented in wp-includes/ms-blogs.php */
do_action ( 'unmature_blog' , $blog_id );
}
} elseif ( 'archived' == $pref ) {
if ( $value == 1 ) {
/** This filter is documented in wp-includes/ms-blogs.php */
do_action ( 'archive_blog' , $blog_id );
} else {
/** This filter is documented in wp-includes/ms-blogs.php */
do_action ( 'unarchive_blog' , $blog_id );
}
} elseif ( 'deleted' == $pref ) {
if ( $value == 1 ) {
/** This filter is documented in wp-includes/ms-blogs.php */
do_action ( 'make_delete_blog' , $blog_id );
} else {
/** This filter is documented in wp-includes/ms-blogs.php */
do_action ( 'make_undelete_blog' , $blog_id );
}
} elseif ( 'public' == $pref ) {
/**
* Fires after the current blog 's ' public ' setting is updated .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-01 18:32:10 +01:00
*
* @ param int $blog_id Blog ID .
* @ param string $value The value of blog status .
2017-12-01 00:11:00 +01:00
*/
2013-03-25 10:29:58 +01:00
do_action ( 'update_blog_public' , $blog_id , $value ); // Moved here from update_blog_public().
2013-12-01 18:32:10 +01:00
}
2010-02-13 23:35:11 +01:00
return $value ;
}
2010-10-01 03:32:31 +02:00
/**
* Get a blog details field .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-01 03:32:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-26 23:51:31 +02:00
*
* @ param int $id The blog id
2010-10-01 03:32:31 +02:00
* @ param string $pref A field name
2015-05-26 23:51:31 +02:00
* @ return bool | string | null $value
2010-10-01 03:32:31 +02:00
*/
2010-02-13 23:35:11 +01:00
function get_blog_status ( $id , $pref ) {
global $wpdb ;
2016-10-25 20:50:30 +02:00
$details = get_site ( $id );
2017-12-01 00:11:00 +01:00
if ( $details ) {
2010-02-13 23:35:11 +01:00
return $details -> $pref ;
2017-12-01 00:11:00 +01:00
}
2010-02-13 23:35:11 +01:00
2017-12-01 00:11:00 +01:00
return $wpdb -> get_var ( $wpdb -> prepare ( " SELECT %s FROM { $wpdb -> blogs } WHERE blog_id = %d " , $pref , $id ) );
2010-02-13 23:35:11 +01:00
}
2010-10-01 03:32:31 +02:00
/**
* Get a list of most recently updated blogs .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2010-10-19 09:48:22 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-26 23:51:31 +02:00
*
2010-11-18 20:12:48 +01:00
* @ param mixed $deprecated Not used
2015-05-26 23:51:31 +02:00
* @ param int $start The offset
* @ param int $quantity The maximum number of blogs to retrieve . Default is 40.
2010-10-01 03:32:31 +02:00
* @ return array The list of blogs
*/
2010-02-13 23:35:11 +01:00
function get_last_updated ( $deprecated = '' , $start = 0 , $quantity = 40 ) {
global $wpdb ;
2010-12-13 22:21:50 +01:00
2017-12-01 00:11:00 +01:00
if ( ! empty ( $deprecated ) ) {
2010-11-18 20:12:48 +01:00
_deprecated_argument ( __FUNCTION__ , 'MU' ); // never used
2017-12-01 00:11:00 +01:00
}
2010-12-13 22:21:50 +01:00
2017-08-12 15:11:43 +02:00
return $wpdb -> get_results ( $wpdb -> prepare ( " SELECT blog_id, domain, path FROM $wpdb->blogs WHERE site_id = %d AND public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' AND last_updated != '0000-00-00 00:00:00' ORDER BY last_updated DESC limit %d, %d " , get_current_network_id (), $start , $quantity ), ARRAY_A );
2010-02-13 23:35:11 +01:00
}
2016-06-28 23:28:29 +02:00
/**
* Retrieves a list of networks .
*
* @ since 4.6 . 0
*
2016-07-13 18:04:29 +02:00
* @ param string | array $args Optional . Array or string of arguments . See WP_Network_Query :: parse_query ()
* for information on accepted arguments . Default empty array .
2017-10-18 20:13:50 +02:00
* @ return array | int List of WP_Network objects , a list of network ids when 'fields' is set to 'ids' ,
* or the number of networks when 'count' is passed as a query var .
2016-06-28 23:28:29 +02:00
*/
2016-07-13 07:30:29 +02:00
function get_networks ( $args = array () ) {
2016-06-28 23:28:29 +02:00
$query = new WP_Network_Query ();
return $query -> query ( $args );
}
2016-06-28 23:18:30 +02:00
/**
* Retrieves network data given a network ID or network object .
*
* Network data will be cached and returned after being passed through a filter .
* If the provided network is empty , the current network global will be used .
*
* @ since 4.6 . 0
*
2016-09-20 23:39:29 +02:00
* @ global WP_Network $current_site
*
2016-08-09 20:12:31 +02:00
* @ param WP_Network | int | null $network Optional . Network to retrieve . Default is the current network .
2016-06-28 23:18:30 +02:00
* @ return WP_Network | null The network object or null if not found .
*/
2016-08-09 20:12:31 +02:00
function get_network ( $network = null ) {
2016-09-20 23:39:29 +02:00
global $current_site ;
2016-06-28 23:18:30 +02:00
if ( empty ( $network ) && isset ( $current_site ) ) {
$network = $current_site ;
}
if ( $network instanceof WP_Network ) {
$_network = $network ;
} elseif ( is_object ( $network ) ) {
$_network = new WP_Network ( $network );
} else {
$_network = WP_Network :: get_instance ( $network );
}
if ( ! $_network ) {
return null ;
}
/**
* Fires after a network is retrieved .
*
* @ since 4.6 . 0
*
* @ param WP_Network $_network Network data .
*/
$_network = apply_filters ( 'get_network' , $_network );
return $_network ;
}
2016-06-28 23:27:30 +02:00
/**
* Removes a network from the object cache .
*
* @ since 4.6 . 0
*
2017-03-28 21:36:49 +02:00
* @ global bool $_wp_suspend_cache_invalidation
*
2016-06-28 23:27:30 +02:00
* @ param int | array $ids Network ID or an array of network IDs to remove from cache .
*/
function clean_network_cache ( $ids ) {
2017-03-28 21:36:49 +02:00
global $_wp_suspend_cache_invalidation ;
if ( ! empty ( $_wp_suspend_cache_invalidation ) ) {
return ;
}
2016-06-28 23:27:30 +02:00
foreach ( ( array ) $ids as $id ) {
wp_cache_delete ( $id , 'networks' );
/**
* Fires immediately after a network has been removed from the object cache .
*
* @ since 4.6 . 0
*
* @ param int $id Network ID .
*/
do_action ( 'clean_network_cache' , $id );
}
wp_cache_set ( 'last_changed' , microtime (), 'networks' );
}
/**
* Updates the network cache of given networks .
*
* Will add the networks in $networks to the cache . If network ID already exists
* in the network cache then it will not be updated . The network is added to the
* cache using the network group with the key using the ID of the networks .
*
* @ since 4.6 . 0
*
* @ param array $networks Array of network row objects .
*/
function update_network_cache ( $networks ) {
foreach ( ( array ) $networks as $network ) {
wp_cache_add ( $network -> id , $network , 'networks' );
}
}
/**
* Adds any networks from the given IDs to the cache that do not already exist in cache .
*
* @ since 4.6 . 0
* @ access private
*
* @ see update_network_cache ()
* @ global wpdb $wpdb WordPress database abstraction object .
*
* @ param array $network_ids Array of network IDs .
*/
function _prime_network_caches ( $network_ids ) {
global $wpdb ;
$non_cached_ids = _get_non_cached_ids ( $network_ids , 'networks' );
2017-12-01 00:11:00 +01:00
if ( ! empty ( $non_cached_ids ) ) {
$fresh_networks = $wpdb -> get_results ( sprintf ( " SELECT $wpdb->site .* FROM $wpdb->site WHERE id IN (%s) " , join ( ',' , array_map ( 'intval' , $non_cached_ids ) ) ) );
2016-06-28 23:27:30 +02:00
update_network_cache ( $fresh_networks );
}
}
2011-11-03 18:06:45 +01:00
/**
2017-10-02 05:20:47 +02:00
* Handler for updating the site ' s last updated date when a post is published or
* an already published post is changed .
2011-11-03 18:06:45 +01:00
*
* @ since 3.3 . 0
*
* @ param string $new_status The new post status
* @ param string $old_status The old post status
2015-05-26 23:51:31 +02:00
* @ param object $post Post object
2011-11-03 18:06:45 +01:00
*/
function _update_blog_date_on_post_publish ( $new_status , $old_status , $post ) {
$post_type_obj = get_post_type_object ( $post -> post_type );
2014-07-29 02:51:17 +02:00
if ( ! $post_type_obj || ! $post_type_obj -> public ) {
2011-11-03 18:06:45 +01:00
return ;
2014-07-29 02:51:17 +02:00
}
2011-11-03 18:06:45 +01:00
2014-07-29 02:51:17 +02:00
if ( 'publish' != $new_status && 'publish' != $old_status ) {
2011-11-03 18:06:45 +01:00
return ;
2014-07-29 02:51:17 +02:00
}
2011-11-03 18:06:45 +01:00
// Post was freshly published, published post was saved, or published post was unpublished.
wpmu_update_blogs_date ();
}
2012-04-13 19:30:37 +02:00
/**
2017-10-02 05:20:47 +02:00
* Handler for updating the current site ' s last updated date when a published
* post is deleted .
2012-04-13 19:30:37 +02:00
*
* @ since 3.4 . 0
*
* @ param int $post_id Post ID
*/
function _update_blog_date_on_post_delete ( $post_id ) {
$post = get_post ( $post_id );
$post_type_obj = get_post_type_object ( $post -> post_type );
2014-07-29 02:51:17 +02:00
if ( ! $post_type_obj || ! $post_type_obj -> public ) {
2012-04-13 19:30:37 +02:00
return ;
2014-07-29 02:51:17 +02:00
}
2012-04-13 19:30:37 +02:00
2014-07-29 02:51:17 +02:00
if ( 'publish' != $post -> post_status ) {
2012-04-13 19:30:37 +02:00
return ;
2014-07-29 02:51:17 +02:00
}
2012-04-13 19:30:37 +02:00
wpmu_update_blogs_date ();
}
2014-06-26 02:53:15 +02:00
/**
2017-10-02 05:20:47 +02:00
* Handler for updating the current site ' s posts count when a post is deleted .
2014-06-26 02:53:15 +02:00
*
2014-07-29 02:59:16 +02:00
* @ since 4.0 . 0
2014-06-26 02:53:15 +02:00
*
2014-07-14 03:02:15 +02:00
* @ param int $post_id Post ID .
2014-06-26 02:53:15 +02:00
*/
function _update_posts_count_on_delete ( $post_id ) {
2014-09-02 09:17:17 +02:00
$post = get_post ( $post_id );
2017-10-02 05:09:44 +02:00
if ( ! $post || 'publish' !== $post -> post_status || 'post' !== $post -> post_type ) {
2014-06-26 02:53:15 +02:00
return ;
}
2014-06-28 06:07:16 +02:00
2014-06-26 02:53:15 +02:00
update_posts_count ();
}
/**
2017-10-02 05:20:47 +02:00
* Handler for updating the current site ' s posts count when a post status changes .
2014-06-26 02:53:15 +02:00
*
2014-07-29 02:59:16 +02:00
* @ since 4.0 . 0
2017-10-02 05:09:44 +02:00
* @ since 4.9 . 0 Added the `$post` parameter .
2014-06-26 02:53:15 +02:00
*
2017-10-02 05:09:44 +02:00
* @ param string $new_status The status the post is changing to .
* @ param string $old_status The status the post is changing from .
* @ param WP_Post $post Post object
2014-06-26 02:53:15 +02:00
*/
2017-10-02 05:09:44 +02:00
function _update_posts_count_on_transition_post_status ( $new_status , $old_status , $post = null ) {
2014-06-26 02:53:15 +02:00
if ( $new_status === $old_status ) {
return ;
}
2017-10-02 05:09:44 +02:00
if ( 'post' !== get_post_type ( $post ) ) {
return ;
}
2014-06-26 02:53:15 +02:00
if ( 'publish' !== $new_status && 'publish' !== $old_status ) {
return ;
}
update_posts_count ();
}