]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/network/sites.php
WordPress 4.7-scripts
[autoinstalls/wordpress.git] / wp-admin / network / sites.php
1 <?php
2 /**
3  * Multisite sites administration panel.
4  *
5  * @package WordPress
6  * @subpackage Multisite
7  * @since 3.0.0
8  */
9
10 /** Load WordPress Administration Bootstrap */
11 require_once( dirname( __FILE__ ) . '/admin.php' );
12
13 if ( ! current_user_can( 'manage_sites' ) )
14         wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 );
15
16 $wp_list_table = _get_list_table( 'WP_MS_Sites_List_Table' );
17 $pagenum = $wp_list_table->get_pagenum();
18
19 $title = __( 'Sites' );
20 $parent_file = 'sites.php';
21
22 add_screen_option( 'per_page' );
23
24 get_current_screen()->add_help_tab( array(
25         'id'      => 'overview',
26         'title'   => __('Overview'),
27         'content' =>
28                 '<p>' . __('Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.') . '</p>' .
29                 '<p>' . __('This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.') . '</p>' .
30                 '<p>' . __('Hovering over each site reveals seven options (three for the primary site):') . '</p>' .
31                 '<ul><li>' . __('An Edit link to a separate Edit Site screen.') . '</li>' .
32                 '<li>' . __('Dashboard leads to the Dashboard for that site.') . '</li>' .
33                 '<li>' . __('Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.') . '</li>' .
34                 '<li>' . __('Delete which is a permanent action after the confirmation screens.') . '</li>' .
35                 '<li>' . __('Visit to go to the front-end site live.') . '</li></ul>' .
36                 '<p>' . __('The site ID is used internally, and is not shown on the front end of the site or to users/viewers.') . '</p>' .
37                 '<p>' . __('Clicking on bold headings can re-sort this table.') . '</p>'
38 ) );
39
40 get_current_screen()->set_help_sidebar(
41         '<p><strong>' . __('For more information:') . '</strong></p>' .
42         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen">Documentation on Site Management</a>') . '</p>' .
43         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>') . '</p>'
44 );
45
46 get_current_screen()->set_screen_reader_content( array(
47         'heading_pagination' => __( 'Sites list navigation' ),
48         'heading_list'       => __( 'Sites list' ),
49 ) );
50
51 $id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
52
53 if ( isset( $_GET['action'] ) ) {
54         /** This action is documented in wp-admin/network/edit.php */
55         do_action( 'wpmuadminedit' );
56
57         // A list of valid actions and their associated messaging for confirmation output.
58         $manage_actions = array(
59                 'activateblog'   => __( 'You are about to activate the site %s.' ),
60                 'deactivateblog' => __( 'You are about to deactivate the site %s.' ),
61                 'unarchiveblog'  => __( 'You are about to unarchive the site %s.' ),
62                 'archiveblog'    => __( 'You are about to archive the site %s.' ),
63                 'unspamblog'     => __( 'You are about to unspam the site %s.' ),
64                 'spamblog'       => __( 'You are about to mark the site %s as spam.' ),
65                 'deleteblog'     => __( 'You are about to delete the site %s.' ),
66                 'unmatureblog'   => __( 'You are about to mark the site %s as mature.' ),
67                 'matureblog'     => __( 'You are about to mark the site %s as not mature.' ),
68         );
69
70         if ( 'confirm' === $_GET['action'] ) {
71                 // The action2 parameter contains the action being taken on the site.
72                 $site_action = $_GET['action2'];
73
74                 if ( ! array_key_exists( $site_action, $manage_actions ) ) {
75                         wp_die( __( 'The requested action is not valid.' ) );
76                 }
77
78                 // The mature/unmature UI exists only as external code. Check the "confirm" nonce for backward compatibility.
79                 if ( 'matureblog' === $site_action || 'unmatureblog' === $site_action ) {
80                         check_admin_referer( 'confirm' );
81                 } else {
82                         check_admin_referer( $site_action . '_' . $id );
83                 }
84
85                 if ( ! headers_sent() ) {
86                         nocache_headers();
87                         header( 'Content-Type: text/html; charset=utf-8' );
88                 }
89
90                 if ( get_network()->site_id == $id ) {
91                         wp_die( __( 'Sorry, you are not allowed to change the current site.' ) );
92                 }
93
94                 $site_details = get_site( $id );
95                 $site_address = untrailingslashit( $site_details->domain . $site_details->path );
96
97                 require_once( ABSPATH . 'wp-admin/admin-header.php' );
98                 ?>
99                         <div class="wrap">
100                                 <h1><?php _e( 'Confirm your action' ); ?></h1>
101                                 <form action="sites.php?action=<?php echo esc_attr( $site_action ); ?>" method="post">
102                                         <input type="hidden" name="action" value="<?php echo esc_attr( $site_action ); ?>" />
103                                         <input type="hidden" name="id" value="<?php echo esc_attr( $id ); ?>" />
104                                         <input type="hidden" name="_wp_http_referer" value="<?php echo esc_attr( wp_get_referer() ); ?>" />
105                                         <?php wp_nonce_field( $site_action . '_' . $id, '_wpnonce', false ); ?>
106                                         <p><?php echo sprintf( $manage_actions[ $site_action ], $site_address ); ?></p>
107                                         <?php submit_button( __( 'Confirm' ), 'primary' ); ?>
108                                 </form>
109                         </div>
110                 <?php
111                 require_once( ABSPATH . 'wp-admin/admin-footer.php' );
112                 exit();
113         } elseif ( array_key_exists( $_GET['action'], $manage_actions ) ) {
114                 $action = $_GET['action'];
115                 check_admin_referer( $action . '_' . $id );
116         } elseif ( 'allblogs' === $_GET['action'] ) {
117                 check_admin_referer( 'bulk-sites' );
118         }
119
120         $updated_action = '';
121
122         switch ( $_GET['action'] ) {
123
124                 case 'deleteblog':
125                         if ( ! current_user_can( 'delete_sites' ) )
126                                 wp_die( __( 'Sorry, you are not allowed to access this page.' ), '', array( 'response' => 403 ) );
127
128                         $updated_action = 'not_deleted';
129                         if ( $id != '0' && $id != get_network()->site_id && current_user_can( 'delete_site', $id ) ) {
130                                 wpmu_delete_blog( $id, true );
131                                 $updated_action = 'delete';
132                         }
133                 break;
134
135                 case 'allblogs':
136                         if ( ( isset( $_POST['action'] ) || isset( $_POST['action2'] ) ) && isset( $_POST['allblogs'] ) ) {
137                                 $doaction = $_POST['action'] != -1 ? $_POST['action'] : $_POST['action2'];
138
139                                 foreach ( (array) $_POST['allblogs'] as $key => $val ) {
140                                         if ( $val != '0' && $val != get_network()->site_id ) {
141                                                 switch ( $doaction ) {
142                                                         case 'delete':
143                                                                 if ( ! current_user_can( 'delete_site', $val ) )
144                                                                         wp_die( __( 'Sorry, you are not allowed to delete the site.' ) );
145
146                                                                 $updated_action = 'all_delete';
147                                                                 wpmu_delete_blog( $val, true );
148                                                         break;
149
150                                                         case 'spam':
151                                                         case 'notspam':
152                                                                 $updated_action = ( 'spam' === $doaction ) ? 'all_spam' : 'all_notspam';
153                                                                 update_blog_status( $val, 'spam', ( 'spam' === $doaction ) ? '1' : '0' );
154                                                         break;
155                                                 }
156                                         } else {
157                                                 wp_die( __( 'Sorry, you are not allowed to change the current site.' ) );
158                                         }
159                                 }
160                                 if ( ! in_array( $doaction, array( 'delete', 'spam', 'notspam' ), true ) ) {
161                                         $redirect_to = wp_get_referer();
162                                         $blogs = (array) $_POST['allblogs'];
163                                         /** This action is documented in wp-admin/network/site-themes.php */
164                                         $redirect_to = apply_filters( 'handle_network_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $blogs, $id );
165                                         wp_safe_redirect( $redirect_to );
166                                         exit();
167                                 }
168                         } else {
169                                 $location = network_admin_url( 'sites.php' );
170                                 if ( ! empty( $_REQUEST['paged'] ) ) {
171                                         $location = add_query_arg( 'paged', (int) $_REQUEST['paged'], $location );
172                                 }
173                                 wp_redirect( $location );
174                                 exit();
175                         }
176                 break;
177
178                 case 'archiveblog':
179                 case 'unarchiveblog':
180                         update_blog_status( $id, 'archived', ( 'archiveblog' === $_GET['action'] ) ? '1' : '0' );
181                 break;
182
183                 case 'activateblog':
184                         update_blog_status( $id, 'deleted', '0' );
185
186                         /**
187                          * Fires after a network site is activated.
188                          *
189                          * @since MU
190                          *
191                          * @param string $id The ID of the activated site.
192                          */
193                         do_action( 'activate_blog', $id );
194                 break;
195
196                 case 'deactivateblog':
197                         /**
198                          * Fires before a network site is deactivated.
199                          *
200                          * @since MU
201                          *
202                          * @param string $id The ID of the site being deactivated.
203                          */
204                         do_action( 'deactivate_blog', $id );
205                         update_blog_status( $id, 'deleted', '1' );
206                 break;
207
208                 case 'unspamblog':
209                 case 'spamblog':
210                         update_blog_status( $id, 'spam', ( 'spamblog' === $_GET['action'] ) ? '1' : '0' );
211                 break;
212
213                 case 'unmatureblog':
214                 case 'matureblog':
215                         update_blog_status( $id, 'mature', ( 'matureblog' === $_GET['action'] ) ? '1' : '0' );
216                 break;
217         }
218
219         if ( empty( $updated_action ) && array_key_exists( $_GET['action'], $manage_actions ) ) {
220                 $updated_action = $_GET['action'];
221         }
222
223         if ( ! empty( $updated_action ) ) {
224                 wp_safe_redirect( add_query_arg( array( 'updated' => $updated_action ), wp_get_referer() ) );
225                 exit();
226         }
227 }
228
229 $msg = '';
230 if ( isset( $_GET['updated'] ) ) {
231         switch ( $_GET['updated'] ) {
232                 case 'all_notspam':
233                         $msg = __( 'Sites removed from spam.' );
234                 break;
235                 case 'all_spam':
236                         $msg = __( 'Sites marked as spam.' );
237                 break;
238                 case 'all_delete':
239                         $msg = __( 'Sites deleted.' );
240                 break;
241                 case 'delete':
242                         $msg = __( 'Site deleted.' );
243                 break;
244                 case 'not_deleted':
245                         $msg = __( 'Sorry, you are not allowed to delete that site.' );
246                 break;
247                 case 'archiveblog':
248                         $msg = __( 'Site archived.' );
249                 break;
250                 case 'unarchiveblog':
251                         $msg = __( 'Site unarchived.' );
252                 break;
253                 case 'activateblog':
254                         $msg = __( 'Site activated.' );
255                 break;
256                 case 'deactivateblog':
257                         $msg = __( 'Site deactivated.' );
258                 break;
259                 case 'unspamblog':
260                         $msg = __( 'Site removed from spam.' );
261                 break;
262                 case 'spamblog':
263                         $msg = __( 'Site marked as spam.' );
264                 break;
265                 default:
266                         /**
267                          * Filters a specific, non-default site-updated message in the Network admin.
268                          *
269                          * The dynamic portion of the hook name, `$_GET['updated']`, refers to the
270                          * non-default site update action.
271                          *
272                          * @since 3.1.0
273                          *
274                          * @param string $msg The update message. Default 'Settings saved'.
275                          */
276                         $msg = apply_filters( 'network_sites_updated_message_' . $_GET['updated'], __( 'Settings saved.' ) );
277                 break;
278         }
279
280         if ( ! empty( $msg ) )
281                 $msg = '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>';
282 }
283
284 $wp_list_table->prepare_items();
285
286 require_once( ABSPATH . 'wp-admin/admin-header.php' );
287 ?>
288
289 <div class="wrap">
290 <h1><?php _e( 'Sites' ); ?>
291
292 <?php if ( current_user_can( 'create_sites') ) : ?>
293         <a href="<?php echo network_admin_url('site-new.php'); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'site' ); ?></a>
294 <?php endif; ?>
295
296 <?php
297 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
298         /* translators: %s: search keywords */
299         printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( $s ) );
300 } ?>
301 </h1>
302
303 <?php echo $msg; ?>
304
305 <form method="get" id="ms-search">
306 <?php $wp_list_table->search_box( __( 'Search Sites' ), 'site' ); ?>
307 <input type="hidden" name="action" value="blogs" />
308 </form>
309
310 <form id="form-site-list" action="sites.php?action=allblogs" method="post">
311         <?php $wp_list_table->display(); ?>
312 </form>
313 </div>
314 <?php
315
316 require_once( ABSPATH . 'wp-admin/admin-footer.php' ); ?>