summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-users.php
blob: 96c016c5ba7f7a450ce8e01b0f842761488f7102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<?php
require_once('admin.php');

$title = __('WordPress MU &rsaquo; Admin &rsaquo; Users');
$parent_file = 'wpmu-admin.php';
wp_enqueue_script( 'listman' );
require_once('admin-header.php');

if( is_site_admin() == false ) {
	wp_die( __('<p>You do not have permission to access this page.</p>') );
}

if ( $_GET['updated'] == 'true' ) {
	?>
	<div id="message" class="updated fade"><p>
		<?php
		switch ($_GET['action']) {
			case 'delete':
				_e('User deleted !');
			break;
			case 'all_spam':
				_e('Users mark as spam !');
			break;
			case 'all_delete':
				_e('Users deleted !');
			break;
			case 'add':
				_e('User added !');
			break;
			default:
				_e('Options saved !');
			break;
		}
		?>
	</p></div>
	<?php
}
?>

<div class="wrap">
	<?php
	$start = isset( $_GET['start'] ) ? intval( $_GET['start'] ) : 0;
	$num = isset( $_GET['num'] ) ? intval( $_GET['num'] ) : 30;

	$query = "SELECT * FROM {$wpdb->users}";
	
	if( !empty($_GET['s']) ) {
		$search = '%' . trim(addslashes($_GET['s'])) . '%';
		$query .= " WHERE user_login LIKE '$search' OR user_email LIKE '$search'";
	}
	
	if( !isset($_GET['sortby']) ) {
		$_GET['sortby'] = 'id';
	}
	
	if( $_GET['sortby'] == 'email' ) {
		$query .= ' ORDER BY user_email ';
	} elseif( $_GET['sortby'] == 'id' ) {
		$query .= ' ORDER BY ID ';
	} elseif( $_GET['sortby'] == 'login' ) {
		$query .= ' ORDER BY user_login ';
	} elseif( $_GET['sortby'] == 'name' ) {
		$query .= ' ORDER BY display_name ';
	} elseif( $_GET['sortby'] == 'registered' ) {
		$query .= ' ORDER BY user_registered ';
	}
	
	$query .= ( $_GET['order'] == 'DESC' ) ? 'DESC' : 'ASC';

	$query .= " LIMIT " . intval( $start ) . ", " . intval( $num );
	$user_list = $wpdb->get_results( $query, ARRAY_A );
	
	$next = ( count( $user_list ) < $num ) ? false : true;
	?>
	<h2><?php _e("Users"); ?></h2>
	<div style="float:right; padding:0 20px; margin-top:10px;"> 
		<h4 style="margin:0 0 4px;"><?php _e('User Navigation') ?></h4> 
		<?php 
		$url2 = "order=" . $_GET['order'] . "&sortby=" . $_GET['sortby'] . "&s=" .$_GET['s'];
		if( $start == 0 ) { 
			_e('Previous&nbsp;Users');
		} elseif( $start <= 30 ) { 
			echo '<a href="wpmu-users.php?start=0' . $url2 . '">'.__('Previous&nbsp;Users').'</a>';
		} else {
			echo '<a href="wpmu-users.php?start=' . ( $start - $num ) . '&' . $url2 . '">'.__('Previous&nbsp;Users').'</a>';
		} 
		if ( $next ) {
			echo '&nbsp;||&nbsp;<a href="wpmu-users.php?start=' . ( $start + $num ) . '&' . $url2 . '">'.__('Next&nbsp;Users').'</a>';
		} else {
			echo '&nbsp;||&nbsp;'.__('Next&nbsp;Users');
		}
		?>
	</div>
	
	<form action="wpmu-users.php" method="get" id="searchform"> 
		<fieldset> 
			<legend><?php _e('Search Users&hellip;') ?></legend> 
			<input type="text" name="s" value="<?php if (isset($_GET['s'])) echo stripslashes(wp_specialchars($_GET['s'], 1)); ?>" size="17" /> 
		</fieldset>			
		<input class="button" id="post-query-submit" type="submit" name="submit" value="<?php _e('Search') ?>"  /> 
	</form>

	<br style="clear:both;" />
	
	<?php if( isset($_GET['s']) && $_GET['s'] != '' ) : ?>
		<p><a href="wpmu-blogs.php?action=blogs&amp;s=<?php echo stripslashes(wp_specialchars($_GET['s'], 1)); ?>"><?php _e('Search Blogs:') ?> <strong><?php echo stripslashes(wp_specialchars($_GET['s'], 1)) ?></strong></a></p>
	<?php endif; ?>

	<?php
	// define the columns to display, the syntax is 'internal name' => 'display name'
	$posts_columns = array(
		'id'         => __('ID'),
		'login'      => __('Login'),
		'email'     => __('Email'),
		'name'       => __('Name'),
		'registered' => __('Registered'),
		'blogs'      => __('Blogs')
	);
	$posts_columns = apply_filters('manage_posts_columns', $posts_columns);

	// you can not edit these at the moment
	$posts_columns['control_edit']   = '';
	$posts_columns['control_delete'] = '';

	?>
	<script type="text/javascript">
		<!--
		var checkflag = "false";
		function check_all_rows() {
			field = document.formlist;
			if (checkflag == "false") {
				for (i = 0; i < field.length; i++) {
					if( field[i].name == 'allusers[]' ) {
						field[i].checked = true;
					}
				}
				checkflag = "true";
				return "<?php _e('Uncheck All') ?>"; 
			} else {
				for (i = 0; i < field.length; i++) {
					if( field[i].name == 'allusers[]' ) {
						field[i].checked = false;
					}
				}
				checkflag = "false";
				return "<?php _e('Check All') ?>"; 
			}
		}
		//  -->
	</script>

	<form name="formlist" action='wpmu-edit.php?action=allusers' method='post'>
		<table class="widefat" cellpadding="3" cellspacing="3">
			<thead>
			<tr>
				<?php foreach( (array) $posts_columns as $column_id => $column_display_name) { ?>
					<th scope="col">
						<?php if( $column_id == 'blogs' ) {
							_e('Blogs');
						} else { ?>
							<a href="wpmu-users.php?sortby=<?php echo $column_id ?>&amp;<?php if( $_GET['sortby'] == $column_id ) { if( $_GET['order'] == 'DESC' ) { echo "order=ASC&amp;" ; } else { echo "order=DESC&amp;"; } } ?>start=<?php echo $start ?>"><?php echo $column_display_name; ?></a>
						<?php } ?>
					</th>
				<?php } ?>
			</tr>
			</thead>
			<tbody id="the-list">
			<?php if ($user_list) {
				$bgcolor = '';
				foreach ( (array) $user_list as $user) { 
					$class = ('alternate' == $class) ? '' : 'alternate';
					?>
					
					<tr class="<?php echo $class; ?>">
					<?php
					foreach( (array) $posts_columns as $column_name=>$column_display_name) :
						switch($column_name) {
							case 'id': ?>
								<th scope="row"><input type='checkbox' id='user_<?php echo $user['ID'] ?>' name='allusers[]' value='<?php echo $user['ID'] ?>' /> <label for='user_<?php echo $user['ID'] ?>'><?php echo $user['ID'] ?></label></th>
							<?php
							break;

							case 'login': ?>
								<td><label for='user_<?php echo $user['ID'] ?>'><?php echo $user['user_login'] ?></label></td>
							<?php
							break;

							case 'name': ?>
								<td><?php echo $user['display_name'] ?></td>
							<?php
							break;

							case 'email': ?>
								<td><?php echo $user['user_email'] ?></td>
							<?php
							break;

							case 'registered': ?>
								<td><?php echo mysql2date(__('Y-m-d \<\b\r \/\> g:i:s a'), $user['user_registered']); ?></td>
							<?php
							break;

							case 'blogs': 
								$blogs = get_blogs_of_user( $user['ID'], true );
								?>
								<td>
									<?php
									if( is_array( $blogs ) ) {
										foreach ( (array) $blogs as $key => $val ) {
											echo '<a href="wpmu-blogs.php?action=editblog&amp;id=' . $val->userblog_id . '">' . str_replace( '.' . $current_site->domain, '', $val->domain . $val->path ) . '</a> (<a '; 
											if( get_blog_status( $val->userblog_id, 'spam' ) == 1 )
												echo 'style="background-color: #f66" ';
											echo 'target="_new" href="http://'.$val->domain . $val->path.'">' . __('View') . '</a>)<br />'; 
										}
									}
									?>
								</td>
							<?php
							break;

							case 'control_edit': ?>
								<td><a href="user-edit.php?user_id=<?php echo $user['ID']; ?>" class="edit"><?php _e('Edit'); ?></a></td>
							<?php
							break;

							case 'control_delete': ?>
								<td><a href="wpmu-edit.php?action=confirm&amp;action2=deleteuser&amp;msg=<?php echo urlencode( __("You are about to delete this user.") ); ?>&amp;id=<?php echo $user['ID']; ?>&amp;redirect=<?php echo wpmu_admin_redirect_url(); ?>" class="delete" onclick="return deleteSomething( 'user', <?php echo $user['ID']; ?>, '<?php echo js_escape(sprintf(__("You are about to delete this user '%s'.\n'OK' to delete, 'Cancel' to stop."), $user['user_login'])); ?>' );"><?php _e('Delete'); ?></a></td>
							<?php
							break;

							default: ?>
								<td><?php do_action('manage_users_custom_column', $column_name, $user['ID']); ?></td>
							<?php
							break;
						}
					endforeach
					?>
					</tr> 
					<?php
				}
			} else {
			?>
				<tr style='background-color: <?php echo $bgcolor; ?>'> 
					<td colspan="<?php echo (int) count($posts_columns); ?>"><?php _e('No users found.') ?></td> 
				</tr> 
				<?php
			} // end if ($users)
			?> 
			</tbody>
		</table>
		
		<p><input class="button" type="button" value="<?php _e('Check All') ?>" onclick="this.value=check_all_rows()" /></p>
		
		<h3><?php _e('Selected Users:') ?></h3>
		<ul style="list-style:none;">
			<li><input type='radio' name='userfunction' id='delete' value='delete' /> <label for='delete'><?php _e('Delete') ?></label></li>
			<li><input type='radio' name='userfunction' id='spam' value='spam' /> <label for='spam'><?php _e('Mark as Spammers') ?></label></li>
			<li><input type='radio' name='userfunction' id='notspam' value='notspam' /> <label for='spam'><?php _e('Not Spam') ?></label></li> 
		</ul>
		
		<p class="submit" style="width: 220px">
			<?php wp_nonce_field( "allusers" ); ?>
			<input type='hidden' name='action' value='allusers' />
			<input class="button" type='submit' value='<?php _e('Apply Changes') ?>' /></p>
	</form>
</div>

<div class="wrap">
	<form action="wpmu-edit.php?action=adduser" method="post">
		<h2><?php _e('Add User') ?></h2>
		
		<table cellpadding="3" cellspacing="3">
			<tr>
				<th style="text-align:center;" scope='row'><?php _e('Username') ?></th>
				<td><input type="text" name="user[username]" /></td>
			</tr>
			<tr>
				<th style="text-align:center;" scope='row'><?php _e('Email') ?></th>
				<td><input type="text" name="user[email]" /></td>
			</tr>
			<tr><td colspan='2'><?php _e('Username and password will be mailed to the above email address.') ?></td></tr>
		</table>
		<p>
			<?php wp_nonce_field('add-user') ?>
			<input class="button" type="submit" name="Add user" value="<?php _e('Add user') ?>" /></p>
	</form>
</div>

<?php include('admin-footer.php'); ?>