mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add comment edit icon and form
Show an icon next to the comment deletion icon, which leads to a comment edit form. Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
8375d21210
commit
92e19e95f3
11 changed files with 139 additions and 9 deletions
|
@ -42,6 +42,20 @@ function can_delete_comment_array($comment) {
|
|||
return has_credential(CRED_COMMENT_DELETE, array($comment['UsersID']));
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine if the user can edit a specific package comment using an array
|
||||
*
|
||||
* Only the comment submitter, Trusted Users, and Developers can edit
|
||||
* comments. This function is used for the frontend side of comment editing.
|
||||
*
|
||||
* @param array $comment All database information relating a specific comment
|
||||
*
|
||||
* @return bool True if the user can edit the comment, otherwise false
|
||||
*/
|
||||
function can_edit_comment_array($comment) {
|
||||
return has_credential(CRED_COMMENT_EDIT, array($comment['UsersID']));
|
||||
}
|
||||
|
||||
/**
|
||||
* Check to see if the package name already exists in the database
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue