2010-11-04 17:16:52 +01:00
< ? php
/**
2013-05-30 01:35:13 +02:00
* Add New User network administration panel .
2010-11-04 17:16:52 +01:00
*
* @ package WordPress
2010-11-10 15:27:15 +01:00
* @ subpackage Multisite
2010-11-04 17:16:52 +01:00
* @ since 3.1 . 0
*/
/** Load WordPress Administration Bootstrap */
2020-02-06 07:33:11 +01:00
require_once __DIR__ . '/admin.php' ;
2010-11-04 17:16:52 +01:00
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'create_users' ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to add users to this network.' ) );
}
2010-11-04 17:16:52 +01:00
2017-12-01 00:11:00 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'overview' ,
'title' => __ ( 'Overview' ),
'content' =>
'<p>' . __ ( 'Add User will set up a new user account on the network and send that person an email with username and password.' ) . '</p>' .
'<p>' . __ ( 'Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.' ) . '</p>' ,
)
);
2011-11-02 06:33:53 +01:00
2011-11-02 22:32:16 +01:00
get_current_screen () -> set_help_sidebar (
2017-12-01 00:11:00 +01:00
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
'<p>' . __ ( '<a href="https://codex.wordpress.org/Network_Admin_Users_Screen">Documentation on Network Users</a>' ) . '</p>' .
'<p>' . __ ( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>'
2010-12-16 07:52:47 +01:00
);
2020-05-24 11:17:09 +02:00
if ( isset ( $_REQUEST [ 'action' ] ) && 'add-user' === $_REQUEST [ 'action' ] ) {
2010-11-04 17:16:52 +01:00
check_admin_referer ( 'add-user' , '_wpnonce_add-user' );
2015-04-20 05:27:27 +02:00
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'manage_network_users' ) ) {
2016-06-29 17:16:29 +02:00
wp_die ( __ ( 'Sorry, you are not allowed to access this page.' ), 403 );
2017-12-01 00:11:00 +01:00
}
2010-11-04 17:16:52 +01:00
2017-12-01 00:11:00 +01:00
if ( ! is_array ( $_POST [ 'user' ] ) ) {
2010-11-04 17:16:52 +01:00
wp_die ( __ ( 'Cannot create an empty user.' ) );
2017-12-01 00:11:00 +01:00
}
2011-06-03 20:59:12 +02:00
2014-10-19 22:30:19 +02:00
$user = wp_unslash ( $_POST [ 'user' ] );
2010-11-04 17:16:52 +01:00
2011-12-09 00:02:33 +01:00
$user_details = wpmu_validate_user_signup ( $user [ 'username' ], $user [ 'email' ] );
2020-05-24 11:17:09 +02:00
2018-02-27 03:31:31 +01:00
if ( is_wp_error ( $user_details [ 'errors' ] ) && $user_details [ 'errors' ] -> has_errors () ) {
2017-12-01 00:11:00 +01:00
$add_user_errors = $user_details [ 'errors' ];
2011-06-03 20:59:12 +02:00
} else {
2017-12-01 00:11:00 +01:00
$password = wp_generate_password ( 12 , false );
$user_id = wpmu_create_user ( esc_html ( strtolower ( $user [ 'username' ] ) ), $password , sanitize_email ( $user [ 'email' ] ) );
2010-11-04 17:16:52 +01:00
2011-06-03 20:59:12 +02:00
if ( ! $user_id ) {
2017-12-01 00:11:00 +01:00
$add_user_errors = new WP_Error ( 'add_user_fail' , __ ( 'Cannot add user.' ) );
2011-06-03 20:59:12 +02:00
} else {
2015-09-17 00:19:24 +02:00
/**
2017-11-27 00:57:55 +01:00
* Fires after a new user has been created via the network user - new . php page .
*
* @ since 4.4 . 0
*
* @ param int $user_id ID of the newly created user .
*/
2015-09-17 00:19:24 +02:00
do_action ( 'network_user_new_created_user' , $user_id );
2020-05-24 11:17:09 +02:00
2017-12-01 00:11:00 +01:00
wp_redirect (
add_query_arg (
array (
'update' => 'added' ,
'user_id' => $user_id ,
2018-08-17 03:51:36 +02:00
),
'user-new.php'
2017-12-01 00:11:00 +01:00
)
);
2011-06-03 20:59:12 +02:00
exit ;
}
}
2010-11-04 17:16:52 +01:00
}
2017-12-01 00:11:00 +01:00
if ( isset ( $_GET [ 'update' ] ) ) {
2010-11-04 17:16:52 +01:00
$messages = array ();
2020-05-24 11:17:09 +02:00
if ( 'added' === $_GET [ 'update' ] ) {
2016-02-24 22:43:25 +01:00
$edit_link = '' ;
if ( isset ( $_GET [ 'user_id' ] ) ) {
$user_id_new = absint ( $_GET [ 'user_id' ] );
if ( $user_id_new ) {
$edit_link = esc_url ( add_query_arg ( 'wp_http_referer' , urlencode ( wp_unslash ( $_SERVER [ 'REQUEST_URI' ] ) ), get_edit_user_link ( $user_id_new ) ) );
}
}
2019-06-15 20:57:52 +02:00
$message = __ ( 'User added.' );
if ( $edit_link ) {
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
$message .= sprintf ( ' <a href="%s">%s</a>' , $edit_link , __ ( 'Edit user' ) );
2016-02-24 22:43:25 +01:00
}
2019-06-15 20:57:52 +02:00
$messages [] = $message ;
2016-02-24 22:43:25 +01:00
}
2010-11-04 17:16:52 +01:00
}
2017-12-01 00:11:00 +01:00
$title = __ ( 'Add New User' );
2010-11-04 17:16:52 +01:00
$parent_file = 'users.php' ;
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ; ?>
2010-11-04 17:16:52 +01:00
< div class = " wrap " >
2015-06-27 17:41:25 +02:00
< h1 id = " add-new-user " >< ? php _e ( 'Add New User' ); ?> </h1>
2010-11-04 17:16:52 +01:00
< ? php
if ( ! empty ( $messages ) ) {
2017-12-01 00:11:00 +01:00
foreach ( $messages as $msg ) {
2015-04-02 00:06:28 +02:00
echo '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>' ;
2017-12-01 00:11:00 +01:00
}
2011-06-03 20:59:12 +02:00
}
2017-12-01 00:11:00 +01:00
if ( isset ( $add_user_errors ) && is_wp_error ( $add_user_errors ) ) {
2018-08-17 03:51:36 +02:00
?>
2011-06-03 20:59:12 +02:00
< div class = " error " >
< ? php
2017-12-01 00:11:00 +01:00
foreach ( $add_user_errors -> get_error_messages () as $message ) {
echo " <p> $message </p> " ;
}
2011-06-03 20:59:12 +02:00
?>
</ div >
< ? php } ?>
2017-12-01 00:11:00 +01:00
< form action = " <?php echo network_admin_url( 'user-new.php?action=add-user' ); ?> " id = " adduser " method = " post " novalidate = " novalidate " >
2019-05-24 23:56:54 +02:00
< table class = " form-table " role = " presentation " >
2010-11-04 17:16:52 +01:00
< tr class = " form-field form-required " >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " username " >< ? php _e ( 'Username' ); ?> </label></th>
Improve validation of `user_login` and `user_nicename` length.
The `user_login` field only allows 60 characters, and `user_nicename` allows
50. However, there are no protections in the interface, and few in the code,
that prevent the creation of users with values in excess of these limits. Prior
to recent changes in `$wpdb`, users were generally created anyway, MySQL
having performed the necessary truncation. More recently, the `INSERT`s and
`UPDATE`s simply fail, with no real feedback on the nature of the failure.
This changeset addresses the issue in a number of ways:
* On the user-new.php and network/user-new.php panels, don't allow input in excess of the maximum field length.
* In `wp_insert_user()`, throw an error if the value provided for `'user_login'` or `'user_nicename'` exceeds the maximum field length.
* In `wp_insert_user()`, when using `'user_login'` to generate a default value for `'user_nicename'`, ensure that the nicename is properly truncated, even when suffixed for uniqueness (username-2, etc).
Props dipesh.kakadiya, utkarshpatel, tommarshall, boonebgorges.
Fixes #33793.
Built from https://develop.svn.wordpress.org/trunk@34218
git-svn-id: http://core.svn.wordpress.org/trunk@34182 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-09-16 00:14:26 +02:00
< td >< input type = " text " class = " regular-text " name = " user[username] " id = " username " autocapitalize = " none " autocorrect = " off " maxlength = " 60 " /></ td >
2010-11-04 17:16:52 +01:00
</ tr >
< tr class = " form-field form-required " >
2017-12-01 00:11:00 +01:00
< th scope = " row " >< label for = " email " >< ? php _e ( 'Email' ); ?> </label></th>
2021-03-20 19:30:08 +01:00
< td >< input type = " email " class = " regular-text " name = " user[email] " id = " email " /></ td >
2010-11-04 17:16:52 +01:00
</ tr >
< tr class = " form-field " >
2019-05-25 17:19:53 +02:00
< td colspan = " 2 " class = " td-full " >< ? php _e ( 'A password reset link will be sent to the user via email.' ); ?> </td>
2010-11-04 17:16:52 +01:00
</ tr >
</ table >
2016-02-17 20:15:26 +01:00
< ? php
/**
* Fires at the end of the new user form in network admin .
*
* @ since 4.5 . 0
*/
do_action ( 'network_user_new_form' );
wp_nonce_field ( 'add-user' , '_wpnonce_add-user' );
2017-12-01 00:11:00 +01:00
submit_button ( __ ( 'Add User' ), 'primary' , 'add-user' );
2016-02-17 20:15:26 +01:00
?>
2010-11-04 17:16:52 +01:00
</ form >
</ div >
< ? php
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-footer.php' ;