mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
77 lines
2.5 KiB
Smarty
77 lines
2.5 KiB
Smarty
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename editPlus.tpl ##
|
|
## Developed by: aggenkeech ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2012. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
$id = $_GET['uid'];
|
|
$uid = $_GET['uid'];
|
|
if(isset($id))
|
|
{
|
|
?>
|
|
<form action="../GameEngine/Admin/Mods/editSitter.php" method="POST">
|
|
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
|
|
<input type="hidden" name="uid" value="<?php echo $uid; ?>" />
|
|
<input type="hidden" name="id" value="<?php echo $id; ?>" />
|
|
<br />
|
|
<p>To change sitters, you must use their "uid" you can find this using the search. Delete a sitter, put 0 as sitter.</p>
|
|
<br />
|
|
<table id="profile" cellpadding="0" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">Edit Sitters For: <a href="admin.php?p=player&uid=<?php echo $user['id']; ?>"><?php echo $user['username']; ?></a></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Sitter 1</td>
|
|
<td>
|
|
<input class="fm" name="sitter1" value="<?php echo $user['sit1']; ?>"><br />
|
|
<?php
|
|
$sitter1 = $database->getUserArray($user['sit1'], 1);
|
|
if($user['sit1'] ==0)
|
|
{
|
|
echo 'No Sitter';
|
|
}
|
|
else
|
|
{
|
|
echo '<a href="admin.php?p=player&uid='.$sitter1['id'].'">'.$sitter1['username'].'</a>';
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Sitter 2</td>
|
|
<td>
|
|
<input class="fm" name="sitter2" value="<?php echo $user['sit2']; ?>"><br />
|
|
<?php
|
|
$sitter2 = $database->getUserArray($user['sit2'], 1);
|
|
if($user['sit2'] ==0)
|
|
{
|
|
echo 'No Sitter';
|
|
}
|
|
else
|
|
{
|
|
echo '<a href="admin.php?p=player&uid='.$sitter2['id'].'">'.$sitter2['username'].'</a>';
|
|
}
|
|
?>
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<br />
|
|
<center><input type="image" value="submit" src="../img/admin/b/ok1.gif"></center>
|
|
</form>
|
|
<?php
|
|
}
|
|
else
|
|
{
|
|
include("404.tpl");
|
|
}
|
|
?> |