mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Move actions form into template.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
parent
f82f3dd247
commit
ff3a29ea07
2 changed files with 61 additions and 65 deletions
60
web/template/actions_form.php
Normal file
60
web/template/actions_form.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<div class="pgbox">
|
||||
<form action="packages.php?ID=<?php echo $row['ID'] ?>" method="post">
|
||||
<input type='hidden' name='IDs[<?php echo $row['ID'] ?>]' value='1'>
|
||||
<input type='hidden' name='ID' value="<?php echo $row['ID'] ?>">
|
||||
<?php
|
||||
# Voting Button
|
||||
#
|
||||
$q = "SELECT * FROM PackageVotes WHERE UsersID = ". $uid;
|
||||
$q.= " AND PackageID = ".$row["ID"];
|
||||
if (!mysql_num_rows(db_query($q, $dbh))) {
|
||||
echo " <input type='submit' class='button' name='do_Vote'";
|
||||
echo " value='".__("Vote")."'> ";
|
||||
} else {
|
||||
echo "<input type='submit' class='button' name='do_UnVote'";
|
||||
echo " value='".__("UnVote")."'> ";
|
||||
}
|
||||
|
||||
# Comment Notify Button
|
||||
#
|
||||
$q = "SELECT * FROM CommentNotify WHERE UserID = ". $uid;
|
||||
$q.= " AND PkgID = ".$row["ID"];
|
||||
if (!mysql_num_rows(db_query($q, $dbh))) {
|
||||
echo "<input type='submit' class='button' name='do_Notify'";
|
||||
echo " value='".__("Notify")."' title='".__("New Comment Notification")."'> ";
|
||||
} else {
|
||||
echo "<input type='submit' class='button' name='do_UnNotify'";
|
||||
echo " value='".__("UnNotify")."' title='".__("No New Comment Notification")."'> ";
|
||||
}
|
||||
|
||||
if ($row["OutOfDate"] == 0) {
|
||||
echo "<input type='submit' class='button' name='do_Flag'";
|
||||
echo " value='".__("Flag Out-of-date")."'>\n";
|
||||
} else {
|
||||
echo "<input type='submit' class='button' name='do_UnFlag'";
|
||||
echo " value='".__("UnFlag Out-of-date")."'>\n";
|
||||
}
|
||||
|
||||
if ($row["MaintainerUID"] == 0) {
|
||||
echo "<input type='submit' class='button' name='do_Adopt'";
|
||||
echo " value='".__("Adopt Packages")."'>\n";
|
||||
} else if ($uid == $row["MaintainerUID"] ||
|
||||
$atype == "Trusted User" || $atype == "Developer") {
|
||||
echo "<input type='submit' class='button' name='do_Disown'";
|
||||
echo " value='".__("Disown Packages")."'>\n";
|
||||
}
|
||||
|
||||
if ($atype == "Trusted User" || $atype == "Developer") {
|
||||
echo "<input type='submit' class='button' name='do_Delete'";
|
||||
echo " value='".__("Delete Packages")."'>\n";
|
||||
}
|
||||
?>
|
||||
|
||||
</form>
|
||||
<br />
|
||||
|
||||
<form action='pkgedit.php' method='post'>
|
||||
<input type='hidden' name='ID' value="<?php echo $row['ID'] ?>" />
|
||||
<input type='submit' class='button' name='add_Comment' value="<?php echo __('Add Comment') ?>" />
|
||||
</form>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue