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