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>
153 lines
5.5 KiB
PHP
153 lines
5.5 KiB
PHP
<?php
|
|
if ($show_headers) {
|
|
$fmtth = function($title, $sb=false, $so=false, $hint=false) {
|
|
echo '<th>';
|
|
if ($sb) {
|
|
echo '<a href="?' . mkurl('SB=' . $sb . '&SO=' . $so) . '">' . $title . '</a>';
|
|
} else {
|
|
echo $title;
|
|
}
|
|
if ($hint) {
|
|
echo '<span title="' . $hint . '" class="hover-help"><sup>?</sup></span>';
|
|
}
|
|
echo '</th>';
|
|
};
|
|
} else {
|
|
$fmtth = function($title, $sb=false, $so=false, $hint=false) {
|
|
echo '<th>' . $title . '</th>';
|
|
};
|
|
}
|
|
|
|
if (!$result): ?>
|
|
<p><?= __("Error retrieving package list.") ?></p>
|
|
<?php elseif ($total == 0): ?>
|
|
<p><?= __("No packages matched your search criteria.") ?></p>
|
|
<?php else: ?>
|
|
<?php if ($show_headers): ?>
|
|
<div class="pkglist-stats">
|
|
<p>
|
|
<?= _n('%d package found.', '%d packages found.', $total) ?>
|
|
<?= __('Page %d of %d.', $current, $pages) ?>
|
|
</p>
|
|
<?php if (count($templ_pages) > 1): ?>
|
|
<p class="pkglist-nav">
|
|
<?php foreach ($templ_pages as $pagenr => $pagestart): ?>
|
|
<?php if ($pagestart === false): ?>
|
|
<span class="page"><?= $pagenr ?></span>
|
|
<?php elseif ($pagestart + 1 == $first): ?>
|
|
<span class="page"><?= $pagenr ?></span>
|
|
<?php else: ?>
|
|
<a class="page" href="<?= get_uri('/packages/'); ?>?<?= mkurl('O=' . $pagestart) ?>"><?= $pagenr ?></a>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<form id="pkglist-results-form" method="post" action="<?= get_uri('/pkgbase/'); ?>?<?= htmlentities($_SERVER['QUERY_STRING']) ?>">
|
|
<table class="results">
|
|
<thead>
|
|
<tr>
|
|
<?php if ($SID && $show_headers): ?>
|
|
<th> </th>
|
|
<?php endif; ?>
|
|
<?php $fmtth(__('Name'), 'n', $SO_next) ?>
|
|
<?php $fmtth(__('Version')) ?>
|
|
<?php $fmtth(__('Votes'), 'v', $SO_next) ?>
|
|
<?php $fmtth(__('Popularity'), 'p', $SO_next, __('Popularity is calculated as the sum of all votes with each vote being weighted with a factor of %.2f per day since its creation.', 0.98)) ?>
|
|
<?php if ($SID): ?>
|
|
<?php $fmtth(__('Voted'), 'w', $SO_next) ?>
|
|
<?php $fmtth(__('Notify'), 'o', $SO_next) ?>
|
|
<?php endif; ?>
|
|
<?php $fmtth(__('Description')) ?>
|
|
<?php $fmtth(__('Maintainer'), 'm', $SO_next) ?>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php foreach ($searchresults as $indx => $row): ?>
|
|
<tr class="<?= ($indx % 2 == 0) ? 'odd' : 'even' ?>">
|
|
<?php if ($SID && $show_headers): ?>
|
|
<td><input type="checkbox" name="IDs[<?= $row["PackageBaseID"] ?>]" value="1" /></td>
|
|
<?php endif; ?>
|
|
<td><a href="<?= htmlspecialchars(get_pkg_uri($row["Name"]), ENT_QUOTES); ?>"><?= htmlspecialchars($row["Name"]) ?></a></td>
|
|
<td<?php if ($row["OutOfDateTS"]): ?> class="flagged"<?php endif; ?>><?= htmlspecialchars($row["Version"]) ?></td>
|
|
<td><?= $row["NumVotes"] ?></td>
|
|
<td><?= number_format($row["Popularity"], 2) ?></td>
|
|
<?php if ($SID): ?>
|
|
<td>
|
|
<?php if (isset($row["Voted"])): ?>
|
|
<?= __("Yes") ?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<?php if (isset($row["Notify"])): ?>
|
|
<?= __("Yes") ?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<?php endif; ?>
|
|
<td class="wrap"><?= htmlspecialchars($row['Description'], ENT_QUOTES); ?></td>
|
|
<td>
|
|
<?php if (isset($row["Maintainer"])): ?>
|
|
<?php if ($SID): ?>
|
|
<a href="<?= get_uri('/account/') . htmlspecialchars($row['Maintainer'], ENT_QUOTES) ?>" title="<?= __('View account information for %s', htmlspecialchars($row['Maintainer'])) ?>"><?= htmlspecialchars($row['Maintainer']) ?></a>
|
|
<?php else: ?>
|
|
<a href="<?= get_uri('/packages/'); ?>?K=<?= htmlspecialchars($row['Maintainer'], ENT_QUOTES) ?>&SeB=m"><?= htmlspecialchars($row['Maintainer']) ?></a>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<span><?= __("orphan") ?></span>
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php if ($show_headers): ?>
|
|
<div class="pkglist-stats">
|
|
<p>
|
|
<?= _n('%d package found.', '%d packages found.', $total) ?>
|
|
<?= __('Page %d of %d.', $current, $pages) ?>
|
|
</p>
|
|
<?php if (count($templ_pages) > 1): ?>
|
|
<p class="pkglist-nav">
|
|
<?php foreach ($templ_pages as $pagenr => $pagestart): ?>
|
|
<?php if ($pagestart === false): ?>
|
|
<span class="page"><?= $pagenr ?></span>
|
|
<?php elseif ($pagestart + 1 == $first): ?>
|
|
<span class="page"><?= $pagenr ?></span>
|
|
<?php else: ?>
|
|
<a class="page" href="<?= get_uri('/packages/'); ?>?<?= mkurl('O=' . $pagestart) ?>"><?= $pagenr ?></a>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php if ($SID): ?>
|
|
<p>
|
|
<select name="action">
|
|
<option><?= __("Actions") ?></option>
|
|
<option value="do_UnFlag"><?= __("Unflag Out-of-date") ?></option>
|
|
<option value="do_Adopt"><?= __("Adopt Packages") ?></option>
|
|
<option value="do_Disown"><?= __("Disown Packages") ?></option>
|
|
<?php if (has_credential(CRED_PKGBASE_DELETE)): ?>
|
|
<option value="do_Delete"><?= __("Delete Packages") ?></option>
|
|
<?php endif; ?>
|
|
<option value="do_Notify"><?= __("Notify") ?></option>
|
|
<option value="do_UnNotify"><?= __("UnNotify") ?></option>
|
|
</select>
|
|
<?php if (has_credential(CRED_PKGBASE_DELETE)): ?>
|
|
<label for="merge_Into"><?= __("Merge into") ?></label>
|
|
<input type="text" id="merge_Into" name="merge_Into" />
|
|
<?php endif; ?>
|
|
<label class="confirmation"><input type="checkbox" name="confirm" value="1" /> <?= __("Confirm") ?></label>
|
|
<input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" />
|
|
<input type="submit" class="button" style="width: 80px" value="<?= __("Go") ?>" />
|
|
</p>
|
|
<?php endif; # if ($SID) ?>
|
|
<?php endif; ?>
|
|
</form>
|
|
<?php endif; # search was successful and returned multiple results ?>
|