[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/ -> user-new.php (source)

   1  <?php
   2  /**
   3   * New User Administration Screen.
   4   *
   5   * @package WordPress
   6   * @subpackage Administration
   7   */
   8  
   9  /** WordPress Administration Bootstrap */
  10  require_once  __DIR__ . '/admin.php';
  11  
  12  if ( is_multisite() ) {
  13      if ( ! current_user_can( 'create_users' ) && ! current_user_can( 'promote_users' ) ) {
  14          wp_die(
  15              '<h1>' . __( 'You need a higher level of permission.' ) . '</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>' . __( 'You need a higher level of permission.' ) . '</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  
  38      if ( str_contains( $user_email, '@' ) ) {
  39          $user_details = get_user_by( 'email', $user_email );
  40      } else {
  41          if ( current_user_can( 'manage_network_users' ) ) {
  42              $user_details = get_user_by( 'login', $user_email );
  43          } else {
  44              wp_redirect( add_query_arg( array( 'update' => 'enter_email' ), 'user-new.php' ) );
  45              die();
  46          }
  47      }
  48  
  49      if ( ! $user_details ) {
  50          wp_redirect( add_query_arg( array( 'update' => 'does_not_exist' ), 'user-new.php' ) );
  51          die();
  52      }
  53  
  54      if ( ! current_user_can( 'promote_user', $user_details->ID ) ) {
  55          wp_die(
  56              '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
  57              '<p>' . __( 'Sorry, you are not allowed to add users to this network.' ) . '</p>',
  58              403
  59          );
  60      }
  61  
  62      // Adding an existing user to this blog.
  63      $new_user_email = array();
  64      $redirect       = 'user-new.php';
  65      $username       = $user_details->user_login;
  66      $user_id        = $user_details->ID;
  67  
  68      if ( array_key_exists( $blog_id, get_blogs_of_user( $user_id ) ) ) {
  69          $redirect = add_query_arg( array( 'update' => 'addexisting' ), 'user-new.php' );
  70      } else {
  71          if ( isset( $_POST['noconfirmation'] ) && current_user_can( 'manage_network_users' ) ) {
  72  
  73              wp_ensure_editable_role( $_REQUEST['role'] );
  74  
  75              $result = add_existing_user_to_blog(
  76                  array(
  77                      'user_id' => $user_id,
  78                      'role'    => $_REQUEST['role'],
  79                  )
  80              );
  81  
  82              if ( ! is_wp_error( $result ) ) {
  83                  $redirect = add_query_arg(
  84                      array(
  85                          'update'  => 'addnoconfirmation',
  86                          'user_id' => $user_id,
  87                      ),
  88                      'user-new.php'
  89                  );
  90              } else {
  91                  $redirect = add_query_arg( array( 'update' => 'could_not_add' ), 'user-new.php' );
  92              }
  93          } else {
  94              $newuser_key = wp_generate_password( 20, false );
  95              add_option(
  96                  'new_user_' . $newuser_key,
  97                  array(
  98                      'user_id' => $user_id,
  99                      'email'   => $user_details->user_email,
 100                      'role'    => $_REQUEST['role'],
 101                  )
 102              );
 103  
 104              $roles = get_editable_roles();
 105              $role  = $roles[ $_REQUEST['role'] ];
 106  
 107              /**
 108               * Fires immediately after an existing user is invited to join the site, but before the notification is sent.
 109               *
 110               * @since 4.4.0
 111               *
 112               * @param int    $user_id     The invited user's ID.
 113               * @param array  $role        Array containing role information for the invited user.
 114               * @param string $newuser_key The key of the invitation.
 115               */
 116              do_action( 'invite_user', $user_id, $role, $newuser_key );
 117  
 118              $switched_locale = switch_to_user_locale( $user_id );
 119  
 120              if ( '' !== get_option( 'blogname' ) ) {
 121                  $site_title = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
 122              } else {
 123                  $site_title = parse_url( home_url(), PHP_URL_HOST );
 124              }
 125  
 126              /* translators: 1: Site title, 2: Site URL, 3: User role, 4: Activation URL. */
 127              $message = __(
 128                  'Hi,
 129  
 130  You\'ve been invited to join \'%1$s\' at
 131  %2$s with the role of %3$s.
 132  
 133  Please click the following link to confirm the invite:
 134  %4$s'
 135              );
 136  
 137              $new_user_email['to']      = $user_details->user_email;
 138              $new_user_email['subject'] = sprintf(
 139                  /* translators: Joining confirmation notification email subject. %s: Site title. */
 140                  __( '[%s] Joining Confirmation' ),
 141                  $site_title
 142              );
 143              $new_user_email['message'] = sprintf(
 144                  $message,
 145                  get_option( 'blogname' ),
 146                  home_url(),
 147                  wp_specialchars_decode( translate_user_role( $role['name'] ) ),
 148                  home_url( "/newbloguser/$newuser_key/" )
 149              );
 150              $new_user_email['headers'] = '';
 151  
 152              /**
 153               * Filters the contents of the email sent when an existing user is invited to join the site.
 154               *
 155               * @since 5.6.0
 156               *
 157               * @param array $new_user_email {
 158               *     Used to build wp_mail().
 159               *
 160               *     @type string $to      The email address of the invited user.
 161               *     @type string $subject The subject of the email.
 162               *     @type string $message The content of the email.
 163               *     @type string $headers Headers.
 164               * }
 165               * @param int    $user_id     The invited user's ID.
 166               * @param array  $role        Array containing role information for the invited user.
 167               * @param string $newuser_key The key of the invitation.
 168               *
 169               */
 170              $new_user_email = apply_filters( 'invited_user_email', $new_user_email, $user_id, $role, $newuser_key );
 171  
 172              wp_mail(
 173                  $new_user_email['to'],
 174                  $new_user_email['subject'],
 175                  $new_user_email['message'],
 176                  $new_user_email['headers']
 177              );
 178  
 179              if ( $switched_locale ) {
 180                  restore_previous_locale();
 181              }
 182  
 183              $redirect = add_query_arg( array( 'update' => 'add' ), 'user-new.php' );
 184          }
 185      }
 186  
 187      wp_redirect( $redirect );
 188      die();
 189  } elseif ( isset( $_REQUEST['action'] ) && 'createuser' === $_REQUEST['action'] ) {
 190      check_admin_referer( 'create-user', '_wpnonce_create-user' );
 191  
 192      if ( ! current_user_can( 'create_users' ) ) {
 193          wp_die(
 194              '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
 195              '<p>' . __( 'Sorry, you are not allowed to create users.' ) . '</p>',
 196              403
 197          );
 198      }
 199  
 200      if ( ! is_multisite() ) {
 201          $user_id = edit_user();
 202  
 203          if ( is_wp_error( $user_id ) ) {
 204              $add_user_errors = $user_id;
 205          } else {
 206              if ( current_user_can( 'list_users' ) ) {
 207                  $redirect = 'users.php?update=add&id=' . $user_id;
 208              } else {
 209                  $redirect = add_query_arg( 'update', 'add', 'user-new.php' );
 210              }
 211  
 212              wp_redirect( $redirect );
 213              die();
 214          }
 215      } else {
 216          // Adding a new user to this site.
 217          $new_user_email = wp_unslash( $_REQUEST['email'] );
 218          $user_details   = wpmu_validate_user_signup( $_REQUEST['user_login'], $new_user_email );
 219  
 220          if ( is_wp_error( $user_details['errors'] ) && $user_details['errors']->has_errors() ) {
 221              $add_user_errors = $user_details['errors'];
 222          } else {
 223              /** This filter is documented in wp-includes/user.php */
 224              $new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) );
 225  
 226              if ( isset( $_POST['noconfirmation'] ) && current_user_can( 'manage_network_users' ) ) {
 227                  add_filter( 'wpmu_signup_user_notification', '__return_false' );  // Disable confirmation email.
 228                  add_filter( 'wpmu_welcome_user_notification', '__return_false' ); // Disable welcome email.
 229              }
 230  
 231              wp_ensure_editable_role( $_REQUEST['role'] );
 232  
 233              wpmu_signup_user(
 234                  $new_user_login,
 235                  $new_user_email,
 236                  array(
 237                      'add_to_blog' => get_current_blog_id(),
 238                      'new_role'    => $_REQUEST['role'],
 239                  )
 240              );
 241  
 242              if ( isset( $_POST['noconfirmation'] ) && current_user_can( 'manage_network_users' ) ) {
 243                  $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 ) );
 244                  $new_user = wpmu_activate_signup( $key );
 245                  if ( is_wp_error( $new_user ) ) {
 246                      $redirect = add_query_arg( array( 'update' => 'addnoconfirmation' ), 'user-new.php' );
 247                  } elseif ( ! is_user_member_of_blog( $new_user['user_id'] ) ) {
 248                      $redirect = add_query_arg( array( 'update' => 'created_could_not_add' ), 'user-new.php' );
 249                  } else {
 250                      $redirect = add_query_arg(
 251                          array(
 252                              'update'  => 'addnoconfirmation',
 253                              'user_id' => $new_user['user_id'],
 254                          ),
 255                          'user-new.php'
 256                      );
 257                  }
 258              } else {
 259                  $redirect = add_query_arg( array( 'update' => 'newuserconfirmation' ), 'user-new.php' );
 260              }
 261  
 262              wp_redirect( $redirect );
 263              die();
 264          }
 265      }
 266  }
 267  
 268  // Used in the HTML title tag.
 269  $title       = __( 'Add User' );
 270  $parent_file = 'users.php';
 271  
 272  $do_both = false;
 273  if ( is_multisite() && current_user_can( 'promote_users' ) && current_user_can( 'create_users' ) ) {
 274      $do_both = true;
 275  }
 276  
 277  $help = '<p>' . __( 'To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom.' ) . '</p>';
 278  
 279  if ( is_multisite() ) {
 280      $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>' .
 281      '<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 do not want the user to receive a welcome email.' ) . '</p>';
 282  } else {
 283      $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>' .
 284  
 285      '<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 do not want to send the new user a welcome email.' ) . '</p>';
 286  }
 287  
 288  $help .= '<p>' . __( 'Remember to click the Add User button at the bottom of this screen when you are finished.' ) . '</p>';
 289  
 290  get_current_screen()->add_help_tab(
 291      array(
 292          'id'      => 'overview',
 293          'title'   => __( 'Overview' ),
 294          'content' => $help,
 295      )
 296  );
 297  
 298  get_current_screen()->add_help_tab(
 299      array(
 300          'id'      => 'user-roles',
 301          'title'   => __( 'User Roles' ),
 302          'content' => '<p>' . __( 'Here is a basic overview of the different user roles and the permissions associated with each one:' ) . '</p>' .
 303                              '<ul>' .
 304                              '<li>' . __( 'Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.' ) . '</li>' .
 305                              '<li>' . __( 'Contributors can write and manage their posts but not publish posts or upload media files.' ) . '</li>' .
 306                              '<li>' . __( 'Authors can publish and manage their own posts, and are able to upload files.' ) . '</li>' .
 307                              '<li>' . __( 'Editors can publish posts, manage posts as well as manage other people&#8217;s posts, etc.' ) . '</li>' .
 308                              '<li>' . __( 'Administrators have access to all the administration features.' ) . '</li>' .
 309                              '</ul>',
 310      )
 311  );
 312  
 313  get_current_screen()->set_help_sidebar(
 314      '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
 315      '<p>' . __( '<a href="https://wordpress.org/documentation/article/users-add-new-screen/">Documentation on Adding New Users</a>' ) . '</p>' .
 316      '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'
 317  );
 318  
 319  wp_enqueue_script( 'wp-ajax-response' );
 320  wp_enqueue_script( 'user-profile' );
 321  
 322  /**
 323   * Filters whether to enable user auto-complete for non-super admins in Multisite.
 324   *
 325   * @since 3.4.0
 326   *
 327   * @param bool $enable Whether to enable auto-complete for non-super admins. Default false.
 328   */
 329  if ( is_multisite() && current_user_can( 'promote_users' ) && ! wp_is_large_network( 'users' )
 330      && ( current_user_can( 'manage_network_users' ) || apply_filters( 'autocomplete_users_for_site_admins', false ) )
 331  ) {
 332      wp_enqueue_script( 'user-suggest' );
 333  }
 334  
 335  require_once  ABSPATH . 'wp-admin/admin-header.php';
 336  
 337  if ( isset( $_GET['update'] ) ) {
 338      $messages = array();
 339      if ( is_multisite() ) {
 340          $edit_link = '';
 341          if ( ( isset( $_GET['user_id'] ) ) ) {
 342              $user_id_new = absint( $_GET['user_id'] );
 343              if ( $user_id_new ) {
 344                  $edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user_id_new ) ) );
 345              }
 346          }
 347  
 348          switch ( $_GET['update'] ) {
 349              case 'newuserconfirmation':
 350                  $messages[] = __( 'Invitation email sent to new user. A confirmation link must be clicked before their account is created.' );
 351                  break;
 352              case 'add':
 353                  $messages[] = __( 'Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.' );
 354                  break;
 355              case 'addnoconfirmation':
 356                  $message = __( 'User has been added to your site.' );
 357  
 358                  if ( $edit_link ) {
 359                      $message .= sprintf( ' <a href="%s">%s</a>', $edit_link, __( 'Edit user' ) );
 360                  }
 361  
 362                  $messages[] = $message;
 363                  break;
 364              case 'addexisting':
 365                  $messages[] = __( 'That user is already a member of this site.' );
 366                  break;
 367              case 'could_not_add':
 368                  $add_user_errors = new WP_Error( 'could_not_add', __( 'That user could not be added to this site.' ) );
 369                  break;
 370              case 'created_could_not_add':
 371                  $add_user_errors = new WP_Error( 'created_could_not_add', __( 'User has been created, but could not be added to this site.' ) );
 372                  break;
 373              case 'does_not_exist':
 374                  $add_user_errors = new WP_Error( 'does_not_exist', __( 'The requested user does not exist.' ) );
 375                  break;
 376              case 'enter_email':
 377                  $add_user_errors = new WP_Error( 'enter_email', __( 'Please enter a valid email address.' ) );
 378                  break;
 379          }
 380      } else {
 381          if ( 'add' === $_GET['update'] ) {
 382              $messages[] = __( 'User added.' );
 383          }
 384      }
 385  }
 386  ?>
 387  <div class="wrap">
 388  <h1 id="add-new-user">
 389  <?php
 390  if ( current_user_can( 'create_users' ) ) {
 391      _e( 'Add User' );
 392  } elseif ( current_user_can( 'promote_users' ) ) {
 393      _e( 'Add Existing User' );
 394  }
 395  ?>
 396  </h1>
 397  
 398  <?php
 399  if ( isset( $errors ) && is_wp_error( $errors ) ) :
 400      $error_message = '';
 401      foreach ( $errors->get_error_messages() as $err ) {
 402          $error_message .= "<li>$err</li>\n";
 403      }
 404      wp_admin_notice(
 405          '<ul>' . $error_message . '</ul>',
 406          array(
 407              'additional_classes' => array( 'error' ),
 408              'paragraph_wrap'     => false,
 409          )
 410      );
 411  endif;
 412  
 413  if ( ! empty( $messages ) ) {
 414      foreach ( $messages as $msg ) {
 415          wp_admin_notice(
 416              $msg,
 417              array(
 418                  'id'                 => 'message',
 419                  'additional_classes' => array( 'updated' ),
 420                  'dismissible'        => true,
 421              )
 422          );
 423      }
 424  }
 425  ?>
 426  
 427  <?php
 428  if ( isset( $add_user_errors ) && is_wp_error( $add_user_errors ) ) :
 429      $error_message = '';
 430      foreach ( $add_user_errors->get_error_messages() as $message ) {
 431          $error_message .= "<p>$message</p>\n";
 432      }
 433      wp_admin_notice(
 434          $error_message,
 435          array(
 436              'additional_classes' => array( 'error' ),
 437              'paragraph_wrap'     => false,
 438          )
 439      );
 440  endif;
 441  ?>
 442  <div id="ajax-response"></div>
 443  
 444  <?php
 445  if ( is_multisite() && current_user_can( 'promote_users' ) ) {
 446      if ( $do_both ) {
 447          echo '<h2 id="add-existing-user">' . __( 'Add Existing User' ) . '</h2>';
 448      }
 449      if ( ! current_user_can( 'manage_network_users' ) ) {
 450          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>';
 451          $label = __( 'Email' );
 452          $type  = 'email';
 453      } else {
 454          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>';
 455          $label = __( 'Email or Username' );
 456          $type  = 'text';
 457      }
 458      ?>
 459  <form method="post" name="adduser" id="adduser" class="validate" novalidate="novalidate"
 460      <?php
 461      /**
 462       * Fires inside the adduser form tag.
 463       *
 464       * @since 3.0.0
 465       */
 466      do_action( 'user_new_form_tag' );
 467      ?>
 468  >
 469  <input name="action" type="hidden" value="adduser" />
 470      <?php wp_nonce_field( 'add-user', '_wpnonce_add-user' ); ?>
 471  
 472  <table class="form-table" role="presentation">
 473      <tr class="form-field form-required">
 474          <th scope="row"><label for="adduser-email"><?php echo esc_html( $label ); ?></label></th>
 475          <td><input name="email" type="<?php echo esc_attr( $type ); ?>" id="adduser-email" class="wp-suggest-user" value="" /></td>
 476      </tr>
 477      <tr class="form-field">
 478          <th scope="row"><label for="adduser-role"><?php _e( 'Role' ); ?></label></th>
 479          <td><select name="role" id="adduser-role">
 480              <?php wp_dropdown_roles( get_option( 'default_role' ) ); ?>
 481              </select>
 482          </td>
 483      </tr>
 484      <?php if ( current_user_can( 'manage_network_users' ) ) { ?>
 485      <tr>
 486          <th scope="row"><?php _e( 'Skip Confirmation Email' ); ?></th>
 487          <td>
 488              <input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" />
 489              <label for="adduser-noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation' ); ?></label>
 490          </td>
 491      </tr>
 492      <?php } ?>
 493  </table>
 494      <?php
 495      /**
 496       * Fires at the end of the new user form.
 497       *
 498       * Passes a contextual string to make both types of new user forms
 499       * uniquely targetable. Contexts are 'add-existing-user' (Multisite),
 500       * and 'add-new-user' (single site and network admin).
 501       *
 502       * @since 3.7.0
 503       *
 504       * @param string $type A contextual string specifying which type of new user form the hook follows.
 505       */
 506      do_action( 'user_new_form', 'add-existing-user' );
 507      ?>
 508      <?php submit_button( __( 'Add Existing User' ), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
 509  </form>
 510      <?php
 511  } // End if is_multisite().
 512  
 513  if ( current_user_can( 'create_users' ) ) {
 514      if ( $do_both ) {
 515          echo '<h2 id="create-new-user">' . __( 'Add User' ) . '</h2>';
 516      }
 517      ?>
 518  <p><?php _e( 'Create a brand new user and add them to this site.' ); ?></p>
 519  <form method="post" name="createuser" id="createuser" class="validate" novalidate="novalidate"
 520      <?php
 521      /** This action is documented in wp-admin/user-new.php */
 522      do_action( 'user_new_form_tag' );
 523      ?>
 524  >
 525  <input name="action" type="hidden" value="createuser" />
 526      <?php wp_nonce_field( 'create-user', '_wpnonce_create-user' ); ?>
 527      <?php
 528      // Load up the passed data, else set to a default.
 529      $creating = isset( $_POST['createuser'] );
 530  
 531      $new_user_login             = $creating && isset( $_POST['user_login'] ) ? wp_unslash( $_POST['user_login'] ) : '';
 532      $new_user_firstname         = $creating && isset( $_POST['first_name'] ) ? wp_unslash( $_POST['first_name'] ) : '';
 533      $new_user_lastname          = $creating && isset( $_POST['last_name'] ) ? wp_unslash( $_POST['last_name'] ) : '';
 534      $new_user_email             = $creating && isset( $_POST['email'] ) ? wp_unslash( $_POST['email'] ) : '';
 535      $new_user_uri               = $creating && isset( $_POST['url'] ) ? wp_unslash( $_POST['url'] ) : '';
 536      $new_user_role              = $creating && isset( $_POST['role'] ) ? wp_unslash( $_POST['role'] ) : '';
 537      $new_user_send_notification = $creating && ! isset( $_POST['send_user_notification'] ) ? false : true;
 538      $new_user_ignore_pass       = $creating && isset( $_POST['noconfirmation'] ) ? wp_unslash( $_POST['noconfirmation'] ) : '';
 539  
 540      ?>
 541  <table class="form-table" role="presentation">
 542      <tr class="form-field form-required">
 543          <th scope="row"><label for="user_login"><?php _e( 'Username' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th>
 544          <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" autocomplete="off" maxlength="60" /></td>
 545      </tr>
 546      <tr class="form-field form-required">
 547          <th scope="row"><label for="email"><?php _e( 'Email' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th>
 548          <td><input name="email" type="email" id="email" value="<?php echo esc_attr( $new_user_email ); ?>" /></td>
 549      </tr>
 550      <?php if ( ! is_multisite() ) { ?>
 551      <tr class="form-field">
 552          <th scope="row"><label for="first_name"><?php _e( 'First Name' ); ?> </label></th>
 553          <td><input name="first_name" type="text" id="first_name" value="<?php echo esc_attr( $new_user_firstname ); ?>" /></td>
 554      </tr>
 555      <tr class="form-field">
 556          <th scope="row"><label for="last_name"><?php _e( 'Last Name' ); ?> </label></th>
 557          <td><input name="last_name" type="text" id="last_name" value="<?php echo esc_attr( $new_user_lastname ); ?>" /></td>
 558      </tr>
 559      <tr class="form-field">
 560          <th scope="row"><label for="url"><?php _e( 'Website' ); ?></label></th>
 561          <td><input name="url" type="url" id="url" class="code" value="<?php echo esc_attr( $new_user_uri ); ?>" /></td>
 562      </tr>
 563          <?php
 564          $languages = get_available_languages();
 565          if ( $languages ) :
 566              ?>
 567          <tr class="form-field user-language-wrap">
 568              <th scope="row">
 569                  <label for="locale">
 570                      <?php /* translators: The user language selection field label. */ ?>
 571                      <?php _e( 'Language' ); ?><span class="dashicons dashicons-translation" aria-hidden="true"></span>
 572                  </label>
 573              </th>
 574              <td>
 575                  <?php
 576                  wp_dropdown_languages(
 577                      array(
 578                          'name'                        => 'locale',
 579                          'id'                          => 'locale',
 580                          'selected'                    => 'site-default',
 581                          'languages'                   => $languages,
 582                          'show_available_translations' => false,
 583                          'show_option_site_default'    => true,
 584                      )
 585                  );
 586                  ?>
 587              </td>
 588          </tr>
 589          <?php endif; ?>
 590      <tr class="form-field form-required user-pass1-wrap">
 591          <th scope="row">
 592              <label for="pass1">
 593                  <?php _e( 'Password' ); ?>
 594                  <span class="description hide-if-js"><?php _e( '(required)' ); ?></span>
 595              </label>
 596          </th>
 597          <td>
 598              <input type="hidden" value=" " /><!-- #24364 workaround -->
 599              <button type="button" class="button wp-generate-pw hide-if-no-js"><?php _e( 'Generate password' ); ?></button>
 600              <div class="wp-pwd">
 601                  <?php $initial_password = wp_generate_password( 24 ); ?>
 602                  <div class="password-input-wrapper">
 603                      <input type="password" name="pass1" id="pass1" class="regular-text" autocomplete="new-password" spellcheck="false" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" aria-describedby="pass-strength-result" />
 604                      <div style="display:none" id="pass-strength-result" aria-live="polite"></div>
 605                  </div>
 606                  <button type="button" class="button wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
 607                      <span class="dashicons dashicons-hidden" aria-hidden="true"></span>
 608                      <span class="text"><?php _e( 'Hide' ); ?></span>
 609                  </button>
 610              </div>
 611          </td>
 612      </tr>
 613      <tr class="form-field form-required user-pass2-wrap hide-if-js">
 614          <th scope="row"><label for="pass2"><?php _e( 'Repeat Password' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th>
 615          <td>
 616          <input type="password" name="pass2" id="pass2" autocomplete="new-password" spellcheck="false" aria-describedby="pass2-desc" />
 617          <p class="description" id="pass2-desc"><?php _e( 'Type the password again.' ); ?></p>
 618          </td>
 619      </tr>
 620      <tr class="pw-weak">
 621          <th><?php _e( 'Confirm Password' ); ?></th>
 622          <td>
 623              <label>
 624                  <input type="checkbox" name="pw_weak" class="pw-checkbox" />
 625                  <?php _e( 'Confirm use of weak password' ); ?>
 626              </label>
 627          </td>
 628      </tr>
 629      <tr>
 630          <th scope="row"><?php _e( 'Send User Notification' ); ?></th>
 631          <td>
 632              <input type="checkbox" name="send_user_notification" id="send_user_notification" value="1" <?php checked( $new_user_send_notification ); ?> />
 633              <label for="send_user_notification"><?php _e( 'Send the new user an email about their account' ); ?></label>
 634          </td>
 635      </tr>
 636      <?php } // End if ! is_multisite(). ?>
 637      <?php if ( current_user_can( 'promote_users' ) ) { ?>
 638      <tr class="form-field">
 639          <th scope="row"><label for="role"><?php _e( 'Role' ); ?></label></th>
 640          <td><select name="role" id="role">
 641              <?php
 642              if ( ! $new_user_role ) {
 643                  $new_user_role = get_option( 'default_role' );
 644              }
 645              wp_dropdown_roles( $new_user_role );
 646              ?>
 647              </select>
 648          </td>
 649      </tr>
 650      <?php } ?>
 651      <?php if ( is_multisite() && current_user_can( 'manage_network_users' ) ) { ?>
 652      <tr>
 653          <th scope="row"><?php _e( 'Skip Confirmation Email' ); ?></th>
 654          <td>
 655              <input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> />
 656              <label for="noconfirmation"><?php _e( 'Add the user without sending an email that requires their confirmation' ); ?></label>
 657          </td>
 658      </tr>
 659      <?php } ?>
 660  </table>
 661  
 662      <?php
 663      /** This action is documented in wp-admin/user-new.php */
 664      do_action( 'user_new_form', 'add-new-user' );
 665      ?>
 666  
 667      <?php submit_button( __( 'Add User' ), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
 668  
 669  </form>
 670  <?php } // End if current_user_can( 'create_users' ). ?>
 671  </div>
 672  <?php
 673  require_once  ABSPATH . 'wp-admin/admin-footer.php';


Generated : Thu Apr 3 08:20:01 2025 Cross-referenced by PHPXref