2010-01-06 05:02:57 +01:00
< ? php
2010-01-22 23:14:22 +01:00
/**
2011-12-01 01:36:19 +01:00
* Multisite WordPress API
2010-01-22 23:14:22 +01:00
*
* @ package WordPress
2010-04-04 15:29:35 +02:00
* @ subpackage Multisite
* @ since 3.0 . 0
2010-01-22 23:14:22 +01:00
*/
2010-09-30 01:44:34 +02:00
/**
* Gets the network ' s site and user counts .
*
2017-10-03 19:44:48 +02:00
* @ since MU ( 3.0 . 0 )
2010-09-30 01:44:34 +02:00
*
2019-11-05 22:23:02 +01:00
* @ return int [] {
* Site and user count for the network .
*
* @ type int $blogs Number of sites on the network .
* @ type int $users Number of users on the network .
* }
2010-09-30 01:44:34 +02:00
*/
2010-01-06 05:02:57 +01:00
function get_sitestats () {
2011-08-17 19:49:57 +02:00
$stats = array (
'blogs' => get_blog_count (),
'users' => get_user_count (),
);
2010-01-06 05:02:57 +01:00
return $stats ;
}
2010-09-30 01:44:34 +02:00
/**
2022-04-24 23:28:07 +02:00
* Gets one of a user ' s active blogs .
2010-09-30 01:44:34 +02:00
*
2013-11-25 03:05:10 +01:00
* Returns the user ' s primary blog , if they have one and
2010-09-30 01:44:34 +02:00
* it is active . If it ' s inactive , function returns another
* active blog of the user . If none are found , the user
* is added as a Subscriber to the Dashboard Blog and that blog
* is returned .
*
2017-10-03 19:44:48 +02:00
* @ since MU ( 3.0 . 0 )
2010-09-30 01:44:34 +02:00
*
* @ param int $user_id The unique ID of the user
2016-03-09 08:50:26 +01:00
* @ return WP_Site | void The blog object
2010-09-30 01:44:34 +02:00
*/
function get_active_blog_for_user ( $user_id ) {
2010-01-06 05:02:57 +01:00
$blogs = get_blogs_of_user ( $user_id );
2017-12-01 00:11:00 +01:00
if ( empty ( $blogs ) ) {
2015-05-26 23:51:31 +02:00
return ;
2017-12-01 00:11:00 +01:00
}
2010-10-07 21:34:18 +02:00
2017-10-02 03:44:47 +02:00
if ( ! is_multisite () ) {
return $blogs [ get_current_blog_id () ];
}
2010-01-06 05:02:57 +01:00
2010-02-23 11:42:40 +01:00
$primary_blog = get_user_meta ( $user_id , 'primary_blog' , true );
2017-12-01 00:11:00 +01:00
$first_blog = current ( $blogs );
2010-11-04 10:31:58 +01:00
if ( false !== $primary_blog ) {
2010-10-07 21:34:18 +02:00
if ( ! isset ( $blogs [ $primary_blog ] ) ) {
2010-11-04 10:31:58 +01:00
update_user_meta ( $user_id , 'primary_blog' , $first_blog -> userblog_id );
2016-10-25 20:06:29 +02:00
$primary = get_site ( $first_blog -> userblog_id );
2010-01-06 05:02:57 +01:00
} else {
2016-10-25 20:06:29 +02:00
$primary = get_site ( $primary_blog );
2010-01-06 05:02:57 +01:00
}
} else {
2020-01-29 01:45:18 +01:00
// TODO: Review this call to add_user_to_blog too - to get here the user must have a role on this blog?
2017-08-03 23:41:45 +02:00
$result = add_user_to_blog ( $first_blog -> userblog_id , $user_id , 'subscriber' );
if ( ! is_wp_error ( $result ) ) {
update_user_meta ( $user_id , 'primary_blog' , $first_blog -> userblog_id );
$primary = $first_blog ;
}
2010-01-06 05:02:57 +01:00
}
2020-02-09 17:55:09 +01:00
if ( ( ! is_object ( $primary ) ) || ( 1 == $primary -> archived || 1 == $primary -> spam || 1 == $primary -> deleted ) ) {
2020-01-29 01:45:18 +01:00
$blogs = get_blogs_of_user ( $user_id , true ); // If a user's primary blog is shut down, check their other blogs.
2017-12-01 00:11:00 +01:00
$ret = false ;
2010-01-06 05:02:57 +01:00
if ( is_array ( $blogs ) && count ( $blogs ) > 0 ) {
2010-01-19 18:01:39 +01:00
foreach ( ( array ) $blogs as $blog_id => $blog ) {
2020-02-09 17:55:09 +01:00
if ( get_current_network_id () != $blog -> site_id ) {
2010-01-06 05:02:57 +01:00
continue ;
2017-12-01 00:11:00 +01:00
}
2016-10-25 20:06:29 +02:00
$details = get_site ( $blog_id );
2020-02-09 17:55:09 +01:00
if ( is_object ( $details ) && 0 == $details -> archived && 0 == $details -> spam && 0 == $details -> deleted ) {
2018-03-21 00:07:30 +01:00
$ret = $details ;
2017-12-01 00:11:00 +01:00
if ( get_user_meta ( $user_id , 'primary_blog' , true ) != $blog_id ) {
2010-02-22 22:25:32 +01:00
update_user_meta ( $user_id , 'primary_blog' , $blog_id );
2017-12-01 00:11:00 +01:00
}
if ( ! get_user_meta ( $user_id , 'source_domain' , true ) ) {
2018-03-21 00:07:30 +01:00
update_user_meta ( $user_id , 'source_domain' , $details -> domain );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
break ;
}
}
} else {
2015-05-26 23:51:31 +02:00
return ;
2010-01-06 05:02:57 +01:00
}
return $ret ;
} else {
2010-10-07 21:34:18 +02:00
return $primary ;
2010-01-06 05:02:57 +01:00
}
}
2010-09-30 01:44:34 +02:00
/**
2022-04-24 23:28:07 +02:00
* Gets the number of active sites on the installation .
2010-09-30 01:44:34 +02:00
*
2010-10-20 22:22:14 +02:00
* The count is cached and updated twice daily . This is not a live count .
2010-09-30 01:44:34 +02:00
*
2017-10-03 19:44:48 +02:00
* @ since MU ( 3.0 . 0 )
2018-02-09 17:55:31 +01:00
* @ since 3.7 . 0 The `$network_id` parameter has been deprecated .
* @ since 4.8 . 0 The `$network_id` parameter is now being used .
2010-09-30 01:44:34 +02:00
*
2017-04-05 04:17:18 +02:00
* @ param int | null $network_id ID of the network . Default is the current network .
* @ return int Number of active sites on the network .
2010-09-30 01:44:34 +02:00
*/
2017-04-05 04:17:18 +02:00
function get_blog_count ( $network_id = null ) {
return get_network_option ( $network_id , 'blog_count' );
2010-01-06 05:02:57 +01:00
}
2010-09-30 01:44:34 +02:00
/**
2020-07-14 13:06:08 +02:00
* Gets a blog post from any site on the network .
*
* This function is similar to get_post (), except that it can retrieve a post
* from any site on the network , not just the current site .
2010-09-30 01:44:34 +02:00
*
2017-10-03 19:44:48 +02:00
* @ since MU ( 3.0 . 0 )
2010-09-30 01:44:34 +02:00
*
* @ param int $blog_id ID of the blog .
2020-02-04 20:40:06 +01:00
* @ param int $post_id ID of the post being looked for .
2020-07-14 13:06:08 +02:00
* @ return WP_Post | null WP_Post object on success , null on failure
2010-09-30 01:44:34 +02:00
*/
2010-01-06 05:02:57 +01:00
function get_blog_post ( $blog_id , $post_id ) {
2012-08-27 18:22:45 +02:00
switch_to_blog ( $blog_id );
$post = get_post ( $post_id );
restore_current_blog ();
2010-01-06 05:02:57 +01:00
return $post ;
}
2010-09-30 01:44:34 +02:00
/**
2020-07-20 13:54:05 +02:00
* Adds a user to a blog , along with specifying the user ' s role .
2010-09-30 01:44:34 +02:00
*
2016-05-23 20:56:27 +02:00
* Use the { @ see 'add_user_to_blog' } action to fire an event when users are added to a blog .
2010-09-30 01:44:34 +02:00
*
2017-10-03 19:44:48 +02:00
* @ since MU ( 3.0 . 0 )
2010-09-30 01:44:34 +02:00
*
2020-02-04 20:40:06 +01:00
* @ param int $blog_id ID of the blog the user is being added to .
* @ param int $user_id ID of the user being added .
2020-07-20 13:54:05 +02:00
* @ param string $role The role you want the user to have .
2020-01-24 18:20:07 +01:00
* @ return true | WP_Error True on success or a WP_Error object if the user doesn ' t exist
* or could not be added .
2010-09-30 01:44:34 +02:00
*/
2010-01-06 05:02:57 +01:00
function add_user_to_blog ( $blog_id , $user_id , $role ) {
2017-12-01 00:11:00 +01:00
switch_to_blog ( $blog_id );
2010-01-06 05:02:57 +01:00
2012-08-03 03:06:05 +02:00
$user = get_userdata ( $user_id );
2010-01-06 05:02:57 +01:00
2012-08-03 03:06:05 +02:00
if ( ! $user ) {
2011-02-03 01:17:30 +01:00
restore_current_blog ();
2012-10-05 21:04:34 +02:00
return new WP_Error ( 'user_does_not_exist' , __ ( 'The requested user does not exist.' ) );
2011-02-03 01:17:30 +01:00
}
2010-01-06 05:02:57 +01:00
2017-08-03 23:41:45 +02:00
/**
* Filters whether a user should be added to a site .
*
* @ since 4.9 . 0
*
2020-05-03 21:38:08 +02:00
* @ param true | WP_Error $retval True if the user should be added to the site , error
* object otherwise .
2017-08-03 23:41:45 +02:00
* @ param int $user_id User ID .
* @ param string $role User role .
* @ param int $blog_id Site ID .
*/
$can_add_user = apply_filters ( 'can_add_user_to_blog' , true , $user_id , $role , $blog_id );
if ( true !== $can_add_user ) {
restore_current_blog ();
if ( is_wp_error ( $can_add_user ) ) {
return $can_add_user ;
}
return new WP_Error ( 'user_cannot_be_added' , __ ( 'User cannot be added to this site.' ) );
}
2017-12-01 00:11:00 +01:00
if ( ! get_user_meta ( $user_id , 'primary_blog' , true ) ) {
update_user_meta ( $user_id , 'primary_blog' , $blog_id );
2016-10-25 07:49:29 +02:00
$site = get_site ( $blog_id );
update_user_meta ( $user_id , 'source_domain' , $site -> domain );
2010-01-06 05:02:57 +01:00
}
2017-12-01 00:11:00 +01:00
$user -> set_role ( $role );
2010-01-06 05:02:57 +01:00
2013-12-02 21:45:10 +01:00
/**
* Fires immediately after a user is added to a site .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param int $user_id User ID .
* @ param string $role User role .
* @ param int $blog_id Blog ID .
*/
do_action ( 'add_user_to_blog' , $user_id , $role , $blog_id );
2019-08-01 19:49:57 +02:00
clean_user_cache ( $user_id );
2015-06-10 08:50:25 +02:00
wp_cache_delete ( $blog_id . '_user_count' , 'blog-details' );
2019-08-01 19:49:57 +02:00
2010-01-06 05:02:57 +01:00
restore_current_blog ();
2019-08-01 19:49:57 +02:00
2010-01-06 05:02:57 +01:00
return true ;
}
2010-09-30 01:44:34 +02:00
/**
2022-04-24 23:28:07 +02:00
* Removes a user from a blog .
2010-09-30 01:44:34 +02:00
*
2016-05-23 20:56:27 +02:00
* Use the { @ see 'remove_user_from_blog' } action to fire an event when
2010-09-30 01:44:34 +02:00
* users are removed from a blog .
*
2016-05-23 20:56:27 +02:00
* Accepts an optional `$reassign` parameter , if you want to
2010-09-30 01:44:34 +02:00
* reassign the user ' s blog posts to another user upon removal .
*
2017-10-03 19:44:48 +02:00
* @ since MU ( 3.0 . 0 )
2010-09-30 01:44:34 +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
*
2020-02-04 20:40:06 +01:00
* @ param int $user_id ID of the user being removed .
* @ param int $blog_id Optional . ID of the blog the user is being removed from . Default 0.
2020-02-04 20:36:04 +01:00
* @ param int $reassign Optional . ID of the user to whom to reassign posts . Default 0.
* @ return true | WP_Error True on success or a WP_Error object if the user doesn ' t exist .
2010-09-30 01:44:34 +02:00
*/
2020-02-04 20:36:04 +01:00
function remove_user_from_blog ( $user_id , $blog_id = 0 , $reassign = 0 ) {
2010-01-06 05:02:57 +01:00
global $wpdb ;
2020-02-04 20:36:04 +01:00
2017-12-01 00:11:00 +01:00
switch_to_blog ( $blog_id );
2010-01-06 05:02:57 +01:00
$user_id = ( int ) $user_id ;
2020-02-04 20:36:04 +01:00
2013-12-02 21:45:10 +01:00
/**
* Fires before a user is removed from a site .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2020-02-04 20:43:03 +01:00
* @ since 5.4 . 0 Added the `$reassign` parameter .
2013-12-02 21:45:10 +01:00
*
2020-02-04 20:43:03 +01:00
* @ param int $user_id ID of the user being removed .
2020-02-04 22:42:04 +01:00
* @ param int $blog_id ID of the blog the user is being removed from .
* @ param int $reassign ID of the user to whom to reassign posts .
2013-12-02 21:45:10 +01:00
*/
2020-02-04 20:43:03 +01:00
do_action ( 'remove_user_from_blog' , $user_id , $blog_id , $reassign );
2010-01-06 05:02:57 +01:00
2020-02-04 20:36:04 +01:00
// If being removed from the primary blog, set a new primary
// if the user is assigned to multiple blogs.
2017-12-01 00:11:00 +01:00
$primary_blog = get_user_meta ( $user_id , 'primary_blog' , true );
2010-01-06 05:02:57 +01:00
if ( $primary_blog == $blog_id ) {
2017-12-01 00:11:00 +01:00
$new_id = '' ;
2010-01-06 05:02:57 +01:00
$new_domain = '' ;
2017-12-01 00:11:00 +01:00
$blogs = get_blogs_of_user ( $user_id );
2010-01-06 05:02:57 +01:00
foreach ( ( array ) $blogs as $blog ) {
2017-12-01 00:11:00 +01:00
if ( $blog -> userblog_id == $blog_id ) {
2010-01-06 05:02:57 +01:00
continue ;
2017-12-01 00:11:00 +01:00
}
$new_id = $blog -> userblog_id ;
2010-01-06 05:02:57 +01:00
$new_domain = $blog -> domain ;
break ;
}
2017-12-01 00:11:00 +01:00
update_user_meta ( $user_id , 'primary_blog' , $new_id );
update_user_meta ( $user_id , 'source_domain' , $new_domain );
2010-01-06 05:02:57 +01:00
}
2012-08-03 03:06:05 +02:00
$user = get_userdata ( $user_id );
if ( ! $user ) {
2011-02-03 01:17:30 +01:00
restore_current_blog ();
2017-12-01 00:11:00 +01:00
return new WP_Error ( 'user_does_not_exist' , __ ( 'That user does not exist.' ) );
2011-02-03 01:17:30 +01:00
}
2010-07-13 23:27:05 +02:00
2010-01-06 05:02:57 +01:00
$user -> remove_all_caps ();
2017-12-01 00:11:00 +01:00
$blogs = get_blogs_of_user ( $user_id );
if ( count ( $blogs ) == 0 ) {
update_user_meta ( $user_id , 'primary_blog' , '' );
update_user_meta ( $user_id , 'source_domain' , '' );
2010-01-06 05:02:57 +01:00
}
2020-02-04 20:36:04 +01:00
if ( $reassign ) {
2010-01-06 05:02:57 +01:00
$reassign = ( int ) $reassign ;
2014-02-09 22:47:12 +01:00
$post_ids = $wpdb -> get_col ( $wpdb -> prepare ( " SELECT ID FROM $wpdb->posts WHERE post_author = %d " , $user_id ) );
2014-03-29 04:39:14 +01:00
$link_ids = $wpdb -> get_col ( $wpdb -> prepare ( " SELECT link_id FROM $wpdb->links WHERE link_owner = %d " , $user_id ) );
2014-02-04 05:13:12 +01:00
2014-02-09 22:47:12 +01:00
if ( ! empty ( $post_ids ) ) {
2014-02-11 17:28:13 +01:00
$wpdb -> query ( $wpdb -> prepare ( " UPDATE $wpdb->posts SET post_author = %d WHERE post_author = %d " , $reassign , $user_id ) );
2014-02-09 22:47:12 +01:00
array_walk ( $post_ids , 'clean_post_cache' );
}
if ( ! empty ( $link_ids ) ) {
2014-02-11 17:28:13 +01:00
$wpdb -> query ( $wpdb -> prepare ( " UPDATE $wpdb->links SET link_owner = %d WHERE link_owner = %d " , $reassign , $user_id ) );
2014-02-09 22:47:12 +01:00
array_walk ( $link_ids , 'clean_bookmark_cache' );
}
2010-01-06 05:02:57 +01:00
}
restore_current_blog ();
2011-08-04 18:36:50 +02:00
return true ;
2010-01-06 05:02:57 +01:00
}
2010-09-30 01:44:34 +02:00
/**
2022-04-24 23:28:07 +02:00
* Gets the permalink for a post on another blog .
2010-09-30 01:44:34 +02:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 ) 1.0
2010-09-30 01:44:34 +02:00
*
2012-08-27 18:22:45 +02:00
* @ param int $blog_id ID of the source blog .
2010-09-30 01:44:34 +02:00
* @ param int $post_id ID of the desired post .
2011-01-04 10:02:38 +01:00
* @ return string The post ' s permalink
2010-09-30 01:44:34 +02:00
*/
2012-08-27 18:22:45 +02:00
function get_blog_permalink ( $blog_id , $post_id ) {
switch_to_blog ( $blog_id );
$link = get_permalink ( $post_id );
restore_current_blog ();
2010-01-06 05:02:57 +01:00
return $link ;
}
2010-09-30 01:44:34 +02:00
/**
2022-04-24 23:28:07 +02:00
* Gets a blog ' s numeric ID from its URL .
2010-09-30 01:44:34 +02:00
*
* On a subdirectory installation like example . com / blog1 / ,
* $domain will be the root 'example.com' and $path the
* subdirectory '/blog1/' . With subdomains like blog1 . example . com ,
* $domain is 'blog1.example.com' and $path is '/' .
*
2017-10-03 19:44:48 +02:00
* @ since MU ( 3.0 . 0 )
2010-09-30 01:44:34 +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-09-30 01:44:34 +02:00
* @ param string $domain
2015-05-26 23:51:31 +02:00
* @ param string $path Optional . Not required for subdomain installations .
2012-10-01 20:03:23 +02:00
* @ return int 0 if no blog found , otherwise the ID of the matching blog
2010-09-30 01:44:34 +02:00
*/
2010-01-06 05:02:57 +01:00
function get_blog_id_from_url ( $domain , $path = '/' ) {
2012-10-01 20:03:23 +02:00
$domain = strtolower ( $domain );
2017-12-01 00:11:00 +01:00
$path = strtolower ( $path );
$id = wp_cache_get ( md5 ( $domain . $path ), 'blog-id-cache' );
2010-01-06 05:02:57 +01:00
2020-02-09 17:55:09 +01:00
if ( - 1 == $id ) { // Blog does not exist.
2010-01-06 05:02:57 +01:00
return 0 ;
2017-12-01 00:11:00 +01:00
} elseif ( $id ) {
2012-10-01 20:03:23 +02:00
return ( int ) $id ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$args = array (
2019-03-18 16:56:51 +01:00
'domain' => $domain ,
'path' => $path ,
'fields' => 'ids' ,
'number' => 1 ,
'update_site_meta_cache' => false ,
2016-06-02 04:26:29 +02:00
);
$result = get_sites ( $args );
2017-12-01 00:11:00 +01:00
$id = array_shift ( $result );
2010-01-06 05:02:57 +01:00
2012-10-01 20:03:23 +02:00
if ( ! $id ) {
2010-01-06 05:02:57 +01:00
wp_cache_set ( md5 ( $domain . $path ), - 1 , 'blog-id-cache' );
2012-10-01 20:03:23 +02:00
return 0 ;
2010-01-06 05:02:57 +01:00
}
2012-10-01 20:03:23 +02:00
2010-01-06 05:02:57 +01:00
wp_cache_set ( md5 ( $domain . $path ), $id , 'blog-id-cache' );
return $id ;
}
2020-01-29 01:45:18 +01:00
//
// Admin functions.
//
2010-01-06 05:02:57 +01:00
2011-01-04 10:02:38 +01:00
/**
* Checks an email address against a list of banned domains .
*
* This function checks against the Banned Email Domains list
* at wp - admin / network / settings . php . The check is only run on
* self - registrations ; user creation at wp - admin / network / users . php
2011-01-06 05:11:14 +01:00
* bypasses this check .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
* @ param string $user_email The email provided by the user at registration .
2020-06-03 12:02:13 +02:00
* @ return bool True when the email address is banned , false otherwise .
2011-01-04 10:02:38 +01:00
*/
2010-01-06 05:02:57 +01:00
function is_email_address_unsafe ( $user_email ) {
2015-10-07 19:11:25 +02:00
$banned_names = get_site_option ( 'banned_email_domains' );
2017-12-01 00:11:00 +01:00
if ( $banned_names && ! is_array ( $banned_names ) ) {
2012-11-08 02:06:17 +01:00
$banned_names = explode ( " \n " , $banned_names );
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2012-11-08 02:06:17 +01:00
$is_email_address_unsafe = false ;
2017-05-09 18:55:40 +02:00
if ( $banned_names && is_array ( $banned_names ) && false !== strpos ( $user_email , '@' , 1 ) ) {
2017-12-01 00:11:00 +01:00
$banned_names = array_map ( 'strtolower' , $banned_names );
2013-08-31 06:36:10 +02:00
$normalized_email = strtolower ( $user_email );
list ( $email_local_part , $email_domain ) = explode ( '@' , $normalized_email );
2012-11-08 02:06:17 +01:00
foreach ( $banned_names as $banned_domain ) {
2017-12-01 00:11:00 +01:00
if ( ! $banned_domain ) {
2010-01-06 05:02:57 +01:00
continue ;
2017-12-01 00:11:00 +01:00
}
2012-11-08 02:06:17 +01:00
if ( $email_domain == $banned_domain ) {
$is_email_address_unsafe = true ;
break ;
}
$dotted_domain = " . $banned_domain " ;
2020-02-09 17:55:09 +01:00
if ( substr ( $normalized_email , - strlen ( $dotted_domain ) ) === $dotted_domain ) {
2012-11-08 02:06:17 +01:00
$is_email_address_unsafe = true ;
break ;
}
2010-01-06 05:02:57 +01:00
}
}
2012-11-08 02:06:17 +01:00
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters whether an email address is unsafe .
2013-12-02 21:45:10 +01:00
*
* @ since 3.5 . 0
*
* @ param bool $is_email_address_unsafe Whether the email address is " unsafe " . Default false .
* @ param string $user_email User email address .
*/
2012-11-08 02:06:17 +01:00
return apply_filters ( 'is_email_address_unsafe' , $is_email_address_unsafe , $user_email );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Sanitizes and validates data required for a user sign - up .
2011-01-04 10:02:38 +01:00
*
2015-01-29 12:46:22 +01:00
* Verifies the validity and uniqueness of user names and user email addresses ,
General: Remove “whitelist” and “blacklist” in favor of more clear and inclusive language.
“The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included.”
With this commit, all occurrences of “whitelist” and “blacklist” (with the single exception of the `$new_whitelist_options` global variable) are removed. A new ticket has been opened to explore renaming the `$new_whitelist_options` variable (#50434).
Changing to more specific names or rewording sentences containing these terms not only makes the code more inclusive, but also helps provide clarity. These terms are often ambiguous. What is being blocked or allowed is not always immediately clear. This can make it more difficult for non-native English speakers to read through the codebase.
Words matter. If one contributor feels more welcome because these terms are removed, this was worth the effort.
Props strangerstudios, jorbin, desrosj, joemcgill, timothyblynjacobs, ocean90, ayeshrajans, davidbaumwald, earnjam.
See #48900, #50434.
Fixes #50413.
Built from https://develop.svn.wordpress.org/trunk@48121
git-svn-id: http://core.svn.wordpress.org/trunk@47890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-06-22 19:26:13 +02:00
* and checks email addresses against allowed and disallowed domains provided by
* administrators .
2011-01-04 10:02:38 +01:00
*
2015-01-29 12:46:22 +01:00
* The { @ see 'wpmu_validate_user_signup' } hook provides an easy way to modify the sign - up
* process . The value $result , which is passed to the hook , contains both the user - provided
* info and the error messages created by the function . { @ see 'wpmu_validate_user_signup' }
* allows you to process the data in any way you ' d like , and unset the relevant errors if
* necessary .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +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
*
2015-01-29 12:46:22 +01:00
* @ param string $user_name The login name provided by the user .
2011-01-04 10:02:38 +01:00
* @ param string $user_email The email provided by the user .
2019-11-05 22:23:02 +01:00
* @ return array {
* The array of user name , email , and the error messages .
*
* @ type string $user_name Sanitized and unique username .
* @ type string $orig_username Original username .
* @ type string $user_email User email address .
* @ type WP_Error $errors WP_Error object containing any errors found .
* }
2011-01-04 10:02:38 +01:00
*/
2017-12-01 00:11:00 +01:00
function wpmu_validate_user_signup ( $user_name , $user_email ) {
2010-01-06 05:02:57 +01:00
global $wpdb ;
$errors = new WP_Error ();
2010-04-29 18:05:33 +02:00
$orig_username = $user_name ;
2017-12-01 00:11:00 +01:00
$user_name = preg_replace ( '/\s+/' , '' , sanitize_user ( $user_name , true ) );
2010-04-29 18:05:33 +02:00
2012-02-07 18:44:29 +01:00
if ( $user_name != $orig_username || preg_match ( '/[^a-z0-9]/' , $user_name ) ) {
2015-10-13 19:33:24 +02:00
$errors -> add ( 'user_name' , __ ( 'Usernames can only contain lowercase letters (a-z) and numbers.' ) );
2010-04-29 18:05:33 +02:00
$user_name = $orig_username ;
}
2010-01-06 05:02:57 +01:00
$user_email = sanitize_email ( $user_email );
2017-12-01 00:11:00 +01:00
if ( empty ( $user_name ) ) {
$errors -> add ( 'user_name' , __ ( 'Please enter a username.' ) );
}
2010-01-06 05:02:57 +01:00
2015-10-07 19:11:25 +02:00
$illegal_names = get_site_option ( 'illegal_names' );
2015-06-12 19:48:26 +02:00
if ( ! is_array ( $illegal_names ) ) {
2017-12-01 00:11:00 +01:00
$illegal_names = array ( 'www' , 'web' , 'root' , 'admin' , 'main' , 'invite' , 'administrator' );
2015-10-07 19:11:25 +02:00
add_site_option ( 'illegal_names' , $illegal_names );
2010-01-06 05:02:57 +01:00
}
2020-04-05 05:02:11 +02:00
if ( in_array ( $user_name , $illegal_names , true ) ) {
2017-12-01 00:11:00 +01:00
$errors -> add ( 'user_name' , __ ( 'Sorry, that username is not allowed.' ) );
2015-10-15 07:43:26 +02:00
}
2015-11-22 04:51:28 +01:00
/** This filter is documented in wp-includes/user.php */
2015-11-12 17:34:27 +01:00
$illegal_logins = ( array ) apply_filters ( 'illegal_user_logins' , array () );
2015-11-12 17:30:28 +01:00
2019-11-29 23:04:02 +01:00
if ( in_array ( strtolower ( $user_name ), array_map ( 'strtolower' , $illegal_logins ), true ) ) {
2017-12-01 00:11:00 +01:00
$errors -> add ( 'user_name' , __ ( 'Sorry, that username is not allowed.' ) );
2015-10-15 07:43:26 +02:00
}
2010-01-06 05:02:57 +01:00
2017-05-09 18:33:46 +02:00
if ( ! is_email ( $user_email ) ) {
$errors -> add ( 'user_email' , __ ( 'Please enter a valid email address.' ) );
} elseif ( is_email_address_unsafe ( $user_email ) ) {
Administration: Remove self-reference ("we") in WordPress Admin.
This changes updates many strings to remove self-references to an undefined "we" collective across the WordPress Administration.
The goal of this change is to better match the guidelines and recommendations set forth in the make/core handbook, specifically:
> the word "we" should be avoided (…) unless its made very clear which group is speaking.
Props johnbillion, shital-patel, audrasjb, marybaum, SergeyBiryukov, peterwilsoncc, johnjamesjacoby, kebbet, costdev, chaion07, davidbaumwald.
Fixes #46057.
Built from https://develop.svn.wordpress.org/trunk@53131
git-svn-id: http://core.svn.wordpress.org/trunk@52720 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-11 13:42:04 +02:00
$errors -> add ( 'user_email' , __ ( 'You cannot use that email address to signup. There are problems with them blocking some emails from WordPress. Please use another email provider.' ) );
2017-05-09 18:33:46 +02:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
if ( strlen ( $user_name ) < 4 ) {
$errors -> add ( 'user_name' , __ ( 'Username must be at least 4 characters.' ) );
}
2010-01-06 05:02:57 +01:00
2015-07-04 07:53:24 +02:00
if ( strlen ( $user_name ) > 60 ) {
$errors -> add ( 'user_name' , __ ( 'Username may not be longer than 60 characters.' ) );
}
2020-01-29 01:45:18 +01:00
// All numeric?
2017-12-01 00:11:00 +01:00
if ( preg_match ( '/^[0-9]*$/' , $user_name ) ) {
$errors -> add ( 'user_name' , __ ( 'Sorry, usernames must have letters too!' ) );
}
2010-01-06 05:02:57 +01:00
2015-10-07 19:11:25 +02:00
$limited_email_domains = get_site_option ( 'limited_email_domains' );
2015-06-12 19:48:26 +02:00
if ( is_array ( $limited_email_domains ) && ! empty ( $limited_email_domains ) ) {
2018-03-20 20:07:31 +01:00
$limited_email_domains = array_map ( 'strtolower' , $limited_email_domains );
2018-08-17 03:51:36 +02:00
$emaildomain = strtolower ( substr ( $user_email , 1 + strpos ( $user_email , '@' ) ) );
2018-03-20 20:07:31 +01:00
if ( ! in_array ( $emaildomain , $limited_email_domains , true ) ) {
2017-12-01 00:11:00 +01:00
$errors -> add ( 'user_email' , __ ( 'Sorry, that email address is not allowed!' ) );
2015-06-12 19:48:26 +02:00
}
2010-01-06 05:02:57 +01:00
}
// Check if the username has been used already.
2017-12-01 00:11:00 +01:00
if ( username_exists ( $user_name ) ) {
2012-10-05 21:04:34 +02:00
$errors -> add ( 'user_name' , __ ( 'Sorry, that username already exists!' ) );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
// Check if the email address has been used already.
2017-12-01 00:11:00 +01:00
if ( email_exists ( $user_email ) ) {
2021-11-09 16:28:59 +01:00
$errors -> add (
'user_email' ,
sprintf (
/* translators: %s: Link to the login page. */
__ ( '<strong>Error:</strong> This email address is already registered. <a href="%s">Log in</a> with this address or choose another one.' ),
wp_login_url ()
)
);
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
// Has someone already signed up for this username?
2017-12-01 00:11:00 +01:00
$signup = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->signups WHERE user_login = %s " , $user_name ) );
2020-10-19 22:20:04 +02:00
if ( $signup instanceof stdClass ) {
2017-12-01 00:11:00 +01:00
$registered_at = mysql2date ( 'U' , $signup -> registered );
2019-03-07 10:12:51 +01:00
$now = time ();
2017-12-01 00:11:00 +01:00
$diff = $now - $registered_at ;
2010-01-06 05:02:57 +01:00
// If registered more than two days ago, cancel registration and let this signup go through.
2017-12-01 00:11:00 +01:00
if ( $diff > 2 * DAY_IN_SECONDS ) {
2012-03-24 16:24:31 +01:00
$wpdb -> delete ( $wpdb -> signups , array ( 'user_login' => $user_name ) );
2017-12-01 00:11:00 +01:00
} else {
$errors -> add ( 'user_name' , __ ( 'That username is currently reserved but may be available in a couple of days.' ) );
}
2010-01-06 05:02:57 +01:00
}
2017-12-01 00:11:00 +01:00
$signup = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->signups WHERE user_email = %s " , $user_email ) );
2020-10-19 22:20:04 +02:00
if ( $signup instanceof stdClass ) {
2019-03-07 10:12:51 +01:00
$diff = time () - mysql2date ( 'U' , $signup -> registered );
2010-01-06 05:02:57 +01:00
// If registered more than two days ago, cancel registration and let this signup go through.
2017-12-01 00:11:00 +01:00
if ( $diff > 2 * DAY_IN_SECONDS ) {
2012-03-24 16:24:31 +01:00
$wpdb -> delete ( $wpdb -> signups , array ( 'user_email' => $user_email ) );
2017-12-01 00:11:00 +01:00
} else {
$errors -> add ( 'user_email' , __ ( 'That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing.' ) );
}
2010-01-06 05:02:57 +01:00
}
2017-12-01 00:11:00 +01:00
$result = array (
'user_name' => $user_name ,
'orig_username' => $orig_username ,
'user_email' => $user_email ,
'errors' => $errors ,
);
2010-01-06 05:02:57 +01:00
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the validated user registration details .
2013-12-02 21:45:10 +01:00
*
* This does not allow you to override the username or email of the user during
* registration . The values are solely used for validation and error handling .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param array $result {
2019-11-05 22:23:02 +01:00
* The array of user name , email , and the error messages .
2013-12-02 21:45:10 +01:00
*
* @ type string $user_name Sanitized and unique username .
* @ type string $orig_username Original username .
* @ type string $user_email User email address .
* @ type WP_Error $errors WP_Error object containing any errors found .
* }
*/
return apply_filters ( 'wpmu_validate_user_signup' , $result );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
* Processes new site registrations .
*
* Checks the data provided by the user during blog signup . Verifies
* the validity and uniqueness of blog paths and domains .
*
* This function prevents the current user from registering a new site
* with a blogname equivalent to another user ' s login name . Passing the
* $user parameter to the function , where $user is the other user , is
* effectively an override of this limitation .
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'wpmu_validate_blog_signup' } if you want to modify
2011-01-04 10:02:38 +01:00
* the way that WordPress validates new site signups .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-26 23:51:31 +02:00
* @ global string $domain
*
2015-09-29 03:33:27 +02:00
* @ param string $blogname The blog name provided by the user . Must be unique .
* @ param string $blog_title The blog title provided by the user .
* @ param WP_User | string $user Optional . The user object to check against the new site name .
2019-11-05 22:23:02 +01:00
* @ return array {
* Array of domain , path , blog name , blog title , user and error messages .
*
* @ type string $domain Domain for the site .
* @ type string $path Path for the site . Used in subdirectory installations .
* @ type string $blogname The unique site name ( slug ) .
* @ type string $blog_title Blog title .
* @ type string | WP_User $user By default , an empty string . A user object if provided .
* @ type WP_Error $errors WP_Error containing any errors found .
* }
2011-01-04 10:02:38 +01:00
*/
2013-11-13 04:23:10 +01:00
function wpmu_validate_blog_signup ( $blogname , $blog_title , $user = '' ) {
global $wpdb , $domain ;
2012-12-06 10:43:52 +01:00
2016-10-19 06:47:30 +02:00
$current_network = get_network ();
2017-12-01 00:11:00 +01:00
$base = $current_network -> path ;
2010-01-06 05:02:57 +01:00
$blog_title = strip_tags ( $blog_title );
2017-12-01 00:11:00 +01:00
$errors = new WP_Error ();
2015-10-07 19:11:25 +02:00
$illegal_names = get_site_option ( 'illegal_names' );
2020-02-09 17:55:09 +01:00
if ( false == $illegal_names ) {
2010-04-24 19:49:08 +02:00
$illegal_names = array ( 'www' , 'web' , 'root' , 'admin' , 'main' , 'invite' , 'administrator' );
2015-10-07 19:11:25 +02:00
add_site_option ( 'illegal_names' , $illegal_names );
2010-01-06 05:02:57 +01:00
}
2013-12-02 21:45:10 +01:00
/*
2017-08-22 13:52:48 +02:00
* On sub dir installations , some names are so illegal , only a filter can
2013-12-02 21:45:10 +01:00
* spring them from jail .
*/
if ( ! is_subdomain_install () ) {
2015-10-06 06:35:25 +02:00
$illegal_names = array_merge ( $illegal_names , get_subdirectory_reserved_names () );
2013-12-02 21:45:10 +01:00
}
2010-05-26 05:13:16 +02:00
2017-12-01 00:11:00 +01:00
if ( empty ( $blogname ) ) {
$errors -> add ( 'blogname' , __ ( 'Please enter a site name.' ) );
}
2010-01-06 05:02:57 +01:00
2015-10-13 19:33:24 +02:00
if ( preg_match ( '/[^a-z0-9]+/' , $blogname ) ) {
$errors -> add ( 'blogname' , __ ( 'Site names can only contain lowercase letters (a-z) and numbers.' ) );
}
2010-01-12 19:40:40 +01:00
2020-04-05 05:02:11 +02:00
if ( in_array ( $blogname , $illegal_names , true ) ) {
2017-12-01 00:11:00 +01:00
$errors -> add ( 'blogname' , __ ( 'That name is not allowed.' ) );
}
2010-01-12 19:40:40 +01:00
2017-05-09 16:59:47 +02:00
/**
* Filters the minimum site name length required when validating a site signup .
*
* @ since 4.8 . 0
*
* @ param int $length The minimum site name length . Default 4.
*/
$minimum_site_name_length = apply_filters ( 'minimum_site_name_length' , 4 );
if ( strlen ( $blogname ) < $minimum_site_name_length ) {
2019-09-03 02:41:05 +02:00
/* translators: %s: Minimum site name length. */
2017-05-09 16:59:47 +02:00
$errors -> add ( 'blogname' , sprintf ( _n ( 'Site name must be at least %s character.' , 'Site name must be at least %s characters.' , $minimum_site_name_length ), number_format_i18n ( $minimum_site_name_length ) ) );
2017-04-07 15:15:42 +02:00
}
2022-01-31 14:07:03 +01:00
// Do not allow users to create a site that conflicts with a page on the main blog.
2017-12-01 00:11:00 +01:00
if ( ! is_subdomain_install () && $wpdb -> get_var ( $wpdb -> prepare ( 'SELECT post_name FROM ' . $wpdb -> get_blog_prefix ( $current_network -> site_id ) . " posts WHERE post_type = 'page' AND post_name = %s " , $blogname ) ) ) {
2010-04-30 05:17:49 +02:00
$errors -> add ( 'blogname' , __ ( 'Sorry, you may not use that site name.' ) );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2020-01-29 01:45:18 +01:00
// All numeric?
2017-12-01 00:11:00 +01:00
if ( preg_match ( '/^[0-9]*$/' , $blogname ) ) {
$errors -> add ( 'blogname' , __ ( 'Sorry, site names must have letters too!' ) );
}
2010-01-06 05:02:57 +01:00
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the new site name during registration .
2013-12-02 21:45:10 +01:00
*
* The name is the site 's subdomain or the site' s subdirectory
* path depending on the network settings .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $blogname Site name .
*/
2010-04-24 19:49:08 +02:00
$blogname = apply_filters ( 'newblogname' , $blogname );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$blog_title = wp_unslash ( $blog_title );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $blog_title ) ) {
$errors -> add ( 'blog_title' , __ ( 'Please enter a site title.' ) );
}
2010-01-06 05:02:57 +01:00
// Check if the domain/path has been used already.
2010-01-12 19:40:40 +01:00
if ( is_subdomain_install () ) {
2010-05-29 02:32:10 +02:00
$mydomain = $blogname . '.' . preg_replace ( '|^www\.|' , '' , $domain );
2017-12-01 00:11:00 +01:00
$path = $base ;
2010-01-06 05:02:57 +01:00
} else {
2020-10-08 23:15:13 +02:00
$mydomain = $domain ;
2017-12-01 00:11:00 +01:00
$path = $base . $blogname . '/' ;
2010-01-06 05:02:57 +01:00
}
2017-12-01 00:11:00 +01:00
if ( domain_exists ( $mydomain , $path , $current_network -> id ) ) {
2012-10-05 21:04:34 +02:00
$errors -> add ( 'blogname' , __ ( 'Sorry, that site already exists!' ) );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2022-01-31 14:07:03 +01:00
/*
* Do not allow users to create a site that matches an existing user ' s login name ,
* unless it 's the user' s own username .
*/
2010-01-06 05:02:57 +01:00
if ( username_exists ( $blogname ) ) {
2017-12-01 00:11:00 +01:00
if ( ! is_object ( $user ) || ( is_object ( $user ) && ( $user -> user_login != $blogname ) ) ) {
2010-04-30 05:17:49 +02:00
$errors -> add ( 'blogname' , __ ( 'Sorry, that site is reserved!' ) );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
}
// Has someone already signed up for this domain?
2020-01-29 01:45:18 +01:00
// TODO: Check email too?
$signup = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->signups WHERE domain = %s AND path = %s " , $mydomain , $path ) );
2020-10-19 22:20:04 +02:00
if ( $signup instanceof stdClass ) {
2019-03-07 10:12:51 +01:00
$diff = time () - mysql2date ( 'U' , $signup -> registered );
2010-01-06 05:02:57 +01:00
// If registered more than two days ago, cancel registration and let this signup go through.
2017-12-01 00:11:00 +01:00
if ( $diff > 2 * DAY_IN_SECONDS ) {
$wpdb -> delete (
2018-08-17 03:51:36 +02:00
$wpdb -> signups ,
array (
2017-12-01 00:11:00 +01:00
'domain' => $mydomain ,
'path' => $path ,
)
);
} else {
$errors -> add ( 'blogname' , __ ( 'That site is currently reserved but may be available in a couple days.' ) );
}
2010-01-06 05:02:57 +01:00
}
2017-12-01 00:11:00 +01:00
$result = array (
'domain' => $mydomain ,
'path' => $path ,
'blogname' => $blogname ,
'blog_title' => $blog_title ,
'user' => $user ,
'errors' => $errors ,
);
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters site details and error messages following registration .
2013-12-02 21:45:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param array $result {
* Array of domain , path , blog name , blog title , user and error messages .
*
2015-09-29 03:33:27 +02:00
* @ type string $domain Domain for the site .
2017-08-22 13:52:48 +02:00
* @ type string $path Path for the site . Used in subdirectory installations .
2015-09-29 03:33:27 +02:00
* @ type string $blogname The unique site name ( slug ) .
* @ type string $blog_title Blog title .
* @ type string | WP_User $user By default , an empty string . A user object if provided .
* @ type WP_Error $errors WP_Error containing any errors found .
2013-12-02 21:45:10 +01:00
* }
*/
return apply_filters ( 'wpmu_validate_blog_signup' , $result );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Records site signup information for future activation .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +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 string $domain The requested domain .
* @ param string $path The requested path .
* @ param string $title The requested site title .
* @ param string $user The user ' s requested login name .
2011-01-04 10:02:38 +01:00
* @ param string $user_email The user ' s email address .
2017-01-12 05:57:39 +01:00
* @ param array $meta Optional . Signup meta data . By default , contains the requested privacy setting and lang_id .
2011-01-04 10:02:38 +01:00
*/
2017-12-01 00:11:00 +01:00
function wpmu_signup_blog ( $domain , $path , $title , $user , $user_email , $meta = array () ) {
2010-01-06 05:02:57 +01:00
global $wpdb ;
2017-01-11 06:30:42 +01:00
$key = substr ( md5 ( time () . wp_rand () . $domain ), 0 , 16 );
2010-01-07 05:27:46 +01:00
2017-01-17 04:53:42 +01:00
/**
* Filters the metadata for a site signup .
*
* The metadata will be serialized prior to storing it in the database .
*
* @ since 4.8 . 0
*
* @ param array $meta Signup meta data . Default empty array .
* @ param string $domain The requested domain .
* @ param string $path The requested path .
* @ param string $title The requested site title .
* @ param string $user The user ' s requested login name .
* @ param string $user_email The user ' s email address .
* @ param string $key The user ' s activation key .
*/
$meta = apply_filters ( 'signup_site_meta' , $meta , $domain , $path , $title , $user , $user_email , $key );
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> signups ,
array (
2017-12-01 00:11:00 +01:00
'domain' => $domain ,
'path' => $path ,
'title' => $title ,
'user_login' => $user ,
'user_email' => $user_email ,
'registered' => current_time ( 'mysql' , true ),
'activation_key' => $key ,
'meta' => serialize ( $meta ),
)
);
2010-01-06 05:02:57 +01:00
2015-09-14 05:28:24 +02:00
/**
* Fires after site signup information has been written to the database .
*
* @ since 4.4 . 0
*
* @ param string $domain The requested domain .
* @ param string $path The requested path .
* @ param string $title The requested site title .
* @ param string $user The user ' s requested login name .
* @ param string $user_email The user ' s email address .
2017-01-12 05:57:39 +01:00
* @ param string $key The user ' s activation key .
* @ param array $meta Signup meta data . By default , contains the requested privacy setting and lang_id .
2015-09-14 05:28:24 +02:00
*/
do_action ( 'after_signup_site' , $domain , $path , $title , $user , $user_email , $key , $meta );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Records user signup information for future activation .
2011-01-04 10:02:38 +01:00
*
* This function is used when user registration is open but
* new site registration is not .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +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 string $user The user ' s requested login name .
2011-01-04 10:02:38 +01:00
* @ param string $user_email The user ' s email address .
2017-01-12 05:57:39 +01:00
* @ param array $meta Optional . Signup meta data . Default empty array .
2011-01-04 10:02:38 +01:00
*/
2013-09-02 05:33:09 +02:00
function wpmu_signup_user ( $user , $user_email , $meta = array () ) {
2010-01-06 05:02:57 +01:00
global $wpdb ;
2020-01-29 01:45:18 +01:00
// Format data.
2017-12-01 00:11:00 +01:00
$user = preg_replace ( '/\s+/' , '' , sanitize_user ( $user , true ) );
2010-01-06 05:02:57 +01:00
$user_email = sanitize_email ( $user_email );
2017-12-01 00:11:00 +01:00
$key = substr ( md5 ( time () . wp_rand () . $user_email ), 0 , 16 );
2010-01-07 05:27:46 +01:00
2017-01-17 04:53:42 +01:00
/**
* Filters the metadata for a user signup .
*
* The metadata will be serialized prior to storing it in the database .
*
* @ since 4.8 . 0
*
* @ param array $meta Signup meta data . Default empty array .
* @ param string $user The user ' s requested login name .
* @ param string $user_email The user ' s email address .
* @ param string $key The user ' s activation key .
*/
$meta = apply_filters ( 'signup_user_meta' , $meta , $user , $user_email , $key );
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> signups ,
array (
2017-12-01 00:11:00 +01:00
'domain' => '' ,
'path' => '' ,
'title' => '' ,
'user_login' => $user ,
'user_email' => $user_email ,
'registered' => current_time ( 'mysql' , true ),
'activation_key' => $key ,
'meta' => serialize ( $meta ),
)
);
2010-01-06 05:02:57 +01:00
2015-09-14 05:28:24 +02:00
/**
* Fires after a user ' s signup information has been written to the database .
*
* @ since 4.4 . 0
*
* @ param string $user The user ' s requested login name .
* @ param string $user_email The user ' s email address .
2017-01-12 05:57:39 +01:00
* @ param string $key The user ' s activation key .
* @ param array $meta Signup meta data . Default empty array .
2015-09-14 05:28:24 +02:00
*/
do_action ( 'after_signup_user' , $user , $user_email , $key , $meta );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Sends a confirmation request email to a user when they sign up for a new site . The new site will not become active
2017-08-04 16:21:43 +02:00
* until the confirmation link is clicked .
2011-01-04 10:02:38 +01:00
*
* This is the notification function used when site registration
* is enabled .
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'wpmu_signup_blog_notification' } to bypass this function or
2011-01-04 10:02:38 +01:00
* replace it with your own notification behavior .
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'wpmu_signup_blog_notification_email' } and
* { @ see 'wpmu_signup_blog_notification_subject' } to change the content
2011-01-04 10:02:38 +01:00
* and subject line of the email sent to newly registered users .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2015-05-26 23:51:31 +02:00
* @ param string $domain The new blog domain .
* @ param string $path The new blog path .
* @ param string $title The site title .
2016-11-11 23:20:33 +01:00
* @ param string $user_login The user ' s login name .
2011-01-04 10:02:38 +01:00
* @ param string $user_email The user ' s email address .
2015-05-26 23:51:31 +02:00
* @ param string $key The activation key created in wpmu_signup_blog ()
2017-01-12 06:21:41 +01:00
* @ param array $meta Optional . Signup meta data . By default , contains the requested privacy setting and lang_id .
2011-01-04 10:02:38 +01:00
* @ return bool
*/
2016-11-11 23:20:33 +01:00
function wpmu_signup_blog_notification ( $domain , $path , $title , $user_login , $user_email , $key , $meta = array () ) {
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters whether to bypass the new site email notification .
2013-12-02 21:45:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
2021-01-03 23:04:04 +01:00
* @ param string | false $domain Site domain , or false to prevent the email from sending .
* @ param string $path Site path .
* @ param string $title Site title .
* @ param string $user_login User login name .
* @ param string $user_email User email address .
* @ param string $key Activation key created in wpmu_signup_blog () .
* @ param array $meta Signup meta data . By default , contains the requested privacy setting and lang_id .
2013-12-02 21:45:10 +01:00
*/
2016-11-11 23:20:33 +01:00
if ( ! apply_filters ( 'wpmu_signup_blog_notification' , $domain , $path , $title , $user_login , $user_email , $key , $meta ) ) {
2010-01-06 05:02:57 +01:00
return false ;
2013-12-02 21:45:10 +01:00
}
2010-01-06 05:02:57 +01:00
// Send email with activation link.
2017-12-01 00:11:00 +01:00
if ( ! is_subdomain_install () || get_current_network_id () != 1 ) {
$activate_url = network_site_url ( " wp-activate.php?key= $key " );
} else {
2020-01-29 01:45:18 +01:00
$activate_url = " http:// { $domain } { $path } wp-activate.php?key= $key " ; // @todo Use *_url() API.
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2017-12-01 00:11:00 +01:00
$activate_url = esc_url ( $activate_url );
2020-05-16 20:42:12 +02:00
$admin_email = get_site_option ( 'admin_email' );
if ( '' === $admin_email ) {
Mail: Ensure that a server hostname can be set by using `network_home_url()`.
Due to the varying server setups, `$_SERVER['SERVER_NAME'];` can't reliably ensure that there will be a relevant host that could be used as the hostname in an email. Since the `network_home_url()` is set at this point, and is filterable, this should better enable emails to be sent from the server.
Fixes #25239.
Props layotte, SergeyBiryukov, nacin, sreedoap, szepe.viktor, jesin, kitchin, mensmaximus, mt8.biz, Grzegorz.Janoszka, cbutlerjr, dd32, BjornW, neodjandre, BjornW, Ipstenu, ocean90, danielbachhuber, desmith, joemcgill, jdgrimes, riasat, derekakelly, swissspidy, lilmike, tsimmons, robert.peake, DavidAnderson, cloudstek, pigdog234, BjornW, rawrly, pessoft, RedSand, seayou, dvershinin, bastho, chesio, Starbuck, afragen, ocean90, whyisjake.
Built from https://develop.svn.wordpress.org/trunk@48601
git-svn-id: http://core.svn.wordpress.org/trunk@48363 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-24 19:40:06 +02:00
$admin_email = 'support@' . wp_parse_url ( network_home_url (), PHP_URL_HOST );
2017-12-01 00:11:00 +01:00
}
2020-05-16 20:42:12 +02:00
$from_name = ( '' !== get_site_option ( 'site_name' ) ) ? esc_html ( get_site_option ( 'site_name' ) ) : 'WordPress' ;
2017-12-01 00:11:00 +01:00
$message_headers = " From: \" { $from_name } \" < { $admin_email } > \n " . 'Content-Type: text/plain; charset="' . get_option ( 'blog_charset' ) . " \" \n " ;
2016-10-26 17:36:31 +02:00
2017-12-01 00:11:00 +01:00
$user = get_user_by ( 'login' , $user_login );
2016-10-26 17:36:31 +02:00
$switched_locale = switch_to_locale ( get_user_locale ( $user ) );
2010-08-31 20:19:15 +02:00
$message = sprintf (
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the message content of the new blog notification email .
2013-12-02 21:45:10 +01:00
*
* Content should be formatted for transmission via wp_mail () .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $content Content of the notification email .
* @ param string $domain Site domain .
* @ param string $path Site path .
* @ param string $title Site title .
2016-11-11 23:20:33 +01:00
* @ param string $user_login User login name .
2013-12-02 21:45:10 +01:00
* @ param string $user_email User email address .
* @ param string $key Activation key created in wpmu_signup_blog () .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . By default , contains the requested privacy setting and lang_id .
2013-12-02 21:45:10 +01:00
*/
2017-12-01 00:11:00 +01:00
apply_filters (
'wpmu_signup_blog_notification_email' ,
2019-09-03 02:41:05 +02:00
/* translators: New site notification email. 1: Activation URL, 2: New site URL. */
2021-07-28 12:02:00 +02:00
__ ( " To activate your site, please click the following link: \n \n %1 \$ s \n \n After you activate, you will receive *another email* with your login. \n \n After you activate, you can visit your site here: \n \n %2 \$ s " ),
2018-08-17 03:51:36 +02:00
$domain ,
$path ,
$title ,
$user_login ,
$user_email ,
$key ,
$meta
2010-08-31 20:19:15 +02:00
),
$activate_url ,
esc_url ( " http:// { $domain } { $path } " ),
$key
);
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2010-08-31 20:19:15 +02:00
$subject = sprintf (
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the subject of the new blog notification email .
2013-12-02 21:45:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $subject Subject of the notification email .
* @ param string $domain Site domain .
* @ param string $path Site path .
* @ param string $title Site title .
2016-11-11 23:20:33 +01:00
* @ param string $user_login User login name .
2013-12-02 21:45:10 +01:00
* @ param string $user_email User email address .
* @ param string $key Activation key created in wpmu_signup_blog () .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . By default , contains the requested privacy setting and lang_id .
2013-12-02 21:45:10 +01:00
*/
2017-12-01 00:11:00 +01:00
apply_filters (
'wpmu_signup_blog_notification_subject' ,
2019-09-03 02:41:05 +02:00
/* translators: New site notification email subject. 1: Network title, 2: New site URL. */
2016-11-21 02:22:32 +01:00
_x ( '[%1$s] Activate %2$s' , 'New site notification email subject' ),
2018-08-17 03:51:36 +02:00
$domain ,
$path ,
$title ,
$user_login ,
$user_email ,
$key ,
$meta
2010-08-31 20:19:15 +02:00
),
$from_name ,
esc_url ( 'http://' . $domain . $path )
);
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2014-03-28 03:44:15 +01:00
wp_mail ( $user_email , wp_specialchars_decode ( $subject ), $message , $message_headers );
2016-10-26 17:36:31 +02:00
if ( $switched_locale ) {
restore_previous_locale ();
}
2010-01-06 05:02:57 +01:00
return true ;
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Sends a confirmation request email to a user when they sign up for a new user account ( without signing up for a site
2017-08-04 16:21:43 +02:00
* at the same time ) . The user account will not become active until the confirmation link is clicked .
2011-01-04 10:02:38 +01:00
*
* This is the notification function used when no new site has
* been requested .
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'wpmu_signup_user_notification' } to bypass this function or
2011-01-04 10:02:38 +01:00
* replace it with your own notification behavior .
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'wpmu_signup_user_notification_email' } and
* { @ see 'wpmu_signup_user_notification_subject' } to change the content
2011-01-04 10:02:38 +01:00
* and subject line of the email sent to newly registered users .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2016-11-11 23:20:33 +01:00
* @ param string $user_login The user ' s login name .
2011-01-04 10:02:38 +01:00
* @ param string $user_email The user ' s email address .
2015-05-26 23:51:31 +02:00
* @ param string $key The activation key created in wpmu_signup_user ()
2017-01-12 06:21:41 +01:00
* @ param array $meta Optional . Signup meta data . Default empty array .
2011-01-04 10:02:38 +01:00
* @ return bool
*/
2016-11-11 23:20:33 +01:00
function wpmu_signup_user_notification ( $user_login , $user_email , $key , $meta = array () ) {
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters whether to bypass the email notification for new user sign - up .
2013-12-02 21:45:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
2016-11-11 23:20:33 +01:00
* @ param string $user_login User login name .
2013-12-02 21:45:10 +01:00
* @ param string $user_email User email address .
* @ param string $key Activation key created in wpmu_signup_user () .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . Default empty array .
2013-12-02 21:45:10 +01:00
*/
2017-12-01 00:11:00 +01:00
if ( ! apply_filters ( 'wpmu_signup_user_notification' , $user_login , $user_email , $key , $meta ) ) {
2010-01-06 05:02:57 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$user = get_user_by ( 'login' , $user_login );
2016-10-26 17:36:31 +02:00
$switched_locale = switch_to_locale ( get_user_locale ( $user ) );
2010-01-06 05:02:57 +01:00
// Send email with activation link.
2015-10-07 19:11:25 +02:00
$admin_email = get_site_option ( 'admin_email' );
2020-05-16 20:42:12 +02:00
if ( '' === $admin_email ) {
Mail: Ensure that a server hostname can be set by using `network_home_url()`.
Due to the varying server setups, `$_SERVER['SERVER_NAME'];` can't reliably ensure that there will be a relevant host that could be used as the hostname in an email. Since the `network_home_url()` is set at this point, and is filterable, this should better enable emails to be sent from the server.
Fixes #25239.
Props layotte, SergeyBiryukov, nacin, sreedoap, szepe.viktor, jesin, kitchin, mensmaximus, mt8.biz, Grzegorz.Janoszka, cbutlerjr, dd32, BjornW, neodjandre, BjornW, Ipstenu, ocean90, danielbachhuber, desmith, joemcgill, jdgrimes, riasat, derekakelly, swissspidy, lilmike, tsimmons, robert.peake, DavidAnderson, cloudstek, pigdog234, BjornW, rawrly, pessoft, RedSand, seayou, dvershinin, bastho, chesio, Starbuck, afragen, ocean90, whyisjake.
Built from https://develop.svn.wordpress.org/trunk@48601
git-svn-id: http://core.svn.wordpress.org/trunk@48363 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-24 19:40:06 +02:00
$admin_email = 'support@' . wp_parse_url ( network_home_url (), PHP_URL_HOST );
2017-12-01 00:11:00 +01:00
}
2020-05-16 20:42:12 +02:00
$from_name = ( '' !== get_site_option ( 'site_name' ) ) ? esc_html ( get_site_option ( 'site_name' ) ) : 'WordPress' ;
2017-12-01 00:11:00 +01:00
$message_headers = " From: \" { $from_name } \" < { $admin_email } > \n " . 'Content-Type: text/plain; charset="' . get_option ( 'blog_charset' ) . " \" \n " ;
$message = sprintf (
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the content of the notification email for new user sign - up .
2013-12-02 21:45:10 +01:00
*
* Content should be formatted for transmission via wp_mail () .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $content Content of the notification email .
2016-11-11 23:20:33 +01:00
* @ param string $user_login User login name .
2013-12-02 21:45:10 +01:00
* @ param string $user_email User email address .
* @ param string $key Activation key created in wpmu_signup_user () .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . Default empty array .
2013-12-02 21:45:10 +01:00
*/
2017-12-01 00:11:00 +01:00
apply_filters (
'wpmu_signup_user_notification_email' ,
2019-09-03 02:41:05 +02:00
/* translators: New user notification email. %s: Activation URL. */
2012-10-26 00:21:15 +02:00
__ ( " To activate your user, please click the following link: \n \n %s \n \n After you activate, you will receive *another email* with your login. " ),
2018-08-17 03:51:36 +02:00
$user_login ,
$user_email ,
$key ,
$meta
2010-08-31 20:19:15 +02:00
),
2011-05-23 07:43:07 +02:00
site_url ( " wp-activate.php?key= $key " )
2010-08-31 20:19:15 +02:00
);
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2010-08-31 20:19:15 +02:00
$subject = sprintf (
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the subject of the notification email of new user signup .
2013-12-02 21:45:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $subject Subject of the notification email .
2016-11-11 23:20:33 +01:00
* @ param string $user_login User login name .
2013-12-02 21:45:10 +01:00
* @ param string $user_email User email address .
* @ param string $key Activation key created in wpmu_signup_user () .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . Default empty array .
2013-12-02 21:45:10 +01:00
*/
2017-12-01 00:11:00 +01:00
apply_filters (
'wpmu_signup_user_notification_subject' ,
2019-09-03 02:41:05 +02:00
/* translators: New user notification email subject. 1: Network title, 2: New user login. */
2016-11-21 02:22:32 +01:00
_x ( '[%1$s] Activate %2$s' , 'New user notification email subject' ),
2018-08-17 03:51:36 +02:00
$user_login ,
$user_email ,
$key ,
$meta
2010-08-31 20:19:15 +02:00
),
$from_name ,
2016-11-11 23:20:33 +01:00
$user_login
2010-08-31 20:19:15 +02:00
);
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2014-03-28 03:44:15 +01:00
wp_mail ( $user_email , wp_specialchars_decode ( $subject ), $message , $message_headers );
2016-10-26 17:36:31 +02:00
if ( $switched_locale ) {
restore_previous_locale ();
}
2010-01-06 05:02:57 +01:00
return true ;
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Activates a signup .
2011-01-04 10:02:38 +01:00
*
2016-05-23 20:56:27 +02:00
* Hook to { @ see 'wpmu_activate_user' } or { @ see 'wpmu_activate_blog' } for events
2011-01-04 10:02:38 +01:00
* that should happen only when users or sites are self - created ( since
* those actions are not called when users and sites are created
* by a Super Admin ) .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +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
*
2011-01-04 10:02:38 +01:00
* @ param string $key The activation key provided to the user .
2015-05-26 23:51:31 +02:00
* @ return array | WP_Error An array containing information about the activated user and / or blog
2011-01-04 10:02:38 +01:00
*/
2017-12-01 00:11:00 +01:00
function wpmu_activate_signup ( $key ) {
2013-08-15 05:13:05 +02:00
global $wpdb ;
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$signup = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->signups WHERE activation_key = %s " , $key ) );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $signup ) ) {
2010-12-15 18:09:26 +01:00
return new WP_Error ( 'invalid_key' , __ ( 'Invalid activation key.' ) );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2010-12-15 18:09:26 +01:00
if ( $signup -> active ) {
2017-12-01 00:11:00 +01:00
if ( empty ( $signup -> domain ) ) {
2010-12-15 18:09:26 +01:00
return new WP_Error ( 'already_active' , __ ( 'The user is already active.' ), $signup );
2017-12-01 00:11:00 +01:00
} else {
2010-12-15 18:09:26 +01:00
return new WP_Error ( 'already_active' , __ ( 'The site is already active.' ), $signup );
2017-12-01 00:11:00 +01:00
}
2010-12-15 18:09:26 +01:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$meta = maybe_unserialize ( $signup -> meta );
2010-11-11 00:31:54 +01:00
$password = wp_generate_password ( 12 , false );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$user_id = username_exists ( $signup -> user_login );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
if ( ! $user_id ) {
$user_id = wpmu_create_user ( $signup -> user_login , $password , $signup -> user_email );
} else {
2010-01-06 05:02:57 +01:00
$user_already_exists = true ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
if ( ! $user_id ) {
return new WP_Error ( 'create_user' , __ ( 'Could not create user' ), $signup );
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$now = current_time ( 'mysql' , true );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $signup -> domain ) ) {
$wpdb -> update (
2018-08-17 03:51:36 +02:00
$wpdb -> signups ,
array (
2017-12-01 00:11:00 +01:00
'active' => 1 ,
'activated' => $now ,
2018-08-17 03:51:36 +02:00
),
array ( 'activation_key' => $key )
2017-12-01 00:11:00 +01:00
);
2010-01-12 19:40:40 +01:00
2017-12-01 00:11:00 +01:00
if ( isset ( $user_already_exists ) ) {
return new WP_Error ( 'user_already_exists' , __ ( 'That username is already activated.' ), $signup );
}
2010-01-12 19:40:40 +01:00
2013-12-02 21:45:10 +01:00
/**
* Fires immediately after a new user is activated .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
2020-01-24 18:20:07 +01:00
* @ param int $user_id User ID .
* @ param string $password User password .
* @ param array $meta Signup meta data .
2013-12-02 21:45:10 +01:00
*/
2013-02-28 21:28:36 +01:00
do_action ( 'wpmu_activate_user' , $user_id , $password , $meta );
2020-06-20 14:02:12 +02:00
2017-12-01 00:11:00 +01:00
return array (
'user_id' => $user_id ,
'password' => $password ,
'meta' => $meta ,
);
2010-01-06 05:02:57 +01:00
}
2017-08-12 15:11:43 +02:00
$blog_id = wpmu_create_blog ( $signup -> domain , $signup -> path , $signup -> title , $user_id , $meta , get_current_network_id () );
2010-01-06 05:02:57 +01:00
// TODO: What to do if we create a user but cannot create a blog?
2017-12-01 00:11:00 +01:00
if ( is_wp_error ( $blog_id ) ) {
2020-01-29 01:45:18 +01:00
/*
* If blog is taken , that means a previous attempt to activate this blog
* failed in between creating the blog and setting the activation flag .
* Let ' s just set the active flag and instruct the user to reset their password .
*/
2020-05-16 20:42:12 +02:00
if ( 'blog_taken' === $blog_id -> get_error_code () ) {
2010-01-06 05:02:57 +01:00
$blog_id -> add_data ( $signup );
2017-12-01 00:11:00 +01:00
$wpdb -> update (
2018-08-17 03:51:36 +02:00
$wpdb -> signups ,
array (
2017-12-01 00:11:00 +01:00
'active' => 1 ,
'activated' => $now ,
2018-08-17 03:51:36 +02:00
),
array ( 'activation_key' => $key )
2017-12-01 00:11:00 +01:00
);
2010-01-06 05:02:57 +01:00
}
return $blog_id ;
}
2017-12-01 00:11:00 +01:00
$wpdb -> update (
2018-08-17 03:51:36 +02:00
$wpdb -> signups ,
array (
2017-12-01 00:11:00 +01:00
'active' => 1 ,
'activated' => $now ,
2018-08-17 03:51:36 +02:00
),
array ( 'activation_key' => $key )
2017-12-01 00:11:00 +01:00
);
2020-06-20 14:02:12 +02:00
2013-12-02 21:45:10 +01:00
/**
* Fires immediately after a site is activated .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param int $blog_id Blog ID .
* @ param int $user_id User ID .
2021-11-18 14:50:05 +01:00
* @ param string $password User password .
2013-12-02 21:45:10 +01:00
* @ param string $signup_title Site title .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . By default , contains the requested privacy setting and lang_id .
2013-12-02 21:45:10 +01:00
*/
do_action ( 'wpmu_activate_blog' , $blog_id , $user_id , $password , $signup -> title , $meta );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
return array (
'blog_id' => $blog_id ,
'user_id' => $user_id ,
'password' => $password ,
'title' => $signup -> title ,
'meta' => $meta ,
);
2010-01-06 05:02:57 +01:00
}
2020-07-05 13:21:03 +02:00
/**
2022-04-25 11:25:09 +02:00
* Deletes an associated signup entry when a user is deleted from the database .
2020-07-05 13:21:03 +02:00
*
* @ since 5.5 . 0
*
* @ param int $id ID of the user to delete .
* @ param int | null $reassign ID of the user to reassign posts and links to .
* @ param WP_User $user User object .
*/
function wp_delete_signup_on_user_delete ( $id , $reassign , $user ) {
global $wpdb ;
$wpdb -> delete ( $wpdb -> signups , array ( 'user_login' => $user -> user_login ) );
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Creates a user .
2011-01-04 10:02:38 +01:00
*
* This function runs when a user self - registers as well as when
2016-05-23 20:56:27 +02:00
* a Super Admin creates a new user . Hook to { @ see 'wpmu_new_user' } for events
2011-01-04 10:02:38 +01:00
* that should affect all new users , but only on Multisite ( otherwise
2021-12-01 13:17:00 +01:00
* use { @ see 'user_register' }) .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
* @ param string $user_name The new user ' s login name .
2015-05-26 23:51:31 +02:00
* @ param string $password The new user ' s password .
* @ param string $email The new user ' s email address .
* @ return int | false Returns false on failure , or int $user_id on success
2011-01-04 10:02:38 +01:00
*/
2013-01-18 16:30:55 +01:00
function wpmu_create_user ( $user_name , $password , $email ) {
2010-04-24 19:49:08 +02:00
$user_name = preg_replace ( '/\s+/' , '' , sanitize_user ( $user_name , true ) );
2010-01-06 05:02:57 +01:00
2010-01-20 22:58:13 +01:00
$user_id = wp_create_user ( $user_name , $password , $email );
2017-12-01 00:11:00 +01:00
if ( is_wp_error ( $user_id ) ) {
2010-01-06 05:02:57 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
// Newly created users have no roles or caps until they are added to a blog.
2013-08-30 18:29:12 +02:00
delete_user_option ( $user_id , 'capabilities' );
2010-04-23 16:25:05 +02:00
delete_user_option ( $user_id , 'user_level' );
2010-01-06 05:02:57 +01:00
2013-12-02 21:45:10 +01:00
/**
* Fires immediately after a new user is created .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param int $user_id User ID .
*/
2010-01-06 05:02:57 +01:00
do_action ( 'wpmu_new_user' , $user_id );
return $user_id ;
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Creates a site .
2011-01-04 10:02:38 +01:00
*
* This function runs when a user self - registers a new site as well
2016-05-23 20:56:27 +02:00
* as when a Super Admin creates a new site . Hook to { @ see 'wpmu_new_blog' }
2011-01-04 10:02:38 +01:00
* for events that should affect all new sites .
*
2017-08-22 13:52:48 +02:00
* On subdirectory installations , $domain is the same as the main site ' s
2011-01-04 10:02:38 +01:00
* domain , and the path is the subdirectory name ( eg 'example.com'
2017-08-22 13:52:48 +02:00
* and '/blog1/' ) . On subdomain installations , $domain is the new subdomain +
2011-01-04 10:02:38 +01:00
* root domain ( eg 'blog1.example.com' ), and $path is '/' .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2017-08-12 14:48:47 +02:00
* @ param string $domain The new site ' s domain .
* @ param string $path The new site ' s path .
* @ param string $title The new site ' s title .
* @ param int $user_id The user ID of the new site ' s admin .
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
* @ param array $options Optional . Array of key => value pairs used to set initial site options .
2017-08-12 14:48:47 +02:00
* If valid status keys are included ( 'public' , 'archived' , 'mature' ,
* 'spam' , 'deleted' , or 'lang_id' ) the given site status ( es ) will be
* updated . Otherwise , keys and values will be used to set options for
* the new site . Default empty array .
2017-08-22 13:52:48 +02:00
* @ param int $network_id Optional . Network ID . Only relevant on multi - network installations .
2017-07-14 23:08:43 +02:00
* @ return int | WP_Error Returns WP_Error object on failure , the new site ID on success .
2011-01-04 10:02:38 +01:00
*/
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
function wpmu_create_blog ( $domain , $path , $title , $user_id , $options = array (), $network_id = 1 ) {
2016-09-26 20:39:32 +02:00
$defaults = array (
'public' => 0 ,
);
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
$options = wp_parse_args ( $options , $defaults );
2013-08-26 20:57:10 +02:00
2017-12-01 00:11:00 +01:00
$title = strip_tags ( $title );
2010-01-06 05:02:57 +01:00
$user_id = ( int ) $user_id ;
// Check if the domain has been used already. We should return an error message.
2017-12-01 00:11:00 +01:00
if ( domain_exists ( $domain , $path , $network_id ) ) {
2012-10-05 21:04:34 +02:00
return new WP_Error ( 'blog_taken' , __ ( 'Sorry, that site already exists!' ) );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
Use `wp_installing()` instead of `WP_INSTALLING` constant.
The `WP_INSTALLING` constant is a flag that WordPress sets in a number of
places, telling the system that options should be fetched directly from the
database instead of from the cache, that WP should not ping wordpress.org for
updates, that the normal "not installed" checks should be bypassed, and so on.
A constant is generally necessary for this purpose, because the flag is
typically set before the WP bootstrap, meaning that WP functions are not yet
available. However, it is possible - notably, during `wpmu_create_blog()` -
for the "installing" flag to be set after WP has already loaded. In these
cases, `WP_INSTALLING` would be set for the remainder of the process, since
there's no way to change a constant once it's defined. This, in turn, polluted
later function calls that ought to have been outside the scope of site
creation, particularly the non-caching of option data. The problem was
particularly evident in the case of the automated tests, where `WP_INSTALLING`
was set the first time a site was created, and remained set for the rest of the
suite.
The new `wp_installing()` function allows developers to fetch the current
installation status (when called without any arguments) or to set the
installation status (when called with a boolean `true` or `false`). Use of
the `WP_INSTALLING` constant is still supported; `wp_installing()` will default
to `true` if the constant is defined during the bootstrap.
Props boonebgorges, jeremyfelt.
See #31130.
Built from https://develop.svn.wordpress.org/trunk@34828
git-svn-id: http://core.svn.wordpress.org/trunk@34793 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-10-05 17:06:28 +02:00
if ( ! wp_installing () ) {
wp_installing ( true );
}
2010-01-06 05:02:57 +01:00
General: Remove “whitelist” and “blacklist” in favor of more clear and inclusive language.
“The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included.”
With this commit, all occurrences of “whitelist” and “blacklist” (with the single exception of the `$new_whitelist_options` global variable) are removed. A new ticket has been opened to explore renaming the `$new_whitelist_options` variable (#50434).
Changing to more specific names or rewording sentences containing these terms not only makes the code more inclusive, but also helps provide clarity. These terms are often ambiguous. What is being blocked or allowed is not always immediately clear. This can make it more difficult for non-native English speakers to read through the codebase.
Words matter. If one contributor feels more welcome because these terms are removed, this was worth the effort.
Props strangerstudios, jorbin, desrosj, joemcgill, timothyblynjacobs, ocean90, ayeshrajans, davidbaumwald, earnjam.
See #48900, #50434.
Fixes #50413.
Built from https://develop.svn.wordpress.org/trunk@48121
git-svn-id: http://core.svn.wordpress.org/trunk@47890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-06-22 19:26:13 +02:00
$allowed_data_fields = array ( 'public' , 'archived' , 'mature' , 'spam' , 'deleted' , 'lang_id' );
Multisite: Complete the new CRUD API for managing sites.
New functions `wp_insert_site( $data )`, `wp_update_site( $id, $data )` and `wp_delete_site( $id )` are introduced to manage site rows in the `wp_blogs` table, forming the new CRUD API together with the existing `get_site()` / `get_sites()`. The new API provides various benefits over the previously existing API, fixing several cache invalidation issues and being hook-driven so that normalization and validation of the passed data can be fully customized.
New hooks introduced as part of this are the actions `wp_insert_site`, `wp_update_site`, `wp_delete_site`, `wp_validate_site_data` and the filter `wp_normalize_site_data`.
At this point, `wp_insert_site()` does not handle setting up the site's database tables, and `wp_delete_site()` does not handle dropping the site's database tables, so the two can not yet be used directly as full replacements of `wpmu_create_blog()` and `wpmu_delete_blog()`. Managing the site's database tables will be added via hooks as part of the follow-up ticket #41333.
The existing functions `wpmu_create_blog()`, `update_blog_details()`, and `wpmu_delete_blog()` make use of the respective new counterpart and will be obsolete once #41333 has been completed.
Props flixos90, jeremyfelt, spacedmonkey.
Fixes #40364.
Built from https://develop.svn.wordpress.org/trunk@43548
git-svn-id: http://core.svn.wordpress.org/trunk@43377 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-08-01 15:06:26 +02:00
$site_data = array_merge (
array (
'domain' => $domain ,
'path' => $path ,
'network_id' => $network_id ,
),
General: Remove “whitelist” and “blacklist” in favor of more clear and inclusive language.
“The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included.”
With this commit, all occurrences of “whitelist” and “blacklist” (with the single exception of the `$new_whitelist_options` global variable) are removed. A new ticket has been opened to explore renaming the `$new_whitelist_options` variable (#50434).
Changing to more specific names or rewording sentences containing these terms not only makes the code more inclusive, but also helps provide clarity. These terms are often ambiguous. What is being blocked or allowed is not always immediately clear. This can make it more difficult for non-native English speakers to read through the codebase.
Words matter. If one contributor feels more welcome because these terms are removed, this was worth the effort.
Props strangerstudios, jorbin, desrosj, joemcgill, timothyblynjacobs, ocean90, ayeshrajans, davidbaumwald, earnjam.
See #48900, #50434.
Fixes #50413.
Built from https://develop.svn.wordpress.org/trunk@48121
git-svn-id: http://core.svn.wordpress.org/trunk@47890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-06-22 19:26:13 +02:00
array_intersect_key ( $options , array_flip ( $allowed_data_fields ) )
Multisite: Complete the new CRUD API for managing sites.
New functions `wp_insert_site( $data )`, `wp_update_site( $id, $data )` and `wp_delete_site( $id )` are introduced to manage site rows in the `wp_blogs` table, forming the new CRUD API together with the existing `get_site()` / `get_sites()`. The new API provides various benefits over the previously existing API, fixing several cache invalidation issues and being hook-driven so that normalization and validation of the passed data can be fully customized.
New hooks introduced as part of this are the actions `wp_insert_site`, `wp_update_site`, `wp_delete_site`, `wp_validate_site_data` and the filter `wp_normalize_site_data`.
At this point, `wp_insert_site()` does not handle setting up the site's database tables, and `wp_delete_site()` does not handle dropping the site's database tables, so the two can not yet be used directly as full replacements of `wpmu_create_blog()` and `wpmu_delete_blog()`. Managing the site's database tables will be added via hooks as part of the follow-up ticket #41333.
The existing functions `wpmu_create_blog()`, `update_blog_details()`, and `wpmu_delete_blog()` make use of the respective new counterpart and will be obsolete once #41333 has been completed.
Props flixos90, jeremyfelt, spacedmonkey.
Fixes #40364.
Built from https://develop.svn.wordpress.org/trunk@43548
git-svn-id: http://core.svn.wordpress.org/trunk@43377 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-08-01 15:06:26 +02:00
);
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
// Data to pass to wp_initialize_site().
$site_initialization_data = array (
'title' => $title ,
'user_id' => $user_id ,
General: Remove “whitelist” and “blacklist” in favor of more clear and inclusive language.
“The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included.”
With this commit, all occurrences of “whitelist” and “blacklist” (with the single exception of the `$new_whitelist_options` global variable) are removed. A new ticket has been opened to explore renaming the `$new_whitelist_options` variable (#50434).
Changing to more specific names or rewording sentences containing these terms not only makes the code more inclusive, but also helps provide clarity. These terms are often ambiguous. What is being blocked or allowed is not always immediately clear. This can make it more difficult for non-native English speakers to read through the codebase.
Words matter. If one contributor feels more welcome because these terms are removed, this was worth the effort.
Props strangerstudios, jorbin, desrosj, joemcgill, timothyblynjacobs, ocean90, ayeshrajans, davidbaumwald, earnjam.
See #48900, #50434.
Fixes #50413.
Built from https://develop.svn.wordpress.org/trunk@48121
git-svn-id: http://core.svn.wordpress.org/trunk@47890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-06-22 19:26:13 +02:00
'options' => array_diff_key ( $options , array_flip ( $allowed_data_fields ) ),
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
);
Multisite: Complete the new CRUD API for managing sites.
New functions `wp_insert_site( $data )`, `wp_update_site( $id, $data )` and `wp_delete_site( $id )` are introduced to manage site rows in the `wp_blogs` table, forming the new CRUD API together with the existing `get_site()` / `get_sites()`. The new API provides various benefits over the previously existing API, fixing several cache invalidation issues and being hook-driven so that normalization and validation of the passed data can be fully customized.
New hooks introduced as part of this are the actions `wp_insert_site`, `wp_update_site`, `wp_delete_site`, `wp_validate_site_data` and the filter `wp_normalize_site_data`.
At this point, `wp_insert_site()` does not handle setting up the site's database tables, and `wp_delete_site()` does not handle dropping the site's database tables, so the two can not yet be used directly as full replacements of `wpmu_create_blog()` and `wpmu_delete_blog()`. Managing the site's database tables will be added via hooks as part of the follow-up ticket #41333.
The existing functions `wpmu_create_blog()`, `update_blog_details()`, and `wpmu_delete_blog()` make use of the respective new counterpart and will be obsolete once #41333 has been completed.
Props flixos90, jeremyfelt, spacedmonkey.
Fixes #40364.
Built from https://develop.svn.wordpress.org/trunk@43548
git-svn-id: http://core.svn.wordpress.org/trunk@43377 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-08-01 15:06:26 +02:00
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
$blog_id = wp_insert_site ( array_merge ( $site_data , $site_initialization_data ) );
Multisite: Complete the new CRUD API for managing sites.
New functions `wp_insert_site( $data )`, `wp_update_site( $id, $data )` and `wp_delete_site( $id )` are introduced to manage site rows in the `wp_blogs` table, forming the new CRUD API together with the existing `get_site()` / `get_sites()`. The new API provides various benefits over the previously existing API, fixing several cache invalidation issues and being hook-driven so that normalization and validation of the passed data can be fully customized.
New hooks introduced as part of this are the actions `wp_insert_site`, `wp_update_site`, `wp_delete_site`, `wp_validate_site_data` and the filter `wp_normalize_site_data`.
At this point, `wp_insert_site()` does not handle setting up the site's database tables, and `wp_delete_site()` does not handle dropping the site's database tables, so the two can not yet be used directly as full replacements of `wpmu_create_blog()` and `wpmu_delete_blog()`. Managing the site's database tables will be added via hooks as part of the follow-up ticket #41333.
The existing functions `wpmu_create_blog()`, `update_blog_details()`, and `wpmu_delete_blog()` make use of the respective new counterpart and will be obsolete once #41333 has been completed.
Props flixos90, jeremyfelt, spacedmonkey.
Fixes #40364.
Built from https://develop.svn.wordpress.org/trunk@43548
git-svn-id: http://core.svn.wordpress.org/trunk@43377 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-08-01 15:06:26 +02:00
if ( is_wp_error ( $blog_id ) ) {
return $blog_id ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2016-06-02 02:59:27 +02:00
wp_cache_set ( 'last_changed' , microtime (), 'sites' );
2010-01-06 05:02:57 +01:00
return $blog_id ;
}
2011-01-04 10:02:38 +01:00
/**
* Notifies the network admin that a new site has been activated .
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'newblog_notify_siteadmin' } to change the content of
2011-01-04 10:02:38 +01:00
* the notification email .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2019-01-08 09:58:49 +01:00
* @ since 5.1 . 0 $blog_id now supports input from the { @ see 'wp_initialize_site' } action .
2011-01-04 10:02:38 +01:00
*
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
* @ param WP_Site | int $blog_id The new site ' s object or ID .
* @ param string $deprecated Not used .
2011-01-04 10:02:38 +01:00
* @ return bool
*/
2010-01-06 05:02:57 +01:00
function newblog_notify_siteadmin ( $blog_id , $deprecated = '' ) {
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
if ( is_object ( $blog_id ) ) {
$blog_id = $blog_id -> blog_id ;
}
2020-05-16 20:42:12 +02:00
if ( 'yes' !== get_site_option ( 'registrationnotification' ) ) {
2010-01-06 05:02:57 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-01-07 05:27:46 +01:00
2015-10-07 19:11:25 +02:00
$email = get_site_option ( 'admin_email' );
2020-05-16 20:42:12 +02:00
2017-12-01 00:11:00 +01:00
if ( is_email ( $email ) == false ) {
2010-01-06 05:02:57 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-01-07 05:27:46 +01:00
2017-12-01 00:11:00 +01:00
$options_site_url = esc_url ( network_admin_url ( 'settings.php' ) );
2010-01-06 05:02:57 +01:00
switch_to_blog ( $blog_id );
$blogname = get_option ( 'blogname' );
2017-12-01 00:11:00 +01:00
$siteurl = site_url ();
2010-01-06 05:02:57 +01:00
restore_current_blog ();
2010-01-07 05:27:46 +01:00
2017-12-01 00:11:00 +01:00
$msg = sprintf (
2019-09-03 02:41:05 +02:00
/* translators: New site notification email. 1: Site URL, 2: User IP address, 3: URL to Network Settings screen. */
2017-12-01 00:11:00 +01:00
__ (
' New Site : % 1 $s
2012-10-23 13:27:20 +02:00
URL : % 2 $s
2017-10-03 15:13:47 +02:00
Remote IP address : % 3 $s
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
Disable these notifications : % 4 $s '
2018-08-17 03:51:36 +02:00
),
$blogname ,
$siteurl ,
wp_unslash ( $_SERVER [ 'REMOTE_ADDR' ] ),
$options_site_url
2017-12-01 00:11:00 +01:00
);
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the message body of the new site activation email sent
2013-12-02 21:45:10 +01:00
* to the network administrator .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2019-11-11 10:53:02 +01:00
* @ since 5.4 . 0 The `$blog_id` parameter was added .
2013-12-02 21:45:10 +01:00
*
2021-11-18 14:57:01 +01:00
* @ param string $msg Email body .
* @ param int | string $blog_id The new site ' s ID as an integer or numeric string .
2013-12-02 21:45:10 +01:00
*/
2019-11-11 10:53:02 +01:00
$msg = apply_filters ( 'newblog_notify_siteadmin' , $msg , $blog_id );
2010-01-07 05:27:46 +01:00
2019-09-03 02:41:05 +02:00
/* translators: New site notification email subject. %s: New site URL. */
2010-04-30 05:17:49 +02:00
wp_mail ( $email , sprintf ( __ ( 'New Site Registration: %s' ), $siteurl ), $msg );
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2010-01-06 05:02:57 +01:00
return true ;
}
2011-01-04 10:02:38 +01:00
/**
* Notifies the network admin that a new user has been activated .
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'newuser_notify_siteadmin' } to change the content of
2011-01-04 10:02:38 +01:00
* the notification email .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
* @ param int $user_id The new user ' s ID .
* @ return bool
*/
2010-01-06 05:02:57 +01:00
function newuser_notify_siteadmin ( $user_id ) {
2020-05-16 20:42:12 +02:00
if ( 'yes' !== get_site_option ( 'registrationnotification' ) ) {
2010-01-06 05:02:57 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-01-07 05:27:46 +01:00
2015-10-07 19:11:25 +02:00
$email = get_site_option ( 'admin_email' );
2010-01-12 19:40:40 +01:00
2017-12-01 00:11:00 +01:00
if ( is_email ( $email ) == false ) {
2010-01-06 05:02:57 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2012-08-03 03:06:05 +02:00
$user = get_userdata ( $user_id );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$options_site_url = esc_url ( network_admin_url ( 'settings.php' ) );
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2017-12-01 00:11:00 +01:00
$msg = sprintf (
2019-09-03 02:41:05 +02:00
/* translators: New user notification email. 1: User login, 2: User IP address, 3: URL to Network Settings screen. */
2017-12-01 00:11:00 +01:00
__ (
' New User : % 1 $s
2017-10-03 15:13:47 +02:00
Remote IP address : % 2 $s
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
Disable these notifications : % 3 $s '
2018-08-17 03:51:36 +02:00
),
$user -> user_login ,
wp_unslash ( $_SERVER [ 'REMOTE_ADDR' ] ),
$options_site_url
2017-12-01 00:11:00 +01:00
);
2010-01-07 05:27:46 +01:00
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the message body of the new user activation email sent
2013-12-02 21:45:10 +01:00
* to the network administrator .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $msg Email body .
* @ param WP_User $user WP_User instance of the new user .
*/
2012-03-03 00:52:19 +01:00
$msg = apply_filters ( 'newuser_notify_siteadmin' , $msg , $user );
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2019-09-03 02:41:05 +02:00
/* translators: New user notification email subject. %s: User login. */
2017-12-01 00:11:00 +01:00
wp_mail ( $email , sprintf ( __ ( 'New User Registration: %s' ), $user -> user_login ), $msg );
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2010-01-06 05:02:57 +01:00
return true ;
}
2011-01-04 10:02:38 +01:00
/**
2017-09-26 02:12:45 +02:00
* Checks whether a site name is already taken .
*
* The name is the site 's subdomain or the site' s subdirectory
* path depending on the network settings .
2011-01-04 10:02:38 +01:00
*
* Used during the new site registration process to ensure
2017-09-26 02:12:45 +02:00
* that each site name is unique .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2017-08-12 14:48:47 +02:00
* @ param string $domain The domain to be checked .
* @ param string $path The path to be checked .
2017-08-22 13:52:48 +02:00
* @ param int $network_id Optional . Network ID . Relevant only on multi - network installations .
2017-09-26 02:12:45 +02:00
* @ return int | null The site ID if the site name exists , null otherwise .
2011-01-04 10:02:38 +01:00
*/
2017-08-12 14:48:47 +02:00
function domain_exists ( $domain , $path , $network_id = 1 ) {
2017-12-01 00:11:00 +01:00
$path = trailingslashit ( $path );
$args = array (
2019-03-18 16:56:51 +01:00
'network_id' => $network_id ,
'domain' => $domain ,
'path' => $path ,
'fields' => 'ids' ,
'number' => 1 ,
'update_site_meta_cache' => false ,
2016-06-02 04:26:29 +02:00
);
$result = get_sites ( $args );
$result = array_shift ( $result );
2014-03-25 18:32:16 +01:00
2013-12-02 21:45:10 +01:00
/**
2017-09-26 02:12:45 +02:00
* Filters whether a site name is taken .
*
* The name is the site 's subdomain or the site' s subdirectory
* path depending on the network settings .
2013-12-02 21:45:10 +01:00
*
* @ since 3.5 . 0
*
2017-09-26 02:12:45 +02:00
* @ param int | null $result The site ID if the site name exists , null otherwise .
2017-08-12 14:48:47 +02:00
* @ param string $domain Domain to be checked .
* @ param string $path Path to be checked .
2017-08-22 13:52:48 +02:00
* @ param int $network_id Network ID . Relevant only on multi - network installations .
2013-12-02 21:45:10 +01:00
*/
2017-08-12 14:48:47 +02:00
return apply_filters ( 'domain_exists' , $result , $domain , $path , $network_id );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2020-09-30 23:54:07 +02:00
* Notifies the site administrator that their site activation was successful .
2011-01-04 10:02:38 +01:00
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'wpmu_welcome_notification' } to disable or bypass .
2011-01-04 10:02:38 +01:00
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'update_welcome_email' } and { @ see 'update_welcome_subject' } to
2011-01-04 10:02:38 +01:00
* modify the content and subject line of the notification email .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2020-09-30 23:54:07 +02:00
* @ param int $blog_id Site ID .
2017-01-12 06:21:41 +01:00
* @ param int $user_id User ID .
2020-09-30 23:54:07 +02:00
* @ param string $password User password , or " N/A " if the user account is not new .
2017-01-12 06:21:41 +01:00
* @ param string $title Site title .
* @ param array $meta Optional . Signup meta data . By default , contains the requested privacy setting and lang_id .
2020-09-30 23:54:07 +02:00
* @ return bool Whether the email notification was sent .
2011-01-04 10:02:38 +01:00
*/
2013-09-02 05:33:09 +02:00
function wpmu_welcome_notification ( $blog_id , $user_id , $password , $title , $meta = array () ) {
2016-10-19 06:47:30 +02:00
$current_network = get_network ();
2010-01-06 05:02:57 +01:00
2013-12-02 21:45:10 +01:00
/**
2020-09-30 23:54:07 +02:00
* Filters whether to bypass the welcome email sent to the site administrator after site activation .
2013-12-02 21:45:10 +01:00
*
* Returning false disables the welcome email .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
2021-01-03 23:04:04 +01:00
* @ param int | false $blog_id Site ID , or false to prevent the email from sending .
* @ param int $user_id User ID of the site administrator .
* @ param string $password User password , or " N/A " if the user account is not new .
* @ param string $title Site title .
* @ param array $meta Signup meta data . By default , contains the requested privacy setting and lang_id .
2013-12-02 21:45:10 +01:00
*/
2017-12-01 00:11:00 +01:00
if ( ! apply_filters ( 'wpmu_welcome_notification' , $blog_id , $user_id , $password , $title , $meta ) ) {
2010-01-06 05:02:57 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2016-10-26 17:36:31 +02:00
$user = get_userdata ( $user_id );
$switched_locale = switch_to_locale ( get_user_locale ( $user ) );
2015-10-07 19:11:25 +02:00
$welcome_email = get_site_option ( 'welcome_email' );
2020-02-09 17:55:09 +01:00
if ( false == $welcome_email ) {
2015-05-06 11:12:25 +02:00
/* translators: Do not translate USERNAME, SITE_NAME, BLOG_URL, PASSWORD: those are placeholders. */
2017-12-01 00:11:00 +01:00
$welcome_email = __ (
' Howdy USERNAME ,
2010-01-06 05:02:57 +01:00
2010-05-01 09:09:38 +02:00
Your new SITE_NAME site has been successfully set up at :
2010-01-06 05:02:57 +01:00
BLOG_URL
You can log in to the administrator account with the following information :
2014-10-02 03:28:16 +02:00
2010-01-06 05:02:57 +01:00
Username : USERNAME
Password : PASSWORD
2014-12-05 02:15:26 +01:00
Log in here : BLOG_URLwp - login . php
2010-01-06 05:02:57 +01:00
2011-06-12 10:00:22 +02:00
We hope you enjoy your new site . Thanks !
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
-- The Team @ SITE_NAME '
);
2015-05-06 11:12:25 +02:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$url = get_blogaddress_by_id ( $blog_id );
2010-01-06 05:02:57 +01:00
2016-10-19 06:47:30 +02:00
$welcome_email = str_replace ( 'SITE_NAME' , $current_network -> site_name , $welcome_email );
2010-04-24 19:49:08 +02:00
$welcome_email = str_replace ( 'BLOG_TITLE' , $title , $welcome_email );
$welcome_email = str_replace ( 'BLOG_URL' , $url , $welcome_email );
$welcome_email = str_replace ( 'USERNAME' , $user -> user_login , $welcome_email );
$welcome_email = str_replace ( 'PASSWORD' , $password , $welcome_email );
2010-01-06 05:02:57 +01:00
2013-12-02 21:45:10 +01:00
/**
2020-09-30 23:54:07 +02:00
* Filters the content of the welcome email sent to the site administrator after site activation .
2013-12-02 21:45:10 +01:00
*
* Content should be formatted for transmission via wp_mail () .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $welcome_email Message body of the email .
2020-09-30 23:54:07 +02:00
* @ param int $blog_id Site ID .
* @ param int $user_id User ID of the site administrator .
* @ param string $password User password , or " N/A " if the user account is not new .
2013-12-02 21:45:10 +01:00
* @ param string $title Site title .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . By default , contains the requested privacy setting and lang_id .
2013-12-02 21:45:10 +01:00
*/
$welcome_email = apply_filters ( 'update_welcome_email' , $welcome_email , $blog_id , $user_id , $password , $title , $meta );
2010-01-12 19:40:40 +01:00
2020-05-16 20:42:12 +02:00
$admin_email = get_site_option ( 'admin_email' );
if ( '' === $admin_email ) {
Mail: Ensure that a server hostname can be set by using `network_home_url()`.
Due to the varying server setups, `$_SERVER['SERVER_NAME'];` can't reliably ensure that there will be a relevant host that could be used as the hostname in an email. Since the `network_home_url()` is set at this point, and is filterable, this should better enable emails to be sent from the server.
Fixes #25239.
Props layotte, SergeyBiryukov, nacin, sreedoap, szepe.viktor, jesin, kitchin, mensmaximus, mt8.biz, Grzegorz.Janoszka, cbutlerjr, dd32, BjornW, neodjandre, BjornW, Ipstenu, ocean90, danielbachhuber, desmith, joemcgill, jdgrimes, riasat, derekakelly, swissspidy, lilmike, tsimmons, robert.peake, DavidAnderson, cloudstek, pigdog234, BjornW, rawrly, pessoft, RedSand, seayou, dvershinin, bastho, chesio, Starbuck, afragen, ocean90, whyisjake.
Built from https://develop.svn.wordpress.org/trunk@48601
git-svn-id: http://core.svn.wordpress.org/trunk@48363 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-24 19:40:06 +02:00
$admin_email = 'support@' . wp_parse_url ( network_home_url (), PHP_URL_HOST );
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2020-05-16 20:42:12 +02:00
$from_name = ( '' !== get_site_option ( 'site_name' ) ) ? esc_html ( get_site_option ( 'site_name' ) ) : 'WordPress' ;
2017-12-01 00:11:00 +01:00
$message_headers = " From: \" { $from_name } \" < { $admin_email } > \n " . 'Content-Type: text/plain; charset="' . get_option ( 'blog_charset' ) . " \" \n " ;
$message = $welcome_email ;
2010-01-12 19:40:40 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $current_network -> site_name ) ) {
2016-10-19 06:47:30 +02:00
$current_network -> site_name = 'WordPress' ;
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2019-09-03 02:41:05 +02:00
/* translators: New site notification email subject. 1: Network title, 2: New site title. */
2016-11-21 02:22:32 +01:00
$subject = __ ( 'New %1$s Site: %2$s' );
2013-12-02 21:45:10 +01:00
/**
2020-09-30 23:54:07 +02:00
* Filters the subject of the welcome email sent to the site administrator after site activation .
2013-12-02 21:45:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $subject Subject of the email .
*/
2016-11-21 02:22:32 +01:00
$subject = apply_filters ( 'update_welcome_subject' , sprintf ( $subject , $current_network -> site_name , wp_unslash ( $title ) ) );
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2014-03-28 03:44:15 +01:00
wp_mail ( $user -> user_email , wp_specialchars_decode ( $subject ), $message , $message_headers );
2016-10-26 17:36:31 +02:00
if ( $switched_locale ) {
restore_previous_locale ();
}
2010-01-06 05:02:57 +01:00
return true ;
}
2020-10-11 21:29:08 +02:00
/**
* Notifies the Multisite network administrator that a new site was created .
*
* Filter { @ see 'send_new_site_email' } to disable or bypass .
*
* Filter { @ see 'new_site_email' } to filter the contents .
*
* @ since 5.6 . 0
*
* @ param int $site_id Site ID of the new site .
* @ param int $user_id User ID of the administrator of the new site .
* @ return bool Whether the email notification was sent .
*/
function wpmu_new_site_admin_notification ( $site_id , $user_id ) {
$site = get_site ( $site_id );
$user = get_userdata ( $user_id );
$email = get_site_option ( 'admin_email' );
if ( ! $site || ! $user || ! $email ) {
return false ;
}
/**
* Filters whether to send an email to the Multisite network administrator when a new site is created .
*
* Return false to disable sending the email .
*
* @ since 5.6 . 0
*
* @ param bool $send Whether to send the email .
* @ param WP_Site $site Site object of the new site .
* @ param WP_User $user User object of the administrator of the new site .
*/
if ( ! apply_filters ( 'send_new_site_email' , true , $site , $user ) ) {
return false ;
}
$switched_locale = false ;
$network_admin = get_user_by ( 'email' , $email );
if ( $network_admin ) {
2020-10-12 17:47:11 +02:00
// If the network admin email address corresponds to a user, switch to their locale.
2020-10-11 21:29:08 +02:00
$switched_locale = switch_to_locale ( get_user_locale ( $network_admin ) );
} else {
2020-10-12 17:47:11 +02:00
// Otherwise switch to the locale of the current site.
2020-10-11 21:29:08 +02:00
$switched_locale = switch_to_locale ( get_locale () );
}
$subject = sprintf (
/* translators: New site notification email subject. %s: Network title. */
__ ( '[%s] New Site Created' ),
get_network () -> site_name
);
$message = sprintf (
/* translators: New site notification email. 1: User login, 2: Site URL, 3: Site title. */
__ (
' New site created by % 1 $s
Address : % 2 $s
Name : % 3 $s '
),
$user -> user_login ,
get_site_url ( $site -> id ),
get_blog_option ( $site -> id , 'blogname' )
);
$header = sprintf (
'From: "%1$s" <%2$s>' ,
_x ( 'Site Admin' , 'email "From" field' ),
$email
);
$new_site_email = array (
'to' => $email ,
'subject' => $subject ,
'message' => $message ,
'headers' => $header ,
);
/**
* Filters the content of the email sent to the Multisite network administrator when a new site is created .
*
* Content should be formatted for transmission via wp_mail () .
*
* @ since 5.6 . 0
*
* @ param array $new_site_email {
* Used to build wp_mail () .
*
* @ type string $to The email address of the recipient .
* @ type string $subject The subject of the email .
* @ type string $message The content of the email .
* @ type string $headers Headers .
* }
* @ param WP_Site $site Site object of the new site .
* @ param WP_User $user User object of the administrator of the new site .
*/
$new_site_email = apply_filters ( 'new_site_email' , $new_site_email , $site , $user );
wp_mail (
$new_site_email [ 'to' ],
wp_specialchars_decode ( $new_site_email [ 'subject' ] ),
$new_site_email [ 'message' ],
$new_site_email [ 'headers' ]
);
if ( $switched_locale ) {
restore_previous_locale ();
}
return true ;
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Notifies a user that their account activation has been successful .
2011-01-04 10:02:38 +01:00
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'wpmu_welcome_user_notification' } to disable or bypass .
2011-01-04 10:02:38 +01:00
*
2016-05-23 20:56:27 +02:00
* Filter { @ see 'update_welcome_user_email' } and { @ see 'update_welcome_user_subject' } to
2011-01-04 10:02:38 +01:00
* modify the content and subject line of the notification email .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2017-01-12 06:21:41 +01:00
* @ param int $user_id User ID .
* @ param string $password User password .
* @ param array $meta Optional . Signup meta data . Default empty array .
2011-01-04 10:02:38 +01:00
* @ return bool
*/
2013-09-02 05:33:09 +02:00
function wpmu_welcome_user_notification ( $user_id , $password , $meta = array () ) {
2016-10-19 06:47:30 +02:00
$current_network = get_network ();
2010-01-06 05:02:57 +01:00
2013-12-02 21:45:10 +01:00
/**
2017-12-01 00:11:00 +01:00
* Filters whether to bypass the welcome email after user activation .
2013-12-02 21:45:10 +01:00
*
* Returning false disables the welcome email .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param int $user_id User ID .
* @ param string $password User password .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . Default empty array .
2013-12-02 21:45:10 +01:00
*/
2017-12-01 00:11:00 +01:00
if ( ! apply_filters ( 'wpmu_welcome_user_notification' , $user_id , $password , $meta ) ) {
2010-01-06 05:02:57 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2015-10-07 19:11:25 +02:00
$welcome_email = get_site_option ( 'welcome_user_email' );
2010-01-06 05:02:57 +01:00
2012-08-03 03:06:05 +02:00
$user = get_userdata ( $user_id );
2010-01-06 05:02:57 +01:00
2016-10-26 17:36:31 +02:00
$switched_locale = switch_to_locale ( get_user_locale ( $user ) );
2013-12-02 21:45:10 +01:00
/**
2016-03-03 10:12:27 +01:00
* Filters the content of the welcome email after user activation .
2013-12-02 21:45:10 +01:00
*
* Content should be formatted for transmission via wp_mail () .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
2016-03-03 10:12:27 +01:00
* @ param string $welcome_email The message body of the account activation success email .
2013-12-02 21:45:10 +01:00
* @ param int $user_id User ID .
* @ param string $password User password .
2017-01-12 06:21:41 +01:00
* @ param array $meta Signup meta data . Default empty array .
2013-12-02 21:45:10 +01:00
*/
$welcome_email = apply_filters ( 'update_welcome_user_email' , $welcome_email , $user_id , $password , $meta );
2016-10-19 06:47:30 +02:00
$welcome_email = str_replace ( 'SITE_NAME' , $current_network -> site_name , $welcome_email );
2010-04-24 19:49:08 +02:00
$welcome_email = str_replace ( 'USERNAME' , $user -> user_login , $welcome_email );
$welcome_email = str_replace ( 'PASSWORD' , $password , $welcome_email );
$welcome_email = str_replace ( 'LOGINLINK' , wp_login_url (), $welcome_email );
2010-01-06 05:02:57 +01:00
2015-10-07 19:11:25 +02:00
$admin_email = get_site_option ( 'admin_email' );
2010-01-12 19:40:40 +01:00
2020-05-16 20:42:12 +02:00
if ( '' === $admin_email ) {
Mail: Ensure that a server hostname can be set by using `network_home_url()`.
Due to the varying server setups, `$_SERVER['SERVER_NAME'];` can't reliably ensure that there will be a relevant host that could be used as the hostname in an email. Since the `network_home_url()` is set at this point, and is filterable, this should better enable emails to be sent from the server.
Fixes #25239.
Props layotte, SergeyBiryukov, nacin, sreedoap, szepe.viktor, jesin, kitchin, mensmaximus, mt8.biz, Grzegorz.Janoszka, cbutlerjr, dd32, BjornW, neodjandre, BjornW, Ipstenu, ocean90, danielbachhuber, desmith, joemcgill, jdgrimes, riasat, derekakelly, swissspidy, lilmike, tsimmons, robert.peake, DavidAnderson, cloudstek, pigdog234, BjornW, rawrly, pessoft, RedSand, seayou, dvershinin, bastho, chesio, Starbuck, afragen, ocean90, whyisjake.
Built from https://develop.svn.wordpress.org/trunk@48601
git-svn-id: http://core.svn.wordpress.org/trunk@48363 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-24 19:40:06 +02:00
$admin_email = 'support@' . wp_parse_url ( network_home_url (), PHP_URL_HOST );
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2020-05-16 20:42:12 +02:00
$from_name = ( '' !== get_site_option ( 'site_name' ) ) ? esc_html ( get_site_option ( 'site_name' ) ) : 'WordPress' ;
2017-12-01 00:11:00 +01:00
$message_headers = " From: \" { $from_name } \" < { $admin_email } > \n " . 'Content-Type: text/plain; charset="' . get_option ( 'blog_charset' ) . " \" \n " ;
$message = $welcome_email ;
2010-01-12 19:40:40 +01:00
2017-12-01 00:11:00 +01:00
if ( empty ( $current_network -> site_name ) ) {
2016-10-19 06:47:30 +02:00
$current_network -> site_name = 'WordPress' ;
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2019-09-03 02:41:05 +02:00
/* translators: New user notification email subject. 1: Network title, 2: New user login. */
2016-11-21 02:22:32 +01:00
$subject = __ ( 'New %1$s User: %2$s' );
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the subject of the welcome email after user activation .
2013-12-02 21:45:10 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2013-12-02 21:45:10 +01:00
*
* @ param string $subject Subject of the email .
*/
2017-12-01 00:11:00 +01:00
$subject = apply_filters ( 'update_welcome_user_subject' , sprintf ( $subject , $current_network -> site_name , $user -> user_login ) );
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2014-03-28 03:44:15 +01:00
wp_mail ( $user -> user_email , wp_specialchars_decode ( $subject ), $message , $message_headers );
2016-10-26 17:36:31 +02:00
if ( $switched_locale ) {
restore_previous_locale ();
}
2010-01-06 05:02:57 +01:00
return true ;
}
2016-09-20 23:39:29 +02:00
/**
2022-04-24 23:28:07 +02:00
* Gets the current network .
2016-09-20 23:39:29 +02:00
*
* Returns an object containing the 'id' , 'domain' , 'path' , and 'site_name'
* properties of the network being viewed .
*
* @ see wpmu_current_site ()
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2016-09-20 23:39:29 +02:00
*
* @ global WP_Network $current_site
*
* @ return WP_Network
*/
function get_current_site () {
global $current_site ;
return $current_site ;
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Gets a user ' s most recent post .
2011-01-04 10:02:38 +01:00
*
* Walks through each of a user ' s blogs to find the post with
* the most recent post_date_gmt .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +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
*
2011-01-04 10:02:38 +01:00
* @ param int $user_id
* @ return array Contains the blog_id , post_id , post_date_gmt , and post_gmt_ts
*/
2010-01-06 05:02:57 +01:00
function get_most_recent_post_of_user ( $user_id ) {
global $wpdb ;
2017-12-01 00:11:00 +01:00
$user_blogs = get_blogs_of_user ( ( int ) $user_id );
2010-01-06 05:02:57 +01:00
$most_recent_post = array ();
// Walk through each blog and get the most recent post
2020-01-29 01:45:18 +01:00
// published by $user_id.
2010-01-06 05:02:57 +01:00
foreach ( ( array ) $user_blogs as $blog ) {
2017-12-01 00:11:00 +01:00
$prefix = $wpdb -> get_blog_prefix ( $blog -> userblog_id );
$recent_post = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT ID, post_date_gmt FROM { $prefix } posts WHERE post_author = %d AND post_type = 'post' AND post_status = 'publish' ORDER BY post_date_gmt DESC LIMIT 1 " , $user_id ), ARRAY_A );
2010-01-06 05:02:57 +01:00
2020-01-29 01:45:18 +01:00
// Make sure we found a post.
2017-12-01 00:11:00 +01:00
if ( isset ( $recent_post [ 'ID' ] ) ) {
$post_gmt_ts = strtotime ( $recent_post [ 'post_date_gmt' ] );
2010-01-06 05:02:57 +01:00
2020-01-29 01:45:18 +01:00
/*
* If this is the first post checked
* or if this post is newer than the current recent post ,
* make it the new most recent post .
*/
2017-12-01 00:11:00 +01:00
if ( ! isset ( $most_recent_post [ 'post_gmt_ts' ] ) || ( $post_gmt_ts > $most_recent_post [ 'post_gmt_ts' ] ) ) {
2010-01-06 05:02:57 +01:00
$most_recent_post = array (
2017-12-01 00:11:00 +01:00
'blog_id' => $blog -> userblog_id ,
'post_id' => $recent_post [ 'ID' ],
'post_date_gmt' => $recent_post [ 'post_date_gmt' ],
'post_gmt_ts' => $post_gmt_ts ,
2010-01-06 05:02:57 +01:00
);
}
}
}
return $most_recent_post ;
}
2020-01-29 01:45:18 +01:00
//
// Misc functions.
//
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Checks an array of MIME types against a list of allowed types .
2011-01-04 10:02:38 +01:00
*
2011-01-06 05:11:14 +01:00
* WordPress ships with a set of allowed upload filetypes ,
2011-01-04 10:02:38 +01:00
* which is defined in wp - includes / functions . php in
* get_allowed_mime_types () . This function is used to filter
General: Remove “whitelist” and “blacklist” in favor of more clear and inclusive language.
“The WordPress open source community cares about diversity. We strive to maintain a welcoming environment where everyone can feel included.”
With this commit, all occurrences of “whitelist” and “blacklist” (with the single exception of the `$new_whitelist_options` global variable) are removed. A new ticket has been opened to explore renaming the `$new_whitelist_options` variable (#50434).
Changing to more specific names or rewording sentences containing these terms not only makes the code more inclusive, but also helps provide clarity. These terms are often ambiguous. What is being blocked or allowed is not always immediately clear. This can make it more difficult for non-native English speakers to read through the codebase.
Words matter. If one contributor feels more welcome because these terms are removed, this was worth the effort.
Props strangerstudios, jorbin, desrosj, joemcgill, timothyblynjacobs, ocean90, ayeshrajans, davidbaumwald, earnjam.
See #48900, #50434.
Fixes #50413.
Built from https://develop.svn.wordpress.org/trunk@48121
git-svn-id: http://core.svn.wordpress.org/trunk@47890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-06-22 19:26:13 +02:00
* that list against the filetypes allowed provided by Multisite
2011-01-06 05:11:14 +01:00
* Super Admins at wp - admin / network / settings . php .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
* @ param array $mimes
* @ return array
*/
2010-01-12 19:40:40 +01:00
function check_upload_mimes ( $mimes ) {
2017-12-01 00:11:00 +01:00
$site_exts = explode ( ' ' , get_site_option ( 'upload_filetypes' , 'jpg jpeg png gif' ) );
2014-09-07 12:11:17 +02:00
$site_mimes = array ();
2010-01-06 05:02:57 +01:00
foreach ( $site_exts as $ext ) {
2010-04-23 21:00:30 +02:00
foreach ( $mimes as $ext_pattern => $mime ) {
2020-05-16 20:42:12 +02:00
if ( '' !== $ext && false !== strpos ( $ext_pattern , $ext ) ) {
2017-12-01 00:11:00 +01:00
$site_mimes [ $ext_pattern ] = $mime ;
}
2010-01-06 05:02:57 +01:00
}
}
return $site_mimes ;
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Updates a blog ' s post count .
2011-01-04 10:02:38 +01:00
*
* WordPress MS stores a blog ' s post count as an option so as
* to avoid extraneous COUNTs when a blog ' s details are fetched
2016-10-26 05:39:29 +02:00
* with get_site () . This function is called when posts are published
* or unpublished to make sure the count stays current .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2015-05-26 23:51:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2016-01-09 02:45:26 +01:00
*
* @ param string $deprecated Not used .
2011-01-04 10:02:38 +01:00
*/
2010-01-06 05:02:57 +01:00
function update_posts_count ( $deprecated = '' ) {
global $wpdb ;
2010-04-24 19:49:08 +02:00
update_option ( 'post_count' , ( int ) $wpdb -> get_var ( " SELECT COUNT(ID) FROM { $wpdb -> posts } WHERE post_status = 'publish' and post_type = 'post' " ) );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2017-06-26 20:05:41 +02:00
* Logs the user email , IP , and registration date of a new site .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2019-01-08 09:58:49 +01:00
* @ since 5.1 . 0 Parameters now support input from the { @ see 'wp_initialize_site' } action .
2011-01-04 10:02:38 +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
*
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
* @ param WP_Site | int $blog_id The new site ' s object or ID .
* @ param int | array $user_id User ID , or array of arguments including 'user_id' .
2011-01-04 10:02:38 +01:00
*/
2010-01-06 05:02:57 +01:00
function wpmu_log_new_registrations ( $blog_id , $user_id ) {
global $wpdb ;
Multisite: Introduce a site initialization and uninitialization API.
This changeset makes the new CRUD API for sites introduced in [43548] usable for real-world sites. A new function `wp_initialize_site()`, which takes care of creating a site's database tables and populating them with initial values, is hooked into the site insertion process that is initiated when calling `wp_insert_site()`. Similarly, a new function `wp_uninitialize_site()`, which takes care of dropping a site's database tables, is hooked into the site deletion process that is initiated when calling `wp_delete_site()`.
A new function `wp_is_site_initialized()` completes the API, allowing to check whether a site is initialized. Since this function always makes a database request in its default behavior, it should be called with caution. Plugins that would like to use site initialization in special ways can leverage a `pre_wp_is_site_initialized` filter to alter that default behavior.
The separate handling of the site's row in the `wp_blogs` database table and the actual site setup allows for more flexibility in controlling whether or how a site's data is set up. For example, a unit test that only checks data from the site's database table row can unhook the site initialization process to improve performance. At the same time, developers consuming the new sites API only need to know about the CRUD functions, since the initialization and uninitialization processes happen internally.
With this changeset, the foundation for a sites REST API endpoint is fully available. The previously recommended functions `wpmu_create_blog()` and `wpmu_delete_blog()` now call the new respective function internally. Further follow-up work to this includes replacing calls to `wpmu_create_blog()` with `wp_insert_site()`, `update_blog_details()` with `wp_update_site()` and `wpmu_delete_blog()` with `wp_delete_blog()` throughout the codebase.
As a side-effect of this work, the `wpmu_new_blog`, `delete_blog`, and `deleted_blog` actions and the `install_blog()` function have been deprecated.
Fixes #41333. See #40364.
Built from https://develop.svn.wordpress.org/trunk@43654
git-svn-id: http://core.svn.wordpress.org/trunk@43483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-09-24 17:09:26 +02:00
if ( is_object ( $blog_id ) ) {
$blog_id = $blog_id -> blog_id ;
}
if ( is_array ( $user_id ) ) {
$user_id = ! empty ( $user_id [ 'user_id' ] ) ? $user_id [ 'user_id' ] : 0 ;
}
2012-08-03 03:06:05 +02:00
$user = get_userdata ( ( int ) $user_id );
2017-12-01 00:11:00 +01:00
if ( $user ) {
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> registration_log ,
array (
2017-12-01 00:11:00 +01:00
'email' => $user -> user_email ,
'IP' => preg_replace ( '/[^0-9., ]/' , '' , wp_unslash ( $_SERVER [ 'REMOTE_ADDR' ] ) ),
'blog_id' => $blog_id ,
'date_registered' => current_time ( 'mysql' ),
)
);
}
2010-01-06 05:02:57 +01:00
}
2010-02-02 23:58:06 +01:00
/**
* Maintains a canonical list of terms by syncing terms created for each blog with the global terms table .
*
* @ since 3.0 . 0
*
* @ see term_id_filter
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-26 23:51:31 +02:00
*
2016-01-09 02:45:26 +01:00
* @ param int $term_id An ID for a term on the current blog .
* @ param string $deprecated Not used .
2010-02-02 23:58:06 +01:00
* @ return int An ID from the global terms table mapped from $term_id .
*/
2010-01-06 05:02:57 +01:00
function global_terms ( $term_id , $deprecated = '' ) {
2010-05-25 02:13:03 +02:00
global $wpdb ;
2010-05-25 02:31:07 +02:00
static $global_terms_recurse = null ;
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
if ( ! global_terms_enabled () ) {
2010-03-16 18:17:55 +01:00
return $term_id ;
2017-12-01 00:11:00 +01:00
}
2010-03-16 18:17:55 +01:00
2020-01-29 01:45:18 +01:00
// Prevent a race condition.
2010-05-25 02:13:03 +02:00
$recurse_start = false ;
2020-02-09 17:55:09 +01:00
if ( null === $global_terms_recurse ) {
2017-12-01 00:11:00 +01:00
$recurse_start = true ;
2010-04-02 03:26:44 +02:00
$global_terms_recurse = 1 ;
} elseif ( 10 < $global_terms_recurse ++ ) {
return $term_id ;
}
2020-10-08 23:15:13 +02:00
$term_id = ( int ) $term_id ;
2017-12-01 00:11:00 +01:00
$c = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->terms WHERE term_id = %d " , $term_id ) );
2010-01-06 05:02:57 +01:00
$global_id = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT cat_ID FROM $wpdb->sitecategories WHERE category_nicename = %s " , $c -> slug ) );
2020-02-09 17:55:09 +01:00
if ( null == $global_id ) {
2010-04-02 03:26:44 +02:00
$used_global_id = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT cat_ID FROM $wpdb->sitecategories WHERE cat_ID = %d " , $c -> term_id ) );
if ( null == $used_global_id ) {
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> sitecategories ,
array (
2017-12-01 00:11:00 +01:00
'cat_ID' => $term_id ,
'cat_name' => $c -> name ,
'category_nicename' => $c -> slug ,
)
);
2010-04-02 03:26:44 +02:00
$global_id = $wpdb -> insert_id ;
2017-12-01 00:11:00 +01:00
if ( empty ( $global_id ) ) {
2010-05-28 22:03:29 +02:00
return $term_id ;
2017-12-01 00:11:00 +01:00
}
2010-04-02 03:26:44 +02:00
} else {
$max_global_id = $wpdb -> get_var ( " SELECT MAX(cat_ID) FROM $wpdb->sitecategories " );
2017-12-01 00:11:00 +01:00
$max_local_id = $wpdb -> get_var ( " SELECT MAX(term_id) FROM $wpdb->terms " );
2010-05-25 09:24:10 +02:00
$new_global_id = max ( $max_global_id , $max_local_id ) + mt_rand ( 100 , 400 );
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> sitecategories ,
array (
2017-12-01 00:11:00 +01:00
'cat_ID' => $new_global_id ,
'cat_name' => $c -> name ,
'category_nicename' => $c -> slug ,
)
);
2010-04-02 03:26:44 +02:00
$global_id = $wpdb -> insert_id ;
}
} elseif ( $global_id != $term_id ) {
2015-04-07 06:14:26 +02:00
$local_id = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT term_id FROM $wpdb->terms WHERE term_id = %d " , $global_id ) );
2015-01-16 22:19:22 +01:00
if ( null != $local_id ) {
global_terms ( $local_id );
if ( 10 < $global_terms_recurse ) {
2010-04-02 03:26:44 +02:00
$global_id = $term_id ;
2015-01-16 22:19:22 +01:00
}
}
2010-01-06 05:02:57 +01:00
}
2010-04-02 03:26:44 +02:00
if ( $global_id != $term_id ) {
2017-12-01 00:11:00 +01:00
if ( get_option ( 'default_category' ) == $term_id ) {
2010-04-02 03:26:44 +02:00
update_option ( 'default_category' , $global_id );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$wpdb -> update ( $wpdb -> terms , array ( 'term_id' => $global_id ), array ( 'term_id' => $term_id ) );
$wpdb -> update ( $wpdb -> term_taxonomy , array ( 'term_id' => $global_id ), array ( 'term_id' => $term_id ) );
$wpdb -> update ( $wpdb -> term_taxonomy , array ( 'parent' => $global_id ), array ( 'parent' => $term_id ) );
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
clean_term_cache ( $term_id );
2010-04-02 03:26:44 +02:00
}
2017-12-01 00:11:00 +01:00
if ( $recurse_start ) {
2010-05-25 02:31:07 +02:00
$global_terms_recurse = null ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2010-01-07 05:27:46 +01:00
return $global_id ;
}
2010-01-06 05:02:57 +01:00
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Ensures that the current site ' s domain is listed in the allowed redirect host list .
2011-01-04 10:02:38 +01:00
*
* @ see wp_validate_redirect ()
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2016-01-09 02:45:26 +01:00
* @ param array | string $deprecated Not used .
2019-11-05 22:23:02 +01:00
* @ return string [] {
* An array containing the current site ' s domain .
*
* @ type string $ 0 The current site ' s domain .
* }
2011-01-04 10:02:38 +01:00
*/
2010-01-06 05:02:57 +01:00
function redirect_this_site ( $deprecated = '' ) {
2016-10-19 06:47:30 +02:00
return array ( get_network () -> domain );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Checks whether an upload is too big .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2015-10-02 00:24:24 +02:00
* @ blessed
*
2011-01-04 10:02:38 +01:00
* @ param array $upload
2015-05-26 23:51:31 +02:00
* @ return string | array If the upload is under the size limit , $upload is returned . Otherwise returns an error message .
2011-01-04 10:02:38 +01:00
*/
2010-01-06 05:02:57 +01:00
function upload_is_file_too_big ( $upload ) {
2017-12-01 00:11:00 +01:00
if ( ! is_array ( $upload ) || defined ( 'WP_IMPORTING' ) || get_site_option ( 'upload_space_check_disabled' ) ) {
2010-01-06 05:02:57 +01:00
return $upload ;
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2017-12-01 00:11:00 +01:00
if ( strlen ( $upload [ 'bits' ] ) > ( KB_IN_BYTES * get_site_option ( 'fileupload_maxk' , 1500 ) ) ) {
2019-09-03 02:41:05 +02:00
/* translators: %s: Maximum allowed file size in kilobytes. */
2018-03-11 17:44:34 +01:00
return sprintf ( __ ( 'This file is too big. Files must be less than %s KB in size.' ) . '<br />' , get_site_option ( 'fileupload_maxk' , 1500 ) );
2015-10-21 16:03:25 +02:00
}
2010-01-06 05:02:57 +01:00
return $upload ;
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Adds a nonce field to the signup page .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*/
2010-01-06 05:02:57 +01:00
function signup_nonce_fields () {
$id = mt_rand ();
echo " <input type='hidden' name='signup_form_id' value=' { $id } ' /> " ;
2017-12-01 00:11:00 +01:00
wp_nonce_field ( 'signup_form_' . $id , '_signup_form' , false );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Processes the signup nonce created in signup_nonce_fields () .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
* @ param array $result
* @ return array
*/
2010-01-06 05:02:57 +01:00
function signup_nonce_check ( $result ) {
2017-12-01 00:11:00 +01:00
if ( ! strpos ( $_SERVER [ 'PHP_SELF' ], 'wp-signup.php' ) ) {
2010-01-06 05:02:57 +01:00
return $result ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2018-04-13 17:30:20 +02:00
if ( ! wp_verify_nonce ( $_POST [ '_signup_form' ], 'signup_form_' . $_POST [ 'signup_form_id' ] ) ) {
$result [ 'errors' ] -> add ( 'invalid_nonce' , __ ( 'Unable to submit this form, please try again.' ) );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
return $result ;
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Corrects 404 redirects when NOBLOGREDIRECT is defined .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*/
2010-01-06 05:02:57 +01:00
function maybe_redirect_404 () {
2019-07-03 01:42:58 +02:00
if ( is_main_site () && is_404 () && defined ( 'NOBLOGREDIRECT' ) ) {
/**
* Filters the redirect URL for 404 s on the main site .
*
* The filter is only evaluated if the NOBLOGREDIRECT constant is defined .
*
* @ since 3.0 . 0
*
* @ param string $no_blog_redirect The redirect URL defined in NOBLOGREDIRECT .
*/
$destination = apply_filters ( 'blog_redirect_404' , NOBLOGREDIRECT );
2020-05-26 11:37:10 +02:00
2019-07-03 01:42:58 +02:00
if ( $destination ) {
2020-02-09 17:55:09 +01:00
if ( '%siteurl%' === $destination ) {
2019-07-03 01:42:58 +02:00
$destination = network_home_url ();
}
2020-05-26 11:37:10 +02:00
2019-07-03 01:42:58 +02:00
wp_redirect ( $destination );
2020-05-26 11:37:10 +02:00
exit ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
}
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Adds a new user to a blog by visiting / newbloguser / { key } /.
2011-01-04 10:02:38 +01:00
*
* This will only work when the user ' s details are saved as an option
2017-09-21 14:28:44 +02:00
* keyed as 'new_user_{key}' , where '{key}' is a hash generated for the user to be
2011-01-04 10:02:38 +01:00
* added , as when a user is invited through the regular WP Add User interface .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-06 05:11:14 +01:00
*/
2010-01-06 05:02:57 +01:00
function maybe_add_existing_user_to_blog () {
2017-12-01 00:11:00 +01:00
if ( false === strpos ( $_SERVER [ 'REQUEST_URI' ], '/newbloguser/' ) ) {
2015-05-26 23:51:31 +02:00
return ;
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
$parts = explode ( '/' , $_SERVER [ 'REQUEST_URI' ] );
$key = array_pop ( $parts );
2010-01-12 19:40:40 +01:00
2020-05-16 20:42:12 +02:00
if ( '' === $key ) {
2010-01-06 05:02:57 +01:00
$key = array_pop ( $parts );
2017-12-01 00:11:00 +01:00
}
2010-01-12 19:40:40 +01:00
2010-04-24 19:49:08 +02:00
$details = get_option ( 'new_user_' . $key );
2017-12-01 00:11:00 +01:00
if ( ! empty ( $details ) ) {
2010-04-24 20:39:22 +02:00
delete_option ( 'new_user_' . $key );
2017-12-01 00:11:00 +01:00
}
2010-04-24 20:39:22 +02:00
2017-12-01 00:11:00 +01:00
if ( empty ( $details ) || is_wp_error ( add_existing_user_to_blog ( $details ) ) ) {
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
wp_die (
sprintf (
2019-09-03 02:41:05 +02:00
/* translators: %s: Home URL. */
2020-11-09 11:53:10 +01:00
__ ( 'An error occurred adding you to this site. Go to the <a href="%s">homepage</a>.' ),
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
home_url ()
)
);
2017-12-01 00:11:00 +01:00
}
2010-05-03 22:26:11 +02:00
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
wp_die (
sprintf (
2019-09-03 02:41:05 +02:00
/* translators: 1: Home URL, 2: Admin URL. */
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
__ ( 'You have been added to this site. Please visit the <a href="%1$s">homepage</a> or <a href="%2$s">log in</a> using your username and password.' ),
home_url (),
admin_url ()
),
__ ( 'WordPress › Success' ),
array ( 'response' => 200 )
);
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Adds a user to a blog based on details from maybe_add_existing_user_to_blog () .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-06 05:11:14 +01:00
*
2021-01-05 18:16:11 +01:00
* @ param array | false $details {
2020-05-25 16:23:13 +02:00
* User details . Must at least contain values for the keys listed below .
*
* @ type int $user_id The ID of the user being added to the current blog .
* @ type string $role The role to be assigned to the user .
* }
2020-01-24 18:20:07 +01:00
* @ return true | WP_Error | void True on success or a WP_Error object if the user doesn ' t exist
* or could not be added . Void if $details array was not provided .
2011-01-06 05:11:14 +01:00
*/
2010-01-06 05:02:57 +01:00
function add_existing_user_to_blog ( $details = false ) {
if ( is_array ( $details ) ) {
2016-08-31 06:55:54 +02:00
$blog_id = get_current_blog_id ();
2017-12-01 00:11:00 +01:00
$result = add_user_to_blog ( $blog_id , $details [ 'user_id' ], $details [ 'role' ] );
2017-08-03 23:41:45 +02:00
2017-08-30 21:53:45 +02:00
/**
* Fires immediately after an existing user is added to a site .
*
* @ since MU ( 3.0 . 0 )
*
2020-01-24 18:20:07 +01:00
* @ param int $user_id User ID .
* @ param true | WP_Error $result True on success or a WP_Error object if the user doesn ' t exist
* or could not be added .
2017-08-30 21:53:45 +02:00
*/
do_action ( 'added_existing_user' , $details [ 'user_id' ], $result );
2017-08-03 23:41:45 +02:00
2015-05-26 23:51:31 +02:00
return $result ;
2010-01-06 05:02:57 +01:00
}
}
2011-01-04 10:02:38 +01:00
/**
2016-05-23 20:56:27 +02:00
* Adds a newly created user to the appropriate blog
2011-01-04 10:02:38 +01:00
*
2013-02-28 21:28:36 +01:00
* To add a user in general , use add_user_to_blog () . This function
2016-05-23 20:56:27 +02:00
* is specifically hooked into the { @ see 'wpmu_activate_user' } action .
2013-02-28 21:28:36 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2020-06-16 23:07:14 +02:00
*
2013-02-28 21:28:36 +01:00
* @ see add_user_to_blog ()
2011-01-06 05:11:14 +01:00
*
2020-01-24 18:20:07 +01:00
* @ param int $user_id User ID .
* @ param string $password User password . Ignored .
* @ param array $meta Signup meta data .
2011-01-06 05:11:14 +01:00
*/
2013-02-28 21:28:36 +01:00
function add_new_user_to_blog ( $user_id , $password , $meta ) {
2017-12-01 00:11:00 +01:00
if ( ! empty ( $meta [ 'add_to_blog' ] ) ) {
$blog_id = $meta [ 'add_to_blog' ];
$role = $meta [ 'new_role' ];
2020-01-29 01:45:18 +01:00
remove_user_from_blog ( $user_id , get_network () -> site_id ); // Remove user from main blog.
2017-08-03 23:41:45 +02:00
$result = add_user_to_blog ( $blog_id , $user_id , $role );
if ( ! is_wp_error ( $result ) ) {
update_user_meta ( $user_id , 'primary_blog' , $blog_id );
}
2010-01-06 05:02:57 +01:00
}
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Corrects From host on outgoing mail to match the site domain
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2016-01-09 02:45:26 +01:00
*
2017-10-03 00:14:46 +02:00
* @ param PHPMailer $phpmailer The PHPMailer instance ( passed by reference ) .
2011-01-06 05:11:14 +01:00
*/
2010-01-06 05:02:57 +01:00
function fix_phpmailer_messageid ( $phpmailer ) {
2016-10-19 06:47:30 +02:00
$phpmailer -> Hostname = get_network () -> domain ;
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Determines whether a user is marked as a spammer , based on user login .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
2013-07-29 05:23:51 +02:00
* @ param string | WP_User $user Optional . Defaults to current user . WP_User object ,
2017-12-01 00:11:00 +01:00
* or user login name as a string .
2011-01-04 10:02:38 +01:00
* @ return bool
2011-01-06 05:11:14 +01:00
*/
2013-07-29 05:23:51 +02:00
function is_user_spammy ( $user = null ) {
2017-12-01 00:11:00 +01:00
if ( ! ( $user instanceof WP_User ) ) {
2015-01-16 02:06:24 +01:00
if ( $user ) {
2013-07-29 05:23:51 +02:00
$user = get_user_by ( 'login' , $user );
2015-01-16 02:06:24 +01:00
} else {
2013-07-29 05:23:51 +02:00
$user = wp_get_current_user ();
2015-01-16 02:06:24 +01:00
}
2013-07-29 05:23:51 +02:00
}
2010-01-12 19:40:40 +01:00
2013-02-16 04:02:15 +01:00
return $user && isset ( $user -> spam ) && 1 == $user -> spam ;
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Updates this blog 's ' public ' setting in the global blogs table .
2011-01-04 10:02:38 +01:00
*
* Public blogs have a setting of 1 , private blogs are 0.
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
* @ param int $old_value
2015-05-26 23:51:31 +02:00
* @ param int $value The new public value
2011-01-06 05:11:14 +01:00
*/
2010-01-06 05:02:57 +01:00
function update_blog_public ( $old_value , $value ) {
2013-03-25 10:29:58 +01:00
update_blog_status ( get_current_blog_id (), 'public' , ( int ) $value );
2010-01-06 05:02:57 +01:00
}
2010-02-04 21:00:18 +01:00
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Determines whether users can self - register , based on Network settings .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
* @ return bool
2011-01-06 05:11:14 +01:00
*/
2010-01-06 05:02:57 +01:00
function users_can_register_signup_filter () {
2017-12-01 00:11:00 +01:00
$registration = get_site_option ( 'registration' );
2020-02-09 17:55:09 +01:00
return ( 'all' === $registration || 'user' === $registration );
2010-01-06 05:02:57 +01:00
}
2011-01-04 10:02:38 +01:00
/**
2022-04-24 23:28:07 +02:00
* Ensures that the welcome message is not empty . Currently unused .
2011-01-04 10:02:38 +01:00
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2011-01-04 10:02:38 +01:00
*
* @ param string $text
* @ return string
2011-01-06 05:11:14 +01:00
*/
2010-01-06 05:02:57 +01:00
function welcome_user_msg_filter ( $text ) {
2017-12-01 00:11:00 +01:00
if ( ! $text ) {
2012-05-02 22:31:37 +02:00
remove_filter ( 'site_option_welcome_user_email' , 'welcome_user_msg_filter' );
2015-05-06 11:12:25 +02:00
/* translators: Do not translate USERNAME, PASSWORD, LOGINLINK, SITE_NAME: those are placeholders. */
2017-12-01 00:11:00 +01:00
$text = __ (
' Howdy USERNAME ,
2010-01-06 05:02:57 +01:00
Your new account is set up .
You can log in with the following information :
Username : USERNAME
Password : PASSWORD
LOGINLINK
Thanks !
2017-12-01 00:11:00 +01:00
-- The Team @ SITE_NAME '
);
2015-10-07 19:11:25 +02:00
update_site_option ( 'welcome_user_email' , $text );
2010-01-06 05:02:57 +01:00
}
return $text ;
}
2010-02-02 22:41:17 +01:00
/**
2022-04-24 23:28:07 +02:00
* Determines whether to force SSL on content .
2010-01-06 05:02:57 +01:00
*
* @ since 2.8 . 5
*
2015-05-29 17:43:29 +02:00
* @ param bool $force
2010-01-06 05:02:57 +01:00
* @ return bool True if forced , false if not forced .
*/
function force_ssl_content ( $force = '' ) {
2015-05-29 17:43:29 +02:00
static $forced_content = false ;
2010-01-06 05:02:57 +01:00
2020-05-16 20:42:12 +02:00
if ( ! $force ) {
2017-12-01 00:11:00 +01:00
$old_forced = $forced_content ;
2010-01-12 19:40:40 +01:00
$forced_content = $force ;
return $old_forced ;
}
return $forced_content ;
2010-01-06 05:02:57 +01:00
}
/**
2012-08-30 15:33:00 +02:00
* Formats a URL to use https .
2012-09-15 22:05:58 +02:00
*
2010-01-06 05:02:57 +01:00
* Useful as a filter .
*
* @ since 2.8 . 5
2012-08-30 15:33:00 +02:00
*
2015-12-23 07:31:27 +01:00
* @ param string $url URL
2012-08-30 15:33:00 +02:00
* @ return string URL with https as the scheme
*/
2019-07-01 10:01:57 +02:00
function filter_SSL ( $url ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
2017-12-01 00:11:00 +01:00
if ( ! is_string ( $url ) ) {
2020-01-29 01:45:18 +01:00
return get_bloginfo ( 'url' ); // Return home blog URL with proper scheme.
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
2017-12-01 00:11:00 +01:00
if ( force_ssl_content () && is_ssl () ) {
2012-08-30 15:33:00 +02:00
$url = set_url_scheme ( $url , 'https' );
2017-12-01 00:11:00 +01:00
}
2010-01-06 05:02:57 +01:00
return $url ;
}
2010-10-20 22:22:14 +02:00
/**
2022-04-24 23:28:07 +02:00
* Schedules update of the network - wide counts for the current network .
2010-10-20 22:22:14 +02:00
*
* @ since 3.1 . 0
*/
function wp_schedule_update_network_counts () {
2017-12-01 00:11:00 +01:00
if ( ! is_main_site () ) {
2010-10-20 22:22:14 +02:00
return ;
2017-12-01 00:11:00 +01:00
}
2010-10-20 22:22:14 +02:00
2017-12-01 00:11:00 +01:00
if ( ! wp_next_scheduled ( 'update_network_counts' ) && ! wp_installing () ) {
wp_schedule_event ( time (), 'twicedaily' , 'update_network_counts' );
}
2010-10-20 22:22:14 +02:00
}
/**
2022-04-24 23:28:07 +02:00
* Updates the network - wide counts for the current network .
2010-10-20 22:22:14 +02:00
*
2016-12-27 10:21:44 +01:00
* @ since 3.1 . 0
2018-02-09 17:55:31 +01:00
* @ since 4.8 . 0 The `$network_id` parameter has been added .
2017-04-20 02:27:42 +02:00
*
* @ param int | null $network_id ID of the network . Default is the current network .
2010-10-20 22:22:14 +02:00
*/
2017-04-20 02:27:42 +02:00
function wp_update_network_counts ( $network_id = null ) {
wp_update_network_user_counts ( $network_id );
wp_update_network_site_counts ( $network_id );
2013-09-25 18:21:09 +02:00
}
/**
2022-04-24 23:28:07 +02:00
* Updates the count of sites for the current network .
2013-09-25 18:21:09 +02:00
*
2016-05-23 20:56:27 +02:00
* If enabled through the { @ see 'enable_live_network_counts' } filter , update the sites count
2013-09-25 18:21:09 +02:00
* on a network when a site is created or its status is updated .
*
* @ since 3.7 . 0
2018-02-09 17:55:31 +01:00
* @ since 4.8 . 0 The `$network_id` parameter has been added .
2017-05-09 18:02:46 +02:00
*
* @ param int | null $network_id ID of the network . Default is the current network .
2013-09-25 18:21:09 +02:00
*/
2017-05-09 18:00:44 +02:00
function wp_maybe_update_network_site_counts ( $network_id = null ) {
$is_small_network = ! wp_is_large_network ( 'sites' , $network_id );
2013-09-25 18:21:09 +02:00
/**
2016-05-22 20:40:27 +02:00
* Filters whether to update network site or user counts when a new site is created .
2013-09-25 18:21:09 +02:00
*
* @ since 3.7 . 0
*
2013-12-02 21:45:10 +01:00
* @ see wp_is_large_network ()
*
* @ param bool $small_network Whether the network is considered small .
2013-09-25 18:21:09 +02:00
* @ param string $context Context . Either 'users' or 'sites' .
*/
2017-12-01 00:11:00 +01:00
if ( ! apply_filters ( 'enable_live_network_counts' , $is_small_network , 'sites' ) ) {
2013-09-25 18:21:09 +02:00
return ;
2017-12-01 00:11:00 +01:00
}
2013-09-25 18:21:09 +02:00
2017-05-09 18:00:44 +02:00
wp_update_network_site_counts ( $network_id );
2013-09-25 18:21:09 +02:00
}
/**
2022-04-24 23:28:07 +02:00
* Updates the network - wide users count .
2013-09-25 18:21:09 +02:00
*
2016-05-23 20:56:27 +02:00
* If enabled through the { @ see 'enable_live_network_counts' } filter , update the users count
2013-09-25 18:21:09 +02:00
* on a network when a user is created or its status is updated .
*
* @ since 3.7 . 0
2018-02-09 17:55:31 +01:00
* @ since 4.8 . 0 The `$network_id` parameter has been added .
2017-05-09 18:08:43 +02:00
*
* @ param int | null $network_id ID of the network . Default is the current network .
2013-09-25 18:21:09 +02:00
*/
2017-05-09 18:08:43 +02:00
function wp_maybe_update_network_user_counts ( $network_id = null ) {
$is_small_network = ! wp_is_large_network ( 'users' , $network_id );
2013-09-25 18:21:09 +02:00
2013-12-02 21:45:10 +01:00
/** This filter is documented in wp-includes/ms-functions.php */
2017-12-01 00:11:00 +01:00
if ( ! apply_filters ( 'enable_live_network_counts' , $is_small_network , 'users' ) ) {
2013-09-25 18:21:09 +02:00
return ;
2017-12-01 00:11:00 +01:00
}
2013-09-25 18:21:09 +02:00
2017-05-09 18:08:43 +02:00
wp_update_network_user_counts ( $network_id );
2013-09-25 18:21:09 +02:00
}
/**
2022-04-24 23:28:07 +02:00
* Updates the network - wide site count .
2013-09-25 18:21:09 +02:00
*
* @ since 3.7 . 0
2018-02-09 17:55:31 +01:00
* @ since 4.8 . 0 The `$network_id` parameter has been added .
2015-05-26 23:51:31 +02:00
*
2017-04-20 02:00:42 +02:00
* @ param int | null $network_id ID of the network . Default is the current network .
2013-09-25 18:21:09 +02:00
*/
2017-04-20 02:00:42 +02:00
function wp_update_network_site_counts ( $network_id = null ) {
$network_id = ( int ) $network_id ;
if ( ! $network_id ) {
$network_id = get_current_network_id ();
}
2010-10-20 22:22:14 +02:00
2017-12-01 00:11:00 +01:00
$count = get_sites (
array (
2019-03-18 16:56:51 +01:00
'network_id' => $network_id ,
'spam' => 0 ,
'deleted' => 0 ,
'archived' => 0 ,
'count' => true ,
'update_site_meta_cache' => false ,
2017-12-01 00:11:00 +01:00
)
);
2016-06-02 04:26:29 +02:00
2017-04-20 02:00:42 +02:00
update_network_option ( $network_id , 'blog_count' , $count );
2013-09-25 18:21:09 +02:00
}
/**
2022-04-24 23:28:07 +02:00
* Updates the network - wide user count .
2013-09-25 18:21:09 +02:00
*
* @ since 3.7 . 0
2018-02-09 17:55:31 +01:00
* @ since 4.8 . 0 The `$network_id` parameter has been added .
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
* @ since 6.0 . 0 This function is now a wrapper for wp_update_user_counts () .
2017-04-20 02:14:43 +02:00
*
* @ param int | null $network_id ID of the network . Default is the current network .
2013-09-25 18:21:09 +02:00
*/
2017-04-20 02:14:43 +02:00
function wp_update_network_user_counts ( $network_id = null ) {
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
wp_update_user_counts ( $network_id );
2010-10-20 22:22:14 +02:00
}
2012-11-09 11:35:42 +01:00
/**
2019-09-21 19:41:57 +02:00
* Returns the space used by the current site .
2012-11-09 11:35:42 +01:00
*
* @ since 3.5 . 0
*
2019-09-21 19:41:57 +02:00
* @ return int Used space in megabytes .
2012-11-09 11:35:42 +01:00
*/
function get_space_used () {
2013-12-02 21:45:10 +01:00
/**
2019-09-21 19:41:57 +02:00
* Filters the amount of storage space used by the current site , in megabytes .
2013-12-02 21:45:10 +01:00
*
* @ since 3.5 . 0
*
2019-09-21 19:41:57 +02:00
* @ param int | false $space_used The amount of used space , in megabytes . Default false .
2013-12-02 21:45:10 +01:00
*/
2012-11-09 11:35:42 +01:00
$space_used = apply_filters ( 'pre_get_space_used' , false );
2020-11-17 16:44:07 +01:00
2012-11-09 11:35:42 +01:00
if ( false === $space_used ) {
$upload_dir = wp_upload_dir ();
2015-10-21 16:03:25 +02:00
$space_used = get_dirsize ( $upload_dir [ 'basedir' ] ) / MB_IN_BYTES ;
2012-11-09 11:35:42 +01:00
}
return $space_used ;
}
/**
* Returns the upload quota for the current blog .
*
2017-08-01 22:44:43 +02:00
* @ since MU ( 3.0 . 0 )
2012-11-09 11:35:42 +01:00
*
* @ return int Quota in megabytes
*/
function get_space_allowed () {
$space_allowed = get_option ( 'blog_upload_space' );
2017-12-01 00:11:00 +01:00
if ( ! is_numeric ( $space_allowed ) ) {
2015-10-07 19:11:25 +02:00
$space_allowed = get_site_option ( 'blog_upload_space' );
2017-12-01 00:11:00 +01:00
}
2012-11-09 11:35:42 +01:00
2017-12-01 00:11:00 +01:00
if ( ! is_numeric ( $space_allowed ) ) {
2013-08-22 22:55:08 +02:00
$space_allowed = 100 ;
2017-12-01 00:11:00 +01:00
}
2012-11-09 11:35:42 +01:00
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters the upload quota for the current site .
2013-12-02 21:45:10 +01:00
*
* @ since 3.7 . 0
*
* @ param int $space_allowed Upload quota in megabytes for the current blog .
*/
2013-08-22 22:55:08 +02:00
return apply_filters ( 'get_space_allowed' , $space_allowed );
2012-11-09 11:35:42 +01:00
}
/**
* Determines if there is any upload space left in the current blog ' s quota .
*
* @ since 3.0 . 0
*
* @ return int of upload space available in bytes
*/
function get_upload_space_available () {
2015-09-26 21:49:25 +02:00
$allowed = get_space_allowed ();
if ( $allowed < 0 ) {
$allowed = 0 ;
}
2015-10-21 16:03:25 +02:00
$space_allowed = $allowed * MB_IN_BYTES ;
2017-12-01 00:11:00 +01:00
if ( get_site_option ( 'upload_space_check_disabled' ) ) {
2012-11-09 11:35:42 +01:00
return $space_allowed ;
2017-12-01 00:11:00 +01:00
}
2012-11-09 11:35:42 +01:00
2015-10-21 16:03:25 +02:00
$space_used = get_space_used () * MB_IN_BYTES ;
2012-11-09 11:35:42 +01:00
2017-12-01 00:11:00 +01:00
if ( ( $space_allowed - $space_used ) <= 0 ) {
2012-11-09 11:35:42 +01:00
return 0 ;
2017-12-01 00:11:00 +01:00
}
2012-11-09 11:35:42 +01:00
return $space_allowed - $space_used ;
}
2012-11-26 15:42:43 +01:00
/**
* Determines if there is any upload space left in the current blog ' s quota .
*
* @ since 3.0 . 0
* @ return bool True if space is available , false otherwise .
*/
function is_upload_space_available () {
2017-12-01 00:11:00 +01:00
if ( get_site_option ( 'upload_space_check_disabled' ) ) {
2012-11-26 15:42:43 +01:00
return true ;
2017-12-01 00:11:00 +01:00
}
2012-11-26 15:42:43 +01:00
2012-11-27 04:42:02 +01:00
return ( bool ) get_upload_space_available ();
2012-11-26 15:42:43 +01:00
}
2012-11-09 11:35:42 +01:00
/**
2016-01-09 02:45:26 +01:00
* Filters the maximum upload file size allowed , in bytes .
*
2012-11-09 11:35:42 +01:00
* @ since 3.0 . 0
*
2020-06-20 14:58:10 +02:00
* @ param int $size Upload size limit in bytes .
* @ return int Upload size limit in bytes .
2012-11-09 11:35:42 +01:00
*/
function upload_size_limit_filter ( $size ) {
2015-10-21 16:03:25 +02:00
$fileupload_maxk = KB_IN_BYTES * get_site_option ( 'fileupload_maxk' , 1500 );
2017-12-01 00:11:00 +01:00
if ( get_site_option ( 'upload_space_check_disabled' ) ) {
2012-11-09 11:35:42 +01:00
return min ( $size , $fileupload_maxk );
2017-12-01 00:11:00 +01:00
}
2012-11-09 11:35:42 +01:00
return min ( $size , $fileupload_maxk , get_upload_space_available () );
2013-03-12 10:19:55 +01:00
}
/**
2022-04-24 23:28:07 +02:00
* Determines whether or not we have a large network .
2013-03-12 10:19:55 +01:00
*
* The default criteria for a large network is either more than 10 , 000 users or more than 10 , 000 sites .
2016-05-23 20:56:27 +02:00
* Plugins can alter this criteria using the { @ see 'wp_is_large_network' } filter .
2013-03-12 10:19:55 +01:00
*
* @ since 3.3 . 0
2018-02-09 17:55:31 +01:00
* @ since 4.8 . 0 The `$network_id` parameter has been added .
2017-05-09 17:51:47 +02:00
*
* @ param string $using 'sites or ' users '. Default is ' sites ' .
* @ param int | null $network_id ID of the network . Default is the current network .
2013-03-12 10:19:55 +01:00
* @ return bool True if the network meets the criteria for large . False otherwise .
*/
2017-05-09 17:51:47 +02:00
function wp_is_large_network ( $using = 'sites' , $network_id = null ) {
$network_id = ( int ) $network_id ;
if ( ! $network_id ) {
$network_id = get_current_network_id ();
}
2020-05-16 20:42:12 +02:00
if ( 'users' === $using ) {
2017-05-09 17:51:47 +02:00
$count = get_user_count ( $network_id );
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
$is_large_network = wp_is_large_user_count ( $network_id );
2013-12-02 21:45:10 +01:00
/**
2016-05-22 20:40:27 +02:00
* Filters whether the network is considered large .
2013-12-02 21:45:10 +01:00
*
* @ since 3.3 . 0
2018-02-09 17:55:31 +01:00
* @ since 4.8 . 0 The `$network_id` parameter has been added .
2013-12-02 21:45:10 +01:00
*
* @ param bool $is_large_network Whether the network has more than 10000 users or sites .
* @ param string $component The component to count . Accepts 'users' , or 'sites' .
* @ param int $count The count of items for the component .
2017-05-09 17:51:47 +02:00
* @ param int $network_id The ID of the network being checked .
2013-12-02 21:45:10 +01:00
*/
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
return apply_filters ( 'wp_is_large_network' , $is_large_network , 'users' , $count , $network_id );
2013-03-12 10:19:55 +01:00
}
2017-05-09 17:51:47 +02:00
$count = get_blog_count ( $network_id );
2020-05-16 20:42:12 +02:00
2013-12-02 21:45:10 +01:00
/** This filter is documented in wp-includes/ms-functions.php */
2017-05-09 17:51:47 +02:00
return apply_filters ( 'wp_is_large_network' , $count > 10000 , 'sites' , $count , $network_id );
2013-03-12 10:19:55 +01:00
}
2013-09-14 23:13:10 +02:00
2015-10-06 06:35:25 +02:00
/**
2017-08-22 13:52:48 +02:00
* Retrieves a list of reserved site on a sub - directory Multisite installation .
2015-10-06 06:35:25 +02:00
*
* @ since 4.4 . 0
*
2019-11-05 22:23:02 +01:00
* @ return string [] Array of reserved names .
2015-10-06 06:35:25 +02:00
*/
function get_subdirectory_reserved_names () {
$names = array (
2017-12-01 00:11:00 +01:00
'page' ,
'comments' ,
'blog' ,
'files' ,
'feed' ,
'wp-admin' ,
'wp-content' ,
'wp-includes' ,
'wp-json' ,
'embed' ,
2015-10-06 06:35:25 +02:00
);
/**
2017-08-22 13:52:48 +02:00
* Filters reserved site names on a sub - directory Multisite installation .
2015-10-06 06:35:25 +02:00
*
* @ since 3.0 . 0
* @ since 4.4 . 0 'wp-admin' , 'wp-content' , 'wp-includes' , 'wp-json' , and 'embed' were added
* to the reserved names list .
*
2019-10-26 23:09:04 +02:00
* @ param string [] $subdirectory_reserved_names Array of reserved names .
2015-10-06 06:35:25 +02:00
*/
return apply_filters ( 'subdirectory_reserved_names' , $names );
}
2017-07-27 04:24:42 +02:00
2017-09-27 16:17:45 +02:00
/**
2022-04-24 23:28:07 +02:00
* Sends a confirmation request email when a change of network admin email address is attempted .
2017-09-27 16:17:45 +02:00
*
* The new network admin address will not become active until confirmed .
*
* @ since 4.9 . 0
*
* @ param string $old_value The old network admin email address .
* @ param string $value The proposed new network admin email address .
*/
function update_network_option_new_admin_email ( $old_value , $value ) {
2020-02-09 17:55:09 +01:00
if ( get_site_option ( 'admin_email' ) === $value || ! is_email ( $value ) ) {
2017-09-27 16:17:45 +02:00
return ;
}
2017-12-01 00:11:00 +01:00
$hash = md5 ( $value . time () . mt_rand () );
2017-09-27 16:17:45 +02:00
$new_admin_email = array (
'hash' => $hash ,
'newemail' => $value ,
);
update_site_option ( 'network_admin_hash' , $new_admin_email );
$switched_locale = switch_to_locale ( get_user_locale () );
/* translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: those are placeholders. */
2017-12-01 00:11:00 +01:00
$email_text = __ (
' Howdy ###USERNAME###,
2017-09-27 16:17:45 +02:00
You recently requested to have the network admin email address on
your network changed .
If this is correct , please click on the following link to change it :
###ADMIN_URL###
You can safely ignore and delete this email if you do not want to
take this action .
This email has been sent to ###EMAIL###
Regards ,
All at ###SITENAME###
2017-12-01 00:11:00 +01:00
###SITEURL###'
);
2017-09-27 16:17:45 +02:00
/**
* Filters the text of the email sent when a change of network admin email address is attempted .
*
* The following strings have a special meaning and will get replaced dynamically :
* ###USERNAME### The current user's username.
* ###ADMIN_URL### The link to click on to confirm the email change.
* ###EMAIL### The proposed new network admin email address.
* ###SITENAME### The name of the network.
* ###SITEURL### The URL to the network.
*
* @ since 4.9 . 0
*
* @ param string $email_text Text in the email .
* @ param array $new_admin_email {
* Data relating to the new network admin email address .
*
* @ type string $hash The secure hash used in the confirmation link URL .
* @ type string $newemail The proposed new network admin email address .
* }
*/
$content = apply_filters ( 'new_network_admin_email_content' , $email_text , $new_admin_email );
$current_user = wp_get_current_user ();
2017-12-01 00:11:00 +01:00
$content = str_replace ( '###USERNAME###' , $current_user -> user_login , $content );
$content = str_replace ( '###ADMIN_URL###' , esc_url ( network_admin_url ( 'settings.php?network_admin_hash=' . $hash ) ), $content );
$content = str_replace ( '###EMAIL###' , $value , $content );
$content = str_replace ( '###SITENAME###' , wp_specialchars_decode ( get_site_option ( 'site_name' ), ENT_QUOTES ), $content );
$content = str_replace ( '###SITEURL###' , network_home_url (), $content );
2017-09-27 16:17:45 +02:00
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
wp_mail (
$value ,
sprintf (
2019-09-03 02:41:05 +02:00
/* translators: Email change notification email subject. %s: Network title. */
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
__ ( '[%s] Network Admin Email Change Request' ),
wp_specialchars_decode ( get_site_option ( 'site_name' ), ENT_QUOTES )
),
$content
);
2017-09-27 16:17:45 +02:00
if ( $switched_locale ) {
restore_previous_locale ();
}
}
2017-07-27 04:24:42 +02:00
/**
2022-04-24 23:28:07 +02:00
* Sends an email to the old network admin email address when the network admin email address changes .
2017-07-27 04:24:42 +02:00
*
* @ since 4.9 . 0
*
* @ param string $option_name The relevant database option name .
* @ param string $new_email The new network admin email address .
* @ param string $old_email The old network admin email address .
* @ param int $network_id ID of the network .
*/
function wp_network_admin_email_change_notification ( $option_name , $new_email , $old_email , $network_id ) {
2018-01-23 14:45:32 +01:00
$send = true ;
// Don't send the notification to the default 'admin_email' value.
if ( 'you@example.com' === $old_email ) {
$send = false ;
}
2017-07-27 04:24:42 +02:00
/**
* Filters whether to send the network admin email change notification email .
*
* @ since 4.9 . 0
*
* @ param bool $send Whether to send the email notification .
* @ param string $old_email The old network admin email address .
* @ param string $new_email The new network admin email address .
* @ param int $network_id ID of the network .
*/
2018-01-23 14:45:32 +01:00
$send = apply_filters ( 'send_network_admin_email_change_email' , $send , $old_email , $new_email , $network_id );
2017-07-27 04:24:42 +02:00
if ( ! $send ) {
return ;
}
/* translators: Do not translate OLD_EMAIL, NEW_EMAIL, SITENAME, SITEURL: those are placeholders. */
2017-12-01 00:11:00 +01:00
$email_change_text = __ (
' Hi ,
2017-07-27 04:24:42 +02:00
This notice confirms that the network admin email address was changed on ###SITENAME###.
The new network admin email address is ###NEW_EMAIL###.
This email has been sent to ###OLD_EMAIL###
Regards ,
All at ###SITENAME###
2017-12-01 00:11:00 +01:00
###SITEURL###'
);
2017-07-27 04:24:42 +02:00
$email_change_email = array (
'to' => $old_email ,
2019-09-03 02:41:05 +02:00
/* translators: Network admin email change notification email subject. %s: Network title. */
2019-04-08 08:17:51 +02:00
'subject' => __ ( '[%s] Network Admin Email Changed' ),
2017-07-27 04:24:42 +02:00
'message' => $email_change_text ,
'headers' => '' ,
);
2020-01-29 01:45:18 +01:00
// Get network name.
2017-07-27 04:24:42 +02:00
$network_name = wp_specialchars_decode ( get_site_option ( 'site_name' ), ENT_QUOTES );
/**
* Filters the contents of the email notification sent when the network admin email address is changed .
*
* @ since 4.9 . 0
*
* @ param array $email_change_email {
2020-09-21 18:46:06 +02:00
* Used to build wp_mail () .
*
* @ type string $to The intended recipient .
* @ type string $subject The subject of the email .
* @ type string $message The content of the email .
* The following strings have a special meaning and will get replaced dynamically :
* - ###OLD_EMAIL### The old network admin email address.
* - ###NEW_EMAIL### The new network admin email address.
* - ###SITENAME### The name of the network.
* - ###SITEURL### The URL to the site.
* @ type string $headers Headers .
* }
2017-07-27 04:24:42 +02:00
* @ param string $old_email The old network admin email address .
* @ param string $new_email The new network admin email address .
* @ param int $network_id ID of the network .
*/
$email_change_email = apply_filters ( 'network_admin_email_change_email' , $email_change_email , $old_email , $new_email , $network_id );
2017-12-01 00:11:00 +01:00
$email_change_email [ 'message' ] = str_replace ( '###OLD_EMAIL###' , $old_email , $email_change_email [ 'message' ] );
$email_change_email [ 'message' ] = str_replace ( '###NEW_EMAIL###' , $new_email , $email_change_email [ 'message' ] );
$email_change_email [ 'message' ] = str_replace ( '###SITENAME###' , $network_name , $email_change_email [ 'message' ] );
$email_change_email [ 'message' ] = str_replace ( '###SITEURL###' , home_url (), $email_change_email [ 'message' ] );
2017-07-27 04:24:42 +02:00
2017-12-01 00:11:00 +01:00
wp_mail (
2018-08-17 03:51:36 +02:00
$email_change_email [ 'to' ],
sprintf (
2017-12-01 00:11:00 +01:00
$email_change_email [ 'subject' ],
$network_name
2018-08-17 03:51:36 +02:00
),
$email_change_email [ 'message' ],
$email_change_email [ 'headers' ]
2017-12-01 00:11:00 +01:00
);
2017-07-27 04:24:42 +02:00
}