mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-13 08:06:06 +00:00
c3049f7f1a
Code and Fix alliance Assign to position and Changepos
51 lines
1.4 KiB
Smarty
51 lines
1.4 KiB
Smarty
<?php
|
|
|
|
if (!isset($aid)) {
|
|
$aid = $session->alliance;
|
|
}
|
|
|
|
$allianceinfo = $database->getAlliance($aid);
|
|
$memberlist = $database->getAllMember($aid);
|
|
|
|
echo "<h1>" . htmlspecialchars($allianceinfo['tag']) . " - " . htmlspecialchars($allianceinfo['name']) . "</h1>";
|
|
|
|
include("alli_menu.tpl");
|
|
|
|
?>
|
|
|
|
<form method="post" action="allianz.php">
|
|
<table cellpadding="1" cellspacing="1" id="position" class="small_option">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">Assign to position</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<th colspan="2">
|
|
Here you can grant the players from your alliance rights & positions.
|
|
</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Name</th>
|
|
<td>
|
|
<select name="a_user" class="name dropdown">
|
|
<?php
|
|
foreach ($memberlist as $member) {
|
|
echo "<option value='" . (int)$member['id'] . "'>" . htmlspecialchars($member['username']) . "</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<p>
|
|
<input type="hidden" name="o" value="1">
|
|
<input type="hidden" name="s" value="5">
|
|
<button type="submit" name="s1" id="btn_ok" class="trav_buttons">OK</button>
|
|
</p>
|
|
</form> |