mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
The each() function has been deprecated as of PHP 7.2.0. Use foreach loops instead. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
82 lines
2.4 KiB
PHP
82 lines
2.4 KiB
PHP
<div class="box">
|
|
<h2><?= $type ?></h2>
|
|
|
|
<?php if ($type == __("Current Votes")): ?>
|
|
<ul class="admin-actions">
|
|
<li><a href="<?= get_uri('/addvote/'); ?>"><?= __("Add Proposal") ?></a></li>
|
|
</ul>
|
|
<?php endif; ?>
|
|
|
|
<?php if (empty($result)): ?>
|
|
<p><?= __("No results found.") ?></p>
|
|
<?php else: ?>
|
|
<table class="results">
|
|
<thead>
|
|
<tr>
|
|
<th><?= __("Proposal") ?></th>
|
|
<th><a href="?off=<?= $off ?>&by=<?= $by_next ?>"><?= __("Start") ?></a></th>
|
|
<th><?= __("End") ?></th>
|
|
<th><?= __("User") ?></th>
|
|
<?php if ($type != __("Current Votes")): ?>
|
|
<th><?= __("Yes") ?></th>
|
|
<th><?= __("No") ?></th>
|
|
<?php endif; ?>
|
|
<th><?= __('Voted') ?></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($result as $indx => $row): ?>
|
|
<?php
|
|
if ($indx % 2) {
|
|
$c = "even";
|
|
} else {
|
|
$c = "odd";
|
|
}
|
|
?>
|
|
<tr class="<?= $c ?>">
|
|
<td><?php $row["Agenda"] = htmlspecialchars(substr($row["Agenda"], 0, $prev_Len)); ?>
|
|
<a href="<?= get_uri('/tu/'); ?>?id=<?= $row['ID'] ?>"><?= $row["Agenda"] ?></a>
|
|
</td>
|
|
<td><?= date("Y-m-d", $row["Submitted"]) ?></td>
|
|
<td><?= date("Y-m-d", $row["End"]) ?></td>
|
|
<td>
|
|
<?php if (!empty($row['User'])): ?>
|
|
<a href="<?= get_uri('/packages/'); ?>?K=<?= $row['User'] ?>&SeB=m"><?= $row['User'] ?></a>
|
|
<?php else:
|
|
print "N/A";
|
|
endif;
|
|
?>
|
|
</td>
|
|
<?php if ($type != __("Current Votes")): ?>
|
|
<td><?= $row['Yes'] ?></td>
|
|
<td><?= $row['No'] ?></td>
|
|
<?php endif; ?>
|
|
<td>
|
|
<?php if (tu_voted($row['ID'], uid_from_sid($_COOKIE["AURSID"]))): ?>
|
|
<span style="color: green; font-weight: bold"><?= __("Yes") ?></span>
|
|
<?php else: ?>
|
|
<span style="color: red; font-weight: bold"><?= __("No") ?></span>
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="pkglist-stats">
|
|
<p class="pkglist-nav">
|
|
<?php if ($result):
|
|
$by = htmlentities($by, ENT_QUOTES); ?>
|
|
<?php if ($nextresult > 0 && $off != 0):
|
|
$back = (($off - $limit) <= 0) ? 0 : $off - $limit; ?>
|
|
<a class="page" href='<?= get_uri('/tu/'); ?>?off=<?= $back ?>&by=<?= $by ?>'>‹ <?= __("Back") ?></a>
|
|
<?php endif; ?>
|
|
<?php if (($off + $limit) < $nextresult):
|
|
$forw = $off + $limit; ?>
|
|
<a class="page" href="<?= get_uri('/tu/'); ?>?off=<?= $forw ?>&by=<?= $by ?>"><?= __("Next") ?> ›</a>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|