2010-01-06 04:02:57 +00:00
<? php
2010-04-04 13:29:35 +00:00
/**
* Multisite administration functions.
*
* @package WordPress
* @subpackage Multisite
* @since 3.0.0
*/
2010-01-25 22:01:43 +00:00
/**
* Determine if uploaded file exceeds space quota.
*
2010-03-26 19:13:36 +00:00
* @since 3.0.0
2010-01-25 22:01:43 +00:00
*
* @param array $file $_FILES array for a given file.
* @return array $_FILES array with 'error' key set if file exceeds quota. 'error' is empty otherwise.
*/
2010-01-06 04:02:57 +00:00
function check_upload_size ( $file ) {
2015-10-07 17:11:25 +00:00
if ( get_site_option ( 'upload_space_check_disabled' ) )
2010-01-06 04:02:57 +00:00
return $file ;
2010-01-25 22:01:43 +00:00
2010-01-18 20:34:48 +00:00
if ( $file [ 'error' ] != '0' ) // there's already an error
2010-01-06 04:02:57 +00:00
return $file ;
if ( defined ( 'WP_IMPORTING' ) )
return $file ;
2012-08-01 13:52:06 +00:00
$space_left = get_upload_space_available ();
2010-01-06 04:02:57 +00:00
$file_size = filesize ( $file [ 'tmp_name' ] );
2015-10-21 14:03:25 +00:00
if ( $space_left < $file_size ) {
$file [ 'error' ] = sprintf ( __ ( 'Not enough space to upload. %1$s KB needed.' ), number_format ( ( $file_size - $space_left ) / KB_IN_BYTES ) );
}
if ( $file_size > ( KB_IN_BYTES * get_site_option ( 'fileupload_maxk' , 1500 ) ) ) {
$file [ 'error' ] = sprintf ( __ ( 'This file is too big. Files must be less than %1$s KB in size.' ), get_site_option ( 'fileupload_maxk' , 1500 ) );
}
2010-01-18 20:34:48 +00:00
if ( upload_is_user_over_quota ( false ) ) {
2010-04-01 21:21:27 +00:00
$file [ 'error' ] = __ ( 'You have used your space quota. Please delete files before uploading.' );
2010-01-06 04:02:57 +00:00
}
2015-10-21 14:03:25 +00:00
2014-11-02 02:24:23 +00:00
if ( $file [ 'error' ] != '0' && ! isset ( $_POST [ 'html-upload' ] ) && ( ! defined ( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
2010-01-06 04:02:57 +00:00
wp_die ( $file [ 'error' ] . ' <a href="javascript:history.go(-1)">' . __ ( 'Back' ) . '</a>' );
2014-11-01 20:25:23 +00:00
}
2010-01-06 04:02:57 +00:00
return $file ;
}
2010-01-25 22:01:43 +00:00
/**
2016-01-28 03:35:27 +00:00
* Delete a site.
2010-01-25 22:01:43 +00:00
*
2010-03-26 19:13:36 +00:00
* @since 3.0.0
2010-01-25 22:01:43 +00:00
*
2015-10-14 23:44:25 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2015-05-28 21:41:30 +00:00
*
2016-01-28 03:35:27 +00:00
* @param int $blog_id Site ID.
* @param bool $drop True if site's database tables should be dropped. Default is false.
2010-01-25 22:01:43 +00:00
*/
2010-04-01 21:21:27 +00:00
function wpmu_delete_blog ( $blog_id , $drop = false ) {
2013-11-13 03:23:10 +00:00
global $wpdb ;
2010-01-06 04:02:57 +00:00
2010-04-01 21:21:27 +00:00
$switch = false ;
2012-10-01 18:03:23 +00:00
if ( get_current_blog_id () != $blog_id ) {
2010-01-06 04:02:57 +00:00
$switch = true ;
2010-04-01 21:21:27 +00:00
switch_to_blog ( $blog_id );
2010-01-06 04:02:57 +00:00
}
2012-10-01 18:03:23 +00:00
$blog = get_blog_details ( $blog_id );
2013-09-18 18:22:09 +00:00
/**
2016-01-28 03:35:27 +00:00
* Fires before a site is deleted.
2013-09-18 18:22:09 +00:00
*
* @since MU
*
2016-01-28 03:35:27 +00:00
* @param int $blog_id The site ID.
* @param bool $drop True if site's table should be dropped. Default is false.
2013-09-18 18:22:09 +00:00
*/
2010-04-01 21:21:27 +00:00
do_action ( 'delete_blog' , $blog_id , $drop );
2010-01-06 04:02:57 +00:00
2010-12-20 16:25:35 +00:00
$users = get_users ( array ( 'blog_id' => $blog_id , 'fields' => 'ids' ) );
2010-01-06 04:02:57 +00:00
// Remove users from this blog.
2010-04-01 21:21:27 +00:00
if ( ! empty ( $users ) ) {
2010-12-20 16:25:35 +00:00
foreach ( $users as $user_id ) {
2011-10-21 22:04:52 +00:00
remove_user_from_blog ( $user_id , $blog_id );
2010-01-25 22:01:43 +00:00
}
2010-01-06 04:02:57 +00:00
}
update_blog_status ( $blog_id , 'deleted' , 1 );
2013-11-13 03:23:10 +00:00
$current_site = get_current_site ();
2014-11-20 06:53:22 +00:00
// If a full blog object is not available, do not destroy anything.
if ( $drop && ! $blog ) {
$drop = false ;
}
2011-10-21 22:04:52 +00:00
// Don't destroy the initial, main, or root blog.
2014-11-20 06:53:22 +00:00
if ( $drop && ( 1 == $blog_id || is_main_site ( $blog_id ) || ( $blog -> path == $current_site -> path && $blog -> domain == $current_site -> domain ) ) ) {
2011-10-21 22:04:52 +00:00
$drop = false ;
2014-11-20 06:53:22 +00:00
}
$upload_path = trim ( get_option ( 'upload_path' ) );
// If ms_files_rewriting is enabled and upload_path is empty, wp_upload_dir is not reliable.
2015-10-07 17:11:25 +00:00
if ( $drop && get_site_option ( 'ms_files_rewriting' ) && empty ( $upload_path ) ) {
2014-11-20 06:53:22 +00:00
$drop = false ;
}
2011-10-21 22:04:52 +00:00
2010-01-06 04:02:57 +00:00
if ( $drop ) {
2016-02-18 00:24:27 +00:00
$uploads = wp_get_upload_dir ();
2014-11-20 06:53:22 +00:00
2013-09-18 18:22:09 +00:00
$tables = $wpdb -> tables ( 'blog' );
/**
2016-01-28 03:35:27 +00:00
* Filter the tables to drop when the site is deleted.
2013-09-18 18:22:09 +00:00
*
* @since MU
*
2016-01-28 03:35:27 +00:00
* @param array $tables The site tables to be dropped.
* @param int $blog_id The ID of the site to drop tables for.
2013-09-18 18:22:09 +00:00
*/
$drop_tables = apply_filters ( 'wpmu_drop_tables' , $tables , $blog_id );
2010-01-06 04:02:57 +00:00
2011-10-21 22:04:52 +00:00
foreach ( ( array ) $drop_tables as $table ) {
$wpdb -> query ( "DROP TABLE IF EXISTS ` $table `" );
2010-01-06 04:02:57 +00:00
}
2011-10-21 22:04:52 +00:00
2012-03-24 15:24:31 +00:00
$wpdb -> delete ( $wpdb -> blogs , array ( 'blog_id' => $blog_id ) );
2013-09-18 18:22:09 +00:00
/**
2016-01-28 03:35:27 +00:00
* Filter the upload base directory to delete when the site is deleted.
2013-09-18 18:22:09 +00:00
*
* @since MU
*
* @param string $uploads['basedir'] Uploads path without subdirectory. @see wp_upload_dir()
2016-01-28 03:35:27 +00:00
* @param int $blog_id The site ID.
2013-09-18 18:22:09 +00:00
*/
2012-09-11 22:22:20 +00:00
$dir = apply_filters ( 'wpmu_delete_blog_upload_dir' , $uploads [ 'basedir' ], $blog_id );
2010-04-01 21:21:27 +00:00
$dir = rtrim ( $dir , DIRECTORY_SEPARATOR );
2010-01-06 04:02:57 +00:00
$top_dir = $dir ;
$stack = array ( $dir );
$index = 0 ;
2010-04-01 21:21:27 +00:00
while ( $index < count ( $stack ) ) {
2015-01-08 05:52:24 +00:00
// Get indexed directory from stack
2010-01-06 04:02:57 +00:00
$dir = $stack [ $index ];
2010-04-01 21:21:27 +00:00
$dh = @ opendir ( $dir );
2010-01-25 22:01:43 +00:00
if ( $dh ) {
2010-04-01 21:21:27 +00:00
while ( ( $file = @ readdir ( $dh ) ) !== false ) {
if ( $file == '.' || $file == '..' )
2010-01-06 04:02:57 +00:00
continue ;
2015-01-08 07:05:25 +00:00
if ( @ is_dir ( $dir . DIRECTORY_SEPARATOR . $file ) ) {
2010-01-06 04:02:57 +00:00
$stack [] = $dir . DIRECTORY_SEPARATOR . $file ;
2015-01-08 07:05:25 +00:00
} elseif ( @ is_file ( $dir . DIRECTORY_SEPARATOR . $file ) ) {
2010-04-01 21:21:27 +00:00
@ unlink ( $dir . DIRECTORY_SEPARATOR . $file );
2015-01-08 07:05:25 +00:00
}
2010-01-06 04:02:57 +00:00
}
2012-09-10 21:16:03 +00:00
@ closedir ( $dh );
2010-01-06 04:02:57 +00:00
}
$index ++ ;
}
2011-12-14 17:36:38 +00:00
$stack = array_reverse ( $stack ); // Last added dirs are deepest
2015-08-25 20:28:22 +00:00
foreach ( ( array ) $stack as $dir ) {
2010-01-06 04:02:57 +00:00
if ( $dir != $top_dir )
2010-04-01 21:21:27 +00:00
@ rmdir ( $dir );
2010-01-06 04:02:57 +00:00
}
2012-10-01 18:03:23 +00:00
clean_blog_cache ( $blog );
2010-01-06 04:02:57 +00:00
}
2010-04-01 21:21:27 +00:00
2011-10-21 22:04:52 +00:00
if ( $switch )
2010-01-06 04:02:57 +00:00
restore_current_blog ();
}
2014-11-30 05:06:23 +00:00
/**
* Delete a user from the network and remove from all sites.
*
* @since 3.0.0
*
* @todo Merge with wp_delete_user() ?
*
2015-10-14 23:44:25 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2015-05-28 21:41:30 +00:00
*
2014-11-30 05:06:23 +00:00
* @param int $id The user ID.
* @return bool True if the user was deleted, otherwise false.
*/
2010-04-01 21:21:27 +00:00
function wpmu_delete_user ( $id ) {
2010-01-06 04:02:57 +00:00
global $wpdb ;
2015-09-11 02:25:23 +00:00
if ( ! is_numeric ( $id ) ) {
return false ;
}
2010-01-06 04:02:57 +00:00
$id = ( int ) $id ;
2012-04-18 21:07:31 +00:00
$user = new WP_User ( $id );
2010-01-06 04:02:57 +00:00
2013-02-02 04:41:02 +00:00
if ( ! $user -> exists () )
return false ;
2015-07-09 16:16:25 +00:00
// Global super-administrators are protected, and cannot be deleted.
$_super_admins = get_super_admins ();
if ( in_array ( $user -> user_login , $_super_admins , true ) ) {
return false ;
}
2013-09-18 18:22:09 +00:00
/**
2013-09-19 00:05:09 +00:00
* Fires before a user is deleted from the network.
2013-09-18 18:22:09 +00:00
*
* @since MU
*
2013-09-19 16:06:12 +00:00
* @param int $id ID of the user about to be deleted from the network.
2013-09-18 18:22:09 +00:00
*/
2010-04-01 21:21:27 +00:00
do_action ( 'wpmu_delete_user' , $id );
2010-01-06 04:02:57 +00:00
2010-04-01 21:21:27 +00:00
$blogs = get_blogs_of_user ( $id );
2010-01-06 04:02:57 +00:00
2010-04-01 21:21:27 +00:00
if ( ! empty ( $blogs ) ) {
foreach ( $blogs as $blog ) {
switch_to_blog ( $blog -> userblog_id );
remove_user_from_blog ( $id , $blog -> userblog_id );
2010-01-06 04:02:57 +00:00
2010-04-01 21:21:27 +00:00
$post_ids = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT ID FROM $wpdb->posts WHERE post_author = %d" , $id ) );
2010-01-06 04:02:57 +00:00
foreach ( ( array ) $post_ids as $post_id ) {
2010-04-01 21:21:27 +00:00
wp_delete_post ( $post_id );
2010-01-06 04:02:57 +00:00
}
// Clean links
2010-04-01 21:21:27 +00:00
$link_ids = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT link_id FROM $wpdb->links WHERE link_owner = %d" , $id ) );
2010-02-20 01:45:04 +00:00
if ( $link_ids ) {
foreach ( $link_ids as $link_id )
2010-04-01 21:21:27 +00:00
wp_delete_link ( $link_id );
2010-02-20 01:45:04 +00:00
}
2010-01-06 04:02:57 +00:00
restore_current_blog ();
}
}
2012-04-24 22:13:47 +00:00
$meta = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT umeta_id FROM $wpdb->usermeta WHERE user_id = %d" , $id ) );
foreach ( $meta as $mid )
delete_metadata_by_mid ( 'user' , $mid );
2012-05-30 16:14:57 +00:00
$wpdb -> delete ( $wpdb -> users , array ( 'ID' => $id ) );
2010-01-06 04:02:57 +00:00
2012-04-18 21:07:31 +00:00
clean_user_cache ( $user );
2010-01-19 19:23:11 +00:00
2013-12-01 17:54:10 +00:00
/** This action is documented in wp-admin/includes/user.php */
2010-04-01 21:21:27 +00:00
do_action ( 'deleted_user' , $id );
2010-01-06 04:02:57 +00:00
return true ;
}
2014-11-30 05:06:23 +00:00
/**
* Sends an email when a site administrator email address is changed.
*
* @since 3.0.0
*
* @param string $old_value The old email address. Not currently used.
* @param string $value The new email address.
*/
2010-04-01 21:21:27 +00:00
function update_option_new_admin_email ( $old_value , $value ) {
2010-01-06 04:02:57 +00:00
if ( $value == get_option ( 'admin_email' ) || ! is_email ( $value ) )
return ;
2010-04-26 18:52:14 +00:00
2010-01-06 04:02:57 +00:00
$hash = md5 ( $value . time () . mt_rand () );
$new_admin_email = array (
2010-04-01 21:21:27 +00:00
'hash' => $hash ,
'newemail' => $value
2010-01-06 04:02:57 +00:00
);
update_option ( 'adminhash' , $new_admin_email );
2010-01-07 04:27:46 +00:00
2015-05-06 09:12:25 +00:00
/* translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: those are placeholders. */
2015-02-10 07:47:27 +00:00
$email_text = __ ( 'Howdy ###USERNAME###,
2010-01-06 04:02:57 +00:00
2010-01-07 04:27:46 +00:00
You recently requested to have the administration email address on
2010-02-26 19:08:01 +00:00
your site changed.
2015-02-10 07:47:27 +00:00
2010-01-06 04:02:57 +00:00
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###
2013-09-18 18:22:09 +00:00
###SITEURL###' );
/**
* Filter the email text sent when the site admin email is changed.
*
* The following strings have a special meaning and will get replaced dynamically:
2015-02-10 07:47:27 +00:00
* ###USERNAME### The current user's username.
2015-02-10 07:53:28 +00:00
* ###ADMIN_URL### The link to click on to confirm the email change.
2013-09-18 18:22:09 +00:00
* ###EMAIL### The new email.
* ###SITENAME### The name of the site.
* ###SITEURL### The URL to the site.
*
* @since MU
*
* @param string $email_text Text in the email.
* @param string $new_admin_email New admin email that the current administration email was changed to.
*/
$content = apply_filters ( 'new_admin_email_content' , $email_text , $new_admin_email );
2010-01-07 04:27:46 +00:00
2015-08-04 11:39:25 +00:00
$current_user = wp_get_current_user ();
2015-02-10 07:47:27 +00:00
$content = str_replace ( '###USERNAME###' , $current_user -> user_login , $content );
2016-02-07 13:26:27 +00:00
$content = str_replace ( '###ADMIN_URL###' , esc_url ( self_admin_url ( 'options.php?adminhash=' . $hash ) ), $content );
2010-04-01 21:21:27 +00:00
$content = str_replace ( '###EMAIL###' , $value , $content );
2015-10-07 17:11:25 +00:00
$content = str_replace ( '###SITENAME###' , get_site_option ( 'site_name' ), $content );
2010-04-01 21:21:27 +00:00
$content = str_replace ( '###SITEURL###' , network_home_url (), $content );
2010-01-07 04:27:46 +00:00
2014-03-28 02:44:15 +00:00
wp_mail ( $value , sprintf ( __ ( '[%s] New Admin Email Address' ), wp_specialchars_decode ( get_option ( 'blogname' ) ) ), $content );
2010-01-06 04:02:57 +00:00
}
2014-11-30 05:06:23 +00:00
/**
* Sends an email when an email address change is requested.
*
* @since 3.0.0
*
2015-10-10 15:45:25 +00:00
* @global WP_Error $errors WP_Error object.
* @global wpdb $wpdb WordPress database object.
2014-11-30 05:06:23 +00:00
*/
2010-01-06 04:02:57 +00:00
function send_confirmation_on_profile_email () {
2010-06-24 15:01:29 +00:00
global $errors , $wpdb ;
$current_user = wp_get_current_user ();
2010-01-06 04:02:57 +00:00
if ( ! is_object ( $errors ) )
$errors = new WP_Error ();
2011-08-04 03:09:27 +00:00
if ( $current_user -> ID != $_POST [ 'user_id' ] )
2010-01-06 04:02:57 +00:00
return false ;
2010-04-01 21:21:27 +00:00
if ( $current_user -> user_email != $_POST [ 'email' ] ) {
if ( ! is_email ( $_POST [ 'email' ] ) ) {
2012-10-05 19:04:34 +00:00
$errors -> add ( 'user_email' , __ ( "<strong>ERROR</strong>: The email address isn’t correct." ), array ( 'form-field' => 'email' ) );
2010-01-06 04:02:57 +00:00
return ;
}
2010-04-01 21:21:27 +00:00
if ( $wpdb -> get_var ( $wpdb -> prepare ( "SELECT user_email FROM { $wpdb -> users } WHERE user_email=%s" , $_POST [ 'email' ] ) ) ) {
2012-10-05 19:04:34 +00:00
$errors -> add ( 'user_email' , __ ( "<strong>ERROR</strong>: The email address is already used." ), array ( 'form-field' => 'email' ) );
2016-02-24 15:34:28 +00:00
delete_user_meta ( $current_user -> ID , '_new_email' );
2010-01-06 04:02:57 +00:00
return ;
}
2010-04-01 21:21:27 +00:00
$hash = md5 ( $_POST [ 'email' ] . time () . mt_rand () );
2010-01-06 04:02:57 +00:00
$new_user_email = array (
2016-02-24 15:34:28 +00:00
'hash' => $hash ,
'newemail' => $_POST [ 'email' ]
);
update_user_meta ( $current_user -> ID , '_new_email' , $new_user_email );
2013-10-25 02:29:52 +00:00
2015-05-06 09:12:25 +00:00
/* translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: those are placeholders. */
2015-02-10 07:47:27 +00:00
$email_text = __ ( 'Howdy ###USERNAME###,
2010-01-06 04:02:57 +00:00
You recently requested to have the email address on your account changed.
2015-02-10 07:47:27 +00:00
2010-01-06 04:02:57 +00:00
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###
2013-09-18 18:22:09 +00:00
###SITEURL###' );
/**
* Filter the email text sent when a user changes emails.
*
* The following strings have a special meaning and will get replaced dynamically:
2015-02-10 07:47:27 +00:00
* ###USERNAME### The current user's username.
2015-02-10 07:53:28 +00:00
* ###ADMIN_URL### The link to click on to confirm the email change.
* ###EMAIL### The new email.
* ###SITENAME### The name of the site.
* ###SITEURL### The URL to the site.
2013-09-18 18:22:09 +00:00
*
* @since MU
*
* @param string $email_text Text in the email.
* @param string $new_user_email New user email that the current user has changed to.
*/
$content = apply_filters ( 'new_user_email_content' , $email_text , $new_user_email );
2010-01-06 04:02:57 +00:00
2015-02-10 07:47:27 +00:00
$content = str_replace ( '###USERNAME###' , $current_user -> user_login , $content );
2010-05-03 18:16:22 +00:00
$content = str_replace ( '###ADMIN_URL###' , esc_url ( admin_url ( 'profile.php?newuseremail=' . $hash ) ), $content );
2010-04-01 21:21:27 +00:00
$content = str_replace ( '###EMAIL###' , $_POST [ 'email' ], $content );
2015-10-07 17:11:25 +00:00
$content = str_replace ( '###SITENAME###' , get_site_option ( 'site_name' ), $content );
2010-04-01 21:21:27 +00:00
$content = str_replace ( '###SITEURL###' , network_home_url (), $content );
2010-01-06 04:02:57 +00:00
2014-03-28 02:44:15 +00:00
wp_mail ( $_POST [ 'email' ], sprintf ( __ ( '[%s] New Email Address' ), wp_specialchars_decode ( get_option ( 'blogname' ) ) ), $content );
2010-04-01 21:21:27 +00:00
$_POST [ 'email' ] = $current_user -> user_email ;
2010-01-06 04:02:57 +00:00
}
}
2014-11-30 05:06:23 +00:00
/**
* Adds an admin notice alerting the user to check for confirmation email
* after email address change.
*
* @since 3.0.0
2016-02-07 13:54:25 +00:00
*
* @global string $pagenow
2014-11-30 05:06:23 +00:00
*/
2010-01-06 04:02:57 +00:00
function new_user_email_admin_notice () {
2016-02-07 13:54:25 +00:00
global $pagenow ;
2016-02-24 15:34:28 +00:00
if ( 'profile.php' === $pagenow && isset ( $_GET [ 'updated' ] ) && $email = get_user_meta ( get_current_user_id (), '_new_email' , true ) ) {
2016-02-07 13:54:25 +00:00
/* translators: %s: New email address */
2016-02-24 15:34:28 +00:00
echo '<div class="notice notice-info"><p>' . sprintf ( __ ( 'Your email address has not been updated yet. Please check your inbox at %s for a confirmation email.' ), '<code>' . esc_html ( $email [ 'newemail' ] ) . '</code>' ) . '</p></div>' ;
2016-02-07 13:54:25 +00:00
}
2010-01-06 04:02:57 +00:00
}
2012-08-01 13:52:06 +00:00
/**
2016-01-28 03:35:27 +00:00
* Check whether a site has used its allotted upload space.
2012-08-01 13:52:06 +00:00
*
* @since MU
*
* @param bool $echo Optional. If $echo is set and the quota is exceeded, a warning message is echoed. Default is true.
2014-11-30 05:06:23 +00:00
* @return bool True if user is over upload space quota, otherwise false.
2012-08-01 13:52:06 +00:00
*/
function upload_is_user_over_quota ( $echo = true ) {
2015-10-07 17:11:25 +00:00
if ( get_site_option ( 'upload_space_check_disabled' ) )
2012-08-01 13:52:06 +00:00
return false ;
$space_allowed = get_space_allowed ();
2015-10-10 23:17:25 +00:00
if ( ! is_numeric ( $space_allowed ) ) {
2012-08-08 07:17:33 +00:00
$space_allowed = 10 ; // Default space allowed is 10 MB
2015-10-10 23:17:25 +00:00
}
2012-08-01 13:52:06 +00:00
$space_used = get_space_used ();
2012-08-08 07:17:33 +00:00
if ( ( $space_allowed - $space_used ) < 0 ) {
2012-08-01 13:52:06 +00:00
if ( $echo )
_e ( 'Sorry, you have used your space allocation. Please delete some files to upload more files.' );
return true ;
} else {
return false ;
2010-01-25 19:46:24 +00:00
}
2012-08-01 13:52:06 +00:00
}
2010-01-25 19:46:24 +00:00
2012-08-08 07:17:33 +00:00
/**
2016-01-28 03:35:27 +00:00
* Displays the amount of disk space used by the current site. Not used in core.
2012-08-08 07:17:33 +00:00
*
* @since MU
*/
2010-01-06 04:02:57 +00:00
function display_space_usage () {
2012-08-01 13:52:06 +00:00
$space_allowed = get_space_allowed ();
$space_used = get_space_used ();
2010-01-06 04:02:57 +00:00
2012-08-01 13:52:06 +00:00
$percent_used = ( $space_used / $space_allowed ) * 100 ;
2010-01-06 04:02:57 +00:00
2012-08-01 13:52:06 +00:00
if ( $space_allowed > 1000 ) {
2015-10-21 14:03:25 +00:00
$space = number_format ( $space_allowed / KB_IN_BYTES );
2010-04-21 17:44:21 +00:00
/* translators: Gigabytes */
2010-04-01 21:21:27 +00:00
$space .= __ ( 'GB' );
2010-01-06 04:02:57 +00:00
} else {
2012-08-01 13:52:06 +00:00
$space = number_format ( $space_allowed );
2010-05-03 20:26:11 +00:00
/* translators: Megabytes */
2010-04-01 21:21:27 +00:00
$space .= __ ( 'MB' );
2010-01-06 04:02:57 +00:00
}
?>
2012-10-23 11:28:36 +00:00
<strong><?php printf( __( 'Used: %1$s%% of %2$s' ), number_format( $percent_used ), $space ); ?></strong>
2010-01-06 04:02:57 +00:00
<?php
}
2012-08-01 13:52:06 +00:00
/**
2016-01-28 03:35:27 +00:00
* Get the remaining upload space for this site.
2012-08-01 13:52:06 +00:00
*
* @since MU
*
* @param int $size Current max size in bytes
* @return int Max size in bytes
*/
function fix_import_form_size( $size ) {
2015-06-12 17:19:27 +00:00
if ( upload_is_user_over_quota( false ) ) {
2012-08-01 13:52:06 +00:00
return 0;
2015-06-12 17:19:27 +00:00
}
2012-08-01 13:52:06 +00:00
$available = get_upload_space_available();
2012-08-08 07:17:33 +00:00
return min( $size, $available );
2012-08-01 13:52:06 +00:00
}
2014-11-30 05:06:23 +00:00
/**
2016-01-28 03:35:27 +00:00
* Displays the site upload space quota setting form on the Edit Site Settings screen.
2014-11-30 05:06:23 +00:00
*
* @since 3.0.0
*
2016-01-28 03:35:27 +00:00
* @param int $id The ID of the site to display the setting for.
2014-11-30 05:06:23 +00:00
*/
2010-01-06 04:02:57 +00:00
function upload_space_setting( $id ) {
2012-08-03 17:51:42 +00:00
switch_to_blog( $id );
$quota = get_option( 'blog_upload_space' );
restore_current_blog();
2010-01-18 20:34:48 +00:00
if ( !$quota )
2010-01-06 04:02:57 +00:00
$quota = '';
2010-01-07 04:27:46 +00:00
2010-01-06 04:02:57 +00:00
?>
<tr>
2015-02-23 02:29:26 +00:00
<th><label for="blog-upload-space-number"><?php _e( 'Site Upload Space Quota' ); ?></label></th>
<td>
<input type="number" step="1" min="0" style="width: 100px" name="option[blog_upload_space]" id="blog-upload-space-number" aria-describedby="blog-upload-space-desc" value="<?php echo $quota; ?>" />
<span id="blog-upload-space-desc"><span class="screen-reader-text"><?php _e( 'Size in megabytes' ); ?></span> <?php _e( 'MB (Leave blank for network default)' ); ?></span>
</td>
2010-01-06 04:02:57 +00:00
</tr>
<?php
}
2014-11-30 05:06:23 +00:00
/**
* Update the status of a user in the database.
*
* Used in core to mark a user as spam or "ham" (not spam) in Multisite.
*
* @since 3.0.0
*
2015-10-14 23:44:25 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2015-05-28 21:41:30 +00:00
*
2014-11-30 05:06:23 +00:00
* @param int $id The user ID.
* @param string $pref The column in the wp_users table to update the user's status
* in (presumably user_status, spam, or deleted).
* @param int $value The new status for the user.
* @param null $deprecated Deprecated as of 3.0.2 and should not be used.
* @return int The initially passed $value.
*/
2010-12-01 22:12:09 +00:00
function update_user_status( $id, $pref, $value, $deprecated = null ) {
2010-01-06 04:02:57 +00:00
global $wpdb;
2011-12-14 17:36:38 +00:00
if ( null !== $deprecated )
2010-12-15 11:27:38 +00:00
_deprecated_argument( __FUNCTION__, '3.1' );
2010-12-01 22:12:09 +00:00
2013-07-29 18:16:47 +00:00
$wpdb->update( $wpdb->users, array( sanitize_key( $pref ) => $value ), array( 'ID' => $id ) );
2010-01-06 04:02:57 +00:00
2012-04-18 21:07:31 +00:00
$user = new WP_User( $id );
clean_user_cache( $user );
2010-01-07 04:27:46 +00:00
2010-01-18 20:34:48 +00:00
if ( $pref == 'spam' ) {
2013-09-18 18:22:09 +00:00
if ( $value == 1 ) {
/**
2013-09-19 00:05:09 +00:00
* Fires after the user is marked as a SPAM user.
2013-10-25 02:29:52 +00:00
*
2013-09-18 18:22:09 +00:00
* @since 3.0.0
2013-10-25 02:29:52 +00:00
*
2013-09-19 16:06:12 +00:00
* @param int $id ID of the user marked as SPAM.
2013-09-18 18:22:09 +00:00
*/
2010-04-01 21:21:27 +00:00
do_action( 'make_spam_user', $id );
2013-09-18 18:22:09 +00:00
} else {
/**
2013-09-19 00:05:09 +00:00
* Fires after the user is marked as a HAM user. Opposite of SPAM.
2013-09-18 18:22:09 +00:00
*
* @since 3.0.0
2013-10-25 02:29:52 +00:00
*
2013-09-19 16:06:12 +00:00
* @param int $id ID of the user marked as HAM.
2013-09-18 18:22:09 +00:00
*/
2010-04-01 21:21:27 +00:00
do_action( 'make_ham_user', $id );
2013-09-18 18:22:09 +00:00
}
2010-01-06 04:02:57 +00:00
}
return $value;
}
2014-11-30 05:06:23 +00:00
/**
* Cleans the user cache for a specific user.
*
* @since 3.0.0
*
* @param int $id The user ID.
* @return bool|int The ID of the refreshed user or false if the user does not exist.
*/
2010-04-01 21:21:27 +00:00
function refresh_user_details( $id ) {
2010-01-06 04:02:57 +00:00
$id = (int) $id;
2010-01-07 04:27:46 +00:00
2010-01-06 04:02:57 +00:00
if ( !$user = get_userdata( $id ) )
return false;
2012-04-18 21:07:31 +00:00
clean_user_cache( $user );
2010-01-19 19:23:11 +00:00
2010-01-06 04:02:57 +00:00
return $id;
}
2014-11-30 05:06:23 +00:00
/**
* Returns the language for a language code.
*
* @since 3.0.0
*
* @param string $code Optional. The two-letter language code. Default empty.
* @return string The language corresponding to $code if it exists. If it does not exist,
* then the first two letters of $code is returned.
*/
2010-01-06 04:02:57 +00:00
function format_code_lang( $code = '' ) {
2010-04-01 21:21:27 +00:00
$code = strtolower( substr( $code, 0, 2 ) );
2010-05-03 20:26:11 +00:00
$lang_codes = array(
2010-04-01 21:21:27 +00:00
'aa' => 'Afar', 'ab' => 'Abkhazian', 'af' => 'Afrikaans', 'ak' => 'Akan', 'sq' => 'Albanian', 'am' => 'Amharic', 'ar' => 'Arabic', 'an' => 'Aragonese', 'hy' => 'Armenian', 'as' => 'Assamese', 'av' => 'Avaric', 'ae' => 'Avestan', 'ay' => 'Aymara', 'az' => 'Azerbaijani', 'ba' => 'Bashkir', 'bm' => 'Bambara', 'eu' => 'Basque', 'be' => 'Belarusian', 'bn' => 'Bengali',
'bh' => 'Bihari', 'bi' => 'Bislama', 'bs' => 'Bosnian', 'br' => 'Breton', 'bg' => 'Bulgarian', 'my' => 'Burmese', 'ca' => 'Catalan; Valencian', 'ch' => 'Chamorro', 'ce' => 'Chechen', 'zh' => 'Chinese', 'cu' => 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', 'cv' => 'Chuvash', 'kw' => 'Cornish', 'co' => 'Corsican', 'cr' => 'Cree',
'cs' => 'Czech', 'da' => 'Danish', 'dv' => 'Divehi; Dhivehi; Maldivian', 'nl' => 'Dutch; Flemish', 'dz' => 'Dzongkha', 'en' => 'English', 'eo' => 'Esperanto', 'et' => 'Estonian', 'ee' => 'Ewe', 'fo' => 'Faroese', 'fj' => 'Fijjian', 'fi' => 'Finnish', 'fr' => 'French', 'fy' => 'Western Frisian', 'ff' => 'Fulah', 'ka' => 'Georgian', 'de' => 'German', 'gd' => 'Gaelic; Scottish Gaelic',
'ga' => 'Irish', 'gl' => 'Galician', 'gv' => 'Manx', 'el' => 'Greek, Modern', 'gn' => 'Guarani', 'gu' => 'Gujarati', 'ht' => 'Haitian; Haitian Creole', 'ha' => 'Hausa', 'he' => 'Hebrew', 'hz' => 'Herero', 'hi' => 'Hindi', 'ho' => 'Hiri Motu', 'hu' => 'Hungarian', 'ig' => 'Igbo', 'is' => 'Icelandic', 'io' => 'Ido', 'ii' => 'Sichuan Yi', 'iu' => 'Inuktitut', 'ie' => 'Interlingue',
'ia' => 'Interlingua (International Auxiliary Language Association)', 'id' => 'Indonesian', 'ik' => 'Inupiaq', 'it' => 'Italian', 'jv' => 'Javanese', 'ja' => 'Japanese', 'kl' => 'Kalaallisut; Greenlandic', 'kn' => 'Kannada', 'ks' => 'Kashmiri', 'kr' => 'Kanuri', 'kk' => 'Kazakh', 'km' => 'Central Khmer', 'ki' => 'Kikuyu; Gikuyu', 'rw' => 'Kinyarwanda', 'ky' => 'Kirghiz; Kyrgyz',
'kv' => 'Komi', 'kg' => 'Kongo', 'ko' => 'Korean', 'kj' => 'Kuanyama; Kwanyama', 'ku' => 'Kurdish', 'lo' => 'Lao', 'la' => 'Latin', 'lv' => 'Latvian', 'li' => 'Limburgan; Limburger; Limburgish', 'ln' => 'Lingala', 'lt' => 'Lithuanian', 'lb' => 'Luxembourgish; Letzeburgesch', 'lu' => 'Luba-Katanga', 'lg' => 'Ganda', 'mk' => 'Macedonian', 'mh' => 'Marshallese', 'ml' => 'Malayalam',
'mi' => 'Maori', 'mr' => 'Marathi', 'ms' => 'Malay', 'mg' => 'Malagasy', 'mt' => 'Maltese', 'mo' => 'Moldavian', 'mn' => 'Mongolian', 'na' => 'Nauru', 'nv' => 'Navajo; Navaho', 'nr' => 'Ndebele, South; South Ndebele', 'nd' => 'Ndebele, North; North Ndebele', 'ng' => 'Ndonga', 'ne' => 'Nepali', 'nn' => 'Norwegian Nynorsk; Nynorsk, Norwegian', 'nb' => 'Bokmål, Norwegian, Norwegian Bokmål',
'no' => 'Norwegian', 'ny' => 'Chichewa; Chewa; Nyanja', 'oc' => 'Occitan, Provençal', 'oj' => 'Ojibwa', 'or' => 'Oriya', 'om' => 'Oromo', 'os' => 'Ossetian; Ossetic', 'pa' => 'Panjabi; Punjabi', 'fa' => 'Persian', 'pi' => 'Pali', 'pl' => 'Polish', 'pt' => 'Portuguese', 'ps' => 'Pushto', 'qu' => 'Quechua', 'rm' => 'Romansh', 'ro' => 'Romanian', 'rn' => 'Rundi', 'ru' => 'Russian',
'sg' => 'Sango', 'sa' => 'Sanskrit', 'sr' => 'Serbian', 'hr' => 'Croatian', 'si' => 'Sinhala; Sinhalese', 'sk' => 'Slovak', 'sl' => 'Slovenian', 'se' => 'Northern Sami', 'sm' => 'Samoan', 'sn' => 'Shona', 'sd' => 'Sindhi', 'so' => 'Somali', 'st' => 'Sotho, Southern', 'es' => 'Spanish; Castilian', 'sc' => 'Sardinian', 'ss' => 'Swati', 'su' => 'Sundanese', 'sw' => 'Swahili',
'sv' => 'Swedish', 'ty' => 'Tahitian', 'ta' => 'Tamil', 'tt' => 'Tatar', 'te' => 'Telugu', 'tg' => 'Tajik', 'tl' => 'Tagalog', 'th' => 'Thai', 'bo' => 'Tibetan', 'ti' => 'Tigrinya', 'to' => 'Tonga (Tonga Islands)', 'tn' => 'Tswana', 'ts' => 'Tsonga', 'tk' => 'Turkmen', 'tr' => 'Turkish', 'tw' => 'Twi', 'ug' => 'Uighur; Uyghur', 'uk' => 'Ukrainian', 'ur' => 'Urdu', 'uz' => 'Uzbek',
've' => 'Venda', 'vi' => 'Vietnamese', 'vo' => 'Volapük', 'cy' => 'Welsh','wa' => 'Walloon','wo' => 'Wolof', 'xh' => 'Xhosa', 'yi' => 'Yiddish', 'yo' => 'Yoruba', 'za' => 'Zhuang; Chuang', 'zu' => 'Zulu' );
2013-10-25 02:29:52 +00:00
2013-09-18 18:22:09 +00:00
/**
* Filter the language codes.
2013-10-25 02:29:52 +00:00
*
2013-09-18 18:22:09 +00:00
* @since MU
*
* @param array $lang_codes Key/value pair of language codes where key is the short version.
* @param string $code A two-letter designation of the language.
*/
2010-04-01 21:21:27 +00:00
$lang_codes = apply_filters( 'lang_codes', $lang_codes, $code );
2010-01-06 04:02:57 +00:00
return strtr( $code, $lang_codes );
}
2014-11-30 05:06:23 +00:00
/**
* Synchronize category and post tag slugs when global terms are enabled.
*
* @since 3.0.0
*
2015-01-09 11:19:22 +00:00
* @param object $term The term.
2016-05-02 04:00:28 +00:00
* @param string $taxonomy The taxonomy for `$term`. Should be 'category' or 'post_tag', as these are
2015-01-09 11:19:22 +00:00
* the only taxonomies which are processed by this function; anything else
* will be returned untouched.
2016-05-02 04:00:28 +00:00
* @return object|array Returns `$term`, after filtering the 'slug' field with sanitize_title()
2014-11-30 05:06:23 +00:00
* if $taxonomy is 'category' or 'post_tag'.
*/
2010-01-06 04:02:57 +00:00
function sync_category_tag_slugs( $term, $taxonomy ) {
2010-03-16 17:17:55 +00:00
if ( global_terms_enabled() && ( $taxonomy == 'category' || $taxonomy == 'post_tag' ) ) {
2010-01-18 20:34:48 +00:00
if ( is_object( $term ) ) {
2010-01-06 04:02:57 +00:00
$term->slug = sanitize_title( $term->name );
} else {
2010-04-01 21:21:27 +00:00
$term['slug'] = sanitize_title( $term['name'] );
2010-01-06 04:02:57 +00:00
}
}
return $term;
}
2014-11-30 05:06:23 +00:00
/**
* Displays an access denied message when a user tries to view a site's dashboard they
* do not have access to.
*
* @since 3.2.0
* @access private
*/
2011-04-29 00:43:48 +00:00
function _access_denied_splash() {
2011-05-23 23:11:03 +00:00
if ( ! is_user_logged_in() || is_network_admin() )
2011-04-29 00:43:48 +00:00
return;
2010-01-07 04:27:46 +00:00
2011-04-29 00:43:48 +00:00
$blogs = get_blogs_of_user( get_current_user_id() );
2010-01-06 04:02:57 +00:00
2011-05-23 23:08:19 +00:00
if ( wp_list_filter( $blogs, array( 'userblog_id' => get_current_blog_id() ) ) )
return;
2011-04-29 00:43:48 +00:00
$blog_name = get_bloginfo( 'name' );
2010-10-07 19:34:18 +00:00
2011-04-29 01:51:53 +00:00
if ( empty( $blogs ) )
2015-01-29 21:15:22 +00:00
wp_die( sprintf( __( 'You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.' ), $blog_name ), 403 );
2011-04-29 00:43:48 +00:00
2011-04-29 01:51:53 +00:00
$output = '<p>' . sprintf( __( 'You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.' ), $blog_name ) . '</p>';
2011-06-24 11:18:20 +00:00
$output .= '<p>' . __( 'If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.' ) . '</p>';
2011-04-29 00:43:48 +00:00
$output .= '<h3>' . __('Your Sites') . '</h3>';
$output .= '<table>';
foreach ( $blogs as $blog ) {
2014-01-24 19:06:15 +00:00
$output .= '<tr>';
$output .= "<td>{$blog->blogname}</td>";
$output .= '<td><a href="' . esc_url( get_admin_url( $blog->userblog_id ) ) . '">' . __( 'Visit Dashboard' ) . '</a> | ' .
'<a href="' . esc_url( get_home_url( $blog->userblog_id ) ). '">' . __( 'View Site' ) . '</a></td>';
$output .= '</tr>';
2011-04-29 00:43:48 +00:00
}
2014-01-24 19:06:15 +00:00
2011-04-29 00:43:48 +00:00
$output .= '</table>';
2015-01-29 21:15:22 +00:00
wp_die( $output, 403 );
2010-01-06 04:02:57 +00:00
}
2014-11-30 05:06:23 +00:00
/**
* Checks if the current user has permissions to import new users.
*
* @since 3.0.0
*
* @param string $permission A permission to be checked. Currently not used.
* @return bool True if the user has proper permissions, false if they do not.
*/
2010-01-06 04:02:57 +00:00
function check_import_new_users( $permission ) {
2010-01-08 20:29:56 +00:00
if ( !is_super_admin() )
2010-01-06 04:02:57 +00:00
return false;
return true;
}
// See "import_allow_fetch_attachments" and "import_attachment_size_limit" filters too.
2014-11-30 05:06:23 +00:00
/**
* Generates and displays a drop-down of available languages.
*
* @since 3.0.0
*
* @param array $lang_files Optional. An array of the language files. Default empty array.
* @param string $current Optional. The current language code. Default empty.
*/
2010-01-06 04:02:57 +00:00
function mu_dropdown_languages( $lang_files = array(), $current = '' ) {
2010-01-07 04:27:46 +00:00
$flag = false;
2010-01-06 04:02:57 +00:00
$output = array();
2010-01-07 04:27:46 +00:00
2010-01-06 04:02:57 +00:00
foreach ( (array) $lang_files as $val ) {
$code_lang = basename( $val, '.mo' );
2010-01-07 04:27:46 +00:00
2010-01-06 04:02:57 +00:00
if ( $code_lang == 'en_US' ) { // American English
$flag = true;
2010-05-03 20:26:11 +00:00
$ae = __( 'American English' );
2010-07-10 07:25:10 +00:00
$output[$ae] = '<option value="' . esc_attr( $code_lang ) . '"' . selected( $current, $code_lang, false ) . '> ' . $ae . '</option>';
2010-01-06 04:02:57 +00:00
} elseif ( $code_lang == 'en_GB' ) { // British English
$flag = true;
2010-04-01 21:21:27 +00:00
$be = __( 'British English' );
2010-07-10 07:25:10 +00:00
$output[$be] = '<option value="' . esc_attr( $code_lang ) . '"' . selected( $current, $code_lang, false ) . '> ' . $be . '</option>';
2010-01-06 04:02:57 +00:00
} else {
2010-04-01 21:21:27 +00:00
$translated = format_code_lang( $code_lang );
2011-12-14 17:36:38 +00:00
$output[$translated] = '<option value="' . esc_attr( $code_lang ) . '"' . selected( $current, $code_lang, false ) . '> ' . esc_html ( $translated ) . '</option>';
2010-01-06 04:02:57 +00:00
}
2010-01-07 04:27:46 +00:00
}
2010-04-01 21:21:27 +00:00
if ( $flag === false ) // WordPress english
2010-07-10 07:25:10 +00:00
$output[] = '<option value=""' . selected( $current, '', false ) . '>' . __( 'English' ) . "</option>";
2010-01-07 04:27:46 +00:00
2010-01-06 04:02:57 +00:00
// Order by name
2010-04-01 21:21:27 +00:00
uksort( $output, 'strnatcasecmp' );
2014-11-30 05:06:23 +00:00
2013-09-18 18:22:09 +00:00
/**
* Filter the languages available in the dropdown.
*
* @since MU
*
* @param array $output HTML output of the dropdown.
* @param array $lang_files Available language files.
* @param string $current The current language code.
*/
2010-04-01 21:21:27 +00:00
$output = apply_filters( 'mu_dropdown_languages', $output, $lang_files, $current );
2014-11-30 05:06:23 +00:00
2010-04-01 21:21:27 +00:00
echo implode( "\n\t", $output );
2010-01-06 04:02:57 +00:00
}
2014-11-30 05:06:23 +00:00
/**
* Displays an admin notice to upgrade all sites after a core upgrade.
*
* @since 3.0.0
*
2016-02-09 14:30:28 +00:00
* @global int $wp_db_version The version number of the database.
* @global string $pagenow
2015-05-04 01:06:25 +00:00
*
* @return false False if the current user is not a super admin.
2014-11-30 05:06:23 +00:00
*/
2010-01-06 04:02:57 +00:00
function site_admin_notice() {
2016-02-09 14:30:28 +00:00
global $wp_db_version, $pagenow;
if ( ! is_super_admin() ) {
2010-01-06 04:02:57 +00:00
return false;
2016-02-09 14:30:28 +00:00
}
if ( 'upgrade.php' == $pagenow ) {
return;
}
if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version ) {
2013-03-05 17:02:31 +00:00
echo "<div class='update-nag'>" . sprintf( __( 'Thank you for Updating! Please visit the <a href="%s">Upgrade Network</a> page to update all your sites.' ), esc_url( network_admin_url( 'upgrade.php' ) ) ) . "</div>";
2016-02-09 14:30:28 +00:00
}
2010-01-06 04:02:57 +00:00
}
2014-11-30 05:06:23 +00:00
/**
* Avoids a collision between a site slug and a permalink slug.
*
* In a subdirectory install this will make sure that a site and a post do not use the
* same subdirectory by checking for a site with the same name as a new post.
*
* @since 3.0.0
*
* @param array $data An array of post data.
* @param array $postarr An array of posts. Not currently used.
* @return array The new array of post data after checking for collisions.
*/
2010-01-06 04:02:57 +00:00
function avoid_blog_page_permalink_collision( $data, $postarr ) {
2010-01-18 20:34:48 +00:00
if ( is_subdomain_install() )
2010-01-06 04:02:57 +00:00
return $data;
2010-04-01 21:21:27 +00:00
if ( $data['post_type'] != 'page' )
2010-01-06 04:02:57 +00:00
return $data;
2010-04-01 21:21:27 +00:00
if ( !isset( $data['post_name'] ) || $data['post_name'] == '' )
2010-01-06 04:02:57 +00:00
return $data;
2010-01-26 22:46:09 +00:00
if ( !is_main_site() )
2010-01-06 04:02:57 +00:00
return $data;
2010-04-01 21:21:27 +00:00
$post_name = $data['post_name'];
2010-01-06 04:02:57 +00:00
$c = 0;
while( $c < 10 && get_id_from_blogname( $post_name ) ) {
$post_name .= mt_rand( 1, 10 );
$c ++;
}
2010-04-01 21:21:27 +00:00
if ( $post_name != $data['post_name'] ) {
$data['post_name'] = $post_name;
2010-01-06 04:02:57 +00:00
}
return $data;
}
2014-11-30 05:06:23 +00:00
/**
* Handles the display of choosing a user's primary site.
*
* This displays the user's primary site and allows the user to choose
* which site is primary.
*
* @since 3.0.0
*/
2010-01-06 04:02:57 +00:00
function choose_primary_blog() {
?>
<table class="form-table">
<tr>
2010-02-01 20:01:14 +00:00
<?php /* translators: My sites label */ ?>
2015-02-23 02:29:26 +00:00
<th scope="row"><label for="primary_blog"><?php _e( 'Primary Site' ); ?></label></th>
2010-01-06 04:02:57 +00:00
<td>
<?php
2010-06-24 15:01:29 +00:00
$all_blogs = get_blogs_of_user( get_current_user_id() );
$primary_blog = get_user_meta( get_current_user_id(), 'primary_blog', true );
2010-01-18 20:34:48 +00:00
if ( count( $all_blogs ) > 1 ) {
2010-01-06 04:02:57 +00:00
$found = false;
?>
2015-02-23 02:29:26 +00:00
<select name="primary_blog" id="primary_blog">
2015-08-25 20:28:22 +00:00
<?php foreach ( (array) $all_blogs as $blog ) {
2010-01-18 20:34:48 +00:00
if ( $primary_blog == $blog->userblog_id )
2010-01-06 04:02:57 +00:00
$found = true;
2011-12-14 17:36:38 +00:00
?><option value="<?php echo $blog->userblog_id ?>"<?php selected( $primary_blog, $blog->userblog_id ); ?>><?php echo esc_url( get_home_url( $blog->userblog_id ) ) ?></option><?php
2010-01-06 04:02:57 +00:00
} ?>
</select>
<?php
2010-01-18 20:34:48 +00:00
if ( !$found ) {
2015-03-19 03:56:27 +00:00
$blog = reset( $all_blogs );
2010-06-24 15:01:29 +00:00
update_user_meta( get_current_user_id(), 'primary_blog', $blog->userblog_id );
2010-01-06 04:02:57 +00:00
}
2010-01-18 20:34:48 +00:00
} elseif ( count( $all_blogs ) == 1 ) {
2015-03-19 03:56:27 +00:00
$blog = reset( $all_blogs );
2015-07-04 04:21:24 +00:00
echo esc_url( get_home_url( $blog->userblog_id ) );
2010-01-18 20:34:48 +00:00
if ( $primary_blog != $blog->userblog_id ) // Set the primary blog again if it's out of sync with blog list.
2010-06-24 15:01:29 +00:00
update_user_meta( get_current_user_id(), 'primary_blog', $blog->userblog_id );
2010-01-06 04:02:57 +00:00
} else {
echo "N/A";
}
?>
</td>
</tr>
</table>
2010-01-07 04:27:46 +00:00
<?php
2010-01-06 04:02:57 +00:00
}
2010-12-07 14:28:40 +00:00
/**
2014-11-30 05:06:23 +00:00
* Whether or not we can edit this network from this page.
2010-12-13 21:21:50 +00:00
*
2014-11-30 05:06:23 +00:00
* By default editing of network is restricted to the Network Admin for that `$site_id`
* this allows for this to be overridden.
2010-12-13 21:21:50 +00:00
*
2010-12-07 14:28:40 +00:00
* @since 3.1.0
2014-11-30 05:06:23 +00:00
*
2015-10-14 23:44:25 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2015-05-28 21:41:30 +00:00
*
2014-11-30 05:06:23 +00:00
* @param int $site_id The network/site ID to check.
* @return bool True if network can be edited, otherwise false.
2010-12-07 14:28:40 +00:00
*/
2010-12-09 12:36:39 +00:00
function can_edit_network( $site_id ) {
2010-12-07 14:28:40 +00:00
global $wpdb;
2010-12-13 21:21:50 +00:00
2013-09-19 16:06:12 +00:00
if ( $site_id == $wpdb->siteid )
2010-12-07 14:28:40 +00:00
$result = true;
else
$result = false;
2013-09-19 16:06:12 +00:00
2013-09-18 18:22:09 +00:00
/**
* Filter whether this network can be edited from this page.
*
* @since 3.1.0
*
* @param bool $result Whether the network can be edited from this page.
* @param int $site_id The network/site ID to check.
*/
2010-12-09 12:36:39 +00:00
return apply_filters( 'can_edit_network', $result, $site_id );
2010-12-07 14:28:40 +00:00
}
2010-12-15 18:48:40 +00:00
/**
* Thickbox image paths for Network Admin.
*
* @since 3.1.0
2014-11-30 05:06:23 +00:00
*
2010-12-15 18:48:40 +00:00
* @access private
*/
function _thickbox_path_admin_subfolder() {
2010-02-22 18:41:38 +00:00
?>
2010-12-15 18:48:40 +00:00
<script type="text/javascript">
2014-09-12 22:31:18 +00:00
var tb_pathToImage = "<?php echo includes_url( 'js/thickbox/loadingAnimation.gif', 'relative' ); ?>";
2010-12-15 18:48:40 +00:00
</script>
2010-12-15 23:21:07 +00:00
<?php
2010-12-15 18:48:40 +00:00
}
2015-09-10 22:23:46 +00:00
/**
*
* @param array $users
*/
function confirm_delete_users( $users ) {
$current_user = wp_get_current_user();
if ( ! is_array( $users ) || empty( $users ) ) {
return false;
}
?>
<h1><?php esc_html_e( 'Users' ); ?></h1>
<?php if ( 1 == count( $users ) ) : ?>
<p><?php _e( 'You have chosen to delete the user from all networks and sites.' ); ?></p>
<?php else : ?>
<p><?php _e( 'You have chosen to delete the following users from all networks and sites.' ); ?></p>
<?php endif; ?>
<form action="users.php?action=dodelete" method="post">
<input type="hidden" name="dodelete" />
<?php
wp_nonce_field( 'ms-users-delete' );
$site_admins = get_super_admins();
$admin_out = '<option value="' . esc_attr( $current_user->ID ) . '">' . $current_user->user_login . '</option>'; ?>
<table class="form-table">
<?php foreach ( ( $allusers = (array) $_POST['allusers'] ) as $user_id ) {
if ( $user_id != '' && $user_id != '0' ) {
$delete_user = get_userdata( $user_id );
if ( ! current_user_can( 'delete_user', $delete_user->ID ) ) {
wp_die( sprintf( __( 'Warning! User %s cannot be deleted.' ), $delete_user->user_login ) );
}
if ( in_array( $delete_user->user_login, $site_admins ) ) {
wp_die( sprintf( __( 'Warning! User cannot be deleted. The user %s is a network administrator.' ), '<em>' . $delete_user->user_login . '</em>' ) );
}
?>
<tr>
<th scope="row"><?php echo $delete_user->user_login; ?>
<?php echo '<input type="hidden" name="user[]" value="' . esc_attr( $user_id ) . '" />' . "\n"; ?>
</th>
<?php $blogs = get_blogs_of_user( $user_id, true );
if ( ! empty( $blogs ) ) {
?>
<td><fieldset><p><legend><?php printf(
/* translators: user login */
__( 'What should be done with content owned by %s?' ),
'<em>' . $delete_user->user_login . '</em>'
); ?></legend></p>
<?php
foreach ( (array) $blogs as $key => $details ) {
$blog_users = get_users( array( 'blog_id' => $details->userblog_id, 'fields' => array( 'ID', 'user_login' ) ) );
if ( is_array( $blog_users ) && !empty( $blog_users ) ) {
$user_site = "<a href='" . esc_url( get_home_url( $details->userblog_id ) ) . "'>{$details->blogname}</a>";
$user_dropdown = '<label for="reassign_user" class="screen-reader-text">' . __( 'Select a user' ) . '</label>';
$user_dropdown .= "<select name='blog[$user_id][$key]' id='reassign_user'>";
$user_list = '';
foreach ( $blog_users as $user ) {
if ( ! in_array( $user->ID, $allusers ) ) {
$user_list .= "<option value='{$user->ID}'>{$user->user_login}</option>";
}
}
if ( '' == $user_list ) {
$user_list = $admin_out;
}
$user_dropdown .= $user_list;
$user_dropdown .= "</select>\n";
?>
<ul style="list-style:none;">
<li><?php printf( __( 'Site: %s' ), $user_site ); ?></li>
<li><label><input type="radio" id="delete_option0" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="delete" checked="checked" />
<?php _e( 'Delete all content.' ); ?></label></li>
<li><label><input type="radio" id="delete_option1" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="reassign" />
<?php _e( 'Attribute all content to:' ); ?></label>
<?php echo $user_dropdown; ?></li>
</ul>
<?php
}
}
echo "</fieldset></td></tr>";
} else {
?>
<td><fieldset><p><legend><?php _e( 'User has no sites or content and will be deleted.' ); ?></legend></p>
<?php } ?>
</tr>
<?php
}
}
?>
</table>
<?php
/** This action is documented in wp-admin/users.php */
2016-02-23 17:42:27 +00:00
do_action( 'delete_user_form', $current_user, $allusers );
2015-09-10 22:23:46 +00:00
if ( 1 == count( $users ) ) : ?>
<p><?php _e( 'Once you hit “Confirm Deletion”, the user will be permanently removed.' ); ?></p>
<?php else : ?>
<p><?php _e( 'Once you hit “Confirm Deletion”, these users will be permanently removed.' ); ?></p>
<?php endif;
2015-10-15 03:08:24 +00:00
submit_button( __('Confirm Deletion'), 'primary' );
2015-09-10 22:23:46 +00:00
?>
</form>
<?php
return true;
2015-09-10 22:24:24 +00:00
}
/**
* Print JavaScript in the header on the Network Settings screen.
*
* @since 4.1.0
2015-12-12 15:37:28 +00:00
*/
2015-09-10 22:24:24 +00:00
function network_settings_add_js() {
?>
<script type="text/javascript">
jQuery(document).ready( function($) {
var languageSelect = $( '#WPLANG' );
$( 'form' ).submit( function() {
// Don't show a spinner for English and installed languages,
// as there is nothing to download.
if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
$( '#submit', this ).after( '<span class="spinner language-install-spinner" />' );
}
});
});
</script>
<?php
2015-10-21 14:03:25 +00:00
}