2004-04-11 10:15:10 +02:00
|
|
|
<?php
|
2004-10-19 05:03:06 +02:00
|
|
|
require_once('admin.php');
|
2004-04-21 05:00:44 +02:00
|
|
|
|
2004-06-13 18:14:58 +02:00
|
|
|
$title = __('Miscellaneous Options');
|
2005-11-17 00:32:38 +01:00
|
|
|
$parent_file = 'options-general.php';
|
2004-10-19 05:03:06 +02:00
|
|
|
|
|
|
|
include('admin-header.php');
|
|
|
|
|
2004-04-11 10:15:10 +02:00
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="wrap">
|
2004-09-05 02:24:28 +02:00
|
|
|
<h2><?php _e('Miscellaneous Options') ?></h2>
|
2006-01-09 23:24:57 +01:00
|
|
|
<form method="post" action="options.php">
|
2006-05-03 00:36:06 +02:00
|
|
|
<?php wp_nonce_field('update-options') ?>
|
2006-01-09 23:24:57 +01:00
|
|
|
<fieldset class="options">
|
|
|
|
<legend><?php _e('Uploading'); ?></legend>
|
2006-01-10 06:16:17 +01:00
|
|
|
<table class="editform optiontable">
|
|
|
|
<tr valign="top">
|
|
|
|
<th scope="row"><?php _e('Store uploads in this folder'); ?>:</th>
|
2006-08-25 00:33:16 +02:00
|
|
|
<td><input name="upload_path" type="text" id="upload_path" class="code" value="<?php echo wp_specialchars(str_replace(ABSPATH, '', get_settings('upload_path')), 1); ?>" size="40" />
|
2006-01-10 04:14:34 +01:00
|
|
|
<br />
|
|
|
|
<?php _e('Default is <code>wp-content/uploads</code>'); ?>
|
2006-01-10 06:16:17 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td></td>
|
2006-01-10 04:14:34 +01:00
|
|
|
<td>
|
|
|
|
<label for="uploads_use_yearmonth_folders">
|
|
|
|
<input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1" <?php checked('1', get_settings('uploads_use_yearmonth_folders')); ?> />
|
|
|
|
<?php _e('Organize my uploads into month- and year-based folders'); ?>
|
|
|
|
</label>
|
2006-01-10 06:16:17 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
2006-01-09 23:24:57 +01:00
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
|
2005-08-07 21:23:41 +02:00
|
|
|
<p><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_settings('use_linksupdate')); ?> />
|
2006-02-27 05:57:30 +01:00
|
|
|
<label for="use_linksupdate"><?php _e('Track Bookmarks’ Update Times') ?></label></p>
|
2005-08-07 21:23:41 +02:00
|
|
|
<p>
|
|
|
|
<label><input type="checkbox" name="hack_file" value="1" <?php checked('1', get_settings('hack_file')); ?> /> <?php _e('Use legacy <code>my-hacks.php</code> file support') ?></label>
|
|
|
|
</p>
|
2006-01-09 23:24:57 +01:00
|
|
|
|
2005-08-07 21:23:41 +02:00
|
|
|
<p class="submit">
|
|
|
|
<input type="hidden" name="action" value="update" />
|
2006-01-14 23:09:51 +01:00
|
|
|
<input type="hidden" name="page_options" value="hack_file,use_linksupdate,uploads_use_yearmonth_folders,upload_path" />
|
2006-02-17 02:29:33 +01:00
|
|
|
<input type="submit" name="Submit" value="<?php _e('Update Options »') ?>" />
|
2005-08-07 21:23:41 +02:00
|
|
|
</p>
|
2004-09-05 02:24:28 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2004-04-25 01:25:53 +02:00
|
|
|
|
2004-09-05 02:24:28 +02:00
|
|
|
<?php include('./admin-footer.php'); ?>
|