2010-01-05 23:02:57 -05:00
< ? php
2010-04-04 09:29:35 -04:00
/**
* Multisite administration functions .
*
* @ package WordPress
* @ subpackage Multisite
* @ since 3.0 . 0
*/
2010-01-25 17:01:43 -05:00
/**
* Determine if uploaded file exceeds space quota .
*
2010-03-26 15:13:36 -04:00
* @ since 3.0 . 0
2010-01-25 17:01:43 -05: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-05 23:02:57 -05:00
function check_upload_size ( $file ) {
2010-01-25 17:01:43 -05:00
if ( get_site_option ( 'upload_space_check_disabled' ) )
2010-01-05 23:02:57 -05:00
return $file ;
2010-01-25 17:01:43 -05:00
2010-01-18 15:34:48 -05:00
if ( $file [ 'error' ] != '0' ) // there's already an error
2010-01-05 23:02:57 -05:00
return $file ;
if ( defined ( 'WP_IMPORTING' ) )
return $file ;
2012-08-01 09:52:06 -04:00
$space_left = get_upload_space_available ();
2010-01-05 23:02:57 -05:00
$file_size = filesize ( $file [ 'tmp_name' ] );
2010-01-18 15:34:48 -05:00
if ( $space_left < $file_size )
2010-04-21 13:44:21 -04:00
$file [ 'error' ] = sprintf ( __ ( 'Not enough space to upload. %1$s KB needed.' ), number_format ( ( $file_size - $space_left ) / 1024 ) );
2010-01-18 15:34:48 -05:00
if ( $file_size > ( 1024 * get_site_option ( 'fileupload_maxk' , 1500 ) ) )
2010-04-21 13:44:21 -04:00
$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 15:34:48 -05:00
if ( upload_is_user_over_quota ( false ) ) {
2010-04-01 17:21:27 -04:00
$file [ 'error' ] = __ ( 'You have used your space quota. Please delete files before uploading.' );
2010-01-05 23:02:57 -05:00
}
2010-05-17 21:34:01 -04:00
if ( $file [ 'error' ] != '0' && ! isset ( $_POST [ 'html-upload' ]) )
2010-01-05 23:02:57 -05:00
wp_die ( $file [ 'error' ] . ' <a href="javascript:history.go(-1)">' . __ ( 'Back' ) . '</a>' );
return $file ;
}
add_filter ( 'wp_handle_upload_prefilter' , 'check_upload_size' );
2010-01-25 17:01:43 -05:00
/**
* Delete a blog
*
2010-03-26 15:13:36 -04:00
* @ since 3.0 . 0
2010-01-25 17:01:43 -05:00
*
* @ param int $blog_id Blog ID
2011-12-13 18:45:31 -05:00
* @ param bool $drop True if blog ' s table should be dropped . Default is false .
2010-01-25 17:01:43 -05:00
* @ return void
*/
2010-04-01 17:21:27 -04:00
function wpmu_delete_blog ( $blog_id , $drop = false ) {
2011-10-21 18:04:52 -04:00
global $wpdb , $current_site ;
2010-01-05 23:02:57 -05:00
2010-04-01 17:21:27 -04:00
$switch = false ;
2010-01-05 23:02:57 -05:00
if ( $blog_id != $wpdb -> blogid ) {
$switch = true ;
2010-04-01 17:21:27 -04:00
switch_to_blog ( $blog_id );
2011-10-21 18:04:52 -04:00
$blog = get_blog_details ( $blog_id );
} else {
$blog = $GLOBALS [ 'current_blog' ];
2010-01-05 23:02:57 -05:00
}
2010-04-01 17:21:27 -04:00
do_action ( 'delete_blog' , $blog_id , $drop );
2010-01-05 23:02:57 -05:00
2010-12-20 11:25:35 -05:00
$users = get_users ( array ( 'blog_id' => $blog_id , 'fields' => 'ids' ) );
2010-01-05 23:02:57 -05:00
// Remove users from this blog.
2010-04-01 17:21:27 -04:00
if ( ! empty ( $users ) ) {
2010-12-20 11:25:35 -05:00
foreach ( $users as $user_id ) {
2011-10-21 18:04:52 -04:00
remove_user_from_blog ( $user_id , $blog_id );
2010-01-25 17:01:43 -05:00
}
2010-01-05 23:02:57 -05:00
}
update_blog_status ( $blog_id , 'deleted' , 1 );
2011-10-21 18:04:52 -04:00
// Don't destroy the initial, main, or root blog.
if ( $drop && ( 1 == $blog_id || is_main_site ( $blog_id ) || ( $blog -> path == $current_site -> path && $blog -> domain == $current_site -> domain ) ) )
$drop = false ;
2010-01-05 23:02:57 -05:00
if ( $drop ) {
2010-04-24 00:15:00 -04:00
2011-10-21 18:04:52 -04:00
$drop_tables = apply_filters ( 'wpmu_drop_tables' , $wpdb -> tables ( 'blog' ) );
2010-01-05 23:02:57 -05:00
2011-10-21 18:04:52 -04:00
foreach ( ( array ) $drop_tables as $table ) {
$wpdb -> query ( " DROP TABLE IF EXISTS ` $table ` " );
2010-01-05 23:02:57 -05:00
}
2011-10-21 18:04:52 -04:00
2012-03-24 11:24:31 -04:00
$wpdb -> delete ( $wpdb -> blogs , array ( 'blog_id' => $blog_id ) );
2010-02-18 20:03:58 -05:00
$dir = apply_filters ( 'wpmu_delete_blog_upload_dir' , WP_CONTENT_DIR . " /blogs.dir/ { $blog_id } /files/ " , $blog_id );
2010-04-01 17:21:27 -04:00
$dir = rtrim ( $dir , DIRECTORY_SEPARATOR );
2010-01-05 23:02:57 -05:00
$top_dir = $dir ;
$stack = array ( $dir );
$index = 0 ;
2010-04-01 17:21:27 -04:00
while ( $index < count ( $stack ) ) {
2010-01-05 23:02:57 -05:00
# Get indexed directory from stack
$dir = $stack [ $index ];
2010-04-01 17:21:27 -04:00
$dh = @ opendir ( $dir );
2010-01-25 17:01:43 -05:00
if ( $dh ) {
2010-04-01 17:21:27 -04:00
while ( ( $file = @ readdir ( $dh ) ) !== false ) {
if ( $file == '.' || $file == '..' )
2010-01-05 23:02:57 -05:00
continue ;
2010-04-01 17:21:27 -04:00
if ( @ is_dir ( $dir . DIRECTORY_SEPARATOR . $file ) )
2010-01-05 23:02:57 -05:00
$stack [] = $dir . DIRECTORY_SEPARATOR . $file ;
2010-04-01 17:21:27 -04:00
else if ( @ is_file ( $dir . DIRECTORY_SEPARATOR . $file ) )
@ unlink ( $dir . DIRECTORY_SEPARATOR . $file );
2010-01-05 23:02:57 -05:00
}
}
$index ++ ;
}
2011-12-14 12:36:38 -05:00
$stack = array_reverse ( $stack ); // Last added dirs are deepest
2010-01-25 17:01:43 -05:00
foreach ( ( array ) $stack as $dir ) {
2010-01-05 23:02:57 -05:00
if ( $dir != $top_dir )
2010-04-01 17:21:27 -04:00
@ rmdir ( $dir );
2010-01-05 23:02:57 -05:00
}
}
2010-04-01 17:21:27 -04:00
2011-10-21 18:04:52 -04:00
if ( $switch )
2010-01-05 23:02:57 -05:00
restore_current_blog ();
}
2010-01-19 14:23:11 -05:00
// @todo Merge with wp_delete_user() ?
2010-04-01 17:21:27 -04:00
function wpmu_delete_user ( $id ) {
2010-01-05 23:02:57 -05:00
global $wpdb ;
$id = ( int ) $id ;
2012-04-18 17:07:31 -04:00
$user = new WP_User ( $id );
2010-01-05 23:02:57 -05:00
2010-04-01 17:21:27 -04:00
do_action ( 'wpmu_delete_user' , $id );
2010-01-05 23:02:57 -05:00
2010-04-01 17:21:27 -04:00
$blogs = get_blogs_of_user ( $id );
2010-01-05 23:02:57 -05:00
2010-04-01 17:21:27 -04:00
if ( ! empty ( $blogs ) ) {
foreach ( $blogs as $blog ) {
switch_to_blog ( $blog -> userblog_id );
remove_user_from_blog ( $id , $blog -> userblog_id );
2010-01-05 23:02:57 -05:00
2010-04-01 17:21:27 -04:00
$post_ids = $wpdb -> get_col ( $wpdb -> prepare ( " SELECT ID FROM $wpdb->posts WHERE post_author = %d " , $id ) );
2010-01-05 23:02:57 -05:00
foreach ( ( array ) $post_ids as $post_id ) {
2010-04-01 17:21:27 -04:00
wp_delete_post ( $post_id );
2010-01-05 23:02:57 -05:00
}
// Clean links
2010-04-01 17:21:27 -04:00
$link_ids = $wpdb -> get_col ( $wpdb -> prepare ( " SELECT link_id FROM $wpdb->links WHERE link_owner = %d " , $id ) );
2010-02-19 20:45:04 -05:00
if ( $link_ids ) {
foreach ( $link_ids as $link_id )
2010-04-01 17:21:27 -04:00
wp_delete_link ( $link_id );
2010-02-19 20:45:04 -05:00
}
2010-01-05 23:02:57 -05:00
restore_current_blog ();
}
}
2012-04-24 18:13:47 -04: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 12:14:57 -04:00
$wpdb -> delete ( $wpdb -> users , array ( 'ID' => $id ) );
2010-01-05 23:02:57 -05:00
2012-04-18 17:07:31 -04:00
clean_user_cache ( $user );
2010-01-19 14:23:11 -05:00
// allow for commit transaction
2010-04-01 17:21:27 -04:00
do_action ( 'deleted_user' , $id );
2010-01-05 23:02:57 -05:00
return true ;
}
2010-04-01 17:21:27 -04:00
function update_option_new_admin_email ( $old_value , $value ) {
2010-04-26 14:20:11 -04:00
$email = get_option ( 'admin_email' );
2010-01-05 23:02:57 -05:00
if ( $value == get_option ( 'admin_email' ) || ! is_email ( $value ) )
return ;
2010-04-26 14:52:14 -04:00
2010-01-05 23:02:57 -05:00
$hash = md5 ( $value . time () . mt_rand () );
$new_admin_email = array (
2010-04-01 17:21:27 -04:00
'hash' => $hash ,
'newemail' => $value
2010-01-05 23:02:57 -05:00
);
update_option ( 'adminhash' , $new_admin_email );
2010-01-06 23:27:46 -05:00
2010-04-01 17:21:27 -04:00
$content = apply_filters ( 'new_admin_email_content' , __ ( " Dear user,
2010-01-05 23:02:57 -05:00
2010-01-06 23:27:46 -05:00
You recently requested to have the administration email address on
2010-02-26 14:08:01 -05:00
your site changed .
2010-01-05 23:02:57 -05: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###
2010-04-01 17:21:27 -04:00
###SITEURL### "), $new_admin_email );
2010-01-06 23:27:46 -05:00
2010-05-03 14:16:22 -04:00
$content = str_replace ( '###ADMIN_URL###' , esc_url ( admin_url ( 'options.php?adminhash=' . $hash ) ), $content );
2010-04-01 17:21:27 -04:00
$content = str_replace ( '###EMAIL###' , $value , $content );
$content = str_replace ( '###SITENAME###' , get_site_option ( 'site_name' ), $content );
$content = str_replace ( '###SITEURL###' , network_home_url (), $content );
2010-01-06 23:27:46 -05:00
2010-04-01 17:21:27 -04:00
wp_mail ( $value , sprintf ( __ ( '[%s] New Admin Email Address' ), get_option ( 'blogname' ) ), $content );
2010-01-05 23:02:57 -05:00
}
2010-04-01 17:21:27 -04:00
add_action ( 'update_option_new_admin_email' , 'update_option_new_admin_email' , 10 , 2 );
2010-04-26 14:20:11 -04:00
add_action ( 'add_option_new_admin_email' , 'update_option_new_admin_email' , 10 , 2 );
2010-01-05 23:02:57 -05:00
function send_confirmation_on_profile_email () {
2010-06-24 11:01:29 -04:00
global $errors , $wpdb ;
$current_user = wp_get_current_user ();
2010-01-05 23:02:57 -05:00
if ( ! is_object ( $errors ) )
$errors = new WP_Error ();
2011-08-03 23:09:27 -04:00
if ( $current_user -> ID != $_POST [ 'user_id' ] )
2010-01-05 23:02:57 -05:00
return false ;
2010-04-01 17:21:27 -04:00
if ( $current_user -> user_email != $_POST [ 'email' ] ) {
if ( ! is_email ( $_POST [ 'email' ] ) ) {
2010-01-05 23:02:57 -05:00
$errors -> add ( 'user_email' , __ ( " <strong>ERROR</strong>: The e-mail address isn't correct. " ), array ( 'form-field' => 'email' ) );
return ;
}
2010-04-01 17:21:27 -04:00
if ( $wpdb -> get_var ( $wpdb -> prepare ( " SELECT user_email FROM { $wpdb -> users } WHERE user_email=%s " , $_POST [ 'email' ] ) ) ) {
2010-01-05 23:02:57 -05:00
$errors -> add ( 'user_email' , __ ( " <strong>ERROR</strong>: The e-mail address is already used. " ), array ( 'form-field' => 'email' ) );
delete_option ( $current_user -> ID . '_new_email' );
return ;
}
2010-04-01 17:21:27 -04:00
$hash = md5 ( $_POST [ 'email' ] . time () . mt_rand () );
2010-01-05 23:02:57 -05:00
$new_user_email = array (
2010-04-01 17:21:27 -04:00
'hash' => $hash ,
'newemail' => $_POST [ 'email' ]
2010-01-05 23:02:57 -05:00
);
update_option ( $current_user -> ID . '_new_email' , $new_user_email );
2010-04-01 17:21:27 -04:00
$content = apply_filters ( 'new_user_email_content' , __ ( " Dear user,
2010-01-05 23:02:57 -05:00
You recently requested to have the email address on your account 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###
2010-04-01 17:21:27 -04:00
###SITEURL###" ), $new_user_email );
2010-01-05 23:02:57 -05:00
2010-05-03 14:16:22 -04:00
$content = str_replace ( '###ADMIN_URL###' , esc_url ( admin_url ( 'profile.php?newuseremail=' . $hash ) ), $content );
2010-04-01 17:21:27 -04:00
$content = str_replace ( '###EMAIL###' , $_POST [ 'email' ], $content );
$content = str_replace ( '###SITENAME###' , get_site_option ( 'site_name' ), $content );
$content = str_replace ( '###SITEURL###' , network_home_url (), $content );
2010-01-05 23:02:57 -05:00
2010-04-01 17:21:27 -04:00
wp_mail ( $_POST [ 'email' ], sprintf ( __ ( '[%s] New Email Address' ), get_option ( 'blogname' ) ), $content );
$_POST [ 'email' ] = $current_user -> user_email ;
2010-01-05 23:02:57 -05:00
}
}
add_action ( 'personal_options_update' , 'send_confirmation_on_profile_email' );
function new_user_email_admin_notice () {
2010-06-24 11:01:29 -04:00
if ( strpos ( $_SERVER [ 'PHP_SELF' ], 'profile.php' ) && isset ( $_GET [ 'updated' ] ) && $email = get_option ( get_current_user_id () . '_new_email' ) )
2010-04-30 11:37:46 -04:00
echo " <div class='update-nag'> " . sprintf ( __ ( " Your email address has not been updated yet. Please check your inbox at %s for a confirmation email. " ), $email [ 'newemail' ] ) . " </div> " ;
2010-01-05 23:02:57 -05:00
}
add_action ( 'admin_notices' , 'new_user_email_admin_notice' );
2010-01-25 14:46:24 -05:00
/**
* Determines if there is any upload space left in the current blog ' s quota .
*
2010-05-04 04:41:46 -04:00
* @ since 3.0 . 0
2010-01-25 14:46:24 -05:00
* @ return bool True if space is available , false otherwise .
*/
function is_upload_space_available () {
if ( get_site_option ( 'upload_space_check_disabled' ) )
return true ;
2010-05-03 18:40:02 -04:00
if ( ! ( $space_allowed = get_upload_space_available () ) )
return false ;
return true ;
}
2010-12-16 17:46:13 -05:00
/**
2010-05-04 04:41:46 -04:00
* @ since 3.0 . 0
2010-05-16 16:09:56 -04:00
*
* @ return int of upload size limit in bytes
2010-05-04 04:41:46 -04:00
*/
2010-05-03 18:40:02 -04:00
function upload_size_limit_filter ( $size ) {
2010-05-16 16:09:56 -04:00
$fileupload_maxk = 1024 * get_site_option ( 'fileupload_maxk' , 1500 );
2010-12-20 11:44:33 -05:00
if ( get_site_option ( 'upload_space_check_disabled' ) )
return min ( $size , $fileupload_maxk );
2011-01-05 23:11:14 -05:00
2010-05-16 16:09:56 -04:00
return min ( $size , $fileupload_maxk , get_upload_space_available () );
2010-05-03 18:40:02 -04:00
}
/**
* Determines if there is any upload space left in the current blog ' s quota .
*
2012-08-08 03:17:33 -04:00
* @ since 3.0 . 0
*
2010-05-03 18:40:02 -04:00
* @ return int of upload space available in bytes
*/
function get_upload_space_available () {
$space_allowed = get_space_allowed () * 1024 * 1024 ;
if ( get_site_option ( 'upload_space_check_disabled' ) )
return $space_allowed ;
2010-01-25 14:46:24 -05:00
2012-08-01 09:52:06 -04:00
$space_used = get_space_used () * 1024 * 1024 ;
2010-01-25 14:46:24 -05:00
2012-08-01 09:52:06 -04:00
if ( ( $space_allowed - $space_used ) <= 0 )
return 0 ;
2010-01-25 14:46:24 -05:00
2012-08-01 09:52:06 -04:00
return $space_allowed - $space_used ;
}
/**
* Check whether a blog has used its allotted upload space .
*
* @ since MU
*
* @ param bool $echo Optional . If $echo is set and the quota is exceeded , a warning message is echoed . Default is true .
* @ return int
*/
function upload_is_user_over_quota ( $echo = true ) {
if ( get_site_option ( 'upload_space_check_disabled' ) )
return false ;
$space_allowed = get_space_allowed ();
if ( empty ( $space_allowed ) || ! is_numeric ( $space_allowed ) )
2012-08-08 03:17:33 -04:00
$space_allowed = 10 ; // Default space allowed is 10 MB
2012-08-01 09:52:06 -04:00
$space_used = get_space_used ();
2012-08-08 03:17:33 -04:00
if ( ( $space_allowed - $space_used ) < 0 ) {
2012-08-01 09:52:06 -04: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 14:46:24 -05:00
}
2012-08-01 09:52:06 -04:00
}
2010-01-25 14:46:24 -05:00
2012-08-08 03:17:33 -04:00
/**
* Returns the space used by the current blog .
*
* @ since 3.5 . 0
*
* @ return int Used space in megabytes
*/
2012-08-01 09:52:06 -04:00
function get_space_used () {
// Allow for an alternative way of tracking storage space used
$space_used = apply_filters ( 'pre_get_space_used' , false );
if ( false === $space_used )
2012-08-08 03:17:33 -04:00
$space_used = get_dirsize ( BLOGUPLOADDIR ) / 1024 / 1024 ;
2010-01-25 14:46:24 -05:00
2012-08-01 09:52:06 -04:00
return $space_used ;
2010-01-25 14:46:24 -05:00
}
/**
* Returns the upload quota for the current blog .
*
2012-08-08 03:17:33 -04:00
* @ since MU
*
* @ return int Quota in megabytes
2010-01-25 14:46:24 -05:00
*/
2010-01-05 23:02:57 -05:00
function get_space_allowed () {
2010-04-01 17:21:27 -04:00
$space_allowed = get_option ( 'blog_upload_space' );
2011-12-30 18:10:54 -05:00
if ( ! is_numeric ( $space_allowed ) )
2010-04-01 17:21:27 -04:00
$space_allowed = get_site_option ( 'blog_upload_space' );
2011-12-30 18:10:54 -05:00
2012-01-03 12:24:51 -05:00
if ( empty ( $space_allowed ) || ! is_numeric ( $space_allowed ) )
2010-01-25 14:46:24 -05:00
$space_allowed = 50 ;
2010-01-05 23:02:57 -05:00
2010-01-25 14:46:24 -05:00
return $space_allowed ;
2010-01-05 23:02:57 -05:00
}
2012-08-08 03:17:33 -04:00
/**
* Displays the amount of disk space used by the current blog . Not used in core .
*
* @ since MU
*/
2010-01-05 23:02:57 -05:00
function display_space_usage () {
2012-08-01 09:52:06 -04:00
$space_allowed = get_space_allowed ();
$space_used = get_space_used ();
2010-01-05 23:02:57 -05:00
2012-08-01 09:52:06 -04:00
$percent_used = ( $space_used / $space_allowed ) * 100 ;
2010-01-05 23:02:57 -05:00
2012-08-01 09:52:06 -04:00
if ( $space_allowed > 1000 ) {
$space = number_format ( $space_allowed / 1024 );
2010-04-21 13:44:21 -04:00
/* translators: Gigabytes */
2010-04-01 17:21:27 -04:00
$space .= __ ( 'GB' );
2010-01-05 23:02:57 -05:00
} else {
2012-08-01 09:52:06 -04:00
$space = number_format ( $space_allowed );
2010-05-03 16:26:11 -04:00
/* translators: Megabytes */
2010-04-01 17:21:27 -04:00
$space .= __ ( 'MB' );
2010-01-05 23:02:57 -05:00
}
?>
2012-08-01 09:52:06 -04:00
< strong >< ? php printf ( __ ( 'Used: %1s%% of %2s' ), number_format ( $percent_used ), $space ); ?> </strong>
2010-01-05 23:02:57 -05:00
< ? php
}
2012-08-01 09:52:06 -04:00
/**
* Get the remaining upload space for this blog .
*
* @ since MU
* @ uses upload_is_user_over_quota ()
* @ uses get_space_allowed ()
* @ uses get_upload_space_available ()
*
* @ param int $size Current max size in bytes
* @ return int Max size in bytes
*/
function fix_import_form_size ( $size ) {
if ( upload_is_user_over_quota ( false ) == true )
return 0 ;
$available = get_upload_space_available ();
2012-08-08 03:17:33 -04:00
return min ( $size , $available );
2012-08-01 09:52:06 -04:00
}
2010-01-05 23:02:57 -05:00
// Edit blog upload space setting on Edit Blog page
function upload_space_setting ( $id ) {
2012-08-03 13:51:42 -04:00
switch_to_blog ( $id );
$quota = get_option ( 'blog_upload_space' );
restore_current_blog ();
2010-01-18 15:34:48 -05:00
if ( ! $quota )
2010-01-05 23:02:57 -05:00
$quota = '' ;
2010-01-06 23:27:46 -05:00
2010-01-05 23:02:57 -05:00
?>
< tr >
2010-04-01 17:21:27 -04:00
< th >< ? php _e ( 'Site Upload Space Quota ' ); ?> </th>
2012-03-25 09:02:01 -04:00
< td >< input type = " number " step = " 1 " min = " 0 " style = " width: 100px " name = " option[blog_upload_space] " value = " <?php echo $quota ; ?> " /> < ? php _e ( 'MB (Leave blank for network default)' ); ?> </td>
2010-01-05 23:02:57 -05:00
</ tr >
< ? php
}
2010-04-01 17:21:27 -04:00
add_action ( 'wpmueditblogaction' , 'upload_space_setting' );
2010-01-05 23:02:57 -05:00
2010-12-01 17:12:09 -05:00
function update_user_status ( $id , $pref , $value , $deprecated = null ) {
2010-01-05 23:02:57 -05:00
global $wpdb ;
2011-12-14 12:36:38 -05:00
if ( null !== $deprecated )
2010-12-15 06:27:38 -05:00
_deprecated_argument ( __FUNCTION__ , '3.1' );
2010-12-01 17:12:09 -05:00
2010-01-05 23:02:57 -05:00
$wpdb -> update ( $wpdb -> users , array ( $pref => $value ), array ( 'ID' => $id ) );
2012-04-18 17:07:31 -04:00
$user = new WP_User ( $id );
clean_user_cache ( $user );
2010-01-06 23:27:46 -05:00
2010-01-18 15:34:48 -05:00
if ( $pref == 'spam' ) {
if ( $value == 1 )
2010-04-01 17:21:27 -04:00
do_action ( 'make_spam_user' , $id );
2010-01-05 23:02:57 -05:00
else
2010-04-01 17:21:27 -04:00
do_action ( 'make_ham_user' , $id );
2010-01-05 23:02:57 -05:00
}
return $value ;
}
2010-04-01 17:21:27 -04:00
function refresh_user_details ( $id ) {
2010-01-05 23:02:57 -05:00
$id = ( int ) $id ;
2010-01-06 23:27:46 -05:00
2010-01-05 23:02:57 -05:00
if ( ! $user = get_userdata ( $id ) )
return false ;
2012-04-18 17:07:31 -04:00
clean_user_cache ( $user );
2010-01-19 14:23:11 -05:00
2010-01-05 23:02:57 -05:00
return $id ;
}
function format_code_lang ( $code = '' ) {
2010-04-01 17:21:27 -04:00
$code = strtolower ( substr ( $code , 0 , 2 ) );
2010-05-03 16:26:11 -04:00
$lang_codes = array (
2010-04-01 17:21:27 -04: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' );
$lang_codes = apply_filters ( 'lang_codes' , $lang_codes , $code );
2010-01-05 23:02:57 -05:00
return strtr ( $code , $lang_codes );
}
function sync_category_tag_slugs ( $term , $taxonomy ) {
2010-03-16 13:17:55 -04:00
if ( global_terms_enabled () && ( $taxonomy == 'category' || $taxonomy == 'post_tag' ) ) {
2010-01-18 15:34:48 -05:00
if ( is_object ( $term ) ) {
2010-01-05 23:02:57 -05:00
$term -> slug = sanitize_title ( $term -> name );
} else {
2010-04-01 17:21:27 -04:00
$term [ 'slug' ] = sanitize_title ( $term [ 'name' ] );
2010-01-05 23:02:57 -05:00
}
}
return $term ;
}
add_filter ( 'get_term' , 'sync_category_tag_slugs' , 10 , 2 );
2011-04-28 20:43:48 -04:00
function _access_denied_splash () {
2011-05-23 19:11:03 -04:00
if ( ! is_user_logged_in () || is_network_admin () )
2011-04-28 20:43:48 -04:00
return ;
2010-01-06 23:27:46 -05:00
2011-04-28 20:43:48 -04:00
$blogs = get_blogs_of_user ( get_current_user_id () );
2010-01-05 23:02:57 -05:00
2011-05-23 19:08:19 -04:00
if ( wp_list_filter ( $blogs , array ( 'userblog_id' => get_current_blog_id () ) ) )
return ;
2011-04-28 20:43:48 -04:00
$blog_name = get_bloginfo ( 'name' );
2010-10-07 15:34:18 -04:00
2011-04-28 21:51:53 -04:00
if ( empty ( $blogs ) )
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 ) );
2011-04-28 20:43:48 -04:00
2011-04-28 21:51:53 -04: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 07:18:20 -04: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-28 20:43:48 -04:00
$output .= '<h3>' . __ ( 'Your Sites' ) . '</h3>' ;
$output .= '<table>' ;
foreach ( $blogs as $blog ) {
$output .= " <tr> " ;
$output .= " <td valign='top'> " ;
$output .= " { $blog -> blogname } " ;
$output .= " </td> " ;
$output .= " <td valign='top'> " ;
$output .= " <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> " ;
$output .= " </td> " ;
$output .= " </tr> " ;
}
$output .= '</table>' ;
wp_die ( $output );
2010-01-05 23:02:57 -05:00
}
2011-04-28 20:43:48 -04:00
add_action ( 'admin_page_access_denied' , '_access_denied_splash' , 99 );
2010-01-05 23:02:57 -05:00
function check_import_new_users ( $permission ) {
2010-01-08 15:29:56 -05:00
if ( ! is_super_admin () )
2010-01-05 23:02:57 -05:00
return false ;
return true ;
}
add_filter ( 'import_allow_create_users' , 'check_import_new_users' );
// See "import_allow_fetch_attachments" and "import_attachment_size_limit" filters too.
function mu_dropdown_languages ( $lang_files = array (), $current = '' ) {
2010-01-06 23:27:46 -05:00
$flag = false ;
2010-01-05 23:02:57 -05:00
$output = array ();
2010-01-06 23:27:46 -05:00
2010-01-05 23:02:57 -05:00
foreach ( ( array ) $lang_files as $val ) {
$code_lang = basename ( $val , '.mo' );
2010-01-06 23:27:46 -05:00
2010-01-05 23:02:57 -05:00
if ( $code_lang == 'en_US' ) { // American English
$flag = true ;
2010-05-03 16:26:11 -04:00
$ae = __ ( 'American English' );
2010-07-10 03:25:10 -04:00
$output [ $ae ] = '<option value="' . esc_attr ( $code_lang ) . '"' . selected ( $current , $code_lang , false ) . '> ' . $ae . '</option>' ;
2010-01-05 23:02:57 -05:00
} elseif ( $code_lang == 'en_GB' ) { // British English
$flag = true ;
2010-04-01 17:21:27 -04:00
$be = __ ( 'British English' );
2010-07-10 03:25:10 -04:00
$output [ $be ] = '<option value="' . esc_attr ( $code_lang ) . '"' . selected ( $current , $code_lang , false ) . '> ' . $be . '</option>' ;
2010-01-05 23:02:57 -05:00
} else {
2010-04-01 17:21:27 -04:00
$translated = format_code_lang ( $code_lang );
2011-12-14 12:36:38 -05:00
$output [ $translated ] = '<option value="' . esc_attr ( $code_lang ) . '"' . selected ( $current , $code_lang , false ) . '> ' . esc_html ( $translated ) . '</option>' ;
2010-01-05 23:02:57 -05:00
}
2010-01-06 23:27:46 -05:00
}
2010-04-01 17:21:27 -04:00
if ( $flag === false ) // WordPress english
2010-07-10 03:25:10 -04:00
$output [] = '<option value=""' . selected ( $current , '' , false ) . '>' . __ ( 'English' ) . " </option> " ;
2010-01-06 23:27:46 -05:00
2010-01-05 23:02:57 -05:00
// Order by name
2010-04-01 17:21:27 -04:00
uksort ( $output , 'strnatcasecmp' );
2010-01-06 23:27:46 -05:00
2010-04-01 17:21:27 -04:00
$output = apply_filters ( 'mu_dropdown_languages' , $output , $lang_files , $current );
echo implode ( " \n \t " , $output );
2010-01-05 23:02:57 -05:00
}
/* Warn the admin if SECRET SALT information is missing from wp-config.php */
function secret_salt_warning () {
2010-01-18 15:34:48 -05:00
if ( ! is_super_admin () )
2010-01-05 23:02:57 -05:00
return ;
2010-05-01 18:50:55 -04:00
$secret_keys = array ( 'AUTH_KEY' , 'SECURE_AUTH_KEY' , 'LOGGED_IN_KEY' , 'NONCE_KEY' , 'AUTH_SALT' , 'SECURE_AUTH_SALT' , 'LOGGED_IN_SALT' , 'NONCE_SALT' );
2010-01-05 23:02:57 -05:00
$out = '' ;
foreach ( $secret_keys as $key ) {
2010-04-30 11:25:54 -04:00
if ( ! defined ( $key ) )
$out .= " define( ' $key ', ' " . esc_html ( wp_generate_password ( 64 , true , true ) ) . " ' );<br /> " ;
2010-01-05 23:02:57 -05:00
}
2010-01-18 15:34:48 -05:00
if ( $out != '' ) {
2010-04-30 11:25:54 -04:00
$msg = __ ( 'Warning! WordPress encrypts user cookies, but you must add the following lines to <strong>wp-config.php</strong> for it to be more secure.' );
$msg .= '<br/>' . __ ( " Before the line <code>/* That's all, stop editing! Happy blogging. */</code> please add this code: " );
$msg .= " <br/><br/><code> $out </code> " ;
2010-01-05 23:02:57 -05:00
2010-04-30 11:37:46 -04:00
echo " <div class='update-nag'> $msg </div> " ;
2010-01-05 23:02:57 -05:00
}
}
2011-01-04 02:26:57 -05:00
add_action ( 'network_admin_notices' , 'secret_salt_warning' );
2010-01-05 23:02:57 -05:00
function site_admin_notice () {
2010-06-24 11:01:29 -04:00
global $wp_db_version ;
2010-01-18 15:34:48 -05:00
if ( ! is_super_admin () )
2010-01-05 23:02:57 -05:00
return false ;
2010-03-04 13:59:24 -05:00
if ( get_site_option ( 'wpmu_upgrade_site' ) != $wp_db_version )
2010-08-02 11:36:57 -04:00
echo " <div class='update-nag'> " . sprintf ( __ ( 'Thank you for Updating! Please visit the <a href="%s">Update Network</a> page to update all your sites.' ), esc_url ( network_admin_url ( 'upgrade.php' ) ) ) . " </div> " ;
2010-01-05 23:02:57 -05:00
}
add_action ( 'admin_notices' , 'site_admin_notice' );
2011-01-04 02:26:57 -05:00
add_action ( 'network_admin_notices' , 'site_admin_notice' );
2010-01-05 23:02:57 -05:00
function avoid_blog_page_permalink_collision ( $data , $postarr ) {
2010-01-18 15:34:48 -05:00
if ( is_subdomain_install () )
2010-01-05 23:02:57 -05:00
return $data ;
2010-04-01 17:21:27 -04:00
if ( $data [ 'post_type' ] != 'page' )
2010-01-05 23:02:57 -05:00
return $data ;
2010-04-01 17:21:27 -04:00
if ( ! isset ( $data [ 'post_name' ] ) || $data [ 'post_name' ] == '' )
2010-01-05 23:02:57 -05:00
return $data ;
2010-01-26 17:46:09 -05:00
if ( ! is_main_site () )
2010-01-05 23:02:57 -05:00
return $data ;
2010-04-01 17:21:27 -04:00
$post_name = $data [ 'post_name' ];
2010-01-05 23:02:57 -05:00
$c = 0 ;
while ( $c < 10 && get_id_from_blogname ( $post_name ) ) {
$post_name .= mt_rand ( 1 , 10 );
$c ++ ;
}
2010-04-01 17:21:27 -04:00
if ( $post_name != $data [ 'post_name' ] ) {
$data [ 'post_name' ] = $post_name ;
2010-01-05 23:02:57 -05:00
}
return $data ;
}
add_filter ( 'wp_insert_post_data' , 'avoid_blog_page_permalink_collision' , 10 , 2 );
function choose_primary_blog () {
?>
< table class = " form-table " >
< tr >
2010-02-01 15:01:14 -05:00
< ? php /* translators: My sites label */ ?>
2010-04-01 17:21:27 -04:00
< th scope = " row " >< ? php _e ( 'Primary Site' ); ?> </th>
2010-01-05 23:02:57 -05:00
< td >
< ? php
2010-06-24 11:01:29 -04: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 15:34:48 -05:00
if ( count ( $all_blogs ) > 1 ) {
2010-01-05 23:02:57 -05:00
$found = false ;
?>
< select name = " primary_blog " >
2010-01-06 23:27:46 -05:00
< ? php foreach ( ( array ) $all_blogs as $blog ) {
2010-01-18 15:34:48 -05:00
if ( $primary_blog == $blog -> userblog_id )
2010-01-05 23:02:57 -05:00
$found = true ;
2011-12-14 12:36:38 -05: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-05 23:02:57 -05:00
} ?>
</ select >
< ? php
2010-01-18 15:34:48 -05:00
if ( ! $found ) {
2010-01-05 23:02:57 -05:00
$blog = array_shift ( $all_blogs );
2010-06-24 11:01:29 -04:00
update_user_meta ( get_current_user_id (), 'primary_blog' , $blog -> userblog_id );
2010-01-05 23:02:57 -05:00
}
2010-01-18 15:34:48 -05:00
} elseif ( count ( $all_blogs ) == 1 ) {
2010-01-05 23:02:57 -05:00
$blog = array_shift ( $all_blogs );
echo $blog -> domain ;
2010-01-18 15:34:48 -05:00
if ( $primary_blog != $blog -> userblog_id ) // Set the primary blog again if it's out of sync with blog list.
2010-06-24 11:01:29 -04:00
update_user_meta ( get_current_user_id (), 'primary_blog' , $blog -> userblog_id );
2010-01-05 23:02:57 -05:00
} else {
echo " N/A " ;
}
?>
</ td >
</ tr >
2010-06-11 13:18:17 -04:00
< ? php if ( in_array ( get_site_option ( 'registration' ), array ( 'all' , 'blog' ) ) ) : ?>
< tr >
< th scope = " row " colspan = " 2 " class = " th-full " >
< a href = " <?php echo apply_filters( 'wp_signup_location', network_home_url( 'wp-signup.php' ) ); ?> " >< ? php _e ( 'Create a New Site' ); ?> </a>
</ th >
</ tr >
< ? php endif ; ?>
2010-01-05 23:02:57 -05:00
</ table >
2010-01-06 23:27:46 -05:00
< ? php
2010-01-05 23:02:57 -05:00
}
2010-02-28 15:29:24 -05:00
function ms_deprecated_blogs_file () {
if ( ! is_super_admin () )
return ;
if ( ! file_exists ( WP_CONTENT_DIR . '/blogs.php' ) )
return ;
2010-04-30 11:37:46 -04:00
echo '<div class="update-nag">' . sprintf ( __ ( 'The <code>%1$s</code> file is deprecated. Please remove it and update your server rewrite rules to use <code>%2$s</code> instead.' ), 'wp-content/blogs.php' , 'wp-includes/ms-files.php' ) . '</div>' ;
2010-02-28 15:29:24 -05:00
}
2011-01-04 02:26:57 -05:00
add_action ( 'network_admin_notices' , 'ms_deprecated_blogs_file' );
2010-02-28 15:29:24 -05:00
2010-04-02 02:46:07 -04:00
/**
* Grants super admin privileges .
*
* @ since 3.0 . 0
2010-09-07 07:21:11 -04:00
* @ param int $user_id
2010-04-02 02:46:07 -04:00
*/
function grant_super_admin ( $user_id ) {
2010-04-23 16:34:03 -04:00
global $super_admins ;
// If global super_admins override is defined, there is nothing to do here.
if ( isset ( $super_admins ) )
return false ;
2010-04-08 00:15:58 -04:00
do_action ( 'grant_super_admin' , $user_id );
2010-04-05 18:28:21 -04:00
2010-04-23 16:34:03 -04:00
// Directly fetch site_admins instead of using get_super_admins()
2010-04-02 02:46:07 -04:00
$super_admins = get_site_option ( 'site_admins' , array ( 'admin' ) );
2012-08-02 21:06:05 -04:00
$user = get_userdata ( $user_id );
if ( $user && ! in_array ( $user -> user_login , $super_admins ) ) {
2010-04-02 02:46:07 -04:00
$super_admins [] = $user -> user_login ;
update_site_option ( 'site_admins' , $super_admins );
2010-04-08 00:15:58 -04:00
do_action ( 'granted_super_admin' , $user_id );
2010-04-09 04:26:16 -04:00
return true ;
2010-04-02 02:46:07 -04:00
}
2010-04-09 04:26:16 -04:00
return false ;
2010-04-02 02:46:07 -04:00
}
/**
* Revokes super admin privileges .
*
* @ since 3.0 . 0
2010-09-07 07:21:11 -04:00
* @ param int $user_id
2010-04-02 02:46:07 -04:00
*/
function revoke_super_admin ( $user_id ) {
2010-04-23 16:34:03 -04:00
global $super_admins ;
// If global super_admins override is defined, there is nothing to do here.
if ( isset ( $super_admins ) )
return false ;
2010-04-08 00:15:58 -04:00
do_action ( 'revoke_super_admin' , $user_id );
2010-04-05 18:28:21 -04:00
2010-04-23 16:34:03 -04:00
// Directly fetch site_admins instead of using get_super_admins()
2010-04-09 03:17:42 -04:00
$super_admins = get_site_option ( 'site_admins' , array ( 'admin' ) );
2010-04-23 16:34:03 -04:00
2012-08-02 21:06:05 -04:00
$user = get_userdata ( $user_id );
if ( $user && $user -> user_email != get_site_option ( 'admin_email' ) ) {
2010-04-09 04:26:16 -04:00
if ( false !== ( $key = array_search ( $user -> user_login , $super_admins ) ) ) {
unset ( $super_admins [ $key ] );
update_site_option ( 'site_admins' , $super_admins );
do_action ( 'revoked_super_admin' , $user_id );
return true ;
2010-04-02 02:46:07 -04:00
}
}
2010-04-09 04:26:16 -04:00
return false ;
2010-04-02 02:46:07 -04:00
}
2010-12-15 13:48:40 -05:00
2010-12-07 09:28:40 -05:00
/**
2010-12-09 07:36:39 -05:00
* Whether or not we can edit this network from this page
2010-12-13 16:21:50 -05:00
*
2010-12-09 07:36:39 -05: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 16:21:50 -05:00
*
2010-12-07 09:28:40 -05:00
* @ since 3.1 . 0
2010-12-09 07:36:39 -05:00
* @ param integer $site_id The network / site id to check .
2010-12-07 09:28:40 -05:00
*/
2010-12-09 07:36:39 -05:00
function can_edit_network ( $site_id ) {
2010-12-07 09:28:40 -05:00
global $wpdb ;
2010-12-13 16:21:50 -05:00
2010-12-07 09:28:40 -05:00
if ( $site_id == $wpdb -> siteid )
$result = true ;
else
$result = false ;
2010-12-13 16:21:50 -05:00
2010-12-09 07:36:39 -05:00
return apply_filters ( 'can_edit_network' , $result , $site_id );
2010-12-07 09:28:40 -05:00
}
2010-12-15 13:48:40 -05:00
/**
* Thickbox image paths for Network Admin .
*
* @ since 3.1 . 0
* @ access private
*/
function _thickbox_path_admin_subfolder () {
2010-02-22 13:41:38 -05:00
?>
2010-12-15 13:48:40 -05:00
< script type = " text/javascript " >
//<![CDATA[
var tb_pathToImage = " ../../wp-includes/js/thickbox/loadingAnimation.gif " ;
var tb_closeImage = " ../../wp-includes/js/thickbox/tb-close.png " ;
//]]>
</ script >
2010-12-15 18:21:07 -05:00
< ? php
2010-12-15 13:48:40 -05:00
}
2011-10-03 12:30:07 -04:00
/**
* Whether or not we have a large network .
*
* The default criteria for a large network is either more than 10 , 000 users or more than 10 , 000 sites .
2011-12-14 12:36:38 -05:00
* Plugins can alter this criteria using the 'wp_is_large_network' filter .
2011-10-03 12:30:07 -04:00
*
* @ since 3.3 . 0
2011-12-13 18:45:31 -05:00
* @ param string $using 'sites or ' users '. Default is ' sites ' .
2011-10-03 12:30:07 -04:00
* @ return bool True if the network meets the criteria for large . False otherwise .
*/
function wp_is_large_network ( $using = 'sites' ) {
if ( 'users' == $using ) {
$count = get_user_count ();
return apply_filters ( 'wp_is_large_network' , $count > 10000 , 'users' , $count );
}
$count = get_blog_count ();
return apply_filters ( 'wp_is_large_network' , $count > 10000 , 'sites' , $count );
}