2003-12-08 01:28:41 +00:00
<? php
2004-10-19 03:03:06 +00:00
require_once ( 'admin.php' );
2005-07-09 01:27:46 +00:00
require_once ( ABSPATH . WPINC . '/registration-functions.php' );
2004-04-25 04:24:06 +00:00
$title = __ ( 'Users' );
2004-12-24 20:55:36 +00:00
$parent_file = 'profile.php' ;
2003-12-08 01:28:41 +00:00
2005-07-09 01:27:46 +00:00
$action = $_REQUEST [ 'action' ];
2003-12-08 01:28:41 +00:00
switch ( $action ) {
2005-07-12 15:53:13 +00:00
case 'promote' :
2004-05-18 03:58:05 +00:00
check_admin_referer ();
2004-05-17 20:34:05 +00:00
2005-07-12 15:53:13 +00:00
if ( empty ( $_POST [ 'users' ])) {
header ( 'Location: users.php' );
}
2003-12-23 20:21:29 +00:00
2005-07-12 15:53:13 +00:00
if ( ! current_user_can ( 'edit_users' ) )
die ( __ ( 'You can’t edit users.' ));
2003-12-23 20:21:29 +00:00
2005-07-12 15:53:13 +00:00
$userids = $_POST [ 'users' ];
foreach ( $userids as $id ) {
$user = new WP_User ( $id );
$user -> set_role ( $_POST [ 'new_role' ]);
}
header ( 'Location: users.php?update=promote' );
2005-03-09 22:49:42 +00:00
2005-07-12 15:53:13 +00:00
break ;
2003-12-23 20:21:29 +00:00
2005-07-12 15:53:13 +00:00
case 'dodelete' :
2003-12-23 20:21:29 +00:00
2005-07-12 15:53:13 +00:00
check_admin_referer ();
if ( empty ( $_POST [ 'users' ])) {
header ( 'Location: users.php' );
2004-05-17 12:38:19 +00:00
}
2003-12-23 20:21:29 +00:00
2005-07-12 15:53:13 +00:00
if ( ! current_user_can ( 'edit_users' ) )
die ( __ ( 'You can’t delete users.' ));
2003-12-23 20:21:29 +00:00
2005-07-12 15:53:13 +00:00
$userids = $_POST [ 'users' ];
2003-12-08 01:28:41 +00:00
2005-07-12 15:53:13 +00:00
foreach ( $userids as $id ) {
switch ( $_POST [ 'delete_option' ]) {
case 'delete' :
wp_delete_user ( $id );
break ;
case 'reassign' :
wp_delete_user ( $id , $_POST [ 'reassign_user' ]);
break ;
}
}
2003-12-23 20:21:29 +00:00
2005-07-12 15:53:13 +00:00
header ( 'Location: users.php?update=del' );
2003-12-23 20:21:29 +00:00
break ;
2005-07-12 15:53:13 +00:00
case 'delete' :
2004-05-18 03:58:05 +00:00
check_admin_referer ();
2004-05-17 20:34:05 +00:00
2005-07-12 15:53:13 +00:00
if ( empty ( $_POST [ 'users' ])) {
2003-12-08 01:28:41 +00:00
header ( 'Location: users.php' );
}
2005-07-12 15:53:13 +00:00
if ( ! current_user_can ( 'edit_users' ) )
$error [ 'edit_users' ] = __ ( 'You can’t delete users.' );
2003-12-08 01:28:41 +00:00
2005-07-12 15:53:13 +00:00
$userids = $_POST [ 'users' ];
2005-07-09 01:27:46 +00:00
2005-07-12 15:53:13 +00:00
include ( 'admin-header.php' );
?>
<form action="" method="post" name="updateusers" id="updateusers">
<div class="wrap">
<h2><?php _e('Delete Users'); ?></h2>
<p><?php _e('You have specified these users for deletion:'); ?></p>
<ul>
<?php
foreach($userids as $id) {
$user = new WP_User($id);
echo "<li><input type=\"hidden\" name=\"users[]\" value=\"{$id}\" />";
echo "{$id}: {$user->data->user_login}</li>\n";
2003-12-08 01:28:41 +00:00
}
2005-07-12 15:53:13 +00:00
$all_logins = $wpdb->get_results("SELECT ID, user_login FROM $wpdb->users ORDER BY user_login");
$user_dropdown = '<select name="reassign_user">';
foreach($all_logins as $login) {
if(!in_array($login->ID, $userids)) {
$user_dropdown .= "<option value=\"{$login->ID}\">{$login->user_login}</option>";
}
}
$user_dropdown .= '</select>';
?>
</ul>
<p><?php _e('What should be done with posts and links owned by this user?'); ?></p>
<ul style="list-style:none;">
<li><label><input type="radio" id="delete_option0" name="delete_option" value="delete" checked="checked" />
<?php _e('Delete all posts and links.'); ?></label></li>
<li><input type="radio" id="delete_option1" name="delete_option" value="reassign" />
<?php echo sprintf(__('<label for="delete_option1">Attribute all posts and links to:</label> %s'), $user_dropdown); ?></li>
</ul>
<input type="hidden" name="action" value="dodelete" />
<p class="submit"><input type="submit" name="submit" value="<?php _e('Confirm Deletion'); ?>" /></p>
</div>
</form>
<?php
2003-12-08 01:28:41 +00:00
break;
2005-07-12 15:53:13 +00:00
case 'adduser':
2004-05-18 03:58:05 +00:00
check_admin_referer();
2005-07-12 15:53:13 +00:00
2005-09-14 00:03:02 +00:00
$errors = add_user();
2005-07-12 15:53:13 +00:00
2005-09-14 00:03:02 +00:00
if(count($errors) == 0) {
2005-07-12 15:53:13 +00:00
header('Location: users.php?update=add');
die();
}
2003-12-08 01:28:41 +00:00
default:
2003-12-11 00:22:36 +00:00
include ('admin-header.php');
2005-07-12 15:53:13 +00:00
$userids = $wpdb->get_col("SELECT ID FROM $wpdb->users;");
foreach($userids as $userid) {
$tmp_user = new WP_User($userid);
2005-09-07 03:16:08 +00:00
$roles = $tmp_user->roles;
2005-07-12 15:53:13 +00:00
$role = $roles[0];
$roleclasses[$role][$tmp_user->data->user_login] = $tmp_user;
}
2003-12-08 01:28:41 +00:00
?>
2004-07-21 07:23:45 +00:00
2005-07-12 15:53:13 +00:00
<?php
if (isset($_GET['update'])) :
switch($_GET['update']) {
case 'del':
?>
2005-08-08 01:13:22 +00:00
<div id="message" class="updated fade"><p><?php _e('User deleted.'); ?></p></div>
2005-07-12 15:53:13 +00:00
<?php
break;
case 'add':
?>
2005-08-08 01:13:22 +00:00
<div id="message" class="updated fade"><p><?php _e('New user created.'); ?></p></div>
2005-07-12 15:53:13 +00:00
<?php
break;
case 'promote':
?>
2005-08-08 01:13:22 +00:00
<div id="message" class="updated fade"><p><?php _e('Changed roles.'); ?></p></div>
2005-07-12 15:53:13 +00:00
<?php
break;
}
endif;
if ( isset($errors) ) : ?>
<div class="error">
<ul>
<?php
foreach($errors as $error) echo "<li>$error</li>";
?>
</ul>
</div>
<?php
endif;
?>
<form action="" method="post" name="updateusers" id="updateusers">
2003-12-08 01:28:41 +00:00
<div class="wrap">
2005-07-12 15:53:13 +00:00
<h2><?php _e('User List by Role'); ?></h2>
2003-12-08 08:12:09 +00:00
<table cellpadding="3" cellspacing="3" width="100%">
2005-07-12 15:53:13 +00:00
<?php
foreach($roleclasses as $role => $roleclass) {
ksort($roleclass);
?>
<tr>
<th colspan="8" align="left">
<h3><?php echo $wp_roles->role_names[$role]; ?></h3>
2005-08-20 01:49:24 +00:00
</th></tr>
2005-07-12 15:53:13 +00:00
2003-12-08 01:28:41 +00:00
<tr>
2004-04-25 04:24:06 +00:00
<th><?php _e('ID') ?></th>
2005-07-12 15:53:13 +00:00
<th><?php _e('Username') ?></th>
2004-04-25 04:24:06 +00:00
<th><?php _e('Name') ?></th>
<th><?php _e('E-mail') ?></th>
2004-05-05 08:27:43 +00:00
<th><?php _e('Website') ?></th>
2004-04-25 04:24:06 +00:00
<th><?php _e('Posts') ?></th>
2004-08-01 09:13:50 +00:00
<th> </th>
2003-12-08 01:28:41 +00:00
</tr>
<?php
2004-05-07 23:56:33 +00:00
$style = '';
2005-07-12 15:53:13 +00:00
foreach ($roleclass as $user_object) {
$user_data = &$user_object->data;
2003-12-08 01:28:41 +00:00
$email = $user_data->user_email;
$url = $user_data->user_url;
2004-06-18 00:22:09 +00:00
$short_url = str_replace('http://', '', $url);
2003-12-08 01:28:41 +00:00
$short_url = str_replace('www.', '', $short_url);
if ('/' == substr($short_url, -1))
$short_url = substr($short_url, 0, -1);
if (strlen($short_url) > 35)
$short_url = substr($short_url, 0, 32).'...';
2003-12-08 08:12:09 +00:00
$style = ('class="alternate"' == $style) ? '' : 'class="alternate"';
2005-07-12 15:53:13 +00:00
$numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = '$user_data->ID' and post_status = 'publish'");
2004-04-25 04:24:06 +00:00
if (0 < $numposts) $numposts = "<a href='edit.php?author=$user_data->ID' title='" . __('View posts') . "'>$numposts</a>";
2003-12-08 01:28:41 +00:00
echo "
2003-12-08 08:12:09 +00:00
<tr $style>
2005-07-12 15:53:13 +00:00
<td><input type='checkbox' name='users[]' id='user_{$user_data->ID}' value='{$user_data->ID}' /> <label for='user_{$user_data->ID}'>{$user_data->ID}</label></td>
<td><label for='user_{$user_data->ID}'><strong>$user_data->user_login</strong></label></td>
<td><label for='user_{$user_data->ID}'>$user_data->first_name $user_data->last_name</label></td>
2004-04-25 04:24:06 +00:00
<td><a href='mailto:$email' title='" . sprintf(__('e-mail: %s'), $email) . "'>$email</a></td>
2005-07-12 15:53:13 +00:00
<td><a href='$url' title='website: $url'>$short_url</a></td>";
echo "<td align='right'>$numposts</td>";
2004-08-01 09:13:50 +00:00
echo '<td>';
2005-07-12 15:53:13 +00:00
if (current_user_can('edit_users'))
2004-11-25 04:11:57 +00:00
echo "<a href='user-edit.php?user_id=$user_data->ID' class='edit'>".__('Edit')."</a>";
2004-08-01 09:13:50 +00:00
echo '</td>';
2003-12-08 01:28:41 +00:00
echo '</tr>';
}
?>
<?php
2005-07-12 15:53:13 +00:00
}
2003-12-08 01:28:41 +00:00
?>
2005-07-12 15:53:13 +00:00
</table>
2004-09-21 23:36:27 +00:00
2005-07-12 15:53:13 +00:00
<h2><?php _e('Update Users'); ?></h2>
<?php
$role_select = '<select name="new_role">';
foreach($wp_roles->role_names as $role => $name) {
$role_select .= "<option value=\"{$role}\">{$name}</option>";
}
$role_select .= '</select>';
?>
<ul style="list-style:none;">
2005-08-20 01:49:24 +00:00
<li><input type="radio" name="action" id="action0" value="delete" /> <label for="action0"><?php _e('Delete checked users.'); ?></label></li>
<li><input type="radio" name="action" id="action1" value="promote" /> <?php echo sprintf(__('<label for="action1">Set the Role of checked users to:</label> %s'), $role_select); ?></li>
2005-07-12 15:53:13 +00:00
</ul>
2005-08-20 01:49:24 +00:00
<p class="submit"><input type="submit" value="<?php _e('Update »'); ?>" /></p>
2003-12-08 01:28:41 +00:00
</div>
2005-07-12 15:53:13 +00:00
</form>
2003-12-08 01:28:41 +00:00
<div class="wrap">
2004-07-21 07:44:55 +00:00
<h2><?php _e('Add New User') ?></h2>
2004-04-25 04:24:06 +00:00
<?php printf(__('<p>Users can <a href="%s/wp-register.php">register themselves</a> or you can manually create users here.</p>'), get_settings('siteurl')); ?>
2003-12-23 20:21:29 +00:00
<form action="" method="post" name="adduser" id="adduser">
2004-05-05 08:27:43 +00:00
<table class="editform" width="100%" cellspacing="2" cellpadding="5">
2003-12-23 20:21:29 +00:00
<tr>
2004-05-05 08:27:43 +00:00
<th scope="row" width="33%"><?php _e('Nickname') ?>
2003-12-23 20:21:29 +00:00
<input name="action" type="hidden" id="action" value="adduser" /></th>
2005-07-12 15:53:13 +00:00
<td width="66%"><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td>
2003-12-23 20:21:29 +00:00
</tr>
<tr>
2004-04-25 04:24:06 +00:00
<th scope="row"><?php _e('First Name') ?> </th>
2005-09-14 00:03:02 +00:00
<td><input name="first_name" type="text" id="first_name" value="<?php echo $new_user_firstname; ?>" /></td>
2003-12-23 20:21:29 +00:00
</tr>
<tr>
2004-04-25 04:24:06 +00:00
<th scope="row"><?php _e('Last Name') ?> </th>
2005-09-14 00:03:02 +00:00
<td><input name="last_name" type="text" id="last_name" value="<?php echo $new_user_lastname; ?>" /></td>
2003-12-23 20:21:29 +00:00
</tr>
<tr>
2004-05-05 08:27:43 +00:00
<th scope="row"><?php _e('E-mail') ?></th>
2005-07-12 15:53:13 +00:00
<td><input name="email" type="text" id="email" value="<?php echo $new_user_email; ?>" /></td>
2003-12-23 20:21:29 +00:00
</tr>
<tr>
2004-05-05 08:27:43 +00:00
<th scope="row"><?php _e('Website') ?></th>
2005-09-14 00:03:02 +00:00
<td><input name="url" type="text" id="url" value="<?php echo $new_user_uri; ?>" /></td>
2003-12-23 20:21:29 +00:00
</tr>
2005-03-09 22:49:42 +00:00
<?php
$show_password_fields = apply_filters('show_password_fields', true);
if ( $show_password_fields ) :
?>
2003-12-23 20:21:29 +00:00
<tr>
2004-04-25 04:24:06 +00:00
<th scope="row"><?php _e('Password (twice)') ?> </th>
2004-01-21 22:44:28 +00:00
<td><input name="pass1" type="password" id="pass1" />
2003-12-23 20:21:29 +00:00
<br />
2004-01-21 22:44:28 +00:00
<input name="pass2" type="password" id="pass2" /></td>
2003-12-23 20:21:29 +00:00
</tr>
2005-03-09 22:49:42 +00:00
<?php endif; ?>
2003-12-23 20:21:29 +00:00
</table>
2004-04-28 04:59:54 +00:00
<p class="submit">
2004-06-11 18:23:12 +00:00
<input name="adduser" type="submit" id="adduser" value="<?php _e('Add User') ?> »" />
2003-12-23 20:21:29 +00:00
</p>
</form>
2003-12-08 01:28:41 +00:00
</div>
<?php
break;
}
2004-08-22 23:24:50 +00:00
2003-12-11 00:22:36 +00:00
include('admin-footer.php');
2004-12-24 20:55:36 +00:00
?>