Compare commits
2 commits
d82e36878e
...
ae5061d1de
Author | SHA1 | Date | |
---|---|---|---|
ae5061d1de | |||
0256dc5292 |
2 changed files with 31 additions and 26 deletions
|
@ -19,11 +19,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Osm2City Worldbuild Progress</title>
|
||||
<title>Worldbuild Progress</title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Osm2City Worldbuild Progress</h2>
|
||||
<h2>Worldbuild Progress</h2>
|
||||
Colors:
|
||||
<table border="0">
|
||||
<?php
|
||||
|
|
|
@ -54,6 +54,16 @@
|
|||
{
|
||||
quit();
|
||||
}
|
||||
$sql = 'SELECT * FROM information_schema.tables WHERE table_name = "tile" AND table_schema = "' . $SQL_DATABASE . '"';
|
||||
$ret = $con->query($sql)->fetch_all(MYSQLI_ASSOC);
|
||||
if (!empty($ret))
|
||||
{
|
||||
$tilesAvail = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
$tilesAvail = false;
|
||||
}
|
||||
$stmt = $con->prepare("SELECT secondLevel.name AS name, status.color AS color FROM secondLevel JOIN status ON secondLevel.status_id = status.id WHERE secondLevel.parent_id = (SELECT id FROM topLevel WHERE name = ?)");
|
||||
$stmt->bind_param("s", $tile);
|
||||
$stmt->execute();
|
||||
|
@ -90,16 +100,14 @@
|
|||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
$ret = $result->fetch_all(MYSQLI_ASSOC);
|
||||
echo '<div id="tablecontainer"><table border="1"><tr><td>Tile Name</td><td>' . $tile . '</td></tr>';
|
||||
echo '<div id="tablecontainer"><table border="1"><tr><td>Area Name</td><td>' . $tile . '</td></tr>';
|
||||
foreach ($ret as $row)
|
||||
{
|
||||
echo '<tr style="background-color: ' . $row["color"] . '"><td>' . $row["status"] . '</td><td>' . $row["sCount"] . '</td></tr>';
|
||||
}
|
||||
if (isset($_GET["minor"]))
|
||||
{
|
||||
$sql = 'SELECT * FROM information_schema.tables WHERE table_name = "tile" AND table_schema = "' . $SQL_DATABASE . '"';
|
||||
$ret = $con->query($sql)->fetch_all(MYSQLI_ASSOC);
|
||||
if (!empty($ret))
|
||||
if ($tilesAvail)
|
||||
{
|
||||
$stmt = $con->prepare("SELECT status.name AS status, COUNT(*) AS sCount, status.color AS color FROM tile JOIN status ON tile.status_id = status.id WHERE tile.parent_id = (SELECT id FROM secondLevel WHERE name = ?) GROUP BY status.id ORDER BY priority");
|
||||
$stmt->bind_param("s", $_GET["minor"]);
|
||||
|
@ -107,34 +115,31 @@
|
|||
$result = $stmt->get_result();
|
||||
$ret = $result->fetch_all(MYSQLI_ASSOC);
|
||||
echo '</table>';
|
||||
echo '<table border="1"><tr><td>Tile Name</td><td>' . $_GET["minor"] . '</td></tr>';
|
||||
echo '<table border="1"><tr><td>Area Name</td><td>' . $_GET["minor"] . '</td></tr>';
|
||||
foreach ($ret as $row)
|
||||
{
|
||||
echo '<tr style="background-color: ' . $row["color"] . '"><td>' . $row["status"] . '</td><td>' . $row["sCount"] . '</td></tr>';
|
||||
}
|
||||
}
|
||||
echo '</table>';
|
||||
// if (isset($_POST["form"]))
|
||||
// {
|
||||
echo '<form method="post" action="api.php" target="_blank">
|
||||
<label>Update Area</label>
|
||||
<input type="text" name="auth" placeholder="Token"/><br/>
|
||||
<input type="hidden" name="action" value="set"/>
|
||||
<input type="hidden" name="area" value="' . $_GET["minor"] . '"/>
|
||||
<select name="status">';
|
||||
$sql = "SELECT name FROM status ORDER BY priority";
|
||||
$ret = $con->query($sql)->fetch_all(MYSQLI_ASSOC);
|
||||
if ($ret != False)
|
||||
echo '<form method="post" action="api.php" target="_blank">
|
||||
<label>Update Area ' . $_GET["minor"] . '</label>
|
||||
<input type="text" name="auth" placeholder="Token"/><br/>
|
||||
<input type="hidden" name="action" value="set"/>
|
||||
<input type="hidden" name="area" value="' . $_GET["minor"] . '"/>
|
||||
<select name="status">';
|
||||
$sql = "SELECT name FROM status ORDER BY priority";
|
||||
$ret = $con->query($sql)->fetch_all(MYSQLI_ASSOC);
|
||||
if ($ret != False)
|
||||
{
|
||||
foreach($ret as $row)
|
||||
{
|
||||
foreach($ret as $row)
|
||||
{
|
||||
echo '<option value="' . $row["name"] . '">' . $row["name"] . '</option>';
|
||||
}
|
||||
echo '<option value="' . $row["name"] . '">' . $row["name"] . '</option>';
|
||||
}
|
||||
echo '</select>
|
||||
<input type="submit" value="Update"/>
|
||||
</form>';
|
||||
// }
|
||||
}
|
||||
echo '</select>
|
||||
<input type="submit" value="Update"/>
|
||||
</form><br/>';
|
||||
}
|
||||
echo '</div>';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue