]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/user-new.php
WordPress 4.7.2-scripts
[autoinstalls/wordpress.git] / wp-admin / user-new.php
1 <?php
2 /**
3  * New User Administration Screen.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 if ( is_multisite() ) {
13         if ( ! current_user_can( 'create_users' ) && ! current_user_can( 'promote_users' ) ) {
14                 wp_die(
15                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
16                         '<p>' . __( 'Sorry, you are not allowed to add users to this network.' ) . '</p>',
17                         403
18                 );
19         }
20 } elseif ( ! current_user_can( 'create_users' ) ) {
21         wp_die(
22                 '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
23                 '<p>' . __( 'Sorry, you are not allowed to create users.' ) . '</p>',
24                 403
25         );
26 }
27
28 if ( is_multisite() ) {
29         add_filter( 'wpmu_signup_user_notification_email', 'admin_created_user_email' );
30 }
31
32 if ( isset($_REQUEST['action']) && 'adduser' == $_REQUEST['action'] ) {
33         check_admin_referer( 'add-user', '_wpnonce_add-user' );
34
35         $user_details = null;
36         $user_email = wp_unslash( $_REQUEST['email'] );
37         if ( false !== strpos( $user_email, '@' ) ) {
38                 $user_details = get_user_by( 'email', $user_email );
39         } else {
40                 if ( is_super_admin() ) {
41                         $user_details = get_user_by( 'login', $user_email );
42                 } else {
43                         wp_redirect( add_query_arg( array('update' => 'enter_email'), 'user-new.php' ) );
44                         die();
45                 }
46         }
47
48         if ( !$user_details ) {
49                 wp_redirect( add_query_arg( array('update' => 'does_not_exist'), 'user-new.php' ) );
50                 die();
51         }
52
53         if ( ! current_user_can( 'promote_user', $user_details->ID ) ) {
54                 wp_die(
55                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
56                         '<p>' . __( 'Sorry, you are not allowed to add users to this network.' ) . '</p>',
57                         403
58                 );
59         }
60
61         // Adding an existing user to this blog
62         $new_user_email = $user_details->user_email;
63         $redirect = 'user-new.php';
64         $username = $user_details->user_login;
65         $user_id = $user_details->ID;
66         if ( ( $username != null && !is_super_admin( $user_id ) ) && ( array_key_exists($blog_id, get_blogs_of_user($user_id)) ) ) {
67                 $redirect = add_query_arg( array('update' => 'addexisting'), 'user-new.php' );
68         } else {
69                 if ( isset( $_POST[ 'noconfirmation' ] ) && current_user_can( 'manage_network_users' ) ) {
70                         add_existing_user_to_blog( array( 'user_id' => $user_id, 'role' => $_REQUEST[ 'role' ] ) );
71                         $redirect = add_query_arg( array( 'update' => 'addnoconfirmation' , 'user_id' => $user_id ), 'user-new.php' );
72                 } else {
73                         $newuser_key = substr( md5( $user_id ), 0, 5 );
74                         add_option( 'new_user_' . $newuser_key, array( 'user_id' => $user_id, 'email' => $user_details->user_email, 'role' => $_REQUEST[ 'role' ] ) );
75
76                         $roles = get_editable_roles();
77                         $role = $roles[ $_REQUEST['role'] ];
78
79                         /**
80                          * Fires immediately after a user is invited to join a site, but before the notification is sent.
81                          *
82                          * @since 4.4.0
83                          *
84                          * @param int    $user_id     The invited user's ID.
85                          * @param array  $role        The role of invited user.
86                          * @param string $newuser_key The key of the invitation.
87                          */
88                         do_action( 'invite_user', $user_id, $role, $newuser_key );
89
90                         $switched_locale = switch_to_locale( get_user_locale( $user_details ) );
91
92                         /* translators: 1: Site name, 2: site URL, 3: role, 4: activation URL */
93                         $message = __( 'Hi,
94
95 You\'ve been invited to join \'%1$s\' at
96 %2$s with the role of %3$s.
97
98 Please click the following link to confirm the invite:
99 %4$s' );
100                         wp_mail( $new_user_email, sprintf( __( '[%s] Joining confirmation' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), sprintf( $message, get_option( 'blogname' ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ), home_url( "/newbloguser/$newuser_key/" ) ) );
101
102                         if ( $switched_locale ) {
103                                 restore_previous_locale();
104                         }
105
106                         $redirect = add_query_arg( array('update' => 'add'), 'user-new.php' );
107                 }
108         }
109         wp_redirect( $redirect );
110         die();
111 } elseif ( isset($_REQUEST['action']) && 'createuser' == $_REQUEST['action'] ) {
112         check_admin_referer( 'create-user', '_wpnonce_create-user' );
113
114         if ( ! current_user_can( 'create_users' ) ) {
115                 wp_die(
116                         '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
117                         '<p>' . __( 'Sorry, you are not allowed to create users.' ) . '</p>',
118                         403
119                 );
120         }
121
122         if ( ! is_multisite() ) {
123                 $user_id = edit_user();
124
125                 if ( is_wp_error( $user_id ) ) {
126                         $add_user_errors = $user_id;
127                 } else {
128                         if ( current_user_can( 'list_users' ) )
129                                 $redirect = 'users.php?update=add&id=' . $user_id;
130                         else
131                                 $redirect = add_query_arg( 'update', 'add', 'user-new.php' );
132                         wp_redirect( $redirect );
133                         die();
134                 }
135         } else {
136                 // Adding a new user to this site
137                 $new_user_email = wp_unslash( $_REQUEST['email'] );
138                 $user_details = wpmu_validate_user_signup( $_REQUEST['user_login'], $new_user_email );
139                 if ( is_wp_error( $user_details[ 'errors' ] ) && !empty( $user_details[ 'errors' ]->errors ) ) {
140                         $add_user_errors = $user_details[ 'errors' ];
141                 } else {
142                         /**
143                          * Filters the user_login, also known as the username, before it is added to the site.
144                          *
145                          * @since 2.0.3
146                          *
147                          * @param string $user_login The sanitized username.
148                          */
149                         $new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) );
150                         if ( isset( $_POST[ 'noconfirmation' ] ) && current_user_can( 'manage_network_users' ) ) {
151                                 add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email
152                                 add_filter( 'wpmu_welcome_user_notification', '__return_false' ); // Disable welcome email
153                         }
154                         wpmu_signup_user( $new_user_login, $new_user_email, array( 'add_to_blog' => $wpdb->blogid, 'new_role' => $_REQUEST['role'] ) );
155                         if ( isset( $_POST[ 'noconfirmation' ] ) && current_user_can( 'manage_network_users' ) ) {
156                                 $key = $wpdb->get_var( $wpdb->prepare( "SELECT activation_key FROM {$wpdb->signups} WHERE user_login = %s AND user_email = %s", $new_user_login, $new_user_email ) );
157                                 $new_user = wpmu_activate_signup( $key );
158                                 if ( is_wp_error( $new_user ) ) {
159                                         $redirect = add_query_arg( array( 'update' => 'addnoconfirmation' ), 'user-new.php' );
160                                 } else {
161                                         $redirect = add_query_arg( array( 'update' => 'addnoconfirmation', 'user_id' => $new_user['user_id'] ), 'user-new.php' );
162                                 }
163                         } else {
164                                 $redirect = add_query_arg( array('update' => 'newuserconfirmation'), 'user-new.php' );
165                         }
166                         wp_redirect( $redirect );
167                         die();
168                 }
169         }
170 }
171
172 $title = __('Add New User');
173 $parent_file = 'users.php';
174
175 $do_both = false;
176 if ( is_multisite() && current_user_can('promote_users') && current_user_can('create_users') )
177         $do_both = true;
178
179 $help = '<p>' . __('To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom.') . '</p>';
180
181 if ( is_multisite() ) {
182         $help .= '<p>' . __('Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user&#8217;s name to Edit the user profile under Network Admin > All Users.') . '</p>' .
183         '<p>' . __('New users will receive an email letting them know they&#8217;ve been added as a user for your site. This email will also contain their password. Check the box if you don&#8217;t want the user to receive a welcome email.') . '</p>';
184 } else {
185         $help .= '<p>' . __('New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.') . '</p>' .
186
187         '<p>' . __('By default, new users will receive an email letting them know they&#8217;ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you don&#8217;t want to send the new user a welcome email.') . '</p>';
188 }
189
190 $help .= '<p>' . __('Remember to click the Add New User button at the bottom of this screen when you are finished.') . '</p>';
191
192 get_current_screen()->add_help_tab( array(
193         'id'      => 'overview',
194         'title'   => __('Overview'),
195         'content' => $help,
196 ) );
197
198 get_current_screen()->add_help_tab( array(
199 'id'      => 'user-roles',
200 'title'   => __('User Roles'),
201 'content' => '<p>' . __('Here is a basic overview of the different user roles and the permissions associated with each one:') . '</p>' .
202                                 '<ul>' .
203                                 '<li>' . __('Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.') . '</li>' .
204                                 '<li>' . __('Contributors can write and manage their posts but not publish posts or upload media files.') . '</li>' .
205                                 '<li>' . __('Authors can publish and manage their own posts, and are able to upload files.') . '</li>' .
206                                 '<li>' . __('Editors can publish posts, manage posts as well as manage other people&#8217;s posts, etc.') . '</li>' .
207                                 '<li>' . __('Administrators have access to all the administration features.') . '</li>' .
208                                 '</ul>'
209 ) );
210
211 get_current_screen()->set_help_sidebar(
212     '<p><strong>' . __('For more information:') . '</strong></p>' .
213     '<p>' . __('<a href="https://codex.wordpress.org/Users_Add_New_Screen">Documentation on Adding New Users</a>') . '</p>' .
214     '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
215 );
216
217 wp_enqueue_script('wp-ajax-response');
218 wp_enqueue_script( 'user-profile' );
219
220 /**
221  * Filters whether to enable user auto-complete for non-super admins in Multisite.
222  *
223  * @since 3.4.0
224  *
225  * @param bool $enable Whether to enable auto-complete for non-super admins. Default false.
226  */
227 if ( is_multisite() && current_user_can( 'promote_users' ) && ! wp_is_large_network( 'users' )
228         && ( is_super_admin() || apply_filters( 'autocomplete_users_for_site_admins', false ) )
229 ) {
230         wp_enqueue_script( 'user-suggest' );
231 }
232
233 require_once( ABSPATH . 'wp-admin/admin-header.php' );
234
235 if ( isset($_GET['update']) ) {
236         $messages = array();
237         if ( is_multisite() ) {
238                 $edit_link = '';
239                 if ( ( isset( $_GET['user_id'] ) ) ) {
240                         $user_id_new = absint( $_GET['user_id'] );
241                         if ( $user_id_new ) {
242                                 $edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user_id_new ) ) );
243                         }
244                 }
245
246                 switch ( $_GET['update'] ) {
247                         case "newuserconfirmation":
248                                 $messages[] = __('Invitation email sent to new user. A confirmation link must be clicked before their account is created.');
249                                 break;
250                         case "add":
251                                 $messages[] = __('Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.');
252                                 break;
253                         case "addnoconfirmation":
254                                 if ( empty( $edit_link ) ) {
255                                         $messages[] = __( 'User has been added to your site.' );
256                                 } else {
257                                         /* translators: %s: edit page url */
258                                         $messages[] = sprintf( __( 'User has been added to your site. <a href="%s">Edit user</a>' ), $edit_link );
259                                 }
260                                 break;
261                         case "addexisting":
262                                 $messages[] = __('That user is already a member of this site.');
263                                 break;
264                         case "does_not_exist":
265                                 $messages[] = __('The requested user does not exist.');
266                                 break;
267                         case "enter_email":
268                                 $messages[] = __('Please enter a valid email address.');
269                                 break;
270                 }
271         } else {
272                 if ( 'add' == $_GET['update'] )
273                         $messages[] = __('User added.');
274         }
275 }
276 ?>
277 <div class="wrap">
278 <h1 id="add-new-user"><?php
279 if ( current_user_can( 'create_users' ) ) {
280         _e( 'Add New User' );
281 } elseif ( current_user_can( 'promote_users' ) ) {
282         _e( 'Add Existing User' );
283 } ?>
284 </h1>
285
286 <?php if ( isset($errors) && is_wp_error( $errors ) ) : ?>
287         <div class="error">
288                 <ul>
289                 <?php
290                         foreach ( $errors->get_error_messages() as $err )
291                                 echo "<li>$err</li>\n";
292                 ?>
293                 </ul>
294         </div>
295 <?php endif;
296
297 if ( ! empty( $messages ) ) {
298         foreach ( $messages as $msg )
299                 echo '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>';
300 } ?>
301
302 <?php if ( isset($add_user_errors) && is_wp_error( $add_user_errors ) ) : ?>
303         <div class="error">
304                 <?php
305                         foreach ( $add_user_errors->get_error_messages() as $message )
306                                 echo "<p>$message</p>";
307                 ?>
308         </div>
309 <?php endif; ?>
310 <div id="ajax-response"></div>
311
312 <?php
313 if ( is_multisite() ) {
314         if ( $do_both )
315                 echo '<h2 id="add-existing-user">' . __( 'Add Existing User' ) . '</h2>';
316         if ( !is_super_admin() ) {
317                 echo '<p>' . __( 'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ) . '</p>';
318                 $label = __('Email');
319                 $type  = 'email';
320         } else {
321                 echo '<p>' . __( 'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ) . '</p>';
322                 $label = __('Email or Username');
323                 $type  = 'text';
324         }
325 ?>
326 <form method="post" name="adduser" id="adduser" class="validate" novalidate="novalidate"<?php
327         /**
328          * Fires inside the adduser form tag.
329          *
330          * @since 3.0.0
331          */
332         do_action( 'user_new_form_tag' );
333 ?>>
334 <input name="action" type="hidden" value="adduser" />
335 <?php wp_nonce_field( 'add-user', '_wpnonce_add-user' ) ?>
336
337 <table class="form-table">
338         <tr class="form-field form-required">
339                 <th scope="row"><label for="adduser-email"><?php echo $label; ?></label></th>
340                 <td><input name="email" type="<?php echo $type; ?>" id="adduser-email" class="wp-suggest-user" value="" /></td>
341         </tr>
342         <tr class="form-field">
343                 <th scope="row"><label for="adduser-role"><?php _e('Role'); ?></label></th>
344                 <td><select name="role" id="adduser-role">
345                         <?php wp_dropdown_roles( get_option('default_role') ); ?>
346                         </select>
347                 </td>
348         </tr>
349 <?php if ( current_user_can( 'manage_network_users' ) ) { ?>
350         <tr>
351                 <th scope="row"><?php _e( 'Skip Confirmation Email' ); ?></th>
352                 <td>
353                         <input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" />
354                         <label for="adduser-noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label>
355                 </td>
356         </tr>
357 <?php } ?>
358 </table>
359 <?php
360 /**
361  * Fires at the end of the new user form.
362  *
363  * Passes a contextual string to make both types of new user forms
364  * uniquely targetable. Contexts are 'add-existing-user' (Multisite),
365  * and 'add-new-user' (single site and network admin).
366  *
367  * @since 3.7.0
368  *
369  * @param string $type A contextual string specifying which type of new user form the hook follows.
370  */
371 do_action( 'user_new_form', 'add-existing-user' );
372 ?>
373 <?php submit_button( __( 'Add Existing User' ), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
374 </form>
375 <?php
376 } // is_multisite()
377
378 if ( current_user_can( 'create_users') ) {
379         if ( $do_both )
380                 echo '<h2 id="create-new-user">' . __( 'Add New User' ) . '</h2>';
381 ?>
382 <p><?php _e('Create a brand new user and add them to this site.'); ?></p>
383 <form method="post" name="createuser" id="createuser" class="validate" novalidate="novalidate"<?php
384         /** This action is documented in wp-admin/user-new.php */
385         do_action( 'user_new_form_tag' );
386 ?>>
387 <input name="action" type="hidden" value="createuser" />
388 <?php wp_nonce_field( 'create-user', '_wpnonce_create-user' ); ?>
389 <?php
390 // Load up the passed data, else set to a default.
391 $creating = isset( $_POST['createuser'] );
392
393 $new_user_login = $creating && isset( $_POST['user_login'] ) ? wp_unslash( $_POST['user_login'] ) : '';
394 $new_user_firstname = $creating && isset( $_POST['first_name'] ) ? wp_unslash( $_POST['first_name'] ) : '';
395 $new_user_lastname = $creating && isset( $_POST['last_name'] ) ? wp_unslash( $_POST['last_name'] ) : '';
396 $new_user_email = $creating && isset( $_POST['email'] ) ? wp_unslash( $_POST['email'] ) : '';
397 $new_user_uri = $creating && isset( $_POST['url'] ) ? wp_unslash( $_POST['url'] ) : '';
398 $new_user_role = $creating && isset( $_POST['role'] ) ? wp_unslash( $_POST['role'] ) : '';
399 $new_user_send_notification = $creating && ! isset( $_POST['send_user_notification'] ) ? false : true;
400 $new_user_ignore_pass = $creating && isset( $_POST['noconfirmation'] ) ? wp_unslash( $_POST['noconfirmation'] ) : '';
401
402 ?>
403 <table class="form-table">
404         <tr class="form-field form-required">
405                 <th scope="row"><label for="user_login"><?php _e('Username'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
406                 <td><input name="user_login" type="text" id="user_login" value="<?php echo esc_attr( $new_user_login ); ?>" aria-required="true" autocapitalize="none" autocorrect="off" maxlength="60" /></td>
407         </tr>
408         <tr class="form-field form-required">
409                 <th scope="row"><label for="email"><?php _e('Email'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
410                 <td><input name="email" type="email" id="email" value="<?php echo esc_attr( $new_user_email ); ?>" /></td>
411         </tr>
412 <?php if ( !is_multisite() ) { ?>
413         <tr class="form-field">
414                 <th scope="row"><label for="first_name"><?php _e('First Name') ?> </label></th>
415                 <td><input name="first_name" type="text" id="first_name" value="<?php echo esc_attr($new_user_firstname); ?>" /></td>
416         </tr>
417         <tr class="form-field">
418                 <th scope="row"><label for="last_name"><?php _e('Last Name') ?> </label></th>
419                 <td><input name="last_name" type="text" id="last_name" value="<?php echo esc_attr($new_user_lastname); ?>" /></td>
420         </tr>
421         <tr class="form-field">
422                 <th scope="row"><label for="url"><?php _e('Website') ?></label></th>
423                 <td><input name="url" type="url" id="url" class="code" value="<?php echo esc_attr( $new_user_uri ); ?>" /></td>
424         </tr>
425         <tr class="form-field form-required user-pass1-wrap">
426                 <th scope="row">
427                         <label for="pass1">
428                                 <?php _e( 'Password' ); ?>
429                                 <span class="description hide-if-js"><?php _e( '(required)' ); ?></span>
430                         </label>
431                 </th>
432                 <td>
433                         <input class="hidden" value=" " /><!-- #24364 workaround -->
434                         <button type="button" class="button wp-generate-pw hide-if-no-js"><?php _e( 'Show password' ); ?></button>
435                         <div class="wp-pwd hide-if-js">
436                                 <?php $initial_password = wp_generate_password( 24 ); ?>
437                                 <span class="password-input-wrapper">
438                                         <input type="password" name="pass1" id="pass1" class="regular-text" autocomplete="off" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" aria-describedby="pass-strength-result" />
439                                 </span>
440                                 <button type="button" class="button wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
441                                         <span class="dashicons dashicons-hidden"></span>
442                                         <span class="text"><?php _e( 'Hide' ); ?></span>
443                                 </button>
444                                 <button type="button" class="button wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change' ); ?>">
445                                         <span class="text"><?php _e( 'Cancel' ); ?></span>
446                                 </button>
447                                 <div style="display:none" id="pass-strength-result" aria-live="polite"></div>
448                         </div>
449                 </td>
450         </tr>
451         <tr class="form-field form-required user-pass2-wrap hide-if-js">
452                 <th scope="row"><label for="pass2"><?php _e( 'Repeat Password' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th>
453                 <td>
454                 <input name="pass2" type="password" id="pass2" autocomplete="off" />
455                 </td>
456         </tr>
457         <tr class="pw-weak">
458                 <th><?php _e( 'Confirm Password' ); ?></th>
459                 <td>
460                         <label>
461                                 <input type="checkbox" name="pw_weak" class="pw-checkbox" />
462                                 <?php _e( 'Confirm use of weak password' ); ?>
463                         </label>
464                 </td>
465         </tr>
466         <tr>
467                 <th scope="row"><?php _e( 'Send User Notification' ) ?></th>
468                 <td>
469                         <input type="checkbox" name="send_user_notification" id="send_user_notification" value="1" <?php checked( $new_user_send_notification ); ?> />
470                         <label for="send_user_notification"><?php _e( 'Send the new user an email about their account.' ); ?></label>
471                 </td>
472         </tr>
473 <?php } // !is_multisite ?>
474         <tr class="form-field">
475                 <th scope="row"><label for="role"><?php _e('Role'); ?></label></th>
476                 <td><select name="role" id="role">
477                         <?php
478                         if ( !$new_user_role )
479                                 $new_user_role = !empty($current_role) ? $current_role : get_option('default_role');
480                         wp_dropdown_roles($new_user_role);
481                         ?>
482                         </select>
483                 </td>
484         </tr>
485         <?php if ( is_multisite() && current_user_can( 'manage_network_users' ) ) { ?>
486         <tr>
487                 <th scope="row"><?php _e( 'Skip Confirmation Email' ); ?></th>
488                 <td>
489                         <input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> />
490                         <label for="noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label>
491                 </td>
492         </tr>
493         <?php } ?>
494 </table>
495
496 <?php
497 /** This action is documented in wp-admin/user-new.php */
498 do_action( 'user_new_form', 'add-new-user' );
499 ?>
500
501 <?php submit_button( __( 'Add New User' ), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
502
503 </form>
504 <?php } // current_user_can('create_users') ?>
505 </div>
506 <?php
507 include( ABSPATH . 'wp-admin/admin-footer.php' );