summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-options.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-admin/wpmu-options.php')
-rw-r--r--wp-admin/wpmu-options.php325
1 files changed, 157 insertions, 168 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
index fb8d897..ce539a5 100644
--- a/wp-admin/wpmu-options.php
+++ b/wp-admin/wpmu-options.php
@@ -21,181 +21,170 @@ if (isset($_GET['updated'])) {
<form method="post" action="wpmu-edit.php?action=siteoptions">
<?php wp_nonce_field( "siteoptions" ); ?>
- <fieldset class="options">
- <legend><?php _e('Operational Settings <em>(These settings cannot be modified by blog owners)</em>') ?></legend>
- <table width="100%" cellspacing="2" cellpadding="5" class="editform">
- <tr valign="top">
- <th scope="row"><?php _e('Site Name:') ?></th>
- <td>
- <input name="site_name" type="text" id="site_name" style="width: 95%" value="<?php echo $current_site->site_name ?>" size="45" />
- <br />
- <?php _e('What you would like to call this website.') ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Site Admin Email:') ?></th>
- <td>
- <input name="admin_email" type="text" id="admin_email" style="width: 95%" value="<?php echo stripslashes( get_site_option('admin_email') ) ?>" size="45" />
- <br />
- <?php printf( __( 'Registration and support mails will come from this address. Make it generic like "support@%s"' ), $current_site->domain ); ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Allow new registrations') ?></th>
- <?php
- if( !get_site_option('registration') )
- update_site_option( 'registration', 'all' );
- ?>
- <td>
- <label><input name="registration" type="radio" id="registration1" value='none' <?php echo get_site_option('registration') == 'none' ? 'checked="checked"' : ''; ?> /> <?php _e('Disabled'); ?></label><br />
- <label><input name="registration" type="radio" id="registration2" value='all' <?php echo get_site_option('registration') == 'all' ? 'checked="checked"' : ''; ?> /> <?php _e('Enabled for all. Blogs and user accounts can be created.'); ?></label><br />
- <label><input name="registration" type="radio" id="registration3" value='user' <?php echo get_site_option('registration') == 'user' ? 'checked="checked"' : ''; ?> /> <?php _e('Enabled for users only. Only user account can be created.'); ?></label><br />
- <label><input name="registration" type="radio" id="registration4" value='blog' <?php echo get_site_option('registration') == 'blog' ? 'checked="checked"' : ''; ?> /> <?php _e('Enabled for blogs only. Only logged in users can create new blogs.'); ?></label><br />
- <?php _e('Disable or enable registration and who or what can be registered. (Default=all)') ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Registration notification') ?></th>
- <?php
- if( !get_site_option('registrationnotification') )
- update_site_option( 'registrationnotification', 'yes' );
- ?>
- <td>
- <input name="registrationnotification" type="radio" id="registrationnotification1" value='yes' <?php echo get_site_option('registrationnotification') == 'yes' ? 'checked="checked"' : ''; ?> /> <?php _e('Yes'); ?><br />
- <input name="registrationnotification" type="radio" id="registrationnotification2" value='no' <?php echo get_site_option('registrationnotification') == 'no' ? 'checked="checked"' : ''; ?> /> <?php _e('No'); ?><br />
- <?php _e('Send the site admin an email notification every time someone registers a blog or user account.') ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Welcome Email:') ?></th>
- <td>
- <textarea name="welcome_email" id="welcome_email" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('welcome_email') ) ?></textarea>
- <br />
- <?php _e('The welcome email sent to new blog owners.') ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('First Post:') ?></th>
- <td>
- <textarea name="first_post" id="first_post" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('first_post') ) ?></textarea>
- <br />
- <?php _e('First post on a new blog.') ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Banned Names:') ?></th>
- <td>
- <input name="illegal_names" type="text" id="illegal_names" style="width: 95%" value="<?php echo implode( " ", get_site_option('illegal_names') ); ?>" size="45" />
- <br />
- <?php _e('Users are not allowed to register these blogs. Separate names by spaces.') ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Limited Email Registrations:') ?></th>
- <td>
- <input name="limited_email_domains" type="text" id="limited_email_domains" style="width: 95%" value="<?php echo get_site_option('limited_email_domains') == '' ? '' : @implode( " ", get_site_option('limited_email_domains') ); ?>" size="45" />
- <br />
- <?php _e('If you want to limit blog registrations to certain domains. Separate domains by spaces.') ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Banned Email Domains:') ?></th>
- <td>
- <textarea name="banned_email_domains" id="banned_email_domains" cols='40' rows='5'><?php echo get_site_option('banned_email_domains') == '' ? '' : @implode( "\n", get_site_option('banned_email_domains') ); ?></textarea>
- <br />
- <?php _e('If you want to ban certain email domains from blog registrations. One domain per line.') ?>
- </td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Blog upload space:') ?></th>
- <td><input name="blog_upload_space" type="text" id="blog_upload_space" value="<?php echo get_site_option('blog_upload_space', 10) ?>" size="3" /> MB</td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Upload File Types:') ?></th>
- <td><input name="upload_filetypes" type="text" id="upload_filetypes" value="<?php echo get_site_option('upload_filetypes', 'jpg jpeg png gif') ?>" size="45" /></td>
- </tr>
-
- <tr valign="top">
- <th scope="row"><?php _e('Max upload file size:') ?></th>
- <td><input name="fileupload_maxk" type="text" id="fileupload_maxk" value="<?php echo get_site_option('fileupload_maxk', 300) ?>" size="5" /> KB</td>
- </tr>
- </table>
- </fieldset>
+ <h3><?php _e('Operational Settings <em>(These settings cannot be modified by blog owners)</em>') ?></h3>
+ <table class="form-table">
+ <tr valign="top">
+ <th scope="row"><?php _e('Site Name') ?></th>
+ <td>
+ <input name="site_name" type="text" id="site_name" style="width: 95%" value="<?php echo $current_site->site_name ?>" size="45" />
+ <br />
+ <?php _e('What you would like to call this website.') ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Site Admin Email') ?></th>
+ <td>
+ <input name="admin_email" type="text" id="admin_email" style="width: 95%" value="<?php echo stripslashes( get_site_option('admin_email') ) ?>" size="45" />
+ <br />
+ <?php printf( __( 'Registration and support mails will come from this address. Make it generic like "support@%s"' ), $current_site->domain ); ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Allow new registrations') ?></th>
+ <?php
+ if( !get_site_option('registration') )
+ update_site_option( 'registration', 'all' );
+ ?>
+ <td>
+ <label><input name="registration" type="radio" id="registration1" value='none' <?php echo get_site_option('registration') == 'none' ? 'checked="checked"' : ''; ?> /> <?php _e('Disabled'); ?></label><br />
+ <label><input name="registration" type="radio" id="registration2" value='all' <?php echo get_site_option('registration') == 'all' ? 'checked="checked"' : ''; ?> /> <?php _e('Enabled for all. Blogs and user accounts can be created.'); ?></label><br />
+ <label><input name="registration" type="radio" id="registration3" value='user' <?php echo get_site_option('registration') == 'user' ? 'checked="checked"' : ''; ?> /> <?php _e('Enabled for users only. Only user account can be created.'); ?></label><br />
+ <label><input name="registration" type="radio" id="registration4" value='blog' <?php echo get_site_option('registration') == 'blog' ? 'checked="checked"' : ''; ?> /> <?php _e('Enabled for blogs only. Only logged in users can create new blogs.'); ?></label><br />
+ <?php _e('Disable or enable registration and who or what can be registered. (Default=all)') ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Registration notification') ?></th>
+ <?php
+ if( !get_site_option('registrationnotification') )
+ update_site_option( 'registrationnotification', 'yes' );
+ ?>
+ <td>
+ <input name="registrationnotification" type="radio" id="registrationnotification1" value='yes' <?php echo get_site_option('registrationnotification') == 'yes' ? 'checked="checked"' : ''; ?> /> <?php _e('Yes'); ?><br />
+ <input name="registrationnotification" type="radio" id="registrationnotification2" value='no' <?php echo get_site_option('registrationnotification') == 'no' ? 'checked="checked"' : ''; ?> /> <?php _e('No'); ?><br />
+ <?php _e('Send the site admin an email notification every time someone registers a blog or user account.') ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Welcome Email') ?></th>
+ <td>
+ <textarea name="welcome_email" id="welcome_email" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('welcome_email') ) ?></textarea>
+ <br />
+ <?php _e('The welcome email sent to new blog owners.') ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('First Post') ?></th>
+ <td>
+ <textarea name="first_post" id="first_post" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('first_post') ) ?></textarea>
+ <br />
+ <?php _e('First post on a new blog.') ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Banned Names') ?></th>
+ <td>
+ <input name="illegal_names" type="text" id="illegal_names" style="width: 95%" value="<?php echo implode( " ", get_site_option('illegal_names') ); ?>" size="45" />
+ <br />
+ <?php _e('Users are not allowed to register these blogs. Separate names by spaces.') ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Limited Email Registrations') ?></th>
+ <td>
+ <input name="limited_email_domains" type="text" id="limited_email_domains" style="width: 95%" value="<?php echo get_site_option('limited_email_domains') == '' ? '' : @implode( " ", get_site_option('limited_email_domains') ); ?>" size="45" />
+ <br />
+ <?php _e('If you want to limit blog registrations to certain domains. Separate domains by spaces.') ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Banned Email Domains') ?></th>
+ <td>
+ <textarea name="banned_email_domains" id="banned_email_domains" cols='40' rows='5'><?php echo get_site_option('banned_email_domains') == '' ? '' : @implode( "\n", get_site_option('banned_email_domains') ); ?></textarea>
+ <br />
+ <?php _e('If you want to ban certain email domains from blog registrations. One domain per line.') ?>
+ </td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Blog upload space') ?></th>
+ <td><input name="blog_upload_space" type="text" id="blog_upload_space" value="<?php echo get_site_option('blog_upload_space', 10) ?>" size="3" /> MB</td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Upload File Types') ?></th>
+ <td><input name="upload_filetypes" type="text" id="upload_filetypes" value="<?php echo get_site_option('upload_filetypes', 'jpg jpeg png gif') ?>" size="45" /></td>
+ </tr>
+
+ <tr valign="top">
+ <th scope="row"><?php _e('Max upload file size') ?></th>
+ <td><input name="fileupload_maxk" type="text" id="fileupload_maxk" value="<?php echo get_site_option('fileupload_maxk', 300) ?>" size="5" /> KB</td>
+ </tr>
+ </table>
- <fieldset class="options">
- <legend><?php _e('Administration Settings') ?></legend>
- <table width="100%" cellspacing="2" cellpadding="5" class="editform">
+ <h3><?php _e('Administration Settings') ?></h3>
+ <table class="form-table">
+ <tr valign="top">
+ <th scope="row"><?php _e('Site Admins') ?></th>
+ <td>
+ <input name="site_admins" type="text" id="site_admins" style="width: 95%" value="<?php echo implode(' ', get_site_option( 'site_admins', array( 'admin' ) ) ) ?>" size="45" />
+ <br />
+ <?php _e('These users may login to the main blog and administer the site. Space separated list of usernames.') ?>
+ </td>
+ </tr>
+ </table>
+
+ <h3><?php _e('Site Wide Settings <em>(These settings may be overridden by blog owners)</em>') ?></h3>
+ <table class="form-table">
+ <?php
+ $lang_files = glob( ABSPATH . LANGDIR . '/*.mo' );
+ $lang = get_site_option('WPLANG');
+ if( is_array( $lang_files ) ) {
+ ?>
<tr valign="top">
- <th scope="row"><?php _e('Site Admins:') ?></th>
+ <th width="33%"><?php _e('Default Language') ?></th>
<td>
- <input name="site_admins" type="text" id="site_admins" style="width: 95%" value="<?php echo implode(' ', get_site_option( 'site_admins', array( 'admin' ) ) ) ?>" size="45" />
- <br />
- <?php _e('These users may login to the main blog and administer the site. Space separated list of usernames.') ?>
- </td>
+ <select name="WPLANG" id="WPLANG">
+ <?php
+ echo '<option value=""'.((empty($lang)) ? ' selected="selected"' : '').'>'.__('English')."</option>";
+ foreach ( (array) $lang_files as $key => $val ) {
+ $code_lang = basename( $val, '.mo' );
+ echo '<option value="'.$code_lang.'"'.(($lang == $code_lang) ? ' selected="selected"' : '').'> '.format_code_lang($code_lang).'</option>';
+ }
+ ?>
+ </select>
+ </td>
</tr>
- </table>
- </fieldset>
-
- <fieldset class="options">
- <legend><?php _e('Site Wide Settings <em>(These settings may be overridden by blog owners)</em>') ?></legend>
- <table width="100%" cellspacing="2" cellpadding="5" class="editform">
<?php
- $lang_files = glob( ABSPATH . LANGDIR . '/*.mo' );
- $lang = get_site_option('WPLANG');
- if( is_array( $lang_files ) ) {
- ?>
- <tr valign="top">
- <th width="33%" scope="row"><?php _e('Default Language:') ?></th>
- <td>
- <select name="WPLANG" id="WPLANG">
- <?php
- echo '<option value=""'.((empty($lang)) ? ' selected="selected"' : '').'>'.__('English')."</option>";
- foreach ( (array) $lang_files as $key => $val ) {
- $code_lang = basename( $val, '.mo' );
- echo '<option value="'.$code_lang.'"'.(($lang == $code_lang) ? ' selected="selected"' : '').'> '.format_code_lang($code_lang).'</option>';
- }
- ?>
- </select>
- </td>
- </tr>
- <?php
- } // languages
- ?>
- </table>
- </fieldset>
+ } // languages
+ ?>
+ </table>
- <fieldset class="options">
- <legend><?php _e('Menus <em>(Enable or disable WP Backend Menus)</em>') ?></legend>
- <table cellspacing="2" cellpadding="5" class="editform">
- <tr>
- <th scope='row'><?php _e("Menu"); ?></th>
- <th scope='row'><?php _e("Enabled"); ?></th>
- </tr>
- <?php
- $menu_perms = get_site_option( "menu_items" );
- $menu_items = array('plugins');
- foreach ( (array) $menu_items as $key => $val ) {
- $checked = ( $menu_perms[$val] == '1' ) ? ' checked="checked"' : '';
- echo "<tr><th scope='row'>" . ucfirst( $val ) . "</th><td><input type='checkbox' name='menu_items[" . $val . "]' value='1'" . $checked . " /></td></tr>";
- }
- ?>
- </table>
- </fieldset>
+ <h3><?php _e('Menus <em>(Enable or disable WP Backend Menus)</em>') ?></h3>
+ <table class="form-table">
+ <tr>
+ <th scope="row"><?php _e("Menu"); ?></th>
+ <th scope="row"><?php _e("Enabled"); ?></th>
+ </tr>
+ <?php
+ $menu_perms = get_site_option( "menu_items" );
+ $menu_items = array('plugins');
+ foreach ( (array) $menu_items as $key => $val ) {
+ $checked = ( $menu_perms[$val] == '1' ) ? ' checked="checked"' : '';
+ echo "<tr><th scope='row'>" . ucfirst( $val ) . "</th><td><input type='checkbox' name='menu_items[" . $val . "]' value='1'" . $checked . " /></td></tr>";
+ }
+ ?>
+ </table>
- <?php
- // Add more options here
- do_action( 'wpmu_options' );
- ?>
+ <?php do_action( 'wpmu_options' ); // Add more options here ?>
<p class="submit">
<input type="submit" name="Submit" value="<?php _e('Update Options') ?>" /></p>