mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
9ee37eb920
git-svn-id: http://svn.automattic.com/wordpress/trunk@13379 1a063a9b-81f0-0310-95a4-ce76da25c4cd
65 lines
1.9 KiB
PHP
65 lines
1.9 KiB
PHP
<?php
|
|
require_once('admin.php');
|
|
|
|
if ( !is_multisite() )
|
|
wp_die( __('Multisite support is not enabled.') );
|
|
|
|
$title = __('Network Admin');
|
|
$parent_file = 'ms-admin.php';
|
|
|
|
function index_css() {
|
|
wp_admin_css( 'css/dashboard' );
|
|
}
|
|
add_action( 'admin_head', 'index_css' );
|
|
|
|
require_once('admin-header.php');
|
|
|
|
if ( ! current_user_can( 'manage_network' ) )
|
|
wp_die( __('You do not have permission to access this page.') );
|
|
|
|
global $wpdb;
|
|
$c_users = get_user_count();
|
|
$c_blogs = get_blog_count();
|
|
|
|
$user_text = sprintf( _n( '%s user', '%s users', $c_users ), number_format_i18n( $c_users ) );
|
|
$blog_text = sprintf( _n( '%s site', '%s sites', $c_blogs ), number_format_i18n( $c_blogs ) );
|
|
|
|
$sentence = sprintf( __( 'You have %1$s and %2$s.' ), $blog_text, $user_text );
|
|
?>
|
|
|
|
<div class="wrap">
|
|
<?php screen_icon(); ?>
|
|
<h2><?php echo esc_html( $title ); ?></h2>
|
|
|
|
<ul class="subsubsub">
|
|
<li><a href="ms-sites.php#form-add-blog" class="rbutton"><strong><?php _e('Create a New Site'); ?></strong></a> | </li>
|
|
<li><a href="ms-users.php#form-add-user" class="rbutton"><?php _e('Create a New User'); ?></a></li>
|
|
</ul>
|
|
<br clear='all' />
|
|
|
|
<p class="youhave"><?php echo $sentence; ?></p>
|
|
<?php do_action('wpmuadminresult', ''); ?>
|
|
|
|
<form name="searchform" action="ms-users.php" method="get">
|
|
<p>
|
|
<input type="hidden" name="action" value="users" />
|
|
<input type="text" name="s" value="" size="17" />
|
|
<input class="button" type="submit" name="submit" value="<?php esc_attr_e("Search Users"); ?>" />
|
|
</p>
|
|
</form>
|
|
|
|
<form name="searchform" action="ms-sites.php" method="get">
|
|
<p>
|
|
<input type="hidden" name="action" value="blogs" />
|
|
<input type="text" name="s" value="" size="17" />
|
|
<input class="button" type="submit" name="blog_name" value="<?php esc_attr_e("Search Sites"); ?>" />
|
|
</p>
|
|
</form>
|
|
|
|
<?php do_action( 'mu_rightnow_end' ); ?>
|
|
<?php do_action( 'mu_activity_box_end' ); ?>
|
|
</div><!-- rightnow -->
|
|
</div>
|
|
|
|
<?php include('admin-footer.php'); ?>
|