]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-general.php
Wordpress 2.0.2-scripts
[autoinstalls/wordpress.git] / wp-admin / options-general.php
1 <?php
2 require_once('./admin.php');
3
4 $title = __('General Options');
5 $parent_file = 'options-general.php';
6
7 include('./admin-header.php');
8 ?>
9  
10 <div class="wrap">
11 <h2><?php _e('General Options') ?></h2>
12 <form method="post" action="options.php"> 
13 <table class="optiontable"> 
14 <tr valign="top"> 
15 <th scope="row"><?php _e('Weblog title:') ?></th> 
16 <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" size="40" /></td> 
17 </tr> 
18 <tr valign="top"> 
19 <th scope="row"><?php _e('Tagline:') ?></th> 
20 <td><input name="blogdescription" type="text" id="blogdescription" style="width: 95%" value="<?php form_option('blogdescription'); ?>" size="45" />
21 <br />
22 <?php _e('In a few words, explain what this weblog is about.') ?></td> 
23 </tr> 
24 <tr valign="top"> 
25 <th scope="row"><?php _e('WordPress address (URI):') ?></th> 
26 <td><input name="siteurl" type="text" id="siteurl" value="<?php form_option('siteurl'); ?>" size="40" class="code" /></td> 
27 </tr> 
28 <tr valign="top">
29 <th scope="row"><?php _e('Blog address (URI):') ?></th>
30 <td><input name="home" type="text" id="home" value="<?php form_option('home'); ?>" size="40" class="code" /><br /><?php _e('If you want your blog homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different than the directory</a> you installed WordPress in, enter that address here.'); ?></td>
31 </tr>
32 <tr valign="top"> 
33 <th scope="row"><?php _e('E-mail address:') ?> </th> 
34 <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" size="40" class="code" />
35 <br />
36 <?php _e('This address is used only for admin purposes.') ?></td> 
37 </tr>
38 <tr valign="top"> 
39 <th scope="row"><?php _e('Membership:') ?></th> 
40 <td> <label for="users_can_register"> 
41 <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked('1', get_settings('users_can_register')); ?> /> 
42 <?php _e('Anyone can register') ?></label><br />
43 <label for="comment_registration">
44 <input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked('1', get_settings('comment_registration')); ?> /> 
45 <?php _e('Users must be registered and logged in to comment') ?>
46 </label>
47 </td> 
48 </tr> 
49 <tr valign="top"> 
50 <th scope="row"><?php _e('New User Default Role:') ?></th> 
51 <td><label for="default_role"> 
52 <select name="default_role" id="default_role"><?php 
53 foreach($wp_roles->role_names as $role => $name) {
54         $selected = (get_settings('default_role') == $role) ? 'selected="selected"' : '';
55         echo "<option {$selected} value=\"{$role}\">{$name}</option>";
56 }
57 ?></select></label>
58 </td> 
59 </tr> 
60 </table> 
61 <fieldset class="options"> 
62 <legend><?php _e('Date and Time') ?></legend> 
63 <table class="optiontable"> 
64 <tr> 
65 <th scope="row"><?php _e('<abbr title="Coordinated Universal Time">UTC</abbr> time is:') ?> </th> 
66 <td><code><?php echo gmdate('Y-m-d g:i:s a'); ?></code></td> 
67 </tr>
68 <tr>
69 <th scope="row"><?php _e('Times in the weblog should differ by:') ?> </th>
70 <td><input name="gmt_offset" type="text" id="gmt_offset" size="2" value="<?php form_option('gmt_offset'); ?>" /> 
71 <?php _e('hours') ?> </td>
72 </tr>
73 <tr>
74 <th scope="row"><?php _e('Default date format:') ?></th>
75 <td><input name="date_format" type="text" id="date_format" size="30" value="<?php form_option('date_format'); ?>" /><br />
76 <?php _e('Output:') ?> <strong><?php echo mysql2date(get_settings('date_format'), current_time('mysql')); ?></strong></td>
77 </tr>
78 <tr>
79 <th scope="row"><?php _e('Default time format:') ?></th>
80 <td><input name="time_format" type="text" id="time_format" size="30" value="<?php form_option('time_format'); ?>" /><br />
81 <?php _e('Output:') ?> <strong><?php echo gmdate(get_settings('time_format'), current_time('timestamp')); ?></strong></td>
82 </tr> 
83 <tr>
84 <th scope="row">&nbsp;</th>
85 <td><?php _e('<a href="http://codex.wordpress.org/Formatting_Date_and_Time">Documentation on date formatting</a>. Save option to update sample output.') ?> </td>
86 </tr>
87 <tr>
88 <th scope="row"><?php _e('Weeks in the calendar should start on:') ?></th>
89 <td><select name="start_of_week" id="start_of_week">
90 <?php
91 for ($day_index = 0; $day_index <= 6; $day_index++) :
92 if ($day_index == get_settings('start_of_week')) $selected = " selected='selected'";
93 else $selected = '';
94 echo "\n\t<option value='$day_index' $selected>$weekday[$day_index]</option>";
95 endfor;
96 ?>
97 </select></td>
98 </tr>
99 </table>
100 </fieldset> 
101
102 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" />
103 <input type="hidden" name="action" value="update" /> 
104 <input type="hidden" name="page_options" value="blogname,blogdescription,siteurl,admin_email,users_can_register,gmt_offset,date_format,time_format,home,start_of_week,comment_registration,default_role" /> 
105 </p>
106 </form>
107
108 </div> 
109
110 <?php include('./admin-footer.php') ?>