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-03-06 19:31:10 +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-03-11 18:12:23 +01:00
$disabled = false ;
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-03-11 18:12:23 +01:00
$disabled = true ;
2010-01-06 05:02:57 +01:00
}
}
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>
2010-03-11 18:12:23 +01:00
< td >< textarea rows = " 5 " cols = " 40 " name = " option[<?php echo esc_attr( $option->option_name ) ?>] " id = " <?php echo esc_attr( $option->option_name ) ?> " < ? php disabled ( $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-03-11 18:12:23 +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 disabled ( $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 )
2010-03-17 17:27:25 +01:00
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 ); ?>
2010-03-06 19:31:10 +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 >
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-03-06 19:31:10 +01:00
$pagenum = isset ( $_GET [ 'paged' ] ) ? absint ( $_GET [ 'paged' ] ) : 0 ;
if ( empty ( $pagenum ) )
$pagenum = 1 ;
$per_page = ( int ) get_user_option ( 'ms_sites_per_page' );
if ( empty ( $per_page ) || $per_page < 1 )
$per_page = 15 ;
$per_page = apply_filters ( 'ms_sites_per_page' , $per_page );
$s = isset ( $_GET [ 's' ]) ? stripslashes ( trim ( $_GET [ 's' ] ) ) : '' ;
2010-03-17 17:27:25 +01:00
$like_s = esc_sql ( 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-03-06 19:31:10 +01:00
if ( isset ( $_GET [ 'blogstatus' ] ) ) {
if ( 'deleted' == $_GET [ 'blogstatus' ] ) {
$query .= " AND { $wpdb -> blogs } .deleted = '1' " ;
} elseif ( 'archived' == $_GET [ 'blogstatus' ] ) {
$query .= " AND { $wpdb -> blogs } .archived = '1' " ;
} elseif ( 'spam' == $_GET [ 'blogstatus' ] ) {
$query .= " AND { $wpdb -> blogs } .spam = '1' " ;
}
2010-01-07 05:27:46 +01:00
}
2010-01-06 05:02:57 +01:00
2010-03-06 19:31:10 +01:00
if ( isset ( $_GET [ 'searchaction' ] ) ) {
if ( 'name' == $_GET [ 'searchaction' ] ) {
$query .= " AND ( { $wpdb -> blogs } .domain LIKE '% { $like_s } %' OR { $wpdb -> blogs } .path LIKE '% { $like_s } %' ) " ;
} elseif ( 'id' == $_GET [ 'searchaction' ] ) {
$query .= " AND { $wpdb -> blogs } .blog_id = ' { $like_s } ' " ;
} elseif ( 'ip' == $_GET [ 'searchaction' ] ) {
$query = " SELECT *
FROM { $wpdb -> blogs }, { $wpdb -> registration_log }
WHERE site_id = '{$wpdb->siteid}'
AND { $wpdb -> blogs } . blog_id = { $wpdb -> registration_log } . blog_id
AND { $wpdb -> registration_log } . IP LIKE ( '%{$like_s}%' ) " ;
}
}
2010-01-06 05:02:57 +01:00
2010-03-06 19:31:10 +01:00
$order_by = isset ( $_GET [ 'sortby' ] ) ? $_GET [ 'sortby' ] : 'id' ;
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' ;
2010-03-06 19:31:10 +01:00
$query .= " ORDER BY { $wpdb -> blogs } .blog_id " ;
2010-01-06 05:02:57 +01:00
}
2010-03-06 19:31:10 +01:00
$order = ( isset ( $_GET [ 'order' ] ) && 'DESC' == $_GET [ 'order' ] ) ? " DESC " : " ASC " ;
2010-01-22 23:14:22 +01:00
$query .= $order ;
2010-01-06 05:02:57 +01:00
2010-03-06 19:31:10 +01:00
$total = $wpdb -> get_var ( str_replace ( 'SELECT *' , 'SELECT COUNT(blog_id)' , $query ) );
2010-01-06 05:02:57 +01:00
2010-03-06 19:31:10 +01:00
$query .= " LIMIT " . intval ( ( $pagenum - 1 ) * $per_page ) . " , " . intval ( $per_page );
2010-01-06 05:02:57 +01:00
$blog_list = $wpdb -> get_results ( $query , ARRAY_A );
2010-03-06 19:31:10 +01:00
$num_pages = ceil ( $total / $per_page );
$page_links = paginate_links ( array (
'base' => add_query_arg ( 'paged' , '%#%' ),
2010-01-06 05:02:57 +01:00
'format' => '' ,
2010-03-06 19:31:10 +01:00
'prev_text' => __ ( '«' ),
'next_text' => __ ( '»' ),
'total' => $num_pages ,
'current' => $pagenum
2010-01-06 05:02:57 +01:00
));
2010-03-06 19:31:10 +01:00
if ( empty ( $_GET [ 'mode' ]) )
$mode = 'list' ;
else
$mode = esc_attr ( $_GET [ 'mode' ] );
// for subsubsub and $blog_list
$status_list = array ( 'archived' => array ( 'site-archived' , __ ( 'Archived' ) ), 'spam' => array ( 'site-spammed' , __ ( 'Spam' ) ), 'deleted' => array ( 'site-deleted' , __ ( 'Deleted' ) ) );
2010-01-06 05:02:57 +01:00
?>
2010-03-06 19:31:10 +01:00
< div class = " wrap " >
2010-01-20 23:35:21 +01:00
< ? php screen_icon (); ?>
2010-03-06 19:31:10 +01:00
< h2 >< ? php _e ( 'Sites' ) ?>
< a href = " #form-add-site " class = " button add-new-h2 " >< ? php echo esc_html_x ( 'Add New' , 'sites' ); ?> </a>
< ? php
if ( isset ( $_GET [ 's' ]) && $_GET [ 's' ] )
printf ( '<span class="subtitle">' . __ ( 'Search results for “%s”' ) . '</span>' , esc_html ( $s ) );
?>
</ h2 >
< ul class = " subsubsub " >
< ? php
$status_links = array ();
$status_class = '' ;
$count = get_blog_count ();
2010-03-17 17:27:25 +01:00
2010-03-06 19:31:10 +01:00
if ( empty ( $_GET [ 'blogstatus' ]) || $_GET [ 'blogstatus' ] == 'all' )
$status_class = ' class="current"' ;
2010-03-11 19:02:40 +01:00
$status_links [] = " <li><a href='ms-sites.php?blogstatus=all' $status_class > " . sprintf ( _nx ( 'All <span class="count">(%s)</span>' , 'All <span class="count">(%s)</span>' , $count , 'sites' ), number_format_i18n ( $count ) ) . '</a>' ;
2010-03-06 19:31:10 +01:00
foreach ( $status_list as $status => $col ) {
$status_class = '' ;
if ( empty ( $count -> $status ) )
continue ;
if ( isset ( $_GET [ 'blogstatus' ] ) && ( $_GET [ 'blogstatus' ] == $status ) )
$status_class = ' class="current"' ;
$status_links [] = " <li><a href='ms-sites.php?blogstatus= $status ' $status_class > " . sprintf ( $col [ 1 ] . ' <span class="count">(%s)</span>' , number_format_i18n ( $count -> $status ) ) . '</a>' ;
};
echo implode ( " |</li> \n " , $status_links ) . '</li>' ;
unset ( $status_links );
?>
</ ul >
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-03-06 19:31:10 +01:00
< p class = " search-box " >
< input type = " hidden " name = " action " value = " blogs " />
< input type = " text " name = " s " value = " <?php esc_attr_e( $s ); ?> " />
< input type = " submit " class = " button " value = " <?php esc_attr_e('Search Site by') ?> " />
< select name = " searchaction " >
< option value = " name " selected = " selected " >< ? php _e ( 'Name' ); ?> </option>
< option value = " id " >< ? php _e ( 'ID' ); ?> </option>
< option value = " ip " >< ? php _e ( 'IP address' ); ?> </option>
</ select >
</ p >
2010-01-06 05:02:57 +01:00
</ form >
2010-03-06 19:31:10 +01:00
< form id = " form-site-list " action = " ms-edit.php?action=allblogs " method = " post " >
< input type = " hidden " name = " mode " value = " <?php echo esc_attr( $mode ); ?> " />
2010-01-06 05:02:57 +01:00
< div class = " tablenav " >
2010-03-06 19:31:10 +01:00
< div class = " alignleft actions " >
< select name = " action " >
< option value = " -1 " selected = " selected " >< ? php _e ( 'Bulk Actions' ); ?> </option>
< option value = " delete " >< ? php _e ( 'Delete' ); ?> </option>
< option value = " spam " >< ? php _e ( 'Mark as Spam' ); ?> </option>
< option value = " notspam " >< ? php _e ( 'Not Spam' ); ?> </option>
</ select >
< input type = " submit " value = " <?php esc_attr_e('Apply'); ?> " name = " doaction " id = " doaction " class = " button-secondary action " />
< ? php wp_nonce_field ( 'bulk-sites' ); ?>
</ div >
< ? php if ( $page_links ) { ?>
< div class = " tablenav-pages " >
< ? php $page_links_text = sprintf ( '<span class="displaying-num">' . __ ( 'Displaying %s–%s of %s' ) . '</span>%s' ,
number_format_i18n ( ( $pagenum - 1 ) * $per_page + 1 ),
number_format_i18n ( min ( $pagenum * $per_page , $num_pages ) ),
2010-03-17 17:27:25 +01:00
number_format_i18n ( $num_pages ),
2010-03-06 19:31:10 +01:00
$page_links
); echo $page_links_text ; ?>
</ div >
< ? php } ?>
2010-03-17 17:27:25 +01:00
2010-03-06 19:31:10 +01:00
< div class = " view-switch " >
< a href = " <?php echo esc_url(add_query_arg('mode', 'list', $_SERVER['REQUEST_URI'] )) ?> " >< img < ? php if ( 'list' == $mode ) echo 'class="current"' ; ?> id="view-switch-list" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" width="20" height="20" title="<?php _e('List View') ?>" alt="<?php _e('List View') ?>" /></a>
< a href = " <?php echo esc_url(add_query_arg('mode', 'excerpt', $_SERVER['REQUEST_URI'] )) ?> " >< img < ? php if ( 'excerpt' == $mode ) echo 'class="current"' ; ?> id="view-switch-excerpt" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" width="20" height="20" title="<?php _e('Excerpt View') ?>" alt="<?php _e('Excerpt View') ?>" /></a>
2010-01-06 05:02:57 +01:00
</ div >
2010-03-06 19:31:10 +01:00
</ div >
2010-01-06 05:02:57 +01:00
2010-03-17 17:27:25 +01:00
< div class = " clear " ></ div >
2010-01-06 05:02:57 +01:00
< ? 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 );
?>
2010-03-06 19:31:10 +01:00
< table class = " widefat " >
2010-01-06 05:02:57 +01:00
< thead >
< tr >
2010-03-06 19:31:10 +01:00
< th style = " " class = " manage-column column-cb check-column " id = " cb " scope = " col " >
< input type = " checkbox " />
</ th >
< ? php
foreach ( $posts_columns as $column_id => $column_display_name ) {
$column_link = " <a href=' " ;
$order2 = '' ;
if ( $order_by == $column_id )
$order2 = ( $order == 'DESC' ) ? 'ASC' : 'DESC' ;
$column_link .= esc_url ( add_query_arg ( array ( 'order' => $order2 , 'paged' => $pagenum , 'sortby' => $column_id ), $_SERVER [ 'REQUEST_URI' ] ) );
$column_link .= " '> { $column_display_name } </a> " ;
2010-01-06 05:02:57 +01:00
$col_url = ( $column_id == 'users' || $column_id == 'plugins' ) ? $column_display_name : $column_link ;
2010-03-06 19:31:10 +01:00
?>
< th scope = " col " >
< ? php echo $col_url ?>
</ th >
2010-01-06 05:02:57 +01:00
< ? php } ?>
</ tr >
</ thead >
2010-03-06 19:31:10 +01:00
< tfoot >
< tr >
< th class = " manage-column column-cb check-column " id = " cb " scope = " col " >
< input type = " checkbox " />
</ th >
< ? php foreach ( $posts_columns as $column_id => $column_display_name ) {
$column_link = " <a href=' " ;
$order2 = '' ;
if ( $order_by == $column_id )
$order2 = ( $order == 'DESC' ) ? 'ASC' : 'DESC' ;
2010-03-17 17:27:25 +01:00
2010-03-06 19:31:10 +01:00
$column_link .= esc_url ( add_query_arg ( array ( 'order' => $order2 , 'paged' => $pagenum , 'sortby' => $column_id ), remove_query_arg ( array ( 'action' , 'updated' ), $_SERVER [ 'REQUEST_URI' ] ) ) );
$column_link .= " '> { $column_display_name } </a> " ;
$col_url = ( $column_id == 'users' || $column_id == 'plugins' ) ? $column_display_name : $column_link ;
?>
< th scope = " col " >
< ? php echo $col_url ?>
2010-03-17 17:27:25 +01:00
</ th >
2010-03-06 19:31:10 +01:00
< ? php } ?>
</ tr >
</ tfoot >
2010-01-06 05:02:57 +01:00
< tbody id = " the-list " >
< ? php
2010-01-19 18:01:39 +01:00
if ( $blog_list ) {
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 >
2010-03-11 19:16:26 +01:00
< th valign = " top " scope = " row " >
2010-01-06 05:02:57 +01:00
< ? 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' : ?>
2010-03-06 19:31:10 +01:00
< td class = " column-title " >
2010-03-11 19:16:26 +01:00
< a href = " ms-sites.php?action=editblog&id=<?php echo $blog['blog_id'] ?> " class = " edit " >< ? php echo $blogname . $blog_state ; ?> </a>
2010-01-06 05:02:57 +01:00
< ? php
2010-03-06 19:31:10 +01:00
if ( 'list' != $mode )
2010-03-11 19:16:26 +01:00
echo '<p>' . sprintf ( _x ( '%1$s – <em>%2$s' , '%1$s: site name. %2$s: site tagline.' ), get_blog_option ( $blog [ 'blog_id' ], 'blogname' ), get_blog_option ( $blog [ 'blog_id' ], 'blogdescription ' ) ) . '</em></p>' ;
2010-03-06 19:31:10 +01:00
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 " >
2010-03-06 19:31:10 +01:00
< ? php
if ( 'list' == $mode )
$date = 'Y/m/d' ;
else
$date = 'Y/m/d \<\b\r \/\> g:i:s a' ;
echo ( $blog [ 'last_updated' ] == '0000-00-00 00:00:00' ) ? __ ( " Never " ) : mysql2date ( __ ( $date ), $blog [ 'last_updated' ] ); ?>
2010-03-17 17:27:25 +01:00
</ td >
2010-01-06 05:02:57 +01:00
< ? php
break ;
2010-03-06 19:31:10 +01:00
case 'registered' : ?>
2010-01-06 05:02:57 +01:00
< td valign = " top " >
2010-03-06 19:31:10 +01:00
< ? php echo mysql2date ( __ ( $date ), $blog [ 'registered' ] ); ?>
2010-01-06 05:02:57 +01:00
</ td >
2010-03-06 19:31:10 +01:00
< ? php
break ;
2010-01-06 05:02:57 +01:00
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-03-06 19:31:10 +01:00
foreach ( $blogusers as $key => $val ) {
echo '<a href="user-edit.php?user_id=' . $val -> user_id . '">' . $val -> user_login . '</a> ' ;
if ( 'list' != $mode )
echo '(' . $val -> user_email . ')' ;
echo '<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-03-06 19:31:10 +01:00
< tr >
2010-01-07 05:27:46 +01:00
< td colspan = " 8 " >< ? php _e ( 'No blogs found.' ) ?> </td>
</ tr >
2010-01-06 05:02:57 +01:00
< ? php
} // end if ($blogs)
?>
</ tbody >
</ table >
2010-03-06 19:31:10 +01:00
< div class = " tablenav " >
< ? php
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links_text </div> " ;
?>
< div class = " alignleft actions " >
< select name = " action2 " >
< option value = " -1 " selected = " selected " >< ? php _e ( 'Bulk Actions' ); ?> </option>
< option value = " delete " >< ? php _e ( 'Delete' ); ?> </option>
< option value = " spam " >< ? php _e ( 'Mark as Spam' ); ?> </option>
< option value = " notspam " >< ? php _e ( 'Not Spam' ); ?> </option>
</ select >
< input type = " submit " value = " <?php esc_attr_e('Apply'); ?> " name = " doaction2 " id = " doaction2 " class = " button-secondary action " />
</ div >
< br class = " clear " />
</ div >
2010-01-06 05:02:57 +01:00
</ form >
</ div >
< div class = " wrap " >
2010-03-06 19:31:10 +01:00
< a name = " form-add-site " ></ 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-03-06 19:31:10 +01:00
< th 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-03-06 19:31:10 +01:00
< input name = " blog[domain] " type = " text " class = " regular-text " title = " <?php _e('Domain') ?> " />.< ? php echo $current_site -> domain ; ?>
2010-01-06 05:02:57 +01:00
< ? php } else {
2010-03-06 19:31:10 +01:00
echo $current_site -> domain . $current_site -> path ?> <input name="blog[domain]" class="regular-text" 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-03-06 19:31:10 +01:00
< th scope = 'row' >< ? php _e ( 'Site Title' ) ?> </th>
< td >< input name = " blog[title] " type = " text " class = " regular-text " title = " <?php _e('Title') ?> " /></ td >
2010-01-06 05:02:57 +01:00
</ tr >
< tr class = " form-field form-required " >
2010-03-06 19:31:10 +01:00
< th scope = 'row' >< ? php _e ( 'Admin Email' ) ?> </th>
< td >< input name = " blog[email] " type = " text " class = " regular-text " title = " <?php _e('Email') ?> " /></ td >
2010-01-06 05:02:57 +01:00
</ 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' ); ?>