diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-14 09:56:40 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-14 17:58:56 +0200 |
commit | fb42ec696cac974ea87e9a24ba009b58a7fe2c13 (patch) | |
tree | d4bb647cee27e6db2eede6c9ee05346af927acb5 /web/lib/aur.inc.php | |
parent | a2f79eb2e1ff74e7d2403bf194a52b41cc7f3c0c (diff) |
Show co-maintainers next to maintainers in details
Implements FS#45313.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/lib/aur.inc.php')
-rw-r--r-- | web/lib/aur.inc.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php index 2d06fc8..a45c9b6 100644 --- a/web/lib/aur.inc.php +++ b/web/lib/aur.inc.php @@ -197,6 +197,31 @@ function html_format_username($username) { } /** + * Format the maintainer and co-maintainers for inclusion in HTML data + * + * @param string $maintainer The user name of the maintainer + * @param array $comaintainers The list of co-maintainer user names + * + * @return string The generated HTML code for the account links + */ +function html_format_maintainers($maintainer, $comaintainers) { + $code = html_format_username($maintainer); + + if (count($comaintainers) > 0) { + $code .= ' ('; + foreach ($comaintainers as $comaintainer) { + $code .= html_format_username($comaintainer); + if ($comaintainer !== end($comaintainers)) { + $code .= ', '; + } + } + $code .= ')'; + } + + return $code; +} + +/** * Determine the user's e-mail address in the database using a session ID * * @param string $sid User's session ID |