PageRenderTime 55ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/wordpress3.4.2/wp-admin/user-new.php

https://bitbucket.org/ch3tag/mothers
PHP | 379 lines | 334 code | 33 blank | 12 comment | 74 complexity | 098a79c0df20ccbbad589525917e8b83 MD5 | raw file
  1. <?php
  2. /**
  3. * New User Administration Screen.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once('./admin.php');
  10. if ( is_multisite() ) {
  11. if ( ! current_user_can( 'create_users' ) && ! current_user_can( 'promote_users' ) )
  12. wp_die( __( 'Cheatin&#8217; uh?' ) );
  13. } elseif ( ! current_user_can( 'create_users' ) ) {
  14. wp_die( __( 'Cheatin&#8217; uh?' ) );
  15. }
  16. if ( is_multisite() ) {
  17. function admin_created_user_email( $text ) {
  18. /* translators: 1: Site name, 2: site URL, 3: role */
  19. return sprintf( __( 'Hi,
  20. You\'ve been invited to join \'%1$s\' at
  21. %2$s with the role of %3$s.
  22. If you do not want to join this site please ignore
  23. this email. This invitation will expire in a few days.
  24. Please click the following link to activate your user account:
  25. %%s' ), get_bloginfo('name'), home_url(), esc_html( $_REQUEST[ 'role' ] ) );
  26. }
  27. add_filter( 'wpmu_signup_user_notification_email', 'admin_created_user_email' );
  28. function admin_created_user_subject( $text ) {
  29. return sprintf( __( '[%s] Your site invite' ), get_bloginfo( 'name' ) );
  30. }
  31. }
  32. if ( isset($_REQUEST['action']) && 'adduser' == $_REQUEST['action'] ) {
  33. check_admin_referer( 'add-user', '_wpnonce_add-user' );
  34. $user_details = null;
  35. if ( false !== strpos($_REQUEST[ 'email' ], '@') ) {
  36. $user_details = get_user_by('email', $_REQUEST[ 'email' ]);
  37. } else {
  38. if ( is_super_admin() ) {
  39. $user_details = get_user_by('login', $_REQUEST[ 'email' ]);
  40. } else {
  41. wp_redirect( add_query_arg( array('update' => 'enter_email'), 'user-new.php' ) );
  42. die();
  43. }
  44. }
  45. if ( !$user_details ) {
  46. wp_redirect( add_query_arg( array('update' => 'does_not_exist'), 'user-new.php' ) );
  47. die();
  48. }
  49. if ( ! current_user_can('promote_user', $user_details->ID) )
  50. wp_die(__('Cheatin&#8217; uh?'));
  51. // Adding an existing user to this blog
  52. $new_user_email = $user_details->user_email;
  53. $redirect = 'user-new.php';
  54. $username = $user_details->user_login;
  55. $user_id = $user_details->ID;
  56. if ( ( $username != null && !is_super_admin( $user_id ) ) && ( array_key_exists($blog_id, get_blogs_of_user($user_id)) ) ) {
  57. $redirect = add_query_arg( array('update' => 'addexisting'), 'user-new.php' );
  58. } else {
  59. if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
  60. add_existing_user_to_blog( array( 'user_id' => $user_id, 'role' => $_REQUEST[ 'role' ] ) );
  61. $redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
  62. } else {
  63. $newuser_key = substr( md5( $user_id ), 0, 5 );
  64. add_option( 'new_user_' . $newuser_key, array( 'user_id' => $user_id, 'email' => $user_details->user_email, 'role' => $_REQUEST[ 'role' ] ) );
  65. /* translators: 1: Site name, 2: site URL, 3: role, 4: activation URL */
  66. $message = __( 'Hi,
  67. You\'ve been invited to join \'%1$s\' at
  68. %2$s with the role of %3$s.
  69. Please click the following link to confirm the invite:
  70. %4$s' );
  71. wp_mail( $new_user_email, sprintf( __( '[%s] Joining confirmation' ), get_option( 'blogname' ) ), sprintf($message, get_option('blogname'), home_url(), $_REQUEST[ 'role' ], home_url("/newbloguser/$newuser_key/")));
  72. $redirect = add_query_arg( array('update' => 'add'), 'user-new.php' );
  73. }
  74. }
  75. wp_redirect( $redirect );
  76. die();
  77. } elseif ( isset($_REQUEST['action']) && 'createuser' == $_REQUEST['action'] ) {
  78. check_admin_referer( 'create-user', '_wpnonce_create-user' );
  79. if ( ! current_user_can('create_users') )
  80. wp_die(__('Cheatin&#8217; uh?'));
  81. if ( ! is_multisite() ) {
  82. $user_id = edit_user();
  83. if ( is_wp_error( $user_id ) ) {
  84. $add_user_errors = $user_id;
  85. } else {
  86. if ( current_user_can( 'list_users' ) )
  87. $redirect = 'users.php?update=add&id=' . $user_id;
  88. else
  89. $redirect = add_query_arg( 'update', 'add', 'user-new.php' );
  90. wp_redirect( $redirect );
  91. die();
  92. }
  93. } else {
  94. // Adding a new user to this blog
  95. $user_details = wpmu_validate_user_signup( $_REQUEST[ 'user_login' ], $_REQUEST[ 'email' ] );
  96. unset( $user_details[ 'errors' ]->errors[ 'user_email_used' ] );
  97. if ( is_wp_error( $user_details[ 'errors' ] ) && !empty( $user_details[ 'errors' ]->errors ) ) {
  98. $add_user_errors = $user_details[ 'errors' ];
  99. } else {
  100. $new_user_login = apply_filters('pre_user_login', sanitize_user(stripslashes($_REQUEST['user_login']), true));
  101. if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
  102. add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email
  103. }
  104. wpmu_signup_user( $new_user_login, $_REQUEST[ 'email' ], array( 'add_to_blog' => $wpdb->blogid, 'new_role' => $_REQUEST[ 'role' ] ) );
  105. if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
  106. $key = $wpdb->get_var( $wpdb->prepare( "SELECT activation_key FROM {$wpdb->signups} WHERE user_login = %s AND user_email = %s", $new_user_login, $_REQUEST[ 'email' ] ) );
  107. wpmu_activate_signup( $key );
  108. $redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
  109. } else {
  110. $redirect = add_query_arg( array('update' => 'newuserconfimation'), 'user-new.php' );
  111. }
  112. wp_redirect( $redirect );
  113. die();
  114. }
  115. }
  116. }
  117. $title = __('Add New User');
  118. $parent_file = 'users.php';
  119. $do_both = false;
  120. if ( is_multisite() && current_user_can('promote_users') && current_user_can('create_users') )
  121. $do_both = true;
  122. $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>';
  123. if ( is_multisite() ) {
  124. $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>' .
  125. '<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>';
  126. } else {
  127. $help .= '<p>' . __('You must assign a password to the new user, which they can change after logging in. The username, however, cannot be changed.') . '</p>' .
  128. '<p>' . __('New users will receive an email letting them know they&#8217;ve been added as a user for your site. By default, this email will also contain their password. Uncheck the box if you don&#8217;t want the password to be included in the welcome email.') . '</p>';
  129. }
  130. $help .= '<p>' . __('Remember to click the Add New User button at the bottom of this screen when you are finished.') . '</p>';
  131. get_current_screen()->add_help_tab( array(
  132. 'id' => 'overview',
  133. 'title' => __('Overview'),
  134. 'content' => $help,
  135. ) );
  136. get_current_screen()->add_help_tab( array(
  137. 'id' => 'user-roles',
  138. 'title' => __('User Roles'),
  139. 'content' => '<p>' . __('Here is a basic overview of the different user roles and the permissions associated with each one:') . '</p>' .
  140. '<ul>' .
  141. '<li>' . __('Administrators have access to all the administration features.') . '</li>' .
  142. '<li>' . __('Editors can publish posts, manage posts as well as manage other people&#8217;s posts, etc.') . '</li>' .
  143. '<li>' . __('Authors can publish and manage their own posts, and are able to upload files.') . '</li>' .
  144. '<li>' . __('Contributors can write and manage their posts but not publish posts or upload media files.') . '</li>' .
  145. '<li>' . __('Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.') . '</li>' .
  146. '</ul>'
  147. ) );
  148. get_current_screen()->set_help_sidebar(
  149. '<p><strong>' . __('For more information:') . '</strong></p>' .
  150. '<p>' . __('<a href="http://codex.wordpress.org/Users_Add_New_Screen" target="_blank">Documentation on Adding New Users</a>') . '</p>' .
  151. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  152. );
  153. wp_enqueue_script('wp-ajax-response');
  154. wp_enqueue_script('user-profile');
  155. if ( is_multisite() && current_user_can( 'promote_users' ) && ! wp_is_large_network( 'users' )
  156. && ( is_super_admin() || apply_filters( 'autocomplete_users_for_site_admins', false ) )
  157. ) {
  158. wp_enqueue_script( 'user-suggest' );
  159. }
  160. require_once( 'admin-header.php' );
  161. if ( isset($_GET['update']) ) {
  162. $messages = array();
  163. if ( is_multisite() ) {
  164. switch ( $_GET['update'] ) {
  165. case "newuserconfimation":
  166. $messages[] = __('Invitation email sent to new user. A confirmation link must be clicked before their account is created.');
  167. break;
  168. case "add":
  169. $messages[] = __('Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.');
  170. break;
  171. case "addnoconfirmation":
  172. $messages[] = __('User has been added to your site.');
  173. break;
  174. case "addexisting":
  175. $messages[] = __('That user is already a member of this site.');
  176. break;
  177. case "does_not_exist":
  178. $messages[] = __('The requested user does not exist.');
  179. break;
  180. case "does_not_exist":
  181. $messages[] = __('Please enter a valid email address.');
  182. break;
  183. }
  184. } else {
  185. if ( 'add' == $_GET['update'] )
  186. $messages[] = __('User added.');
  187. }
  188. }
  189. ?>
  190. <div class="wrap">
  191. <?php screen_icon(); ?>
  192. <h2 id="add-new-user"> <?php
  193. if ( current_user_can( 'create_users' ) ) {
  194. echo _x( 'Add New User', 'user' );
  195. } elseif ( current_user_can( 'promote_users' ) ) {
  196. echo _x( 'Add Existing User', 'user' );
  197. } ?>
  198. </h2>
  199. <?php if ( isset($errors) && is_wp_error( $errors ) ) : ?>
  200. <div class="error">
  201. <ul>
  202. <?php
  203. foreach ( $errors->get_error_messages() as $err )
  204. echo "<li>$err</li>\n";
  205. ?>
  206. </ul>
  207. </div>
  208. <?php endif;
  209. if ( ! empty( $messages ) ) {
  210. foreach ( $messages as $msg )
  211. echo '<div id="message" class="updated"><p>' . $msg . '</p></div>';
  212. } ?>
  213. <?php if ( isset($add_user_errors) && is_wp_error( $add_user_errors ) ) : ?>
  214. <div class="error">
  215. <?php
  216. foreach ( $add_user_errors->get_error_messages() as $message )
  217. echo "<p>$message</p>";
  218. ?>
  219. </div>
  220. <?php endif; ?>
  221. <div id="ajax-response"></div>
  222. <?php
  223. if ( is_multisite() ) {
  224. if ( $do_both )
  225. echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>';
  226. if ( !is_super_admin() ) {
  227. _e( '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.' );
  228. $label = __('E-mail');
  229. } else {
  230. _e( '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.' );
  231. $label = __('E-mail or Username');
  232. }
  233. ?>
  234. <form action="" method="post" name="adduser" id="adduser" class="add:users: validate"<?php do_action('user_new_form_tag');?>>
  235. <input name="action" type="hidden" value="adduser" />
  236. <?php wp_nonce_field( 'add-user', '_wpnonce_add-user' ) ?>
  237. <table class="form-table">
  238. <tr class="form-field form-required">
  239. <th scope="row"><label for="adduser-email"><?php echo $label; ?></label></th>
  240. <td><input name="email" type="text" id="adduser-email" class="wp-suggest-user" value="" /></td>
  241. </tr>
  242. <tr class="form-field">
  243. <th scope="row"><label for="adduser-role"><?php _e('Role'); ?></label></th>
  244. <td><select name="role" id="adduser-role">
  245. <?php wp_dropdown_roles( get_option('default_role') ); ?>
  246. </select>
  247. </td>
  248. </tr>
  249. <?php if ( is_super_admin() ) { ?>
  250. <tr>
  251. <th scope="row"><label for="adduser-noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
  252. <td><label for="adduser-noconfirmation"><input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" /> <?php _e( 'Add the user without sending them a confirmation email.' ); ?></label></td>
  253. </tr>
  254. <?php } ?>
  255. </table>
  256. <?php submit_button( __( 'Add Existing User '), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
  257. </form>
  258. <?php
  259. } // is_multisite()
  260. if ( current_user_can( 'create_users') ) {
  261. if ( $do_both )
  262. echo '<h3 id="create-new-user">' . __( 'Add New User' ) . '</h3>';
  263. ?>
  264. <p><?php _e('Create a brand new user and add it to this site.'); ?></p>
  265. <form action="" method="post" name="createuser" id="createuser" class="add:users: validate"<?php do_action('user_new_form_tag');?>>
  266. <input name="action" type="hidden" value="createuser" />
  267. <?php wp_nonce_field( 'create-user', '_wpnonce_create-user' ) ?>
  268. <?php
  269. // Load up the passed data, else set to a default.
  270. foreach ( array( 'user_login' => 'login', 'first_name' => 'firstname', 'last_name' => 'lastname',
  271. 'email' => 'email', 'url' => 'uri', 'role' => 'role', 'send_password' => 'send_password', 'noconfirmation' => 'ignore_pass' ) as $post_field => $var ) {
  272. $var = "new_user_$var";
  273. if( isset( $_POST['createuser'] ) ) {
  274. if ( ! isset($$var) )
  275. $$var = isset( $_POST[$post_field] ) ? stripslashes( $_POST[$post_field] ) : '';
  276. } else {
  277. $$var = false;
  278. }
  279. }
  280. ?>
  281. <table class="form-table">
  282. <tr class="form-field form-required">
  283. <th scope="row"><label for="user_login"><?php _e('Username'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
  284. <td><input name="user_login" type="text" id="user_login" value="<?php echo esc_attr($new_user_login); ?>" aria-required="true" /></td>
  285. </tr>
  286. <tr class="form-field form-required">
  287. <th scope="row"><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
  288. <td><input name="email" type="text" id="email" value="<?php echo esc_attr($new_user_email); ?>" /></td>
  289. </tr>
  290. <?php if ( !is_multisite() ) { ?>
  291. <tr class="form-field">
  292. <th scope="row"><label for="first_name"><?php _e('First Name') ?> </label></th>
  293. <td><input name="first_name" type="text" id="first_name" value="<?php echo esc_attr($new_user_firstname); ?>" /></td>
  294. </tr>
  295. <tr class="form-field">
  296. <th scope="row"><label for="last_name"><?php _e('Last Name') ?> </label></th>
  297. <td><input name="last_name" type="text" id="last_name" value="<?php echo esc_attr($new_user_lastname); ?>" /></td>
  298. </tr>
  299. <tr class="form-field">
  300. <th scope="row"><label for="url"><?php _e('Website') ?></label></th>
  301. <td><input name="url" type="text" id="url" class="code" value="<?php echo esc_attr($new_user_uri); ?>" /></td>
  302. </tr>
  303. <?php if ( apply_filters('show_password_fields', true) ) : ?>
  304. <tr class="form-field form-required">
  305. <th scope="row"><label for="pass1"><?php _e('Password'); ?> <span class="description"><?php /* translators: password input field */_e('(twice, required)'); ?></span></label></th>
  306. <td><input name="pass1" type="password" id="pass1" autocomplete="off" />
  307. <br />
  308. <input name="pass2" type="password" id="pass2" autocomplete="off" />
  309. <br />
  310. <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
  311. <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
  312. </td>
  313. </tr>
  314. <tr>
  315. <th scope="row"><label for="send_password"><?php _e('Send Password?') ?></label></th>
  316. <td><label for="send_password"><input type="checkbox" name="send_password" id="send_password" <?php checked( $new_user_send_password ); ?> /> <?php _e('Send this password to the new user by email.'); ?></label></td>
  317. </tr>
  318. <?php endif; ?>
  319. <?php } // !is_multisite ?>
  320. <tr class="form-field">
  321. <th scope="row"><label for="role"><?php _e('Role'); ?></label></th>
  322. <td><select name="role" id="role">
  323. <?php
  324. if ( !$new_user_role )
  325. $new_user_role = !empty($current_role) ? $current_role : get_option('default_role');
  326. wp_dropdown_roles($new_user_role);
  327. ?>
  328. </select>
  329. </td>
  330. </tr>
  331. <?php if ( is_multisite() && is_super_admin() ) { ?>
  332. <tr>
  333. <th scope="row"><label for="noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
  334. <td><label for="noconfirmation"><input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> /> <?php _e( 'Add the user without sending them a confirmation email.' ); ?></label></td>
  335. </tr>
  336. <?php } ?>
  337. </table>
  338. <?php submit_button( __( 'Add New User '), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
  339. </form>
  340. <?php } // current_user_can('create_users') ?>
  341. </div>
  342. <?php
  343. include('./admin-footer.php');