]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/network/site-settings.php
WordPress 4.4.2-scripts
[autoinstalls/wordpress.git] / wp-admin / network / site-settings.php
1 <?php
2 /**
3  * Edit Site Settings Administration Screen
4  *
5  * @package WordPress
6  * @subpackage Multisite
7  * @since 3.1.0
8  */
9
10 /** Load WordPress Administration Bootstrap */
11 require_once( dirname( __FILE__ ) . '/admin.php' );
12
13 if ( ! is_multisite() )
14         wp_die( __( 'Multisite support is not enabled.' ) );
15
16 if ( ! current_user_can( 'manage_sites' ) )
17         wp_die( __( 'You do not have sufficient permissions to edit this site.' ) );
18
19 get_current_screen()->add_help_tab( array(
20         'id'      => 'overview',
21         'title'   => __('Overview'),
22         'content' =>
23                 '<p>' . __('The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.') . '</p>' .
24                 '<p>' . __('<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.') . '</p>' .
25                 '<p>' . __('<strong>Users</strong> &mdash; This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.') . '</p>' .
26                 '<p>' . sprintf( __('<strong>Themes</strong> &mdash; This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site&#8217;s Appearance menu. To enable a theme for the entire network, see the <a href="%s">Network Themes</a> screen.' ), network_admin_url( 'themes.php' ) ) . '</p>' .
27                 '<p>' . __('<strong>Settings</strong> &mdash; This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.') . '</p>'
28 ) );
29
30 get_current_screen()->set_help_sidebar(
31         '<p><strong>' . __('For more information:') . '</strong></p>' .
32         '<p>' . __('<a href="https://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .
33         '<p>' . __('<a href="https://wordpress.org/support/forum/multisite/" target="_blank">Support Forums</a>') . '</p>'
34 );
35
36 $id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
37
38 if ( ! $id )
39         wp_die( __('Invalid site ID.') );
40
41 $details = get_blog_details( $id );
42 if ( ! $details ) {
43         wp_die( __( 'The requested site does not exist.' ) );
44 }
45
46 if ( !can_edit_network( $details->site_id ) )
47         wp_die( __( 'You do not have permission to access this page.' ), 403 );
48
49 $is_main_site = is_main_site( $id );
50
51 if ( isset($_REQUEST['action']) && 'update-site' == $_REQUEST['action'] && is_array( $_POST['option'] ) ) {
52         check_admin_referer( 'edit-site' );
53
54         switch_to_blog( $id );
55
56         $skip_options = array( 'allowedthemes' ); // Don't update these options since they are handled elsewhere in the form.
57         foreach ( (array) $_POST['option'] as $key => $val ) {
58                 $key = wp_unslash( $key );
59                 $val = wp_unslash( $val );
60                 if ( $key === 0 || is_array( $val ) || in_array($key, $skip_options) )
61                         continue; // Avoids "0 is a protected WP option and may not be modified" error when edit blog options
62                 update_option( $key, $val );
63         }
64
65         /**
66          * Fires after the site options are updated.
67          *
68          * @since 3.0.0
69          * @since 4.4.0 Added `$id` parameter.
70          *
71          * @param int $id The ID of the site being updated.
72          */
73         do_action( 'wpmu_update_blog_options', $id );
74
75         restore_current_blog();
76         wp_redirect( add_query_arg( array( 'update' => 'updated', 'id' => $id ), 'site-settings.php') );
77         exit;
78 }
79
80 if ( isset($_GET['update']) ) {
81         $messages = array();
82         if ( 'updated' == $_GET['update'] )
83                 $messages[] = __('Site options updated.');
84 }
85
86 $title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
87
88 $parent_file = 'sites.php';
89 $submenu_file = 'sites.php';
90
91 require( ABSPATH . 'wp-admin/admin-header.php' );
92
93 ?>
94
95 <div class="wrap">
96 <h1 id="edit-site"><?php echo $title; ?></h1>
97 <p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id, '/' ) ); ?>"><?php _e( 'Visit' ); ?></a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>"><?php _e( 'Dashboard' ); ?></a></p>
98 <h2 class="nav-tab-wrapper nav-tab-small">
99 <?php
100 $tabs = array(
101         'site-info'     => array( 'label' => __( 'Info' ),     'url' => 'site-info.php'     ),
102         'site-users'    => array( 'label' => __( 'Users' ),    'url' => 'site-users.php'    ),
103         'site-themes'   => array( 'label' => __( 'Themes' ),   'url' => 'site-themes.php'   ),
104         'site-settings' => array( 'label' => __( 'Settings' ), 'url' => 'site-settings.php' ),
105 );
106 foreach ( $tabs as $tab_id => $tab ) {
107         $class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
108         echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
109 }
110 ?>
111 </h2>
112 <?php
113 if ( ! empty( $messages ) ) {
114         foreach ( $messages as $msg )
115                 echo '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>';
116 } ?>
117 <form method="post" action="site-settings.php?action=update-site">
118         <?php wp_nonce_field( 'edit-site' ); ?>
119         <input type="hidden" name="id" value="<?php echo esc_attr( $id ) ?>" />
120         <table class="form-table">
121                 <?php
122                 $blog_prefix = $wpdb->get_blog_prefix( $id );
123                 $sql = "SELECT * FROM {$blog_prefix}options
124                         WHERE option_name NOT LIKE %s
125                         AND option_name NOT LIKE %s";
126                 $query = $wpdb->prepare( $sql,
127                         $wpdb->esc_like( '_' ) . '%',
128                         '%' . $wpdb->esc_like( 'user_roles' )
129                 );
130                 $options = $wpdb->get_results( $query );
131                 foreach ( $options as $option ) {
132                         if ( $option->option_name == 'default_role' )
133                                 $editblog_default_role = $option->option_value;
134                         $disabled = false;
135                         $class = 'all-options';
136                         if ( is_serialized( $option->option_value ) ) {
137                                 if ( is_serialized_string( $option->option_value ) ) {
138                                         $option->option_value = esc_html( maybe_unserialize( $option->option_value ) );
139                                 } else {
140                                         $option->option_value = 'SERIALIZED DATA';
141                                         $disabled = true;
142                                         $class = 'all-options disabled';
143                                 }
144                         }
145                         if ( strpos( $option->option_value, "\n" ) !== false ) {
146                         ?>
147                                 <tr class="form-field">
148                                         <th scope="row"><label for="<?php echo esc_attr( $option->option_name ) ?>"><?php echo ucwords( str_replace( "_", " ", $option->option_name ) ) ?></label></th>
149                                         <td><textarea class="<?php echo $class; ?>" 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_textarea( $option->option_value ) ?></textarea></td>
150                                 </tr>
151                         <?php
152                         } else {
153                         ?>
154                                 <tr class="form-field">
155                                         <th scope="row"><label for="<?php echo esc_attr( $option->option_name ) ?>"><?php echo esc_html( ucwords( str_replace( "_", " ", $option->option_name ) ) ); ?></label></th>
156                                         <?php if ( $is_main_site && in_array( $option->option_name, array( 'siteurl', 'home' ) ) ) { ?>
157                                         <td><code><?php echo esc_html( $option->option_value ) ?></code></td>
158                                         <?php } else { ?>
159                                         <td><input class="<?php echo $class; ?>" 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>
160                                         <?php } ?>
161                                 </tr>
162                         <?php
163                         }
164                 } // End foreach
165                 /**
166                  * Fires at the end of the Edit Site form, before the submit button.
167                  *
168                  * @since 3.0.0
169                  *
170                  * @param int $id Site ID.
171                  */
172                 do_action( 'wpmueditblogaction', $id );
173                 ?>
174         </table>
175         <?php submit_button(); ?>
176 </form>
177
178 </div>
179 <?php
180 require( ABSPATH . 'wp-admin/admin-footer.php' );