2010-01-30 00:21:33 +01:00
|
|
|
<?php
|
2010-04-01 23:21:27 +02:00
|
|
|
require_once( './admin.php' );
|
2010-01-30 00:21:33 +01:00
|
|
|
|
|
|
|
if ( !is_multisite() )
|
2010-04-01 23:21:27 +02:00
|
|
|
wp_die( __( 'Multisite support is not enabled.' ) );
|
2010-01-30 00:21:33 +01:00
|
|
|
|
|
|
|
if ( ! current_user_can('read') )
|
2010-04-01 23:21:27 +02:00
|
|
|
wp_die( __( 'You do not have sufficient permissions to view this page.' ) );
|
2010-01-30 00:21:33 +01:00
|
|
|
|
2010-04-01 23:21:27 +02:00
|
|
|
$action = isset( $_POST['action'] ) ? $_POST['action'] : 'splash';
|
2010-01-30 00:21:33 +01:00
|
|
|
|
|
|
|
$blogs = get_blogs_of_user( $current_user->id );
|
|
|
|
|
|
|
|
if ( empty( $blogs ) )
|
|
|
|
wp_die( __( 'You must be a member of at least one site to use this page.' ) );
|
|
|
|
|
|
|
|
$updated = false;
|
|
|
|
if ( 'updateblogsettings' == $action && isset( $_POST['primary_blog'] ) ) {
|
2010-04-01 23:21:27 +02:00
|
|
|
check_admin_referer( 'update-my-sites' );
|
|
|
|
|
|
|
|
$blog = get_blog_details( (int) $_POST['primary_blog'] );
|
|
|
|
if ( $blog && isset( $blog->domain ) ) {
|
|
|
|
update_user_option( $current_user->id, 'primary_blog', (int) $_POST['primary_blog'], true );
|
|
|
|
$updated = true;
|
|
|
|
} else {
|
|
|
|
wp_die( __( "The primary site, which you have choosen, doesn't exists." ) );
|
|
|
|
}
|
2010-01-30 00:21:33 +01:00
|
|
|
}
|
|
|
|
|
2010-04-01 23:21:27 +02:00
|
|
|
$title = __( 'My Sites' );
|
2010-01-30 00:21:33 +01:00
|
|
|
$parent_file = 'index.php';
|
2010-04-01 23:21:27 +02:00
|
|
|
require_once( './admin-header.php' );
|
2010-01-30 00:21:33 +01:00
|
|
|
|
|
|
|
if ( $updated ) { ?>
|
2010-04-01 23:21:27 +02:00
|
|
|
<div id="message" class="updated fade"><p><strong><?php _e( 'Settings saved.' ); ?></strong></p></div>
|
2010-01-30 00:21:33 +01:00
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<div class="wrap">
|
|
|
|
<?php screen_icon(); ?>
|
2010-04-01 23:21:27 +02:00
|
|
|
<h2><?php esc_html_e( $title ); ?></h2>
|
2010-01-30 00:21:33 +01:00
|
|
|
<form id="myblogs" action="" method="post">
|
|
|
|
<?php
|
|
|
|
choose_primary_blog();
|
|
|
|
do_action( 'myblogs_allblogs_options' );
|
2010-04-01 23:21:27 +02:00
|
|
|
?>
|
|
|
|
<br clear="all" />
|
|
|
|
<table class="widefat fixed">
|
|
|
|
<?php
|
2010-01-30 00:21:33 +01:00
|
|
|
$settings_html = apply_filters( 'myblogs_options', '', 'global' );
|
|
|
|
if ( $settings_html != '' ) {
|
|
|
|
echo "<tr><td valign='top'><h3>" . __( 'Global Settings' ) . "</h3></td><td>";
|
|
|
|
echo $settings_html;
|
|
|
|
echo "</td></tr>";
|
|
|
|
}
|
|
|
|
reset( $blogs );
|
|
|
|
$num = count( $blogs );
|
|
|
|
$cols = 1;
|
|
|
|
if ( $num >= 20 )
|
|
|
|
$cols = 4;
|
|
|
|
elseif ( $num >= 10 )
|
|
|
|
$cols = 2;
|
2010-04-01 23:21:27 +02:00
|
|
|
$num_rows = ceil( $num / $cols );
|
2010-01-30 00:21:33 +01:00
|
|
|
$split = 0;
|
|
|
|
for ( $i = 1; $i <= $num_rows; $i++ ) {
|
|
|
|
$rows[] = array_slice( $blogs, $split, $cols );
|
|
|
|
$split = $split + $cols;
|
|
|
|
}
|
|
|
|
|
|
|
|
$c = '';
|
|
|
|
foreach ( $rows as $row ) {
|
2010-04-01 23:21:27 +02:00
|
|
|
$c = $c == 'alternate' ? '' : 'alternate';
|
2010-01-30 00:21:33 +01:00
|
|
|
echo "<tr class='$c'>";
|
2010-04-01 23:21:27 +02:00
|
|
|
$i = 0;
|
2010-01-30 00:21:33 +01:00
|
|
|
foreach ( $row as $user_blog ) {
|
2010-04-01 23:21:27 +02:00
|
|
|
$s = $i == 3 ? '' : 'border-right: 1px solid #ccc;';
|
|
|
|
echo "<td valign='top' style='$s'>";
|
2010-01-30 00:21:33 +01:00
|
|
|
echo "<h3>{$user_blog->blogname}</h3>";
|
2010-04-01 23:21:27 +02:00
|
|
|
echo "<p>" . apply_filters( 'myblogs_blog_actions', "<a href='" . esc_url( get_home_url( $user_blog->userblog_id ) ). "'>" . __( 'Visit' ) . "</a> | <a href='" . esc_url( get_admin_url( $user_blog->userblog_id ) ) . "'>" . __( 'Dashboard' ) . "</a>", $user_blog ) . "</p>";
|
2010-01-30 00:21:33 +01:00
|
|
|
echo apply_filters( 'myblogs_options', '', $user_blog );
|
|
|
|
echo "</td>";
|
2010-04-01 23:21:27 +02:00
|
|
|
$i++;
|
2010-01-30 00:21:33 +01:00
|
|
|
}
|
|
|
|
echo "</tr>";
|
|
|
|
}?>
|
|
|
|
</table>
|
|
|
|
<input type="hidden" name="action" value="updateblogsettings" />
|
2010-04-01 23:21:27 +02:00
|
|
|
<?php wp_nonce_field( 'update-my-sites' ); ?>
|
2010-01-30 00:21:33 +01:00
|
|
|
<p>
|
2010-04-01 23:21:27 +02:00
|
|
|
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes' ) ?>" />
|
2010-01-30 00:21:33 +01:00
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<?php
|
2010-04-01 23:21:27 +02:00
|
|
|
include( './admin-footer.php' );
|
|
|
|
?>
|