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