summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-options.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-06-22 18:31:50 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-06-22 18:31:50 +0000
commitd48e85e0ac5e675ca33fac173f30c75403d1033f (patch)
tree1164430fa3b83a4d9283961b09c1576f2885e6b2 /wp-admin/wpmu-options.php
parent086dcde66603301531efc6d8087bd06d0546f148 (diff)
downloadwordpress-mu-d48e85e0ac5e675ca33fac173f30c75403d1033f.tar.gz
wordpress-mu-d48e85e0ac5e675ca33fac173f30c75403d1033f.tar.xz
wordpress-mu-d48e85e0ac5e675ca33fac173f30c75403d1033f.zip
Moved everything in wp-inst down a directory.
Uses's Ryan Boren's htaccess rules and mods If you're upgrading, try this on a test server first! git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@591 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/wpmu-options.php')
-rw-r--r--wp-admin/wpmu-options.php131
1 files changed, 131 insertions, 0 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
new file mode 100644
index 0000000..bded6ea
--- /dev/null
+++ b/wp-admin/wpmu-options.php
@@ -0,0 +1,131 @@
+<?php
+require_once('admin.php');
+$title = __('Site Options');
+$parent_file = 'wpmu-admin.php';
+
+include('admin-header.php');
+
+if( is_site_admin() == false ) {
+ die( __('<p>You do not have permission to access this page.</p>') );
+}
+
+if (isset($_GET['updated'])) {
+ ?><div id="message" class="updated fade"><p><?php _e('Options saved.') ?></p></div><?php
+}
+
+?>
+<div class="wrap">
+ <h2><?php _e('Site Options') ?></h2>
+ <form name="form1" method="post" action="wpmu-edit.php?action=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('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('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
+ </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" />
+ </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
+ </tr>
+ </table>
+ </fieldset>
+ <fieldset class="options">
+ <legend><?php _e('Administration Settings') ?></legend>
+ <table width="100%" cellspacing="2" cellpadding="5" class="editform">
+ <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.') ?></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 . WPINC . "/languages/*" );
+ $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=''>Default</option>";
+ while( list( $key, $val ) = each( $lang_files ) ) {
+ $l = basename( $val, ".mo" );
+ echo "<option value='$l'";
+ echo $lang == $l ? " selected" : "";
+ echo "> $l</option>";
+ }
+ ?>
+ </select></td>
+ </tr>
+ <?php
+ } // languages
+ ?>
+ </table>
+ </fieldset>
+ <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'>Menu</th><th scope='row'>Enabled</th></tr>
+ <?php
+ $menu_perms = get_site_option( "menu_items" );
+ $menu_items = array( "plugins" );
+ while( list( $key, $val ) = each( $menu_items ) )
+ {
+ if( $menu_perms[ $val ] == '1' ) {
+ $checked = ' checked';
+ } else {
+ $checked = '';
+ }
+ print "<tr><th scope='row'>" . ucfirst( $val ) . "</th><td><input type='checkbox' name='menu_items[" . $val . "]' value='1'" . $checked . "></tr>";
+ }
+ ?>
+ </table>
+ </fieldset>
+ <fieldset class="options">
+ </fieldset>
+ <p class="submit">
+ <input type="submit" name="Submit" value="<?php _e('Update Options') ?>" />
+ </p>
+ </form>
+</div>
+<?php include('./admin-footer.php'); ?>