mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-07 05:14:31 +00:00
274d89bfa1
+You can no longer kick people of other alliances +You can no longer change the forum link with no permissions +You can no longer make more than 3 total confederation and 3 total NAP +You can no longer send a diplomacy pact to an alliance with already one pact or one pending pact +You can no longer handle diplomacy without permissions +Fixed security bugs related to invites (sending, deleting etc.) +You can no longer access to any alliance submenus without permissions (kick menu, diplomacy menu, etc.) +Errors are now shown correctly and better handling of them +New forum link and alliance description are shown correctly after editing them +You can no longer access to other alliances informations without being in it (attack reports, news, etc) +Corrected some alliance news +Added some language constants to en.php +Fixed and changed some database.php functions alliance related
98 lines
2.6 KiB
Smarty
98 lines
2.6 KiB
Smarty
<?php
|
|
if(!isset($aid)) $aid = $session->alliance;
|
|
|
|
$allianceinfo = $database->getAlliance($aid);
|
|
$isOwner = ($aid && $database->isAllianceOwner($session->uid) == $aid);
|
|
|
|
if ($isOwner) {
|
|
$membersCount = $database->countAllianceMembers($aid);
|
|
}
|
|
|
|
echo "<h1>".$allianceinfo['tag']." - ".$allianceinfo['name']."</h1>";
|
|
include("alli_menu.tpl");
|
|
?>
|
|
<form method="post" action="allianz.php">
|
|
<input type="hidden" name="a" value="11">
|
|
<input type="hidden" name="o" value="11">
|
|
<input type="hidden" name="s" value="5">
|
|
|
|
<table cellpadding="1" cellspacing="1" id="quit" class="small_option"><thead>
|
|
<tr>
|
|
<th colspan="2">Quit alliance</th>
|
|
</tr>
|
|
</thead><tbody>
|
|
<?php
|
|
if ($isOwner && $membersCount > 1) {
|
|
?>
|
|
<tr>
|
|
<td colspan="2" class="info">
|
|
Because you are the alliance founder, you need to select a replacement founder before you leave.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
new founder:
|
|
</th>
|
|
<td>
|
|
<?php
|
|
$memberlist = $database->getAllMember($aid);
|
|
?>
|
|
<select name="new_founder" class="name dropdown">
|
|
<?php
|
|
$canQuit = false;
|
|
$minEmbassyLevel = $database->getMinEmbassyLevel( $database->countAllianceMembers($session->alliance) );
|
|
if ($minEmbassyLevel < 3) {
|
|
$minEmbassyLevel = 3;
|
|
}
|
|
|
|
foreach($memberlist as $member) {
|
|
if (($member['id'] != $session->uid) && ($database->getSingleFieldTypeCount($member['id'], 18, '>=', $minEmbassyLevel) >= 1)) {
|
|
echo "<option value=\"".$member['id']."\">".$member['username']."</option>";
|
|
$canQuit = true;
|
|
}
|
|
}
|
|
|
|
if (!$canQuit) {
|
|
echo "<option value=\"-1\">no candidates!</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
} else {
|
|
$canQuit = true;
|
|
}
|
|
?>
|
|
<tr>
|
|
<td colspan="2" class="info">
|
|
<br />In order to quit the alliance you have to enter your password again for safety reasons.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
password:
|
|
</th>
|
|
<td>
|
|
<input class="pass text" type="password" name="pw" maxlength="20">
|
|
<span class="error3"><?php echo $form->getError("pw"); ?></span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php
|
|
if (!$canQuit) {
|
|
?>
|
|
<span style="color: red">
|
|
<br />
|
|
Unfortunately, there are no members of the alliance with Embassy at level <?php echo $minEmbassyLevel; ?> or more. In this case, you will not be able
|
|
to reassign the founder role. You can still <a href="allianz.php?s=5">kick all members</a> and quit the alliance afterwards,
|
|
if you wish.
|
|
</span>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<p><input type="image" value="ok" name="s1" id="btn_ok" class="dynamic_img" src="img/x.gif" alt="OK" /></form></p>
|
|
<p class="error"><?php echo $form->getError("founder"); ?></p> |