206 lines
7.1 KiB
PHP
206 lines
7.1 KiB
PHP
<? /*
|
|
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
|
|
|
|
This file is part of CAcert.
|
|
|
|
CAcert has been released under the CAcert Source License
|
|
which can be found included with these source files or can
|
|
be downloaded from the internet from the following address:
|
|
http://www.cacert.org/src-lic.php
|
|
|
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
PARTICULAR PURPOSE. See the License for more details.
|
|
*/ ?>
|
|
<?
|
|
$ccid = intval($_REQUEST['ccid']);
|
|
$regid = intval($_REQUEST['regid']);
|
|
$locid = intval($_REQUEST['locid']);
|
|
$name = mysql_escape_string($_REQUEST['name']);
|
|
|
|
if($ccid > 0 && $_REQUEST['action'] == "add") { ?>
|
|
<form method="post" action="account.php">
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="2" class="title"><?=_("Add Region")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Region")?>:</td>
|
|
<td class="DataTD"><input type="text" name="name" value="<?=$name?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Add")?>"></td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="action" value="add">
|
|
<input type="hidden" name="ccid" value="<?=$ccid?>">
|
|
<input type="hidden" name="oldid" value="54">
|
|
</form>
|
|
<? } if($regid > 0 && $_REQUEST['action'] == "edit") {
|
|
$query = "select * from `regions` where `id`='$regid' order by `name`";
|
|
$row = mysql_fetch_assoc(mysql_query($query));
|
|
$name = $row['name'];
|
|
?>
|
|
<form method="post" action="account.php">
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="2" class="title"><?=_("Edit Region")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Region")?>:</td>
|
|
<td class="DataTD"><input type="text" name="name" value="<?=$name?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Update")?>"></td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="action" value="edit">
|
|
<input type="hidden" name="regid" value="<?=$regid?>">
|
|
<input type="hidden" name="oldid" value="54">
|
|
</form>
|
|
<? } if($regid > 0 && $_REQUEST['action'] == "add") { ?>
|
|
<form method="post" action="account.php">
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="2" class="title"><?=_("Add Location")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Location")?>:</td>
|
|
<td class="DataTD"><input type="text" name="name" value="<?=$name?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Longitude")?>:</td>
|
|
<td class="DataTD"><input type="text" name="longitude" value="<?=$_REQUEST['longitude']?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Latitude")?>:</td>
|
|
<td class="DataTD"><input type="text" name="latitude" value="<?=$_REQUEST['latitude']?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Add")?>"></td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="action" value="add">
|
|
<input type="hidden" name="regid" value="<?=$regid?>">
|
|
<input type="hidden" name="oldid" value="54">
|
|
</form>
|
|
<? } if($locid > 0 && $_REQUEST['action'] == "edit") {
|
|
$query = "select * from `locations` where `id`='$locid'";
|
|
$row = mysql_fetch_assoc(mysql_query($query));
|
|
|
|
if($name == "")
|
|
$name = $row['name'];
|
|
if($_REQUEST['longitude'] == "")
|
|
$_REQUEST['longitude'] = $row['long'];
|
|
if($_REQUEST['latitude'] == "")
|
|
$_REQUEST['latitude'] = $row['lat'];
|
|
?>
|
|
<form method="post" action="account.php">
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="2" class="title"><?=_("Edit Location")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Location")?>:</td>
|
|
<td class="DataTD"><input type="text" name="name" value="<?=$name?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Longitude")?>:</td>
|
|
<td class="DataTD"><input type="text" name="longitude" value="<?=$_REQUEST['longitude']?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Latitude")?>:</td>
|
|
<td class="DataTD"><input type="text" name="latitude" value="<?=$_REQUEST['latitude']?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Update")?>"></td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="action" value="edit">
|
|
<input type="hidden" name="locid" value="<?=$locid?>">
|
|
<input type="hidden" name="oldid" value="54">
|
|
</form>
|
|
<? } if($locid > 0 && $_REQUEST['action'] == "aliases") {
|
|
$query = "select * from `localias` where `locid`='$locid'";
|
|
$res = mysql_query($query);
|
|
$rc = mysql_num_rows($res);
|
|
?>
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="2" class="title"><?=_("Location Aliases")?> - <a href="javascript:Show_Stuff()"><?=_("Add")?></a></td>
|
|
</tr>
|
|
<tr ID="display1">
|
|
<td colspan="2" class="DataTD">
|
|
<form method="post" action="account.php" ACCEPTCHARSET="utf-8">
|
|
<?=_("Location Alias")?>: <input type="text" name="name"> <input type="submit" value="Add">
|
|
<input type="hidden" name="action" value="alias">
|
|
<input type="hidden" name="locid" value="<?=$locid?>">
|
|
<input type="hidden" name="oldid" value="54">
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
<?
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
?>
|
|
<tr>
|
|
<td class="DataTD"><?=$row['name']?></td>
|
|
<td class="DataTD"><a href="account.php?id=54&locid=<?=$locid?>&name=<?=$row['name']?>&action=delalias" onclick="return confirm('Are you sure you want to delete this location alias?');"><?=_("Delete")?></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
<script language="JavaScript" type="text/javascript">
|
|
<!--
|
|
function Show_Stuff()
|
|
{
|
|
if (document.getElementById("display1").style.display == "none")
|
|
{
|
|
document.getElementById("display1").style.display = "";
|
|
} else {
|
|
document.getElementById("display1").style.display = "none";
|
|
}
|
|
}
|
|
|
|
document.getElementById("display1").style.display = "none";
|
|
-->
|
|
</script>
|
|
<? } if($locid > 0 && $_REQUEST['action'] == "move") {
|
|
$query = "select * from `locations` where `id`='$locid'";
|
|
$row = mysql_fetch_assoc(mysql_query($query));
|
|
$newreg = $_REQUEST['newreg'] = $row['regid'];
|
|
?>
|
|
<form method="post" action="account.php">
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="2" class="title"><?=_("Move Location")?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Location")?>:</td>
|
|
<td class="DataTD"><?=$row['name']?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Set Region")?>:</td>
|
|
<td class="DataTD"><select name="newreg">
|
|
<?
|
|
$query = "select * from `regions` where `ccid`='$row[ccid]' order by `name`";
|
|
$res = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($res))
|
|
{
|
|
echo "<option value='$row[id]'";
|
|
if($_REQUEST['newreg'] == $row['id'])
|
|
echo " selected";
|
|
echo ">$row[name]</option>\n";
|
|
}
|
|
?>
|
|
</select></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Update")?>"></td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="action" value="move">
|
|
<input type="hidden" name="locid" value="<?=$locid?>">
|
|
<input type="hidden" name="oldid" value="54">
|
|
</form>
|
|
<? } ?>
|
|
|