2010-01-06 05:02:57 +01:00
|
|
|
<?php
|
|
|
|
require_once('admin.php');
|
|
|
|
|
2010-01-06 21:19:35 +01:00
|
|
|
if ( !is_multisite() )
|
|
|
|
wp_die( __('Multisite support is not enabled.') );
|
|
|
|
|
2010-02-03 18:23:29 +01:00
|
|
|
$title = __('Network Admin');
|
2010-01-07 01:30:53 +01:00
|
|
|
$parent_file = 'ms-admin.php';
|
2010-01-06 05:02:57 +01:00
|
|
|
|
|
|
|
function index_css() {
|
|
|
|
wp_admin_css( 'css/dashboard' );
|
|
|
|
}
|
|
|
|
add_action( 'admin_head', 'index_css' );
|
|
|
|
|
|
|
|
require_once('admin-header.php');
|
|
|
|
|
2010-02-22 19:41:38 +01:00
|
|
|
if ( ! current_user_can( 'manage_network' ) )
|
2010-01-06 05:02:57 +01:00
|
|
|
wp_die( __('You do not have permission to access this page.') );
|
|
|
|
|
|
|
|
global $wpdb;
|
2010-02-13 18:10:50 +01:00
|
|
|
$c_users = get_user_count();
|
|
|
|
$c_blogs = get_blog_count();
|
2010-01-06 05:02:57 +01:00
|
|
|
|
2010-01-21 00:01:09 +01:00
|
|
|
$user_text = sprintf( _n( '%s user', '%s users', $c_users ), number_format_i18n( $c_users ) );
|
2010-02-24 20:56:10 +01:00
|
|
|
$blog_text = sprintf( _n( '%s site', '%s sites', $c_blogs ), number_format_i18n( $c_blogs ) );
|
2010-01-06 05:02:57 +01:00
|
|
|
|
|
|
|
$sentence = sprintf( __( 'You have %1$s and %2$s.' ), $blog_text, $user_text );
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="wrap">
|
2010-01-20 23:35:21 +01:00
|
|
|
<?php screen_icon(); ?>
|
2010-01-19 18:01:39 +01:00
|
|
|
<h2><?php echo esc_html( $title ); ?></h2>
|
2010-01-06 05:02:57 +01:00
|
|
|
|
|
|
|
<ul class="subsubsub">
|
2010-02-03 18:23:29 +01:00
|
|
|
<li><a href="ms-sites.php#form-add-blog" class="rbutton"><strong><?php _e('Create a New Site'); ?></strong></a> | </li>
|
2010-01-07 01:30:53 +01:00
|
|
|
<li><a href="ms-users.php#form-add-user" class="rbutton"><?php _e('Create a New User'); ?></a></li>
|
2010-01-06 05:02:57 +01:00
|
|
|
</ul>
|
|
|
|
<br clear='all' />
|
|
|
|
|
|
|
|
<p class="youhave"><?php echo $sentence; ?></p>
|
|
|
|
<?php do_action('wpmuadminresult', ''); ?>
|
|
|
|
|
2010-01-07 01:30:53 +01:00
|
|
|
<form name="searchform" action="ms-users.php" method="get">
|
2010-01-06 05:02:57 +01:00
|
|
|
<p>
|
|
|
|
<input type="hidden" name="action" value="users" />
|
2010-01-07 05:27:46 +01:00
|
|
|
<input type="text" name="s" value="" size="17" />
|
2010-01-07 04:40:03 +01:00
|
|
|
<input class="button" type="submit" name="submit" value="<?php esc_attr_e("Search Users"); ?>" />
|
2010-01-07 05:27:46 +01:00
|
|
|
</p>
|
2010-01-06 05:02:57 +01:00
|
|
|
</form>
|
|
|
|
|
2010-01-14 20:42:55 +01:00
|
|
|
<form name="searchform" action="ms-sites.php" method="get">
|
2010-01-06 05:02:57 +01:00
|
|
|
<p>
|
|
|
|
<input type="hidden" name="action" value="blogs" />
|
|
|
|
<input type="text" name="s" value="" size="17" />
|
2010-02-03 18:23:29 +01:00
|
|
|
<input class="button" type="submit" name="blog_name" value="<?php esc_attr_e("Search Sites"); ?>" />
|
2010-01-06 05:02:57 +01:00
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php do_action( 'mu_rightnow_end' ); ?>
|
|
|
|
<?php do_action( 'mu_activity_box_end' ); ?>
|
|
|
|
</div><!-- rightnow -->
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php include('admin-footer.php'); ?>
|