]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/my-sites.php
WordPress 4.6.1-scripts
[autoinstalls/wordpress.git] / wp-admin / my-sites.php
1 <?php
2 /**
3  * My Sites dashboard.
4  *
5  * @package WordPress
6  * @subpackage Multisite
7  * @since 3.0.0
8  */
9
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 if ( !is_multisite() )
13         wp_die( __( 'Multisite support is not enabled.' ) );
14
15 if ( ! current_user_can('read') )
16         wp_die( __( 'Sorry, you are not allowed to access this page.' ) );
17
18 $action = isset( $_POST['action'] ) ? $_POST['action'] : 'splash';
19
20 $blogs = get_blogs_of_user( $current_user->ID );
21
22 $updated = false;
23 if ( 'updateblogsettings' == $action && isset( $_POST['primary_blog'] ) ) {
24         check_admin_referer( 'update-my-sites' );
25
26         $blog = get_blog_details( (int) $_POST['primary_blog'] );
27         if ( $blog && isset( $blog->domain ) ) {
28                 update_user_option( $current_user->ID, 'primary_blog', (int) $_POST['primary_blog'], true );
29                 $updated = true;
30         } else {
31                 wp_die( __( 'The primary site you chose does not exist.' ) );
32         }
33 }
34
35 $title = __( 'My Sites' );
36 $parent_file = 'index.php';
37
38 get_current_screen()->add_help_tab( array(
39         'id'      => 'overview',
40         'title'   => __('Overview'),
41         'content' =>
42                 '<p>' . __('This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.') . '</p>' .
43                 '<p>' . __('Up until WordPress version 3.0, what is now called a Multisite Network had to be installed separately as WordPress MU (multi-user).') . '</p>'
44 ) );
45
46 get_current_screen()->set_help_sidebar(
47         '<p><strong>' . __('For more information:') . '</strong></p>' .
48         '<p>' . __('<a href="https://codex.wordpress.org/Dashboard_My_Sites_Screen" target="_blank">Documentation on My Sites</a>') . '</p>' .
49         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
50 );
51
52 require_once( ABSPATH . 'wp-admin/admin-header.php' );
53
54 if ( $updated ) { ?>
55         <div id="message" class="updated notice is-dismissible"><p><strong><?php _e( 'Settings saved.' ); ?></strong></p></div>
56 <?php } ?>
57
58 <div class="wrap">
59 <h1><?php
60 echo esc_html( $title );
61
62 if ( in_array( get_site_option( 'registration' ), array( 'all', 'blog' ) ) ) {
63         /** This filter is documented in wp-login.php */
64         $sign_up_url = apply_filters( 'wp_signup_location', network_site_url( 'wp-signup.php' ) );
65         printf( ' <a href="%s" class="page-title-action">%s</a>', esc_url( $sign_up_url ), esc_html_x( 'Add New', 'site' ) );
66 }
67 ?></h1>
68
69 <?php
70 if ( empty( $blogs ) ) :
71         echo '<p>';
72         _e( 'You must be a member of at least one site to use this page.' );
73         echo '</p>';
74 else :
75 ?>
76 <form id="myblogs" method="post">
77         <?php
78         choose_primary_blog();
79         /**
80          * Fires before the sites list on the My Sites screen.
81          *
82          * @since 3.0.0
83          */
84         do_action( 'myblogs_allblogs_options' );
85         ?>
86         <br clear="all" />
87         <ul class="my-sites striped">
88         <?php
89         /**
90          * Enable the Global Settings section on the My Sites screen.
91          *
92          * By default, the Global Settings section is hidden. Passing a non-empty
93          * string to this filter will enable the section, and allow new settings
94          * to be added, either globally or for specific sites.
95          *
96          * @since MU
97          *
98          * @param string $settings_html The settings HTML markup. Default empty.
99          * @param object $context       Context of the setting (global or site-specific). Default 'global'.
100          */
101         $settings_html = apply_filters( 'myblogs_options', '', 'global' );
102         if ( $settings_html != '' ) {
103                 echo '<h3>' . __( 'Global Settings' ) . '</h3>';
104                 echo $settings_html;
105         }
106         reset( $blogs );
107
108         foreach ( $blogs as $user_blog ) {
109                 echo "<li>";
110                 echo "<h3>{$user_blog->blogname}</h3>";
111                 /**
112                  * Filters the row links displayed for each site on the My Sites screen.
113                  *
114                  * @since MU
115                  *
116                  * @param string $string    The HTML site link markup.
117                  * @param object $user_blog An object containing the site data.
118                  */
119                 echo "<p class='my-sites-actions'>" . 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>";
120                 /** This filter is documented in wp-admin/my-sites.php */
121                 echo apply_filters( 'myblogs_options', '', $user_blog );
122                 echo "</li>";
123         }?>
124         </ul>
125         <?php
126         if ( count( $blogs ) > 1 || has_action( 'myblogs_allblogs_options' ) || has_filter( 'myblogs_options' ) ) {
127                 ?><input type="hidden" name="action" value="updateblogsettings" /><?php
128                 wp_nonce_field( 'update-my-sites' );
129                 submit_button();
130         }
131         ?>
132         </form>
133 <?php endif; ?>
134         </div>
135 <?php
136 include( ABSPATH . 'wp-admin/admin-footer.php' );