]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/network/settings.php
WordPress 3.9
[autoinstalls/wordpress.git] / wp-admin / network / settings.php
1 <?php
2 /**
3  * Multisite network settings 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 ( ! is_multisite() )
14         wp_die( __( 'Multisite support is not enabled.' ) );
15
16 if ( ! current_user_can( 'manage_network_options' ) )
17         wp_die( __( 'You do not have permission to access this page.' ) );
18
19 $title = __( 'Network Settings' );
20 $parent_file = 'settings.php';
21
22 get_current_screen()->add_help_tab( array(
23                 'id'      => 'overview',
24                 'title'   => __('Overview'),
25                 'content' =>
26                         '<p>' . __('This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site&#8217;s options.') . '</p>' .
27                         '<p>' . __('Operational settings has fields for the network&#8217;s name and admin email.') . '</p>' .
28                         '<p>' . __('Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.') . '</p>' .
29                         '<p>' . __('New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what&#8127;s put in the first post, page, comment, comment author, and comment URL.') . '</p>' .
30                         '<p>' . __('Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).') . '</p>' .
31                         '<p>' . __('Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.') . '</p>' .
32                         '<p>' . __('Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.') . '</p>'
33 ) );
34
35 get_current_screen()->set_help_sidebar(
36         '<p><strong>' . __('For more information:') . '</strong></p>' .
37         '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Settings_Screen" target="_blank">Documentation on Network Settings</a>') . '</p>' .
38         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
39 );
40
41 if ( $_POST ) {
42         /** This action is documented in wp-admin/network/edit.php */
43         do_action( 'wpmuadminedit' );
44
45         check_admin_referer( 'siteoptions' );
46
47         $checked_options = array( 'menu_items' => array(), 'registrationnotification' => 'no', 'upload_space_check_disabled' => 1, 'add_new_users' => 0 );
48         foreach ( $checked_options as $option_name => $option_unchecked_value ) {
49                 if ( ! isset( $_POST[$option_name] ) )
50                         $_POST[$option_name] = $option_unchecked_value;
51         }
52
53         $options = array(
54                 'registrationnotification', 'registration', 'add_new_users', 'menu_items',
55                 'upload_space_check_disabled', 'blog_upload_space', 'upload_filetypes', 'site_name',
56                 'first_post', 'first_page', 'first_comment', 'first_comment_url', 'first_comment_author',
57                 'welcome_email', 'welcome_user_email', 'fileupload_maxk', 'global_terms_enabled',
58                 'illegal_names', 'limited_email_domains', 'banned_email_domains', 'WPLANG', 'admin_email',
59         );
60
61         foreach ( $options as $option_name ) {
62                 if ( ! isset($_POST[$option_name]) )
63                         continue;
64                 $value = wp_unslash( $_POST[$option_name] );
65                 update_site_option( $option_name, $value );
66         }
67
68         /**
69          * Fires after the network options are updated.
70          *
71          * @since MU
72          */
73         do_action( 'update_wpmu_options' );
74
75         wp_redirect( add_query_arg( 'updated', 'true', network_admin_url( 'settings.php' ) ) );
76         exit();
77 }
78
79 include( ABSPATH . 'wp-admin/admin-header.php' );
80
81 if ( isset( $_GET['updated'] ) ) {
82         ?><div id="message" class="updated"><p><?php _e( 'Options saved.' ) ?></p></div><?php
83 }
84 ?>
85
86 <div class="wrap">
87         <h2><?php echo esc_html( $title ); ?></h2>
88         <form method="post" action="settings.php">
89                 <?php wp_nonce_field( 'siteoptions' ); ?>
90                 <h3><?php _e( 'Operational Settings' ); ?></h3>
91                 <table class="form-table">
92                         <tr>
93                                 <th scope="row"><label for="site_name"><?php _e( 'Network Title' ) ?></label></th>
94                                 <td>
95                                         <input name="site_name" type="text" id="site_name" class="regular-text" value="<?php echo esc_attr( $current_site->site_name ) ?>" />
96                                 </td>
97                         </tr>
98
99                         <tr>
100                                 <th scope="row"><label for="admin_email"><?php _e( 'Network Admin Email' ) ?></label></th>
101                                 <td>
102                                         <input name="admin_email" type="text" id="admin_email" class="regular-text" value="<?php echo esc_attr( get_site_option('admin_email') ) ?>" />
103                                         <p class="description">
104                                                 <?php _e( 'This email address will receive notifications. Registration and support emails will also come from this address.' ); ?>
105                                         </p>    
106                                 </td>
107                         </tr>
108                 </table>
109                 <h3><?php _e( 'Registration Settings' ); ?></h3>
110                 <table class="form-table">
111                         <tr>
112                                 <th scope="row"><?php _e( 'Allow new registrations' ) ?></th>
113                                 <?php
114                                 if ( !get_site_option( 'registration' ) )
115                                         update_site_option( 'registration', 'none' );
116                                 $reg = get_site_option( 'registration' );
117                                 ?>
118                                 <td>
119                                         <label><input name="registration" type="radio" id="registration1" value="none"<?php checked( $reg, 'none') ?> /> <?php _e( 'Registration is disabled.' ); ?></label><br />
120                                         <label><input name="registration" type="radio" id="registration2" value="user"<?php checked( $reg, 'user') ?> /> <?php _e( 'User accounts may be registered.' ); ?></label><br />
121                                         <label><input name="registration" type="radio" id="registration3" value="blog"<?php checked( $reg, 'blog') ?> /> <?php _e( 'Logged in users may register new sites.' ); ?></label><br />
122                                         <label><input name="registration" type="radio" id="registration4" value="all"<?php checked( $reg, 'all') ?> /> <?php _e( 'Both sites and user accounts can be registered.' ); ?></label>
123                                         <p class="description">
124                                                 <?php if ( is_subdomain_install() )
125                                                 _e( 'If registration is disabled, please set <code>NOBLOGREDIRECT</code> in <code>wp-config.php</code> to a URL you will redirect visitors to if they visit a non-existent site.' );
126                                         ?>
127                                         </p>
128                                 </td>
129                         </tr>
130
131                         <tr>
132                                 <th scope="row"><?php _e( 'Registration notification' ) ?></th>
133                                 <?php
134                                 if ( !get_site_option( 'registrationnotification' ) )
135                                         update_site_option( 'registrationnotification', 'yes' );
136                                 ?>
137                                 <td>
138                                         <label><input name="registrationnotification" type="checkbox" id="registrationnotification" value="yes"<?php checked( get_site_option( 'registrationnotification' ), 'yes' ) ?> /> <?php _e( 'Send the network admin an email notification every time someone registers a site or user account.' ) ?></label>
139                                 </td>
140                         </tr>
141
142                         <tr id="addnewusers">
143                                 <th scope="row"><?php _e( 'Add New Users' ) ?></th>
144                                 <td>
145                                         <label><input name="add_new_users" type="checkbox" id="add_new_users" value="1"<?php checked( get_site_option( 'add_new_users' ) ) ?> /> <?php _e( 'Allow site administrators to add new users to their site via the "Users &rarr; Add New" page.' ); ?></label>
146                                 </td>
147                         </tr>
148
149                         <tr>
150                                 <th scope="row"><label for="illegal_names"><?php _e( 'Banned Names' ) ?></label></th>
151                                 <td>
152                                         <input name="illegal_names" type="text" id="illegal_names" class="large-text" value="<?php echo esc_attr( implode( " ", (array) get_site_option( 'illegal_names' ) ) ); ?>" size="45" />
153                                         <p class="description">
154                                                 <?php _e( 'Users are not allowed to register these sites. Separate names by spaces.' ) ?>
155                                         </p>
156                                 </td>
157                         </tr>
158
159                         <tr>
160                                 <th scope="row"><label for="limited_email_domains"><?php _e( 'Limited Email Registrations' ) ?></label></th>
161                                 <td>
162                                         <?php $limited_email_domains = get_site_option( 'limited_email_domains' );
163                                         $limited_email_domains = str_replace( ' ', "\n", $limited_email_domains ); ?>
164                                         <textarea name="limited_email_domains" id="limited_email_domains" cols="45" rows="5">
165 <?php echo esc_textarea( $limited_email_domains == '' ? '' : implode( "\n", (array) $limited_email_domains ) ); ?></textarea>
166                                         <p class="description">
167                                                 <?php _e( 'If you want to limit site registrations to certain domains. One domain per line.' ) ?>
168                                         </p>    
169                                 </td>
170                         </tr>
171
172                         <tr>
173                                 <th scope="row"><label for="banned_email_domains"><?php _e('Banned Email Domains') ?></label></th>
174                                 <td>
175                                         <textarea name="banned_email_domains" id="banned_email_domains" cols="45" rows="5">
176 <?php echo esc_textarea( get_site_option( 'banned_email_domains' ) == '' ? '' : implode( "\n", (array) get_site_option( 'banned_email_domains' ) ) ); ?></textarea>
177                                         <p class="description">
178                                                 <?php _e( 'If you want to ban domains from site registrations. One domain per line.' ) ?>
179                                         </p>
180                                 </td>
181                         </tr>
182
183                 </table>
184                 <h3><?php _e('New Site Settings'); ?></h3>
185                 <table class="form-table">
186
187                         <tr>
188                                 <th scope="row"><label for="welcome_email"><?php _e( 'Welcome Email' ) ?></label></th>
189                                 <td>
190                                         <textarea name="welcome_email" id="welcome_email" rows="5" cols="45" class="large-text">
191 <?php echo esc_textarea( get_site_option( 'welcome_email' ) ) ?></textarea>
192                                         <p class="description">
193                                                 <?php _e( 'The welcome email sent to new site owners.' ) ?>
194                                         </p>
195                                 </td>
196                         </tr>
197                         <tr>
198                                 <th scope="row"><label for="welcome_user_email"><?php _e( 'Welcome User Email' ) ?></label></th>
199                                 <td>
200                                         <textarea name="welcome_user_email" id="welcome_user_email" rows="5" cols="45" class="large-text">
201 <?php echo esc_textarea( get_site_option( 'welcome_user_email' ) ) ?></textarea>
202                                         <p class="description">
203                                                 <?php _e( 'The welcome email sent to new users.' ) ?>
204                                         </p>
205                                 </td>
206                         </tr>
207                         <tr>
208                                 <th scope="row"><label for="first_post"><?php _e( 'First Post' ) ?></label></th>
209                                 <td>
210                                         <textarea name="first_post" id="first_post" rows="5" cols="45" class="large-text">
211 <?php echo esc_textarea( get_site_option( 'first_post' ) ) ?></textarea>
212                                         <p class="description">
213                                                 <?php _e( 'The first post on a new site.' ) ?>
214                                         </p>
215                                 </td>
216                         </tr>
217                         <tr>
218                                 <th scope="row"><label for="first_page"><?php _e( 'First Page' ) ?></label></th>
219                                 <td>
220                                         <textarea name="first_page" id="first_page" rows="5" cols="45" class="large-text">
221 <?php echo esc_textarea( get_site_option( 'first_page' ) ) ?></textarea>
222                                         <p class="description">
223                                                 <?php _e( 'The first page on a new site.' ) ?>
224                                         </p>
225                                 </td>
226                         </tr>
227                         <tr>
228                                 <th scope="row"><label for="first_comment"><?php _e( 'First Comment' ) ?></label></th>
229                                 <td>
230                                         <textarea name="first_comment" id="first_comment" rows="5" cols="45" class="large-text">
231 <?php echo esc_textarea( get_site_option( 'first_comment' ) ) ?></textarea>
232                                         <p class="description">
233                                                 <?php _e( 'The first comment on a new site.' ) ?>
234                                         </p>    
235                                 </td>
236                         </tr>
237                         <tr>
238                                 <th scope="row"><label for="first_comment_author"><?php _e( 'First Comment Author' ) ?></label></th>
239                                 <td>
240                                         <input type="text" size="40" name="first_comment_author" id="first_comment_author" value="<?php echo get_site_option('first_comment_author') ?>" />
241                                         <p class="description">
242                                                 <?php _e( 'The author of the first comment on a new site.' ) ?>
243                                         </p>
244                                 </td>
245                         </tr>
246                         <tr>
247                                 <th scope="row"><label for="first_comment_url"><?php _e( 'First Comment URL' ) ?></label></th>
248                                 <td>
249                                         <input type="text" size="40" name="first_comment_url" id="first_comment_url" value="<?php echo esc_attr( get_site_option( 'first_comment_url' ) ) ?>" />
250                                         <p class="description">
251                                                 <?php _e( 'The URL for the first comment on a new site.' ) ?>
252                                         </p>
253                                 </td>
254                         </tr>
255                 </table>
256                 <h3><?php _e( 'Upload Settings' ); ?></h3>
257                 <table class="form-table">
258                         <tr>
259                                 <th scope="row"><?php _e( 'Site upload space' ) ?></th>
260                                 <td>
261                                 <label><input type="checkbox" id="upload_space_check_disabled" name="upload_space_check_disabled" value="0"<?php checked( get_site_option( 'upload_space_check_disabled' ), 0 ) ?>/> <?php printf( __( 'Limit total size of files uploaded to %s MB' ), '</label><label><input name="blog_upload_space" type="number" min="0" style="width: 100px" id="blog_upload_space" value="' . esc_attr( get_site_option('blog_upload_space', 100) ) . '" />' ); ?></label><br />
262                                 </td>
263                         </tr>
264
265                         <tr>
266                                 <th scope="row"><label for="upload_filetypes"><?php _e( 'Upload file types' ) ?></label></th>
267                                 <td><input name="upload_filetypes" type="text" id="upload_filetypes" class="large-text" value="<?php echo esc_attr( get_site_option('upload_filetypes', 'jpg jpeg png gif') ) ?>" size="45" /></td>
268                         </tr>
269
270                         <tr>
271                                 <th scope="row"><label for="fileupload_maxk"><?php _e( 'Max upload file size' ) ?></label></th>
272                                 <td><?php printf( _x( '%s KB', 'File size in kilobytes' ), '<input name="fileupload_maxk" type="number" min="0" style="width: 100px" id="fileupload_maxk" value="' . esc_attr( get_site_option( 'fileupload_maxk', 300 ) ) . '" />' ); ?></td>
273                         </tr>
274                 </table>
275
276 <?php
277                 $languages = get_available_languages();
278                 if ( ! empty( $languages ) ) {
279                         $lang = get_site_option( 'WPLANG' );
280 ?>
281                 <h3><?php _e( 'Language Settings' ); ?></h3>
282                 <table class="form-table">
283                                 <tr>
284                                         <th><label for="WPLANG"><?php _e( 'Default Language' ); ?></label></th>
285                                         <td>
286                                                 <select name="WPLANG" id="WPLANG">
287                                                         <?php mu_dropdown_languages( $languages, get_site_option( 'WPLANG' ) ); ?>
288                                                 </select>
289                                         </td>
290                                 </tr>
291                 </table>
292 <?php
293                 } // languages
294 ?>
295
296                 <h3><?php _e( 'Menu Settings' ); ?></h3>
297                 <table id="menu" class="form-table">
298                         <tr>
299                                 <th scope="row"><?php _e( 'Enable administration menus' ); ?></th>
300                                 <td>
301                         <?php
302                         $menu_perms = get_site_option( 'menu_items' );
303                         /**
304                          * Filter available network-wide administration menu options.
305                          *
306                          * Options returned to this filter are output as individual checkboxes that, when selected,
307                          * enable site administrator access to the specified administration menu in certain contexts.
308                          *
309                          * Adding options for specific menus here hinges on the appropriate checks and capabilities
310                          * being in place in the site dashboard on the other side. For instance, when the single
311                          * default option, 'plugins' is enabled, site administrators are granted access to the Plugins
312                          * screen in their individual sites' dashboards.
313                          *
314                          * @since MU
315                          *
316                          * @param array $admin_menus The menu items available.
317                          */
318                         $menu_items = apply_filters( 'mu_menu_items', array( 'plugins' => __( 'Plugins' ) ) );
319                         foreach ( (array) $menu_items as $key => $val ) {
320                                 echo "<label><input type='checkbox' name='menu_items[" . $key . "]' value='1'" . ( isset( $menu_perms[$key] ) ? checked( $menu_perms[$key], '1', false ) : '' ) . " /> " . esc_html( $val ) . "</label><br/>";
321                         }
322                         ?>
323                                 </td>
324                         </tr>
325                 </table>
326
327                 <?php 
328                 /**
329                  * Fires at the end of the Network Settings form, before the submit button.
330                  *
331                  * @since MU
332                  */
333                 do_action( 'wpmu_options' ); ?>
334                 <?php submit_button(); ?>
335         </form>
336 </div>
337
338 <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>