source: trunk/www.guidonia.net/wp/wp-admin/options-misc.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 2.2 KB
Line 
1<?php
2/**
3 * Miscellaneous settings administration panel.
4 *
5 * @package WordPress
6 * @subpackage Administration
7 */
8
9/** WordPress Administration Bootstrap */
10require_once('admin.php');
11
12$title = __('Miscellaneous Settings');
13$parent_file = 'options-general.php';
14
15include('admin-header.php');
16
17?>
18
19<div class="wrap">
20<?php screen_icon(); ?>
21<h2><?php echo esc_html( $title ); ?></h2>
22
23<form method="post" action="options.php">
24<?php settings_fields('misc'); ?>
25
26<h3><?php _e('Uploading Files'); ?></h3>
27<table class="form-table">
28<tr valign="top">
29<th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
30<td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(str_replace(ABSPATH, '', get_option('upload_path'))); ?>" class="regular-text code" />
31<span class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span>
32</td>
33</tr>
34
35<tr valign="top">
36<th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th>
37<td><input name="upload_url_path" type="text" id="upload_url_path" value="<?php echo esc_attr( get_option('upload_url_path')); ?>" class="regular-text code" />
38<span class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></span>
39</td>
40</tr>
41
42<tr>
43<th scope="row" colspan="2" class="th-full">
44<label for="uploads_use_yearmonth_folders">
45<input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> />
46<?php _e('Organize my uploads into month- and year-based folders'); ?>
47</label>
48</th>
49</tr>
50<?php do_settings_fields('misc', 'default'); ?>
51</table>
52
53<table class="form-table">
54
55<tr>
56<th scope="row" class="th-full">
57<label for="use_linksupdate">
58<input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1"<?php checked('1', get_option('use_linksupdate')); ?> />
59<?php _e('Track Links&#8217; Update Times') ?>
60</label>
61</th>
62</tr>
63<tr>
64
65</table>
66
67<?php do_settings_sections('misc'); ?>
68
69<p class="submit">
70 <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
71</p>
72
73</form>
74</div>
75
76<?php include('./admin-footer.php'); ?>
Note: See TracBrowser for help on using the repository browser.