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
|
|
|
|
2009-08-01 23:12:17 +02:00
|
|
|
if ( ! current_user_can('manage_options') )
|
|
|
|
wp_die(__('You do not have sufficient permissions to manage options for this blog.'));
|
|
|
|
|
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-11-26 14:51:25 +01:00
|
|
|
<?php screen_icon(); ?>
|
2009-05-18 17:11:07 +02:00
|
|
|
<h2><?php echo esc_html( $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-11-28 22:57:58 +01:00
|
|
|
<?php settings_fields('misc'); ?>
|
2010-01-12 22:11:52 +01:00
|
|
|
<?php if ( !is_multisite() ) { ?>
|
2008-10-25 21:55:56 +02:00
|
|
|
<h3><?php _e('Uploading Files'); ?></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>
|
2009-12-15 18:53:51 +01:00
|
|
|
<td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" />
|
2009-04-30 04:33:22 +02:00
|
|
|
<span class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span>
|
2006-01-10 06:16:17 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
2008-02-11 07:35:24 +01:00
|
|
|
|
|
|
|
<tr valign="top">
|
2008-10-25 21:55:56 +02:00
|
|
|
<th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th>
|
2009-05-05 21:43:53 +02:00
|
|
|
<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" />
|
2009-04-30 04:33:22 +02:00
|
|
|
<span class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></span>
|
2008-02-11 07:35:24 +01:00
|
|
|
</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>
|
2008-03-18 03:07:49 +01:00
|
|
|
|
2006-01-09 23:24:57 +01:00
|
|
|
</table>
|
2010-01-12 22:11:52 +01:00
|
|
|
<?php } ?>
|
2008-09-10 00:31:22 +02:00
|
|
|
<?php do_settings_sections('misc'); ?>
|
|
|
|
|
2005-08-07 21:23:41 +02:00
|
|
|
<p class="submit">
|
2009-05-05 21:43:53 +02:00
|
|
|
<input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
|
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-27 21:41:05 +01:00
|
|
|
<?php include('./admin-footer.php'); ?>
|