2004-04-11 10:15:10 +02:00
|
|
|
<?php
|
2004-04-21 05:00:44 +02:00
|
|
|
require_once('../wp-includes/wp-l10n.php');
|
|
|
|
|
2004-04-11 10:15:10 +02:00
|
|
|
$title = 'Miscellaneous Options';
|
2004-04-19 10:09:27 +02:00
|
|
|
$parent_file = 'options-general.php';
|
2004-04-11 10:15:10 +02:00
|
|
|
|
|
|
|
function add_magic_quotes($array) {
|
|
|
|
foreach ($array as $k => $v) {
|
|
|
|
if (is_array($v)) {
|
|
|
|
$array[$k] = add_magic_quotes($v);
|
|
|
|
} else {
|
|
|
|
$array[$k] = addslashes($v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!get_magic_quotes_gpc()) {
|
2004-04-21 00:56:47 +02:00
|
|
|
$_GET = add_magic_quotes($_GET);
|
|
|
|
$_POST = add_magic_quotes($_POST);
|
|
|
|
$_COOKIE = add_magic_quotes($_COOKIE);
|
2004-04-11 10:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$wpvarstoreset = array('action','standalone', 'option_group_id');
|
|
|
|
for ($i=0; $i<count($wpvarstoreset); $i += 1) {
|
|
|
|
$wpvar = $wpvarstoreset[$i];
|
|
|
|
if (!isset($$wpvar)) {
|
2004-04-21 00:56:47 +02:00
|
|
|
if (empty($_POST["$wpvar"])) {
|
|
|
|
if (empty($_GET["$wpvar"])) {
|
2004-04-11 10:15:10 +02:00
|
|
|
$$wpvar = '';
|
|
|
|
} else {
|
2004-04-21 00:56:47 +02:00
|
|
|
$$wpvar = $_GET["$wpvar"];
|
2004-04-11 10:15:10 +02:00
|
|
|
}
|
|
|
|
} else {
|
2004-04-21 00:56:47 +02:00
|
|
|
$$wpvar = $_POST["$wpvar"];
|
2004-04-11 10:15:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$standalone = 0;
|
|
|
|
include_once('admin-header.php');
|
|
|
|
include('options-head.php');
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="wrap">
|
2004-04-21 05:00:44 +02:00
|
|
|
<h2><?php _e('Miscellaneous Options') ?></h2>
|
2004-04-11 10:15:10 +02:00
|
|
|
<form name="form1" method="post" action="options.php">
|
|
|
|
<input type="hidden" name="action" value="update" />
|
2004-04-25 01:25:53 +02:00
|
|
|
<input type="hidden" name="action" value="update" /> <input type="hidden" name="page_options" value="'hack_file','use_fileupload','fileupload_realpath','fileupload_url','fileupload_allowedtypes','fileupload_maxk','fileupload_maxk','fileupload_minlevel','use_geo_positions','default_geourl_lat','default_geourl_lon','use_default_geourl'" />
|
2004-04-15 09:53:45 +02:00
|
|
|
<fieldset class="options">
|
2004-04-15 11:15:56 +02:00
|
|
|
<legend>
|
|
|
|
<input name="use_fileupload" type="checkbox" id="use_fileupload" value="1" <?php checked('1', get_settings('use_fileupload')); ?> />
|
2004-04-21 05:00:44 +02:00
|
|
|
<label for="use_fileupload"><?php _e('Allow File Uploads') ?></label></legend>
|
2004-04-15 09:53:45 +02:00
|
|
|
<table width="100%" cellspacing="2" cellpadding="5" class="editform">
|
2004-04-15 11:15:56 +02:00
|
|
|
<tr>
|
2004-04-21 05:00:44 +02:00
|
|
|
<th width="33%" valign="top" scope="row"><?php _e('Destination directory:') ?> </th>
|
2004-04-15 09:53:45 +02:00
|
|
|
<td>
|
|
|
|
<input name="fileupload_realpath" type="text" id="fileupload_realpath" value="<?php echo get_settings('fileupload_realpath'); ?>" size="50" /><br />
|
2004-04-21 05:00:44 +02:00
|
|
|
<?php printf(__('Recommended: <code>%s</code>'), ABSPATH . 'wp-content') ?>
|
2004-04-15 09:53:45 +02:00
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-04-15 11:15:56 +02:00
|
|
|
<tr>
|
2004-04-21 05:00:44 +02:00
|
|
|
<th valign="top" scope="row"><?php _e('URI of this directory:') ?> </th>
|
2004-04-15 09:53:45 +02:00
|
|
|
<td>
|
|
|
|
<input name="fileupload_url" type="text" id="fileupload_url" value="<?php echo get_settings('fileupload_url'); ?>" size="50" /><br />
|
2004-04-21 05:00:44 +02:00
|
|
|
<?php printf(__('Recommended: <code>%s</code>'), get_settings('siteurl') . '/wp-content') ?>
|
2004-04-15 09:53:45 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-04-15 11:15:56 +02:00
|
|
|
<tr>
|
2004-04-21 05:00:44 +02:00
|
|
|
<th scope="row"><?php _e('Maximum size:') ?> </th>
|
2004-04-15 09:53:45 +02:00
|
|
|
<td><input name="fileupload_maxk" type="text" id="fileupload_maxk" value="<?php echo get_settings('fileupload_maxk'); ?>" size="4">
|
2004-04-21 05:00:44 +02:00
|
|
|
<?php _e('Kilobytes (KB)') ?></td>
|
2004-04-15 09:53:45 +02:00
|
|
|
</tr>
|
2004-04-15 11:15:56 +02:00
|
|
|
<tr>
|
2004-04-21 05:00:44 +02:00
|
|
|
<th valign="top" scope="row"><?php _e('Allowed file extensions:') ?></th>
|
2004-04-15 09:53:45 +02:00
|
|
|
<td><input name="fileupload_allowedtypes" type="text" id="fileupload_allowedtypes" value="<?php echo get_settings('fileupload_allowedtypes'); ?>" size="40">
|
|
|
|
<br>
|
2004-04-21 05:00:44 +02:00
|
|
|
<?php _e('Recommended: <code>jpg jpeg png gif </code>') ?></td>
|
2004-04-15 09:53:45 +02:00
|
|
|
</tr>
|
2004-04-15 11:15:56 +02:00
|
|
|
<tr>
|
2004-04-21 05:00:44 +02:00
|
|
|
<th scope="row"><?php _e('Minimum level to upload:') ?></th>
|
2004-04-15 09:53:45 +02:00
|
|
|
<td><select name="fileupload_minlevel" id="fileupload_minlevel">
|
|
|
|
<?php
|
2004-04-22 21:49:55 +02:00
|
|
|
for ($i = 1; $i < 11; $i++) {
|
2004-04-15 09:53:45 +02:00
|
|
|
if ($i == get_settings('fileupload_minlevel')) $selected = " selected='selected'";
|
|
|
|
else $selected = '';
|
|
|
|
echo "\n\t<option value='$i' $selected>$i</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2004-04-25 01:25:53 +02:00
|
|
|
</fieldset>
|
|
|
|
<fieldset class="options">
|
|
|
|
<legend>
|
|
|
|
<input name="use_geo_positions" type="checkbox" id="use_geo_positions" value="1" <?php checked('1', get_settings('use_geo_positions')); ?> />
|
|
|
|
<label for="use_geo_positions"><?php _e('Use Geographic Tracking Features') ?></label></legend>
|
|
|
|
<table width="100%" cellspacing="2" cellpadding="5" class="editform">
|
|
|
|
<tr>
|
|
|
|
<th width="33%" valign="top" scope="row"><?php _e('Default latitude:') ?> </th>
|
|
|
|
<td>
|
|
|
|
<input name="default_geourl_lat" type="text" id="default_geourl_lat" value="<?php echo get_settings('default_geourl_lat'); ?>" size="50" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th valign="top" scope="row"><?php _e('Default longitude:') ?> </th>
|
|
|
|
<td>
|
|
|
|
<input name="default_geourl_lon" type="text" id="default_geourl_lon" value="<?php echo get_settings('default_geourl_lon'); ?>" size="50" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row"> </th>
|
|
|
|
<td><label>
|
|
|
|
<input type="checkbox" name="use_default_geourl" value="1" <?php checked('1', get_settings('use_default_geourl')); ?> />
|
|
|
|
<?php _e('Use default location values if none specified.') ?></label></td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</table>
|
2004-04-15 09:53:45 +02:00
|
|
|
</fieldset>
|
2004-04-11 10:15:10 +02:00
|
|
|
<p>
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" name="hack_file" value="1" <?php checked('1', get_settings('hack_file')); ?> />
|
2004-04-21 05:00:44 +02:00
|
|
|
<?php _e('Use legacy <code>my-hacks.php</code> file support') ?></label>
|
2004-04-11 10:15:10 +02:00
|
|
|
</p>
|
|
|
|
<p style="text-align: right;">
|
2004-04-21 05:00:44 +02:00
|
|
|
<input type="submit" name="Submit" value="<?php _e('Update Options') ?>" />
|
2004-04-11 10:15:10 +02:00
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<?php include("admin-footer.php") ?>
|