Display number of group members in contact widget

This commit is contained in:
Michael 2020-10-07 06:19:09 +00:00
parent b63d037967
commit d785af23c1
1 changed files with 8 additions and 1 deletions

View File

@ -505,10 +505,17 @@ class Group
$groupedit = null;
}
if ($each == 'group') {
$count = DBA::count('group_member', ['gid' => $group['id']]);
$group_name = sprintf('%s (%d)', $group['name'], $count);
} else {
$group_name = $group['name'];
}
$display_groups[] = [
'id' => $group['id'],
'cid' => $cid,
'text' => $group['name'],
'text' => $group_name,
'href' => $each . '/' . $group['id'],
'edit' => $groupedit,
'selected' => $selected,