2010-01-06 05:02:57 +01:00
|
|
|
<?php
|
2010-04-04 15:29:35 +02:00
|
|
|
/**
|
|
|
|
* Multisite administration panel.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Multisite
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
|
2010-04-03 13:15:51 +02:00
|
|
|
require_once( './admin.php' );
|
2010-01-06 05:02:57 +01:00
|
|
|
|
2010-01-06 21:19:35 +01:00
|
|
|
if ( !is_multisite() )
|
2010-04-03 13:15:51 +02:00
|
|
|
wp_die( __( 'Multisite support is not enabled.' ) );
|
2010-01-06 21:19:35 +01:00
|
|
|
|
2010-04-03 13:15:51 +02:00
|
|
|
if ( ! current_user_can( 'manage_network' ) )
|
|
|
|
wp_die( __( 'You do not have permission to access this page.' ) );
|
2010-01-06 05:02:57 +01:00
|
|
|
|
2010-04-03 13:15:51 +02:00
|
|
|
$title = __( 'Network Admin' );
|
|
|
|
$parent_file = 'ms-admin.php';
|
2010-01-06 05:02:57 +01:00
|
|
|
|
2010-04-03 13:15:51 +02:00
|
|
|
require_once( './admin-header.php' );
|
2010-01-06 05:02:57 +01:00
|
|
|
|
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-04-03 13:15:51 +02:00
|
|
|
<li><a href="ms-sites.php#form-add-site"><?php _e( 'Create a New Site' ); ?></a> |</li>
|
|
|
|
<li><a href="ms-users.php#form-add-user"><?php _e( 'Create a New User' ); ?></a></li>
|
2010-01-06 05:02:57 +01:00
|
|
|
</ul>
|
2010-04-03 13:15:51 +02:00
|
|
|
<br class="clear" />
|
2010-01-06 05:02:57 +01:00
|
|
|
|
|
|
|
<p class="youhave"><?php echo $sentence; ?></p>
|
2010-04-03 13:15:51 +02:00
|
|
|
<?php do_action( 'wpmuadminresult', '' ); ?>
|
2010-01-06 05:02:57 +01:00
|
|
|
|
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-04-03 13:15:51 +02: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-04-03 13:15:51 +02: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>
|
|
|
|
|
2010-04-03 13:15:51 +02:00
|
|
|
<?php include( './admin-footer.php' ); ?>
|