mirror of https://github.com/PurpleI2P/regi2p.git
Domain registry project
http://reg.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
<?php |
|
|
|
require_once __DIR__ . '/../lib/twig.php'; |
|
|
|
$all = false; |
|
$offset = $options["tableitems"] * ($page - 1); |
|
|
|
$pdo = (new App\DB($options))->pdo; |
|
|
|
if (isset($_GET["all"])) |
|
$all = true; |
|
|
|
/* Get records amount */ |
|
$STH = $pdo->query ("SELECT COUNT(*) FROM `hosts` " . |
|
"WHERE `approved` = 1 AND `disabled` = 0 AND `hidden` = 0" . |
|
($all ? "" : " AND `blacklisted` = 0")); |
|
$records = $STH->fetchColumn(); |
|
|
|
$pages = intdiv($records, $options["tableitems"]) + 1; |
|
|
|
/* Get records with limit */ |
|
$STH = $pdo->query ("SELECT `host`, `base64`, `base32`, `last_seen` FROM `hosts` " . |
|
"WHERE `approved` = 1 AND `disabled` = 0 AND `hidden` = 0" . |
|
($all ? " " : " AND `blacklisted` = 0 ") . |
|
"LIMIT " . $offset . ", " . $options["tableitems"]); |
|
$STH->setFetchMode(PDO::FETCH_ASSOC); |
|
$rows = $STH->fetchAll(); |
|
|
|
$template = $twig->load('alive.twig'); |
|
echo $template->render(['current' => $page, 'total' => $pages, 'hosts' => $rows, 'records' => $records, 'all' => $all]);
|
|
|