1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-20 01:03:26 +01:00
tcl_update_db/index_main.php

56 lines
1.5 KiB
PHP
Raw Normal View History

2017-12-16 17:17:57 +00:00
<!DOCTYPE html>
<html>
<head>
<title>BlackBerry/TCL Firmware List</title>
2017-12-16 18:42:24 +00:00
<link rel="stylesheet" href="assets/style.css"/>
2017-12-16 17:17:57 +00:00
</head>
<body>
<?php
require_once __DIR__ . '/lib/autoloader.php';
use \TclUpdates\SQLiteReader;
$db = new SQLiteReader();
$allVars = $db->getAllVariants();
2017-12-16 18:42:24 +00:00
$unknowns = $db->getUnknownRefs();
if (count($unknowns) > 0) {
$variants = array();
foreach ($unknowns as $uref) {
$variants[$uref] = '';
}
$allVars['Unknown'] = array(
'Variants' => $variants,
);
}
2017-12-16 17:17:57 +00:00
foreach ($allVars as $family => $models) {
foreach ($models as $model => $variants) {
echo '<h2>' . $family . ' ' . $model . '</h2>' . PHP_EOL;
2017-12-16 18:42:24 +00:00
$allVersions = $db->getAllVersionsForModel($model);
echo '<table><tbody>';
2017-12-16 17:17:57 +00:00
foreach ($variants as $ref => $name) {
2017-12-16 19:17:11 +00:00
echo '<tr><td class="ref">' . $ref . '</td>';
2017-12-16 18:42:24 +00:00
$refVersions = $db->getAllVersionsForRef($ref);
$allOta = $db->getAllVersionsForRef($ref, $db::OTA_ONLY);
2017-12-16 18:42:24 +00:00
foreach ($allVersions as $v) {
if (in_array($v, $refVersions, true)) {
if (in_array($v, $allOta)) {
echo '<td>' . $v . '</td>';
} else {
echo '<td class="fullonly">' . $v . '</td>';
}
2017-12-16 18:42:24 +00:00
} else {
2017-12-16 19:17:11 +00:00
echo '<td class="empty">- - -</td>';
2017-12-16 18:42:24 +00:00
}
}
echo '</tr>' . PHP_EOL;
2017-12-16 17:17:57 +00:00
}
2017-12-16 18:42:24 +00:00
echo '</tbody></table>';
2017-12-16 17:17:57 +00:00
}
}
?>
</body>
</html>