acctfuncs.inc.php: Move XHTML to account_details.php template

XHTML should be eliminated from lib/ as much as possible. This pulls the XHTML
out of the display_account_info function that echoes the code, and moves it
to the new account_details.php template file.

Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
canyonknight 2012-06-29 16:52:45 -04:00 committed by Lukas Fleischer
parent b5ffdeb63e
commit c1bb1df2b3
3 changed files with 58 additions and 73 deletions

View file

@ -0,0 +1,57 @@
<table>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td align="left"><?php echo __("Username") . ":" ?></td>
<td align="left"><?php echo $row["Username"] ?></td>
</tr>
<tr>
<td align="left"><?php echo __("Account Type") . ":" ?></td>
<td align="left">
<?php
if ($row["AccountType"] == "User") {
print __("User");
} elseif ($row["AccountType"] == "Trusted User") {
print __("Trusted User");
} elseif ($row["AccountType"] == "Developer") {
print __("Developer");
}
?>
</td>
</tr>
<tr>
<td align="left"><?php echo __("Email Address") . ":" ?></td>
<td align="left"><a href="mailto:<?php echo htmlspecialchars($row["Email"], ENT_QUOTES) ?>"><?php echo htmlspecialchars($row["Email"], ENT_QUOTES) ?></a></td>
</tr>
<tr>
<td align="left"><?php echo __("Real Name") . ":" ?></td>
<td align="left"><?php echo htmlspecialchars($row["RealName"], ENT_QUOTES) ?></td>
</tr>
<tr>
<td align="left"><?php echo __("IRC Nick") . ":" ?></td>
<td align="left"><?php echo htmlspecialchars($row["IRCNick"], ENT_QUOTES) ?></td>
</tr>
<tr>
<td align="left"><?php echo __("PGP Key Fingerprint") . ":" ?></td>
<td align="left"><?php echo html_format_pgp_fingerprint($row["PGPKey"]) ?></td>
</tr>
<tr>
<td align="left"><?php echo __("Last Voted") . ":" ?></td>
<td align="left">
<?php print $row["LastVoted"] ? date("Y-m-d", $row["LastVoted"]) : __("Never"); ?>
</td>
</tr>
<tr>
<td colspan="2"><a href="packages.php?K=<?php echo $row['Username'] ?>&amp;SeB=m"><?php echo __("View this user's packages") ?></a></td>
</tr>
</table>