2004-04-11 04:15:10 -04:00
|
|
|
<?php
|
2004-10-18 23:03:06 -04:00
|
|
|
require_once('admin.php');
|
2004-04-20 23:00:44 -04:00
|
|
|
|
2004-06-13 12:14:58 -04:00
|
|
|
$title = __('Miscellaneous Options');
|
2005-11-16 18:32:38 -05:00
|
|
|
$parent_file = 'options-general.php';
|
2004-10-18 23:03:06 -04:00
|
|
|
|
|
|
|
include('admin-header.php');
|
|
|
|
|
2004-04-11 04:15:10 -04:00
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="wrap">
|
2004-09-04 20:24:28 -04:00
|
|
|
<h2><?php _e('Miscellaneous Options') ?></h2>
|
2006-01-09 17:24:57 -05:00
|
|
|
<form method="post" action="options.php">
|
|
|
|
|
|
|
|
<fieldset class="options">
|
|
|
|
<legend><?php _e('Uploading'); ?></legend>
|
|
|
|
<table width="100%" cellspacing="2" cellpadding="5" class="editform">
|
|
|
|
<tr valign="top"><th scope="row" width="33%"><?php _e('Organize uploads:'); ?></th>
|
|
|
|
<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>
|
|
|
|
</td></tr>
|
|
|
|
<tr valign="top"><th scope="row"><?php _e('Store uploads in this folder (default is wp-content/uploads):'); ?></th>
|
|
|
|
<td>
|
|
|
|
<input name="fileupload_realpath" type="text" id="fileupload_realpath" value="<?php echo str_replace(ABSPATH, '', get_settings('fileupload_realpath')); ?>" size="40" />
|
|
|
|
</td></tr>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
|
2005-08-07 15:23:41 -04:00
|
|
|
<p><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_settings('use_linksupdate')); ?> />
|
|
|
|
<label for="use_linksupdate"><?php _e('Track Links’ Update Times') ?></label></p>
|
|
|
|
<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 17:24:57 -05:00
|
|
|
|
2005-08-07 15:23:41 -04:00
|
|
|
<p class="submit">
|
|
|
|
<input type="hidden" name="action" value="update" />
|
2006-01-09 17:24:57 -05:00
|
|
|
<input type="hidden" name="page_options" value="hack_file,use_linksupdate,uploads_use_yearmonth_folders,fileupload_realpath" />
|
2005-08-07 15:23:41 -04:00
|
|
|
<input type="submit" name="Submit" value="<?php _e('Update Options') ?> »" />
|
|
|
|
</p>
|
2004-09-04 20:24:28 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
2004-04-24 19:25:53 -04:00
|
|
|
|
2004-09-04 20:24:28 -04:00
|
|
|
<?php include('./admin-footer.php'); ?>
|