]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/network/settings.php
Wordpress 3.7
[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="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
39 );
40
41 if ( $_POST ) {
42         do_action( 'wpmuadminedit' , '' );
43
44         check_admin_referer( 'siteoptions' );
45
46         $checked_options = array( 'menu_items' => array(), 'registrationnotification' => 'no', 'upload_space_check_disabled' => 1, 'add_new_users' => 0 );
47         foreach ( $checked_options as $option_name => $option_unchecked_value ) {
48                 if ( ! isset( $_POST[$option_name] ) )
49                         $_POST[$option_name] = $option_unchecked_value;
50         }
51
52         $options = array(
53                 'registrationnotification', 'registration', 'add_new_users', 'menu_items',
54                 'upload_space_check_disabled', 'blog_upload_space', 'upload_filetypes', 'site_name',
55                 'first_post', 'first_page', 'first_comment', 'first_comment_url', 'first_comment_author',
56                 'welcome_email', 'welcome_user_email', 'fileupload_maxk', 'global_terms_enabled',
57                 'illegal_names', 'limited_email_domains', 'banned_email_domains', 'WPLANG', 'admin_email',
58         );
59
60         foreach ( $options as $option_name ) {
61                 if ( ! isset($_POST[$option_name]) )
62                         continue;
63                 $value = wp_unslash( $_POST[$option_name] );
64                 update_site_option( $option_name, $value );
65         }
66
67         // Update more options here
68         do_action( 'update_wpmu_options' );
69
70         wp_redirect( add_query_arg( 'updated', 'true', network_admin_url( 'settings.php' ) ) );
71         exit();
72 }
73
74 include( ABSPATH . 'wp-admin/admin-header.php' );
75
76 if ( isset( $_GET['updated'] ) ) {
77         ?><div id="message" class="updated"><p><?php _e( 'Options saved.' ) ?></p></div><?php
78 }
79 ?>
80
81 <div class="wrap">
82         <?php screen_icon('options-general'); ?>
83         <h2><?php echo esc_html( $title ); ?></h2>
84         <form method="post" action="settings.php">
85                 <?php wp_nonce_field( 'siteoptions' ); ?>
86                 <h3><?php _e( 'Operational Settings' ); ?></h3>
87                 <table class="form-table">
88                         <tr valign="top">
89                                 <th scope="row"><label for="site_name"><?php _e( 'Network Name' ) ?></label></th>
90                                 <td>
91                                         <input name="site_name" type="text" id="site_name" class="regular-text" value="<?php echo esc_attr( $current_site->site_name ) ?>" />
92                                         <br />
93                                         <?php _e( 'What you would like to call this network.' ) ?>
94                                 </td>
95                         </tr>
96
97                         <tr valign="top">
98                                 <th scope="row"><label for="admin_email"><?php _e( 'Network Admin Email' ) ?></label></th>
99                                 <td>
100                                         <input name="admin_email" type="text" id="admin_email" class="regular-text" value="<?php echo esc_attr( get_site_option('admin_email') ) ?>" />
101                                         <br />
102                                         <?php printf( __( 'Registration and support emails will come from this address. An address such as <code>support@%s</code> is recommended.' ), $current_site->domain ); ?>
103                                 </td>
104                         </tr>
105                 </table>
106                 <h3><?php _e( 'Registration Settings' ); ?></h3>
107                 <table class="form-table">
108                         <tr valign="top">
109                                 <th scope="row"><?php _e( 'Allow new registrations' ) ?></th>
110                                 <?php
111                                 if ( !get_site_option( 'registration' ) )
112                                         update_site_option( 'registration', 'none' );
113                                 $reg = get_site_option( 'registration' );
114                                 ?>
115                                 <td>
116                                         <label><input name="registration" type="radio" id="registration1" value="none"<?php checked( $reg, 'none') ?> /> <?php _e( 'Registration is disabled.' ); ?></label><br />
117                                         <label><input name="registration" type="radio" id="registration2" value="user"<?php checked( $reg, 'user') ?> /> <?php _e( 'User accounts may be registered.' ); ?></label><br />
118                                         <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 />
119                                         <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><br />
120                                         <?php if ( is_subdomain_install() )
121                                                 _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.' );
122                                         ?>
123                                 </td>
124                         </tr>
125
126                         <tr valign="top">
127                                 <th scope="row"><?php _e( 'Registration notification' ) ?></th>
128                                 <?php
129                                 if ( !get_site_option( 'registrationnotification' ) )
130                                         update_site_option( 'registrationnotification', 'yes' );
131                                 ?>
132                                 <td>
133                                         <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>
134                                 </td>
135                         </tr>
136
137                         <tr valign="top" id="addnewusers">
138                                 <th scope="row"><?php _e( 'Add New Users' ) ?></th>
139                                 <td>
140                                         <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>
141                                 </td>
142                         </tr>
143
144                         <tr valign="top">
145                                 <th scope="row"><label for="illegal_names"><?php _e( 'Banned Names' ) ?></label></th>
146                                 <td>
147                                         <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" />
148                                         <br />
149                                         <?php _e( 'Users are not allowed to register these sites. Separate names by spaces.' ) ?>
150                                 </td>
151                         </tr>
152
153                         <tr valign="top">
154                                 <th scope="row"><label for="limited_email_domains"><?php _e( 'Limited Email Registrations' ) ?></label></th>
155                                 <td>
156                                         <?php $limited_email_domains = get_site_option( 'limited_email_domains' );
157                                         $limited_email_domains = str_replace( ' ', "\n", $limited_email_domains ); ?>
158                                         <textarea name="limited_email_domains" id="limited_email_domains" cols="45" rows="5">
159 <?php echo esc_textarea( $limited_email_domains == '' ? '' : implode( "\n", (array) $limited_email_domains ) ); ?></textarea>
160                                         <br />
161                                         <?php _e( 'If you want to limit site registrations to certain domains. One domain per line.' ) ?>
162                                 </td>
163                         </tr>
164
165                         <tr valign="top">
166                                 <th scope="row"><label for="banned_email_domains"><?php _e('Banned Email Domains') ?></label></th>
167                                 <td>
168                                         <textarea name="banned_email_domains" id="banned_email_domains" cols="45" rows="5">
169 <?php echo esc_textarea( get_site_option( 'banned_email_domains' ) == '' ? '' : implode( "\n", (array) get_site_option( 'banned_email_domains' ) ) ); ?></textarea>
170                                         <br />
171                                         <?php _e( 'If you want to ban domains from site registrations. One domain per line.' ) ?>
172                                 </td>
173                         </tr>
174
175                 </table>
176                 <h3><?php _e('New Site Settings'); ?></h3>
177                 <table class="form-table">
178
179                         <tr valign="top">
180                                 <th scope="row"><label for="welcome_email"><?php _e( 'Welcome Email' ) ?></label></th>
181                                 <td>
182                                         <textarea name="welcome_email" id="welcome_email" rows="5" cols="45" class="large-text">
183 <?php echo esc_textarea( get_site_option( 'welcome_email' ) ) ?></textarea>
184                                         <br />
185                                         <?php _e( 'The welcome email sent to new site owners.' ) ?>
186                                 </td>
187                         </tr>
188                         <tr valign="top">
189                                 <th scope="row"><label for="welcome_user_email"><?php _e( 'Welcome User Email' ) ?></label></th>
190                                 <td>
191                                         <textarea name="welcome_user_email" id="welcome_user_email" rows="5" cols="45" class="large-text">
192 <?php echo esc_textarea( get_site_option( 'welcome_user_email' ) ) ?></textarea>
193                                         <br />
194                                         <?php _e( 'The welcome email sent to new users.' ) ?>
195                                 </td>
196                         </tr>
197                         <tr valign="top">
198                                 <th scope="row"><label for="first_post"><?php _e( 'First Post' ) ?></label></th>
199                                 <td>
200                                         <textarea name="first_post" id="first_post" rows="5" cols="45" class="large-text">
201 <?php echo esc_textarea( get_site_option( 'first_post' ) ) ?></textarea>
202                                         <br />
203                                         <?php _e( 'The first post on a new site.' ) ?>
204                                 </td>
205                         </tr>
206                         <tr valign="top">
207                                 <th scope="row"><label for="first_page"><?php _e( 'First Page' ) ?></label></th>
208                                 <td>
209                                         <textarea name="first_page" id="first_page" rows="5" cols="45" class="large-text">
210 <?php echo esc_textarea( get_site_option( 'first_page' ) ) ?></textarea>
211                                         <br />
212                                         <?php _e( 'The first page on a new site.' ) ?>
213                                 </td>
214                         </tr>
215                         <tr valign="top">
216                                 <th scope="row"><label for="first_comment"><?php _e( 'First Comment' ) ?></label></th>
217                                 <td>
218                                         <textarea name="first_comment" id="first_comment" rows="5" cols="45" class="large-text">
219 <?php echo esc_textarea( get_site_option( 'first_comment' ) ) ?></textarea>
220                                         <br />
221                                         <?php _e( 'The first comment on a new site.' ) ?>
222                                 </td>
223                         </tr>
224                         <tr valign="top">
225                                 <th scope="row"><label for="first_comment_author"><?php _e( 'First Comment Author' ) ?></label></th>
226                                 <td>
227                                         <input type="text" size="40" name="first_comment_author" id="first_comment_author" value="<?php echo get_site_option('first_comment_author') ?>" />
228                                         <br />
229                                         <?php _e( 'The author of the first comment on a new site.' ) ?>
230                                 </td>
231                         </tr>
232                         <tr valign="top">
233                                 <th scope="row"><label for="first_comment_url"><?php _e( 'First Comment URL' ) ?></label></th>
234                                 <td>
235                                         <input type="text" size="40" name="first_comment_url" id="first_comment_url" value="<?php echo esc_attr( get_site_option( 'first_comment_url' ) ) ?>" />
236                                         <br />
237                                         <?php _e( 'The URL for the first comment on a new site.' ) ?>
238                                 </td>
239                         </tr>
240                 </table>
241                 <h3><?php _e( 'Upload Settings' ); ?></h3>
242                 <table class="form-table">
243                         <tr valign="top">
244                                 <th scope="row"><?php _e( 'Site upload space' ) ?></th>
245                                 <td>
246                                 <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 />
247                                 </td>
248                         </tr>
249
250                         <tr valign="top">
251                                 <th scope="row"><label for="upload_filetypes"><?php _e( 'Upload file types' ) ?></label></th>
252                                 <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>
253                         </tr>
254
255                         <tr valign="top">
256                                 <th scope="row"><label for="fileupload_maxk"><?php _e( 'Max upload file size' ) ?></label></th>
257                                 <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>
258                         </tr>
259                 </table>
260
261 <?php
262                 $languages = get_available_languages();
263                 if ( ! empty( $languages ) ) {
264                         $lang = get_site_option( 'WPLANG' );
265 ?>
266                 <h3><?php _e( 'Language Settings' ); ?></h3>
267                 <table class="form-table">
268                                 <tr valign="top">
269                                         <th><label for="WPLANG"><?php _e( 'Default Language' ); ?></label></th>
270                                         <td>
271                                                 <select name="WPLANG" id="WPLANG">
272                                                         <?php mu_dropdown_languages( $languages, get_site_option( 'WPLANG' ) ); ?>
273                                                 </select>
274                                         </td>
275                                 </tr>
276                 </table>
277 <?php
278                 } // languages
279 ?>
280
281                 <h3><?php _e( 'Menu Settings' ); ?></h3>
282                 <table id="menu" class="form-table">
283                         <tr valign="top">
284                                 <th scope="row"><?php _e( 'Enable administration menus' ); ?></th>
285                                 <td>
286                         <?php
287                         $menu_perms = get_site_option( 'menu_items' );
288                         $menu_items = apply_filters( 'mu_menu_items', array( 'plugins' => __( 'Plugins' ) ) );
289                         foreach ( (array) $menu_items as $key => $val ) {
290                                 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/>";
291                         }
292                         ?>
293                                 </td>
294                         </tr>
295                 </table>
296
297                 <?php do_action( 'wpmu_options' ); // Add more options here ?>
298
299                 <?php submit_button(); ?>
300         </form>
301 </div>
302
303 <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>