diff options
author | Loui Chang <louipc.ist@gmail.com> | 2009-01-05 21:59:59 +0100 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2009-01-05 21:59:59 +0100 |
commit | 36b44f371bd240fe448d7a22f7295581c9b35633 (patch) | |
tree | 7751f75b4cfa54913fcbe52852a2394dd4a1c029 /web/template | |
parent | 6de9b376d8885e93e6b3b638369b8107189e0ecd (diff) | |
download | aur-36b44f371bd240fe448d7a22f7295581c9b35633.tar.gz aur-36b44f371bd240fe448d7a22f7295581c9b35633.tar.xz |
Move package comments to a template.
Change layout in the process.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/pkg_comments.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/web/template/pkg_comments.php b/web/template/pkg_comments.php new file mode 100644 index 00000000..7bcf708b --- /dev/null +++ b/web/template/pkg_comments.php @@ -0,0 +1,38 @@ +<div class="pgbox"> +<table width="100%"> +<?php while (list($indx, $carr) = each($comments)) { ?> + <tr class='boxSoft'> + <td class='boxSoftTitle' valign='top' style='padding-right: 10' colspan='2'> + <span class='f3'> +<?php + if (canDeleteComment($carr['ID'], $atype, $SID)) { + $durl = '<a href="pkgedit.php?del_Comment=1'; + $durl.= '&comment_id=' . $carr['ID'] . '&ID=' . $row['ID']; + $durl.= '"><img src="images/x.png" border="0"'; + $durl.= ' alt="' . __("Delete comment") . '"></a> '; + + echo $durl; + } + if ($SID) { + echo __("Comment by: %h%s%h on %s", + "<a href='account.php?Action=AccountInfo&ID=".$carr["UsersID"]."'><b>", + $carr["UserName"], "</b></a>", gmdate("Y m d [H:i:s]", $carr["CommentTS"])); + } else { + echo __("Comment by: %h%s%h on %s", + "<b>", $carr["UserName"], "</b>", + gmdate("Y m d [H:i:s]", $carr["CommentTS"])); + } +?> + </span> + </td> + </tr> + <tr> + <td class="boxSoft"> + <pre><?php echo htmlspecialchars($carr["Comments"]) ?></pre> + </td> + </tr> +<?php +} +?> +</table> +</div> |