2004-04-11 10:15:10 +02:00
|
|
|
<?php
|
2008-08-16 09:27:34 +02:00
|
|
|
/**
|
|
|
|
* Miscellaneous settings administration panel.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
2004-10-19 05:03:06 +02:00
|
|
|
require_once('admin.php');
|
2006-11-18 08:31:29 +01:00
|
|
|
|
2008-02-14 01:39:38 +01:00
|
|
|
$title = __('Miscellaneous Settings');
|
2006-11-18 08:31:29 +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
|
|
|
?>
|
2006-11-19 08:56:05 +01:00
|
|
|
|
|
|
|
<div class="wrap">
|
2008-10-17 22:06:22 +02:00
|
|
|
<h2><?php echo wp_specialchars( $title ); ?></h2>
|
2008-10-17 22:02:03 +02:00
|
|
|
|
2006-01-09 23:24:57 +01:00
|
|
|
<form method="post" action="options.php">
|
2008-09-04 03:11:18 +02:00
|
|
|
<input type='hidden' name='option_page' value='misc' />
|
2008-10-14 03:18:52 +02:00
|
|
|
<input type="hidden" name="action" value="update" />
|
2008-09-04 03:11:18 +02:00
|
|
|
<?php wp_nonce_field('misc-options') ?>
|
2008-10-14 03:18:52 +02:00
|
|
|
|
2008-10-24 12:45:58 +02:00
|
|
|
<p class="submit submit-top">
|
2008-10-14 03:18:52 +02:00
|
|
|
<input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" class="button" />
|
|
|
|
</p>
|
|
|
|
|
2008-02-14 03:40:17 +01:00
|
|
|
<h3><?php _e('Uploading'); ?></h3>
|
2008-02-24 05:33:10 +01:00
|
|
|
<table class="form-table">
|
2006-01-10 06:16:17 +01:00
|
|
|
<tr valign="top">
|
2008-05-04 12:37:06 +02:00
|
|
|
<th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
|
2006-12-21 11:10:04 +01:00
|
|
|
<td><input name="upload_path" type="text" id="upload_path" class="code" value="<?php echo attribute_escape(str_replace(ABSPATH, '', get_option('upload_path'))); ?>" 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>
|
2008-02-11 07:35:24 +01:00
|
|
|
|
|
|
|
<tr valign="top">
|
2008-05-04 12:37:06 +02:00
|
|
|
<th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files (optional)'); ?></label></th>
|
2008-02-11 07:35:24 +01:00
|
|
|
<td><input name="upload_url_path" type="text" id="upload_url_path" class="code" value="<?php echo attribute_escape( get_option('upload_url_path')); ?>" size="40" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2006-01-10 06:16:17 +01:00
|
|
|
<tr>
|
2008-03-18 03:07:49 +01:00
|
|
|
<th scope="row" colspan="2" class="th-full">
|
2006-01-10 04:14:34 +01:00
|
|
|
<label for="uploads_use_yearmonth_folders">
|
2008-09-06 02:03:03 +02:00
|
|
|
<input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> />
|
2006-01-10 04:14:34 +01:00
|
|
|
<?php _e('Organize my uploads into month- and year-based folders'); ?>
|
|
|
|
</label>
|
2008-02-22 08:43:06 +01:00
|
|
|
</th>
|
|
|
|
</tr>
|
2008-09-10 00:31:22 +02:00
|
|
|
<?php do_settings_fields('misc', 'default'); ?>
|
2008-02-22 08:43:06 +01:00
|
|
|
</table>
|
2008-03-18 03:07:49 +01:00
|
|
|
|
2008-03-24 09:28:15 +01:00
|
|
|
<table class="form-table">
|
|
|
|
|
2008-02-22 08:43:06 +01:00
|
|
|
<tr>
|
2008-03-18 03:07:49 +01:00
|
|
|
<th scope="row" class="th-full">
|
|
|
|
<label for="use_linksupdate">
|
2008-09-06 02:03:03 +02:00
|
|
|
<input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1"<?php checked('1', get_option('use_linksupdate')); ?> />
|
2008-03-18 03:07:49 +01:00
|
|
|
<?php _e('Track Links’ Update Times') ?>
|
|
|
|
</label>
|
2008-02-22 08:43:06 +01:00
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2008-03-18 03:07:49 +01:00
|
|
|
|
|
|
|
<th scope="row" class="th-full">
|
|
|
|
<label for="hack_file">
|
2008-09-06 02:03:03 +02:00
|
|
|
<input type="checkbox" id="hack_file" name="hack_file" value="1"<?php checked('1', get_option('hack_file')); ?> />
|
2008-03-18 03:07:49 +01:00
|
|
|
<?php _e('Use legacy <code>my-hacks.php</code> file support') ?>
|
|
|
|
</label>
|
2008-02-22 08:43:06 +01:00
|
|
|
</th>
|
2006-01-10 06:16:17 +01:00
|
|
|
</tr>
|
2008-03-24 09:28:15 +01:00
|
|
|
|
2006-01-09 23:24:57 +01:00
|
|
|
</table>
|
|
|
|
|
2008-09-10 00:31:22 +02:00
|
|
|
<?php do_settings_sections('misc'); ?>
|
|
|
|
|
2005-08-07 21:23:41 +02:00
|
|
|
<p class="submit">
|
2008-10-14 03:18:52 +02:00
|
|
|
<input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" class="button" />
|
2005-08-07 21:23:41 +02:00
|
|
|
</p>
|
2008-10-14 03:18:52 +02:00
|
|
|
|
2006-11-19 08:56:05 +01:00
|
|
|
</form>
|
2004-09-05 02:24:28 +02:00
|
|
|
</div>
|
2004-04-25 01:25:53 +02:00
|
|
|
|
2008-10-14 03:18:52 +02:00
|
|
|
<?php include('./admin-footer.php'); ?>
|