mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
voters.php: Pull out DB code
* Create new function in pkgfuncs.inc.php with SQL queries from voters.php * Centralization of DB code important in a future transition to PDO interface Signed-off-by: canyonknight <canyonknight@gmail.com> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
091c2b5f55
commit
09e50568e4
2 changed files with 27 additions and 13 deletions
|
@ -948,6 +948,31 @@ function pkg_vote ($atype, $ids, $action=true, $dbh=NULL) {
|
|||
}
|
||||
}
|
||||
|
||||
# Get all usernames and ids for a specifc package id
|
||||
function getvotes($pkgid, $dbh=NULL) {
|
||||
if(!$dbh) {
|
||||
$dbh = db_connect();
|
||||
}
|
||||
|
||||
$pkgid = db_escape_string($pkgid);
|
||||
|
||||
$q = "SELECT UsersID,Username FROM PackageVotes ";
|
||||
$q.= "LEFT JOIN Users on (UsersID = ID) ";
|
||||
$q.= "WHERE PackageID = ". $pkgid . " ";
|
||||
$q.= "ORDER BY Username";
|
||||
$result = db_query($q, $dbh);
|
||||
|
||||
if (!$result) {
|
||||
return;
|
||||
}
|
||||
|
||||
while ($row = mysql_fetch_assoc($result)) {
|
||||
$votes[] = $row;
|
||||
}
|
||||
|
||||
return $votes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Toggle notification of packages
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue