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 = __ ( 'Sites' );
2010-01-07 01:30:53 +01:00
$parent_file = 'ms-admin.php' ;
2010-01-06 05:02:57 +01:00
wp_enqueue_script ( 'admin-forms' );
require_once ( 'admin-header.php' );
2010-01-07 16:52:22 +01:00
2010-02-22 19:41:38 +01:00
if ( ! current_user_can ( 'manage_sites' ) )
2010-01-07 16:52:22 +01:00
wp_die ( __ ( 'You do not have permission to access this page.' ) );
2010-01-21 00:01:09 +01:00
$id = isset ( $_GET [ 'id' ]) ? intval ( $_GET [ 'id' ] ) : 0 ;
2010-01-06 05:02:57 +01:00
$protocol = is_ssl () ? 'https://' : 'http://' ;
2010-01-21 00:01:09 +01:00
if ( isset ( $_GET [ 'updated' ]) && $_GET [ 'updated' ] == 'true' ) {
2010-01-06 05:02:57 +01:00
?>
< div id = " message " class = " updated fade " >< p >
< ? php
switch ( $_GET [ 'action' ]) {
case 'all_notspam' :
2010-02-24 20:56:10 +01:00
_e ( 'Sites mark as not spam !' );
2010-01-06 05:02:57 +01:00
break ;
case 'all_spam' :
2010-02-24 20:56:10 +01:00
_e ( 'Sites mark as spam !' );
2010-01-06 05:02:57 +01:00
break ;
case 'all_delete' :
2010-02-24 20:56:10 +01:00
_e ( 'Sites deleted !' );
2010-01-06 05:02:57 +01:00
break ;
case 'delete' :
2010-02-24 20:56:10 +01:00
_e ( 'Site deleted !' );
2010-01-06 05:02:57 +01:00
break ;
case 'add-blog' :
2010-02-24 20:56:10 +01:00
_e ( 'Site added !' );
2010-01-06 05:02:57 +01:00
break ;
case 'archive' :
2010-02-24 20:56:10 +01:00
_e ( 'Site archived !' );
2010-01-06 05:02:57 +01:00
break ;
case 'unarchive' :
2010-02-24 20:56:10 +01:00
_e ( 'Site unarchived !' );
2010-01-06 05:02:57 +01:00
break ;
case 'activate' :
2010-02-24 20:56:10 +01:00
_e ( 'Site activated !' );
2010-01-06 05:02:57 +01:00
break ;
case 'deactivate' :
2010-02-24 20:56:10 +01:00
_e ( 'Site deactivated !' );
2010-01-06 05:02:57 +01:00
break ;
case 'unspam' :
2010-02-24 20:56:10 +01:00
_e ( 'Site mark as not spam !' );
2010-01-06 05:02:57 +01:00
break ;
case 'spam' :
2010-02-24 20:56:10 +01:00
_e ( 'Site mark as spam !' );
2010-01-06 05:02:57 +01:00
break ;
case 'umature' :
2010-02-24 20:56:10 +01:00
_e ( 'Site mark as not mature !' );
2010-01-06 05:02:57 +01:00
break ;
case 'mature' :
2010-02-24 20:56:10 +01:00
_e ( 'Site mark as mature !' );
2010-01-06 05:02:57 +01:00
break ;
default :
_e ( 'Options saved !' );
break ;
}
?>
</ p ></ div >
< ? php
}
2010-01-21 00:01:09 +01:00
$action = isset ( $_GET [ 'action' ]) ? $_GET [ 'action' ] : 'list' ;
switch ( $action ) {
2010-01-06 05:02:57 +01:00
// Edit blog
case " editblog " :
$blog_prefix = $wpdb -> get_blog_prefix ( $id );
2010-01-29 18:36:57 +01:00
$options = $wpdb -> get_results ( " SELECT * FROM { $blog_prefix } options WHERE option_name NOT LIKE ' \ _%' AND option_name NOT LIKE '%user_roles' " );
$details = get_blog_details ( $id );
2010-01-06 05:02:57 +01:00
$editblog_roles = get_blog_option ( $id , " { $blog_prefix } user_roles " );
2010-02-09 19:03:46 +01:00
$is_main_site = is_main_site ( $id );
2010-01-06 05:02:57 +01:00
?>
< div class = " wrap " >
2010-01-20 23:35:21 +01:00
< ? php screen_icon (); ?>
2010-02-05 22:49:19 +01:00
< h2 >< ? php _e ( 'Edit Site' ); ?> - <a href='<?php echo get_home_url($id); ?>'><?php echo get_home_url($id); ?></a></h2>
2010-01-07 01:24:03 +01:00
< form method = " post " action = " ms-edit.php?action=updateblog " >
2010-01-06 05:02:57 +01:00
< ? php wp_nonce_field ( 'editblog' ); ?>
2010-01-07 05:27:46 +01:00
< input type = " hidden " name = " id " value = " <?php echo esc_attr( $id ) ?> " />
2010-01-06 05:02:57 +01:00
< div class = 'metabox-holder' style = 'width:49%;float:left;' >
< div id = " blogedit_bloginfo " class = " postbox " >
2010-02-24 20:56:10 +01:00
< h3 class = 'hndle' >< span >< ? php _e ( 'Site info (wp_blogs)' ); ?> </span></h3>
2010-01-06 05:02:57 +01:00
< div class = " inside " >
< table class = " form-table " >
< tr class = " form-field form-required " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Domain' ) ?> </th>
2010-02-09 19:03:46 +01:00
< ? php if ( $is_main_site ) { ?>
< td > http ://< ? php echo esc_attr ( $details -> domain ) ?> </td>
< ? php } else { ?>
2010-02-05 22:49:19 +01:00
< td > http ://< input name = " blog[domain] " type = " text " id = " domain " value = " <?php echo esc_attr( $details->domain ) ?> " size = " 33 " /></ td >
2010-02-09 19:03:46 +01:00
< ? php } ?>
2010-01-07 05:27:46 +01:00
</ tr >
2010-01-06 05:02:57 +01:00
< tr class = " form-field form-required " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Path' ) ?> </th>
2010-02-09 19:03:46 +01:00
< ? php if ( $is_main_site ) { ?>
< td >< ? php echo esc_attr ( $details -> path ) ?> </td>
< ? php } else { ?>
2010-01-29 18:36:57 +01:00
< td >< input name = " blog[path] " type = " text " id = " path " value = " <?php echo esc_attr( $details->path ) ?> " size = " 40 " style = 'margin-bottom:5px;' />
2010-02-05 22:49:19 +01:00
< br />< input type = 'checkbox' style = 'width:20px;' name = 'update_home_url' value = 'update' < ? php if ( get_blog_option ( $id , 'siteurl' ) == untrailingslashit ( get_blogaddress_by_id ( $id ) ) || get_blog_option ( $id , 'home' ) == untrailingslashit ( get_blogaddress_by_id ( $id ) ) ) echo 'checked="checked"' ; ?> /> <?php _e( "Update 'siteurl' and 'home' as well." ); ?></td>
2010-02-09 19:03:46 +01:00
< ? php } ?>
2010-01-07 05:27:46 +01:00
</ tr >
2010-01-06 05:02:57 +01:00
< tr class = " form-field " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Registered' ) ?> </th>
2010-01-29 18:36:57 +01:00
< td >< input name = " blog[registered] " type = " text " id = " blog_registered " value = " <?php echo esc_attr( $details->registered ) ?> " size = " 40 " /></ td >
2010-01-07 05:27:46 +01:00
</ tr >
2010-01-06 05:02:57 +01:00
< tr class = " form-field " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Last Updated' ) ?> </th>
2010-01-29 18:36:57 +01:00
< td >< input name = " blog[last_updated] " type = " text " id = " blog_last_updated " value = " <?php echo esc_attr( $details->last_updated ) ?> " size = " 40 " /></ td >
2010-01-07 05:27:46 +01:00
</ tr >
2010-01-06 05:02:57 +01:00
< tr class = " form-field " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Public' ) ?> </th>
2010-01-06 05:02:57 +01:00
< td >
2010-01-29 18:36:57 +01:00
< input type = 'radio' style = 'width:20px;' name = 'blog[public]' value = '1' < ? php if ( $details -> public == '1' ) echo 'checked="checked"' ; ?> /> <?php _e('Yes') ?>
< input type = 'radio' style = 'width:20px;' name = 'blog[public]' value = '0' < ? php if ( $details -> public == '0' ) echo 'checked="checked"' ; ?> /> <?php _e('No') ?>
2010-01-07 05:27:46 +01:00
</ td >
</ tr >
2010-01-06 05:02:57 +01:00
< tr class = " form-field " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Archived' ); ?> </th>
2010-01-06 05:02:57 +01:00
< td >
2010-01-29 18:36:57 +01:00
< input type = 'radio' style = 'width:20px;' name = 'blog[archived]' value = '1' < ? php if ( $details -> archived == '1' ) echo 'checked="checked"' ; ?> /> <?php _e('Yes') ?>
< input type = 'radio' style = 'width:20px;' name = 'blog[archived]' value = '0' < ? php if ( $details -> archived == '0' ) echo 'checked="checked"' ; ?> /> <?php _e('No') ?>
2010-01-07 05:27:46 +01:00
</ td >
</ tr >
2010-01-06 05:02:57 +01:00
< tr class = " form-field " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Mature' ); ?> </th>
2010-01-06 05:02:57 +01:00
< td >
2010-01-29 18:36:57 +01:00
< input type = 'radio' style = 'width:20px;' name = 'blog[mature]' value = '1' < ? php if ( $details -> mature == '1' ) echo 'checked="checked"' ; ?> /> <?php _e('Yes') ?>
< input type = 'radio' style = 'width:20px;' name = 'blog[mature]' value = '0' < ? php if ( $details -> mature == '0' ) echo 'checked="checked"' ; ?> /> <?php _e('No') ?>
2010-01-07 05:27:46 +01:00
</ td >
</ tr >
2010-01-06 05:02:57 +01:00
< tr class = " form-field " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Spam' ); ?> </th>
2010-01-06 05:02:57 +01:00
< td >
2010-01-29 18:36:57 +01:00
< input type = 'radio' style = 'width:20px;' name = 'blog[spam]' value = '1' < ? php if ( $details -> spam == '1' ) echo 'checked="checked"' ; ?> /> <?php _e('Yes') ?>
< input type = 'radio' style = 'width:20px;' name = 'blog[spam]' value = '0' < ? php if ( $details -> spam == '0' ) echo 'checked="checked"' ; ?> /> <?php _e('No') ?>
2010-01-07 05:27:46 +01:00
</ td >
</ tr >
2010-01-06 05:02:57 +01:00
< tr class = " form-field " >
2010-01-07 05:27:46 +01:00
< th scope = " row " >< ? php _e ( 'Deleted' ); ?> </th>
2010-01-06 05:02:57 +01:00
< td >
2010-01-29 18:36:57 +01:00
< input type = 'radio' style = 'width:20px;' name = 'blog[deleted]' value = '1' < ? php if ( $details -> deleted == '1' ) echo 'checked="checked"' ; ?> /> <?php _e('Yes') ?>
< input type = 'radio' style = 'width:20px;' name = 'blog[deleted]' value = '0' < ? php if ( $details -> deleted == '0' ) echo 'checked="checked"' ; ?> /> <?php _e('No') ?>
2010-01-07 05:27:46 +01:00
</ td >
</ tr >
2010-01-06 05:02:57 +01:00
</ table >
2010-01-07 04:40:03 +01:00
< p class = " submit " style = " margin:-15px 0 -5px 230px; " >< input type = " submit " name = " Submit " value = " <?php esc_attr_e('Update Options') ?> " /></ p >
2010-01-06 05:02:57 +01:00
</ div ></ div >
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
< div id = " blogedit_blogoptions " class = " postbox " >
2010-02-24 20:56:10 +01:00
< h3 class = 'hndle' >< span >< ? php printf ( __ ( 'Site options (%soptions)' ), $blog_prefix ); ?> </span></h3>
2010-01-06 05:02:57 +01:00
< div class = " inside " >
< table class = " form-table " >
< ? php
$editblog_default_role = 'subscriber' ;
2010-01-29 18:36:57 +01:00
foreach ( $options as $option ) {
if ( $option -> option_name == 'default_role' )
$editblog_default_role = $option -> option_value ;
2010-01-06 05:02:57 +01:00
$disabled = '' ;
2010-01-29 18:36:57 +01:00
if ( is_serialized ( $option -> option_value ) ) {
if ( is_serialized_string ( $option -> option_value ) ) {
2010-02-13 11:35:10 +01:00
$option -> option_value = esc_html ( maybe_unserialize ( $option -> option_value ), 'single' );
2010-01-06 05:02:57 +01:00
} else {
2010-01-29 18:36:57 +01:00
$option -> option_value = " SERIALIZED DATA " ;
2010-01-06 05:02:57 +01:00
$disabled = ' disabled="disabled"' ;
}
}
2010-01-29 18:36:57 +01:00
if ( stristr ( $option -> option_value , " \r " ) || stristr ( $option -> option_value , " \n " ) || stristr ( $option -> option_value , " \r \n " ) ) {
2010-01-06 05:02:57 +01:00
?>
< tr class = " form-field " >
2010-01-29 18:36:57 +01:00
< th scope = " row " >< ? php echo ucwords ( str_replace ( " _ " , " " , $option -> option_name ) ) ?> </th>
< td >< textarea rows = " 5 " cols = " 40 " name = " option[<?php echo esc_attr( $option->option_name ) ?>] " type = " text " id = " <?php echo esc_attr( $option->option_name ) ?> " < ? php echo $disabled ?> ><?php echo esc_html( $option->option_value ) ?></textarea></td>
2010-01-06 05:02:57 +01:00
</ tr >
< ? php
} else {
?>
< tr class = " form-field " >
2010-01-29 18:36:57 +01:00
< th scope = " row " >< ? php echo ucwords ( str_replace ( " _ " , " " , $option -> option_name ) ) ?> </th>
2010-02-09 19:03:46 +01:00
< ? php if ( $is_main_site && in_array ( $option -> option_name , array ( 'siteurl' , 'home' ) ) ) { ?>
< td >< ? php echo esc_attr ( $option -> option_value ) ?> </td>
< ? php } else { ?>
2010-01-29 18:36:57 +01:00
< td >< input name = " option[<?php echo esc_attr( $option->option_name ) ?>] " type = " text " id = " <?php echo esc_attr( $option->option_name ) ?> " value = " <?php echo esc_attr( $option->option_value ) ?> " size = " 40 " < ? php echo $disabled ?> /></td>
2010-02-09 19:03:46 +01:00
< ? php } ?>
2010-01-07 05:27:46 +01:00
</ tr >
2010-01-06 05:02:57 +01:00
< ? php
}
} // End foreach
?>
</ table >
2010-01-07 04:40:03 +01:00
< p class = " submit " style = " margin:-15px 0 -5px 230px; " >< input type = " submit " name = " Submit " value = " <?php esc_attr_e('Update Options') ?> " /></ p >
2010-01-06 05:02:57 +01:00
</ div ></ div >
</ div >
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
< div class = 'metabox-holder' style = 'width:49%;float:right;' >
< ? php
// Blog Themes
$themes = get_themes ();
$blog_allowed_themes = wpmu_get_blog_allowedthemes ( $id );
$allowed_themes = get_site_option ( " allowedthemes " );
2010-01-29 18:36:57 +01:00
if ( ! $allowed_themes )
2010-01-06 05:02:57 +01:00
$allowed_themes = array_keys ( $themes );
$out = '' ;
2010-01-29 18:36:57 +01:00
foreach ( $themes as $key => $theme ) {
2010-02-13 11:35:10 +01:00
$theme_key = esc_html ( $theme [ 'Stylesheet' ] );
2010-01-29 18:36:57 +01:00
if ( ! isset ( $allowed_themes [ $theme_key ] ) ) {
2010-01-06 05:02:57 +01:00
$checked = ( isset ( $blog_allowed_themes [ $theme_key ]) ) ? 'checked="checked"' : '' ;
$out .= ' < tr class = " form-field form-required " >
2010-01-29 18:36:57 +01:00
< th title = " ' . esc_attr( $theme["Description"] ).' " scope = " row " > ' . esc_html($key) . ' </ th >
< td >< input name = " theme[' . esc_attr( $theme_key ) . '] " type = " checkbox " style = " width:20px; " value = " on " '.$checked.' /> ' . __( ' Active ' ) . ' </ td >
2010-01-06 05:02:57 +01:00
</ tr > ' ;
}
}
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
if ( $out != '' ) {
?>
< div id = " blogedit_blogthemes " class = " postbox " >
2010-02-24 20:56:10 +01:00
< h3 class = 'hndle' >< span >< ? php esc_html_e ( 'Site Themes' ); ?> </span></h3>
2010-01-06 05:02:57 +01:00
< div class = " inside " >
< table class = " form-table " >
2010-01-29 18:36:57 +01:00
< tr >< th style = " font-weight:bold; " >< ? php esc_html_e ( 'Theme' ); ?> </th></tr>
2010-01-06 05:02:57 +01:00
< ? php echo $out ; ?>
</ table >
2010-01-07 04:40:03 +01:00
< p class = " submit " style = " margin:-15px 0 -5px 230px; " >< input type = " submit " name = " Submit " value = " <?php esc_attr_e('Update Options') ?> " /></ p >
2010-01-06 05:02:57 +01:00
</ div ></ div >
< ? php } ?>
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
< ? php
// Blog users
$blogusers = get_users_of_blog ( $id );
2010-01-18 21:34:48 +01:00
if ( is_array ( $blogusers ) ) {
2010-02-24 20:56:10 +01:00
echo '<div id="blogedit_blogusers" class="postbox"><h3 class="hndle"><span>' . __ ( 'Site Users' ) . '</span></h3><div class="inside">' ;
2010-01-06 05:02:57 +01:00
echo '<table class="form-table">' ;
echo " <tr><th> " . __ ( 'User' ) . " </th><th> " . __ ( 'Role' ) . " </th><th> " . __ ( 'Password' ) . " </th><th> " . __ ( 'Remove' ) . " </th></tr> " ;
reset ( $blogusers );
foreach ( ( array ) $blogusers as $key => $val ) {
2010-02-27 18:27:34 +01:00
if ( isset ( $val -> meta_value ) && ! $val -> meta_value )
continue ;
2010-01-06 05:02:57 +01:00
$t = @ unserialize ( $val -> meta_value );
2010-01-18 21:34:48 +01:00
if ( is_array ( $t ) ) {
2010-01-06 05:02:57 +01:00
reset ( $t );
$existing_role = key ( $t );
}
echo '<tr><td><a href="user-edit.php?user_id=' . $val -> user_id . '">' . $val -> user_login . '</a></td>' ;
2010-01-18 21:34:48 +01:00
if ( $val -> user_id != $current_user -> data -> ID ) {
2010-01-06 05:02:57 +01:00
?>
< td >
2010-01-07 05:27:46 +01:00
< select name = " role[<?php echo $val->user_id ?>] " id = " new_role " >< ? php
2010-01-29 18:36:57 +01:00
foreach ( $editblog_roles as $role => $role_assoc ){
2010-02-13 11:35:10 +01:00
$name = translate_user_role ( $role_assoc [ 'name' ]);
2010-01-06 05:02:57 +01:00
$selected = ( $role == $existing_role ) ? 'selected="selected"' : '' ;
2010-01-07 01:13:35 +01:00
echo " <option { $selected } value= \" " . esc_attr ( $role ) . " \" > { $name } </option> " ;
2010-01-06 05:02:57 +01:00
}
?>
</ select >
</ td >
< td >
2010-01-29 18:36:57 +01:00
< input type = 'text' name = 'user_password[<?php echo esc_attr($val->user_id) ?>]' />
2010-01-06 05:02:57 +01:00
</ td >
< ? php
2010-01-29 18:36:57 +01:00
echo '<td><input title="' . __ ( 'Click to remove user' ) . '" type="checkbox" name="blogusers[' . esc_attr ( $val -> user_id ) . ']" /></td>' ;
2010-01-06 05:02:57 +01:00
} else {
echo " <td><strong> " . __ ( 'N/A' ) . " </strong></td><td><strong> " . __ ( 'N/A' ) . " </strong></td><td><strong> " . __ ( 'N/A' ) . " </strong></td> " ;
}
echo '</tr>' ;
}
echo " </table> " ;
2010-01-07 04:40:03 +01:00
echo '<p class="submit" style="margin:-15px 0 -5px 230px;"><input type="submit" name="Submit" value="' . esc_attr__ ( 'Update Options' ) . '" /></p>' ;
2010-01-06 05:02:57 +01:00
echo " </div></div> " ;
}
?>
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
< div id = " blogedit_blogadduser " class = " postbox " >
< h3 class = 'hndle' >< span >< ? php _e ( 'Add a new user' ); ?> </span></h3>
< div class = " inside " >
< p style = " margin:10px 0 0px;padding:0px 10px 10px;border-bottom:1px solid #DFDFDF; " >< ? php _e ( 'Enter the username of an existing user and hit <em>Update Options</em> to add the user.' ) ?> </p>
< table class = " form-table " >
< tr >
< th scope = " row " >< ? php _e ( 'User Login:' ) ?> </th>
< td >< input type = " text " name = " newuser " id = " newuser " /></ td >
</ tr >
< tr >
< th scope = " row " >< ? php _e ( 'Role:' ) ?> </th>
< td >
< select name = " new_role " id = " new_role " >
2010-01-07 05:27:46 +01:00
< ? php
2010-01-06 05:02:57 +01:00
reset ( $editblog_roles );
2010-01-19 18:01:39 +01:00
foreach ( $editblog_roles as $role => $role_assoc ){
2010-02-26 01:41:23 +01:00
$name = translate_user_role ( $role_assoc [ 'name' ] );
2010-01-06 05:02:57 +01:00
$selected = ( $role == $editblog_default_role ) ? 'selected="selected"' : '' ;
2010-01-07 01:13:35 +01:00
echo " <option { $selected } value= \" " . esc_attr ( $role ) . " \" > { $name } </option> " ;
2010-01-06 05:02:57 +01:00
}
?>
</ select >
</ td >
</ tr >
</ table >
2010-01-07 04:40:03 +01:00
< p class = " submit " style = " margin:-15px 0 -5px 230px; " >< input type = " submit " name = " Submit " value = " <?php esc_attr_e('Update Options') ?> " /></ p >
2010-01-06 05:02:57 +01:00
</ div ></ div >
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
< div id = " blogedit_miscoptions " class = " postbox " >
2010-02-24 20:56:10 +01:00
< h3 class = 'hndle' >< span >< ? php _e ( 'Misc Site Actions' ) ?> </span></h3>
2010-01-06 05:02:57 +01:00
< div class = " inside " >
< table class = " form-table " >
< ? php do_action ( 'wpmueditblogaction' , $id ); ?>
</ table >
2010-01-07 04:40:03 +01:00
< p class = " submit " style = " margin:-15px 0 -5px 230px; " >< input type = " submit " name = " Submit " value = " <?php esc_attr_e('Update Options') ?> " /></ p >
2010-01-06 05:02:57 +01:00
</ div ></ div >
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
</ div >
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
< div style = " clear:both; " ></ div >
</ form >
</ div >
< ? php
break ;
// List blogs
2010-01-21 00:01:09 +01:00
case 'list' :
2010-01-06 05:02:57 +01:00
default :
2010-01-15 23:11:12 +01:00
$apage = ( isset ( $_GET [ 'apage' ] ) && intval ( $_GET [ 'apage' ] ) ) ? absint ( $_GET [ 'apage' ] ) : 1 ;
$num = ( isset ( $_GET [ 'num' ] ) && intval ( $_GET [ 'num' ] ) ) ? absint ( $_GET [ 'num' ] ) : 15 ;
2010-01-22 23:14:22 +01:00
$s = isset ( $_GET [ 's' ]) ? esc_attr ( trim ( $_GET [ 's' ] ) ) : '' ;
2010-01-07 09:02:52 +01:00
$like_s = like_escape ( $s );
2010-01-15 23:11:12 +01:00
2010-01-06 05:02:57 +01:00
$query = " SELECT * FROM { $wpdb -> blogs } WHERE site_id = ' { $wpdb -> siteid } ' " ;
2010-01-18 21:34:48 +01:00
if ( isset ( $_GET [ 'blog_name' ]) ) {
2010-01-07 09:02:52 +01:00
$query .= " AND ( { $wpdb -> blogs } .domain LIKE '% { $like_s } %' OR { $wpdb -> blogs } .path LIKE '% { $like_s } %' ) " ;
2010-01-18 21:34:48 +01:00
} elseif ( isset ( $_GET [ 'blog_id' ]) ) {
2010-01-07 08:58:04 +01:00
$query .= " AND blog_id = ' " . absint ( $_GET [ 'blog_id' ] ) . " ' " ;
2010-01-18 21:34:48 +01:00
} elseif ( isset ( $_GET [ 'blog_ip' ]) ) {
2010-01-06 05:02:57 +01:00
$query = " SELECT *
FROM { $wpdb -> blogs }, { $wpdb -> registration_log }
WHERE site_id = '{$wpdb->siteid}'
AND { $wpdb -> blogs } . blog_id = { $wpdb -> registration_log } . blog_id
2010-01-07 09:02:52 +01:00
AND { $wpdb -> registration_log } . IP LIKE ( '%{$like_s}%' ) " ;
2010-01-07 05:27:46 +01:00
}
2010-01-06 05:02:57 +01:00
2010-01-22 23:14:22 +01:00
$order_by = isset ( $_GET [ 'sortby' ] ) ? $_GET [ 'sortby' ] : 'id' ;
2010-01-06 05:02:57 +01:00
2010-01-22 23:14:22 +01:00
if ( $order_by == 'registered' ) {
2010-01-06 05:02:57 +01:00
$query .= ' ORDER BY registered ' ;
2010-01-22 23:14:22 +01:00
} elseif ( $order_by == 'lastupdated' ) {
2010-01-06 05:02:57 +01:00
$query .= ' ORDER BY last_updated ' ;
2010-01-22 23:14:22 +01:00
} elseif ( $order_by == 'blogname' ) {
2010-01-06 05:02:57 +01:00
$query .= ' ORDER BY domain ' ;
2010-01-22 23:14:22 +01:00
} else {
$order_by = 'id' ;
$query .= ' ORDER BY ' . $wpdb -> blogs . '.blog_id ' ;
2010-01-06 05:02:57 +01:00
}
2010-01-22 23:14:22 +01:00
$order = isset ( $_GET [ 'order' ]) ? $_GET [ 'order' ] : 'ASC' ;
$order = ( 'DESC' == $order ) ? 'DESC' : 'ASC' ;
$query .= $order ;
2010-01-06 05:02:57 +01:00
2010-01-22 23:14:22 +01:00
if ( ! empty ( $s ) )
2010-01-06 05:02:57 +01:00
$total = $wpdb -> get_var ( str_replace ( 'SELECT *' , 'SELECT COUNT(blog_id)' , $query ) );
2010-01-22 23:14:22 +01:00
else
2010-01-06 05:02:57 +01:00
$total = $wpdb -> get_var ( " SELECT COUNT(blog_id) FROM { $wpdb -> blogs } WHERE site_id = ' { $wpdb -> siteid } ' " );
$query .= " LIMIT " . intval ( ( $apage - 1 ) * $num ) . " , " . intval ( $num );
$blog_list = $wpdb -> get_results ( $query , ARRAY_A );
// Pagination
2010-01-22 23:14:22 +01:00
$url2 = " &order= " . $order . " &sortby= " . $order_by . " &s= " ;
if ( ! empty ( $_GET [ 'blog_ip' ]) )
2010-01-06 05:02:57 +01:00
$url2 .= " &ip_address= " . urlencode ( $s );
2010-01-22 23:14:22 +01:00
else
2010-01-06 05:02:57 +01:00
$url2 .= $s . " &ip_address= " . urlencode ( $s );
2010-01-22 23:14:22 +01:00
2010-01-06 05:02:57 +01:00
$blog_navigation = paginate_links ( array (
'base' => add_query_arg ( 'apage' , '%#%' ) . $url2 ,
'format' => '' ,
'total' => ceil ( $total / $num ),
'current' => $apage
));
?>
< div class = " wrap " style = " position:relative; " >
2010-01-20 23:35:21 +01:00
< ? php screen_icon (); ?>
2010-02-03 18:23:29 +01:00
< h2 >< ? php _e ( 'Sites' ) ?> </h2>
2010-01-06 05:02:57 +01:00
2010-01-14 20:42:55 +01:00
< form action = " ms-sites.php " method = " get " id = " ms-search " >
2010-01-06 05:02:57 +01:00
< input type = " hidden " name = " action " value = " blogs " />
2010-01-22 23:27:26 +01:00
< input type = " text " name = " s " value = " <?php echo( $s ); ?> " size = " 17 " />
2010-01-07 01:13:35 +01:00
< input type = " submit " class = " button " name = " blog_name " value = " <?php esc_attr_e('Search blogs by name') ?> " />
< input type = " submit " class = " button " name = " blog_id " value = " <?php esc_attr_e('by blog ID') ?> " />
< input type = " submit " class = " button " name = " blog_ip " value = " <?php esc_attr_e('by IP address') ?> " />
2010-01-06 05:02:57 +01:00
</ form >
2010-01-07 01:24:03 +01:00
< form id = " form-blog-list " action = " ms-edit.php?action=allblogs " method = " post " >
2010-01-06 05:02:57 +01:00
< div class = " tablenav " >
< ? php if ( $blog_navigation ) echo " <div class='tablenav-pages'> $blog_navigation </div> " ; ?>
< div class = " alignleft " >
2010-01-07 01:13:35 +01:00
< input type = " submit " value = " <?php esc_attr_e('Delete') ?> " name = " allblog_delete " class = " button-secondary delete " />
< input type = " submit " value = " <?php esc_attr_e('Mark as Spam') ?> " name = " allblog_spam " class = " button-secondary " />
< input type = " submit " value = " <?php esc_attr_e('Not Spam') ?> " name = " allblog_notspam " class = " button-secondary " />
2010-01-06 05:02:57 +01:00
< ? php wp_nonce_field ( 'allblogs' ); ?>
< br class = " clear " />
</ div >
</ div >
< br class = " clear " />
2010-01-18 21:34:48 +01:00
< ? php if ( isset ( $_GET [ 's' ]) && ! empty ( $_GET [ 's' ]) ) : ?>
2010-01-07 01:30:53 +01:00
< p >< a href = " ms-users.php?action=users&s=<?php echo urlencode( stripslashes( $s ) ) ?> " >< ? php _e ( 'Search Users:' ) ?> <strong><?php echo stripslashes( $s ); ?></strong></a></p>
2010-01-06 05:02:57 +01:00
< ? php endif ; ?>
< ? php
// define the columns to display, the syntax is 'internal name' => 'display name'
2010-01-08 22:25:01 +01:00
$blogname_columns = ( is_subdomain_install () ) ? __ ( 'Domain' ) : __ ( 'Path' );
2010-01-06 05:02:57 +01:00
$posts_columns = array (
'id' => __ ( 'ID' ),
'blogname' => $blogname_columns ,
'lastupdated' => __ ( 'Last Updated' ),
'registered' => __ ( 'Registered' ),
'users' => __ ( 'Users' )
);
2010-01-07 05:27:46 +01:00
2010-01-18 21:34:48 +01:00
if ( has_filter ( 'wpmublogsaction' ) )
2010-01-06 05:02:57 +01:00
$posts_columns [ 'plugins' ] = __ ( 'Actions' );
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
$posts_columns = apply_filters ( 'wpmu_blogs_columns' , $posts_columns );
$sortby_url = " s= " ;
2010-01-22 23:14:22 +01:00
if ( ! empty ( $_GET [ 'blog_ip' ]) )
2010-01-06 05:02:57 +01:00
$sortby_url .= " &ip_address= " . urlencode ( $s );
2010-01-22 23:14:22 +01:00
else
2010-01-06 05:02:57 +01:00
$sortby_url .= urlencode ( $s ) . " &ip_address= " . urlencode ( $s );
?>
< table width = " 100% " cellpadding = " 3 " cellspacing = " 3 " class = " widefat " >
< thead >
< tr >
< th scope = " col " class = " check-column " ></ th >
< ? php foreach ( $posts_columns as $column_id => $column_display_name ) {
2010-01-14 20:42:55 +01:00
$column_link = " <a href='ms-sites.php? { $sortby_url } &sortby= { $column_id } & " ;
2010-01-22 23:14:22 +01:00
if ( $order_by == $column_id ) {
$column_link .= ( $order_by == 'DESC' ) ? 'order=ASC&' : 'order=DESC&' ;
2010-01-06 05:02:57 +01:00
}
$column_link .= " apage= { $apage } '> { $column_display_name } </a> " ;
$col_url = ( $column_id == 'users' || $column_id == 'plugins' ) ? $column_display_name : $column_link ;
?>
< th scope = " col " >< ? php echo $col_url ?> </th>
< ? php } ?>
</ tr >
</ thead >
< tbody id = " the-list " >
< ? php
2010-01-19 18:01:39 +01:00
if ( $blog_list ) {
2010-02-04 20:03:08 +01:00
$status_list = array ( 'archived' => array ( 'site-archived' , __ ( 'Archived' ) ), 'spam' => array ( 'site-spammed' , __ ( 'Spam' ) ), 'deleted' => array ( 'site-deleted' , __ ( 'Deleted' ) ) );
2010-02-05 22:49:19 +01:00
$class = '' ;
2010-01-19 18:01:39 +01:00
foreach ( $blog_list as $blog ) {
2010-01-06 05:02:57 +01:00
$class = ( 'alternate' == $class ) ? '' : 'alternate' ;
reset ( $status_list );
2010-01-29 18:36:57 +01:00
$blog_states = array ();
2010-01-06 05:02:57 +01:00
foreach ( $status_list as $status => $col ) {
2010-01-18 21:34:48 +01:00
if ( get_blog_status ( $blog [ 'blog_id' ], $status ) == 1 ) {
2010-02-04 20:03:08 +01:00
$class = $col [ 0 ];
2010-01-29 18:36:57 +01:00
$blog_states [] = $col [ 1 ];
}
}
$blog_state = '' ;
if ( ! empty ( $blog_states ) ) {
$state_count = count ( $blog_states );
$i = 0 ;
$blog_state .= ' - ' ;
foreach ( $blog_states as $state ) {
++ $i ;
( $i == $state_count ) ? $sep = '' : $sep = ', ' ;
$blog_state .= " <span class='post-state'> $state $sep </span> " ;
2010-01-06 05:02:57 +01:00
}
}
2010-02-04 20:03:08 +01:00
echo " <tr class=' $class '> " ;
2010-01-06 05:02:57 +01:00
2010-01-08 22:25:01 +01:00
$blogname = ( is_subdomain_install () ) ? str_replace ( '.' . $current_site -> domain , '' , $blog [ 'domain' ]) : $blog [ 'path' ];
2010-01-19 18:01:39 +01:00
foreach ( $posts_columns as $column_name => $column_display_name ) {
2010-01-29 18:36:57 +01:00
switch ( $column_name ) {
2010-01-06 05:02:57 +01:00
case 'id' : ?>
< th scope = " row " class = " check-column " >
2010-01-07 01:13:35 +01:00
< input type = 'checkbox' id = 'blog_<?php echo $blog[' blog_id '] ?>' name = 'allblogs[]' value = '<?php echo esc_attr($blog[' blog_id ']) ?>' />
2010-01-06 05:02:57 +01:00
</ th >
< th scope = " row " >
< ? php echo $blog [ 'blog_id' ] ?>
</ th >
< ? php
break ;
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
case 'blogname' : ?>
< td valign = " top " >
2010-01-29 18:36:57 +01:00
< a href = " ms-sites.php?action=editblog&id=<?php echo $blog['blog_id'] ?> " class = " edit " >< ? php echo $blogname ; echo $blog_state ?> </a>
2010-01-06 05:02:57 +01:00
< br />
< ? php
2010-01-29 18:36:57 +01:00
$actions = array ();
$actions [] = '<a href="ms-sites.php?action=editblog&id=' . $blog [ 'blog_id' ] . '" class="edit">' . __ ( 'Edit' ) . '</a>' ;
2010-02-05 22:49:19 +01:00
$actions [] = " <a href=' " . get_admin_url ( $blog [ 'blog_id' ]) . " ' class='edit'> " . __ ( 'Backend' ) . '</a>' ;
2010-01-07 05:27:46 +01:00
2010-01-18 21:34:48 +01:00
if ( get_blog_status ( $blog [ 'blog_id' ], " deleted " ) == '1' )
2010-02-24 20:56:10 +01:00
$actions [] = '<a class="delete" href="ms-edit.php?action=confirm&action2=activateblog&ref=' . urlencode ( $_SERVER [ 'REQUEST_URI' ] ) . '&id=' . $blog [ 'blog_id' ] . '&msg=' . urlencode ( sprintf ( __ ( " You are about to activate the site %s " ), $blogname ) ) . '">' . __ ( 'Activate' ) . '</a>' ;
2010-01-06 05:02:57 +01:00
else
2010-02-24 20:56:10 +01:00
$actions [] = '<a class="delete" href="ms-edit.php?action=confirm&action2=deactivateblog&ref=' . urlencode ( $_SERVER [ 'REQUEST_URI' ] ) . '&id=' . $blog [ 'blog_id' ] . '&msg=' . urlencode ( sprintf ( __ ( " You are about to deactivate the site %s " ), $blogname ) ) . '">' . __ ( 'Deactivate' ) . '</a>' ;
2010-01-07 05:27:46 +01:00
2010-01-18 21:34:48 +01:00
if ( get_blog_status ( $blog [ 'blog_id' ], " archived " ) == '1' )
2010-02-24 20:56:10 +01:00
$actions [] = '<a class="delete" href="ms-edit.php?action=confirm&action2=unarchiveblog&id=' . $blog [ 'blog_id' ] . '&msg=' . urlencode ( sprintf ( __ ( " You are about to unarchive the site %s " ), $blogname ) ) . '">' . __ ( 'Unarchive' ) . '</a>' ;
2010-01-06 05:02:57 +01:00
else
2010-02-24 20:56:10 +01:00
$actions [] = '<a class="delete" href="ms-edit.php?action=confirm&action2=archiveblog&id=' . $blog [ 'blog_id' ] . '&msg=' . urlencode ( sprintf ( __ ( " You are about to archive the site %s " ), $blogname ) ) . '">' . __ ( 'Archive' ) . '</a>' ;
2010-01-07 05:27:46 +01:00
2010-01-18 21:34:48 +01:00
if ( get_blog_status ( $blog [ 'blog_id' ], " spam " ) == '1' )
2010-02-24 20:56:10 +01:00
$actions [] = '<a class="delete" href="ms-edit.php?action=confirm&action2=unspamblog&id=' . $blog [ 'blog_id' ] . '&msg=' . urlencode ( sprintf ( __ ( " You are about to unspam the site %s " ), $blogname ) ) . '">' . __ ( 'Not Spam' ) . '</a>' ;
2010-01-06 05:02:57 +01:00
else
2010-02-24 20:56:10 +01:00
$actions [] = '<a class="delete" href="ms-edit.php?action=confirm&action2=spamblog&id=' . $blog [ 'blog_id' ] . '&msg=' . urlencode ( sprintf ( __ ( " You are about to mark the site %s as spam " ), $blogname ) ) . '">' . __ ( " Spam " ) . '</a>' ;
2010-01-07 05:27:46 +01:00
2010-02-24 20:56:10 +01:00
$actions [] = '<a class="delete" href="ms-edit.php?action=confirm&action2=deleteblog&id=' . $blog [ 'blog_id' ] . '&msg=' . urlencode ( sprintf ( __ ( " You are about to delete the site %s " ), $blogname ) ) . '">' . __ ( " Delete " ) . '</a>' ;
2010-01-07 05:27:46 +01:00
2010-02-05 22:49:19 +01:00
$actions [] = " <a href=' " . get_home_url ( $blog [ 'blog_id' ]) . " ' rel='permalink'> " . __ ( 'Visit' ) . '</a>' ;
2010-01-06 05:02:57 +01:00
?>
2010-01-07 05:27:46 +01:00
2010-01-29 18:36:57 +01:00
< ? php if ( count ( $actions ) ) : ?>
2010-01-06 05:02:57 +01:00
< div class = " row-actions " >
2010-01-29 18:36:57 +01:00
< ? php echo implode ( ' | ' , $actions ); ?>
2010-01-06 05:02:57 +01:00
</ div >
< ? php endif ; ?>
</ td >
< ? php
break ;
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
case 'lastupdated' : ?>
< td valign = " top " >
< ? php echo ( $blog [ 'last_updated' ] == '0000-00-00 00:00:00' ) ? __ ( " Never " ) : mysql2date ( __ ( 'Y-m-d \<\b\r \/\> g:i:s a' ), $blog [ 'last_updated' ]); ?>
</ td >
< ? php
break ;
case 'registered' : ?>
< td valign = " top " >
< ? php echo mysql2date ( __ ( 'Y-m-d \<\b\r \/\> g:i:s a' ), $blog [ 'registered' ]); ?>
</ td >
< ? php
break ;
case 'users' : ?>
< td valign = " top " >
< ? php
2010-01-07 05:27:46 +01:00
$blogusers = get_users_of_blog ( $blog [ 'blog_id' ] );
2010-01-06 05:02:57 +01:00
if ( is_array ( $blogusers ) ) {
$blogusers_warning = '' ;
if ( count ( $blogusers ) > 5 ) {
$blogusers = array_slice ( $blogusers , 0 , 5 );
2010-02-05 22:49:19 +01:00
$blogusers_warning = __ ( 'Only showing first 5 users.' ) . ' <a href="' . get_admin_url ( $blog [ 'blog_id' ], 'users.php' ) . '">' . __ ( 'More' ) . '</a>' ;
2010-01-06 05:02:57 +01:00
}
2010-01-29 18:36:57 +01:00
foreach ( $blogusers as $key => $val )
2010-01-07 05:27:46 +01:00
echo '<a href="user-edit.php?user_id=' . $val -> user_id . '">' . $val -> user_login . '</a> (' . $val -> user_email . ')<br />' ;
2010-01-29 18:36:57 +01:00
if ( $blogusers_warning != '' )
2010-01-06 05:02:57 +01:00
echo '<strong>' . $blogusers_warning . '</strong><br />' ;
}
?>
</ td >
< ? php
break ;
case 'plugins' : ?>
2010-01-18 21:34:48 +01:00
< ? php if ( has_filter ( 'wpmublogsaction' ) ) { ?>
2010-01-06 05:02:57 +01:00
< td valign = " top " >
< ? php do_action ( " wpmublogsaction " , $blog [ 'blog_id' ] ); ?>
</ td >
< ? php } ?>
< ? php break ;
2010-01-07 05:27:46 +01:00
2010-01-06 05:02:57 +01:00
default : ?>
2010-01-18 21:34:48 +01:00
< ? php if ( has_filter ( 'manage_blogs_custom_column' ) ) { ?>
2010-01-06 05:02:57 +01:00
< td valign = " top " >
< ? php do_action ( 'manage_blogs_custom_column' , $column_name , $blog [ 'blog_id' ]); ?>
</ td >
< ? php } ?>
< ? php break ;
}
}
?>
</ tr >
< ? php
}
} else { ?>
2010-01-07 05:27:46 +01:00
< tr style = 'background-color: <?php echo $bgcolor; ?>' >
< td colspan = " 8 " >< ? php _e ( 'No blogs found.' ) ?> </td>
</ tr >
2010-01-06 05:02:57 +01:00
< ? php
} // end if ($blogs)
?>
</ tbody >
</ table >
</ form >
</ div >
< div class = " wrap " >
< a name = " form-add-blog " ></ a >
2010-02-03 18:23:29 +01:00
< h2 >< ? php _e ( 'Add Site' ) ?> </h2>
2010-01-07 01:24:03 +01:00
< form method = " post " action = " ms-edit.php?action=addblog " >
2010-01-06 05:02:57 +01:00
< ? php wp_nonce_field ( 'add-blog' ) ?>
< table class = " form-table " >
< tr class = " form-field form-required " >
2010-02-03 18:23:29 +01:00
< th style = " text-align:center; " scope = 'row' >< ? php _e ( 'Site Address' ) ?> </th>
2010-01-06 05:02:57 +01:00
< td >
2010-01-08 22:25:01 +01:00
< ? php if ( is_subdomain_install () ) { ?>
2010-01-07 05:27:46 +01:00
< input name = " blog[domain] " type = " text " title = " <?php _e('Domain') ?> " />.< ? php echo $current_site -> domain ; ?>
2010-01-06 05:02:57 +01:00
< ? php } else {
echo $current_site -> domain . $current_site -> path ?> <input name="blog[domain]" type="text" title="<?php _e('Domain') ?>"/>
2010-01-07 05:27:46 +01:00
< ? php }
2010-01-06 05:02:57 +01:00
echo " <p> " . __ ( 'Only the characters a-z and 0-9 recommended.' ) . " </p> " ;
?>
</ td >
</ tr >
< tr class = " form-field form-required " >
2010-02-03 18:23:29 +01:00
< th style = " text-align:center; " scope = 'row' >< ? php _e ( 'Site Title' ) ?> </th>
2010-01-06 05:02:57 +01:00
< td >< input name = " blog[title] " type = " text " size = " 20 " title = " <?php _e('Title') ?> " /></ td >
</ tr >
< tr class = " form-field form-required " >
< th style = " text-align:center; " scope = 'row' >< ? php _e ( 'Admin Email' ) ?> </th>
< td >< input name = " blog[email] " type = " text " size = " 20 " title = " <?php _e('Email') ?> " /></ td >
</ tr >
< tr class = " form-field " >
< td colspan = '2' >< ? php _e ( 'A new user will be created if the above email address is not in the database.' ) ?> <br /><?php _e('The username and password will be mailed to this email address.') ?></td>
</ tr >
</ table >
< p class = " submit " >
2010-02-03 18:23:29 +01:00
< input class = " button " type = " submit " name = " go " value = " <?php esc_attr_e('Add Site') ?> " /></ p >
2010-01-06 05:02:57 +01:00
</ form >
</ div >
< ? php
break ;
} // end switch( $action )
include ( 'admin-footer.php' ); ?>