2010-07-30 20:34:54 +00:00
<? php
/**
* Multisite users administration panel.
*
* @package WordPress
* @subpackage Multisite
* @since 3.0.0
*/
2010-11-10 14:27:15 +00:00
/** Load WordPress Administration Bootstrap */
2010-07-30 20:34:54 +00:00
require_once ( './admin.php' );
2010-11-10 14:27:15 +00:00
if ( ! is_multisite () )
wp_die ( __ ( 'Multisite support is not enabled.' ) );
2010-11-04 08:07:03 +00:00
$wp_list_table = get_list_table ( 'WP_MS_Users_List_Table' );
2010-08-22 11:22:46 +00:00
$wp_list_table -> check_permissions ();
$wp_list_table -> prepare_items ();
2010-07-30 20:34:54 +00:00
$title = __ ( 'Users' );
$parent_file = 'users.php' ;
2010-10-07 19:34:18 +00:00
add_screen_option ( 'per_page' , array ( 'label' => _x ( 'Users' , 'users per page (screen options)' )) );
2010-07-30 20:34:54 +00:00
add_contextual_help ( $current_screen ,
'<p>' . __ ( 'This table shows all users across the network and the sites to which they are assigned.' ) . '</p>' .
'<p>' . __ ( 'Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to his or her Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.' ) . '</p>' .
'<p>' . __ ( 'You can also go to the user’s profile page by clicking on the individual username.' ) . '</p>' .
'<p>' . __ ( 'You can sort the table by clicking on any of the bold headings and switch between list and excerpt views by using the icons in the upper right.' ) . '</p>' .
'<p>' . __ ( 'The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.' ) . '</p>' .
'<p>' . __ ( 'You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.' ) . '</p>' .
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
2010-12-16 07:07:42 +00:00
'<p>' . __ ( '<a href="http://codex.wordpress.org/Super_Admin_Users_SubPanel" target="_blank">Documentation on Network Users</a>' ) . '</p>' .
2010-12-16 06:52:47 +00:00
'<p>' . __ ( '<a href="http://wordpress.org/support/multisite/" target="_blank">Support Forums</a>' ) . '</p>'
2010-07-30 20:34:54 +00:00
);
2010-08-12 00:38:46 +00:00
require_once ( '../admin-header.php' );
2010-08-11 21:54:51 +00:00
if ( isset ( $_REQUEST [ 'updated' ] ) && $_REQUEST [ 'updated' ] == 'true' && ! empty ( $_REQUEST [ 'action' ] ) ) {
2010-07-30 20:34:54 +00:00
?>
<div id="message" class="updated"><p>
<?php
2010-08-11 21:54:51 +00:00
switch ( $_REQUEST['action'] ) {
2010-07-30 20:34:54 +00:00
case 'delete':
_e( 'User deleted.' );
break;
case 'all_spam':
_e( 'Users marked as spam.' );
break;
case 'all_notspam':
_e( 'Users removed from spam.' );
break;
case 'all_delete':
_e( 'Users deleted.' );
break;
case 'add':
_e( 'User added.' );
break;
}
?>
</p></div>
<?php
}
?>
2010-08-11 21:54:51 +00:00
<div class="wrap">
2010-07-30 20:34:54 +00:00
<?php screen_icon(); ?>
2010-11-04 16:16:52 +00:00
<h2><?php esc_html_e( 'Users' );
if ( current_user_can( 'create_users') ) : ?>
2010-11-29 16:54:06 +00:00
<a href="<?php echo network_admin_url('user-new.php'); ?>" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a><?php
2010-11-04 16:16:52 +00:00
endif;
2010-09-09 10:20:07 +00:00
if ( !empty( $usersearch ) )
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $usersearch ) );
2010-07-30 20:34:54 +00:00
?>
</h2>
2010-11-10 14:27:15 +00:00
<?php $wp_list_table->views(); ?>
2010-08-12 00:38:46 +00:00
<form action="" method="get" class="search-form">
2010-07-30 20:34:54 +00:00
<p class="search-box">
2010-09-09 10:20:07 +00:00
<input type="text" name="s" value="<?php echo esc_attr( $usersearch ); ?>" class="search-input" id="user-search-input" />
2010-10-28 21:56:43 +00:00
<?php submit_button( __( 'Search Users' ), 'button', 'post-query-submit', false ); ?>
2010-07-30 20:34:54 +00:00
</p>
</form>
2010-08-12 00:38:46 +00:00
<form id="form-user-list" action='edit.php?action=allusers' method='post'>
2010-08-22 11:22:46 +00:00
<?php $wp_list_table->display(); ?>
2010-08-11 21:54:51 +00:00
</form>
</div>
2010-07-30 20:34:54 +00:00
2010-11-04 16:16:52 +00:00
<?php require_once( '../admin-footer.php' ); ?>