Cleaned up namespaces (still have to do Map Project) and removed references to FFXIV Classic from the code. Removed the Launcher Editor project as it is no longer needed (host file editing is cleaner).

This commit is contained in:
Filip Maj
2019-06-19 00:05:18 -04:00
parent 7587a6e142
commit 0f61c4c0e1
544 changed files with 54548 additions and 55498 deletions

View File

@@ -0,0 +1,50 @@
<?php
error_reporting(E_ALL | E_STRICT);
include("config.php");
include("database.php");
include("control_panel_common.php");
$g_userCharacters = GetUserCharacters($g_databaseConnection, $g_userId);
?>
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Seventh Umbral Server</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
</head>
<body>
<?php include("control_panel_header.php"); ?>
<p>
<div class="edit">
<h2>Characters</h2>
<br />
<table class="editForm">
<tr>
<th>Name</th>
<th>Action</th>
</tr>
<?php
foreach($g_userCharacters as $character)
{
?>
<tr>
<td><?php echo $character["name"]; ?></td>
<td>
<a href="control_panel_edit_character.php?id=<?php echo $character["id"]; ?>">
Edit
</a>
</td>
</tr>
<?php
}
?>
</table>
</p>
</body>
</html>