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