<?php
$title = 'Miscellaneous Options';
$parent_file = 'options-general.php';

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()) {
	$_GET    = add_magic_quotes($_GET);
	$_POST   = add_magic_quotes($_POST);
	$_COOKIE = add_magic_quotes($_COOKIE);
}

$wpvarstoreset = array('action','standalone', 'option_group_id');
for ($i=0; $i<count($wpvarstoreset); $i += 1) {
	$wpvar = $wpvarstoreset[$i];
	if (!isset($$wpvar)) {
		if (empty($_POST["$wpvar"])) {
			if (empty($_GET["$wpvar"])) {
				$$wpvar = '';
			} else {
				$$wpvar = $_GET["$wpvar"];
			}
		} else {
			$$wpvar = $_POST["$wpvar"];
		}
	}
}


$standalone = 0;
include_once('admin-header.php');
include('options-head.php');
?>
 
<div class="wrap"> 
  <h2><?php echo _LANG_WAO_MISC_TITLE; ?></h2> 
  <form name="form1" method="post" action="options.php"> 
    <input type="hidden" name="action" value="update" /> 
	<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'" /> 
<fieldset class="options">
<legend>
<input name="use_fileupload" type="checkbox" id="use_fileupload" value="1" <?php checked('1', get_settings('use_fileupload')); ?> />
<label for="use_fileupload"><?php echo _LANG_WAO_MISC_UPLOADS; ?></label></legend>
    <table width="100%" cellspacing="3" cellpadding="2" class="editform"> 
      <tr> 
        <th id="leftmark" width="33%" valign="top" scope="row"><?php echo _LANG_WAO_MISC_DIRECTORY; ?> </th> 
        <td>
        	<input name="fileupload_realpath" type="text" id="fileupload_realpath" value="<?php echo get_settings('fileupload_realpath'); ?>" size="50" /><br />
<?php printf(_LANG_WAO_MISC_RECOMMEND, ABSPATH . 'wp-content') ?>
  
        	</td> 
      </tr> 
      <tr>
        <th id="leftmark" valign="top" scope="row"><?php echo _LANG_WAO_MISC_URI; ?> </th>
        <td>          
        	<input name="fileupload_url" type="text" id="fileupload_url" value="<?php echo get_settings('fileupload_url'); ?>" size="50" /><br />
<?php printf(_LANG_WAO_MISC_RECOMMEND, get_settings('siteurl') . '/wp-content') ?>
        </td>
      </tr>
      <tr>
        <th id="leftmark" scope="row"><?php echo _LANG_WAO_MISC_MAX; ?> </th>
      	<td><input name="fileupload_maxk" type="text" id="fileupload_maxk" value="<?php echo get_settings('fileupload_maxk'); ?>" size="4"> 
        <?php echo _LANG_WAO_MISC_BYTES; ?></td>
      	</tr>
      <tr>
        <th id="leftmark" valign="top" scope="row"><?php echo _LANG_WAO_MISC_EXTENSION; ?></th>
      	<td><input name="fileupload_allowedtypes" type="text" id="fileupload_allowedtypes" value="<?php echo get_settings('fileupload_allowedtypes'); ?>" size="40">
      		<br>
         <?php echo _LANG_WAO_MISC_EG; ?></td>
      	</tr>
      <tr>
        <th id="leftmark" scope="row"><?php echo _LANG_WAO_MISC_LEVEL; ?></th>
      	<td><select name="fileupload_minlevel" id="fileupload_minlevel">
<?php
for ($i = 1; $i < 11; $i++) {
if ($i == get_settings('fileupload_minlevel')) $selected = " selected='selected'";
else $selected = '';
	echo "\n\t<option value='$i' $selected>$i</option>";
}
?>
      		</select></td>
      	</tr>
    </table> 
</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 echo _LANG_WAO_MISC_GEO; ?></label></legend>
    <table width="100%" cellspacing="3" cellpadding="2" class="editform"> 
      <tr> 
        <th id="leftmark" width="33%" valign="top" scope="row"><?php echo _LANG_WAO_MISC_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 id="leftmark" valign="top" scope="row"><?php echo _LANG_WAO_MISC_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 id="leftmark" scope="row">  </th>
      	<td><label>
			<input type="checkbox" name="use_default_geourl" value="1" <?php checked('1', get_settings('use_default_geourl')); ?> /> 
			<?php echo _LANG_WAO_MISC_SPECIFIED; ?></label></td>
      	</tr>

    </table> 
</fieldset>
		<p>
			<label>
			<input type="checkbox" name="hack_file" value="1" <?php checked('1', get_settings('hack_file')); ?> /> 
			<?php echo _LANG_WAO_MISC_HACK; ?></label>
		</p>
    <p class="submit">
      <input type="submit" name="Submit" value="<?php echo _LANG_WAO_MISC_BTNTXT; ?>" />
    </p>
  </form> 
</div> 
<?php include("admin-footer.php") ?>