From b8c4d73377d93cc54cb10fd1c3fac173c8f57627 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 31 May 2011 19:24:26 -0700 Subject: [PATCH] show group affiliations in contact editor --- include/group.php | 12 ++++++++++++ mod/contacts.php | 10 ++++++++++ view/contact_edit.tpl | 2 ++ 3 files changed, 24 insertions(+) diff --git a/include/group.php b/include/group.php index d1b3369469..804d0c58f3 100644 --- a/include/group.php +++ b/include/group.php @@ -185,3 +185,15 @@ function expand_groups($a) { $ret[] = $rr['contact-id']; return $ret; } + + +function member_of($c) { + + $r = q("SELECT `group`.`name`, `group`.`id` FROM `group` LEFT JOIN `group_member` ON `group_member`.`gid` = `group`.`id` WHERE `group_member`.`contact-id` = %d AND `group`.`deleted` = 0 ORDER BY `group`.`name` ASC ", + intval($c) + ); + + return $r; + +} + diff --git a/mod/contacts.php b/mod/contacts.php index 4baa2d2d7c..e7a800500b 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -249,6 +249,15 @@ function contacts_content(&$a) { $sparkle = ''; } + $grps = ''; + $member_of = member_of($r[0]['id']); + if(is_array($member_of) && count($member_of)) { + $grps = t('Member of: ') . EOL . ''; + } + $insecure = '

' . t('Privacy Unavailable') . ' ' . t('Private communications are not available for this contact.') . '

'; @@ -275,6 +284,7 @@ function contacts_content(&$a) { '$altcrepair' => t('Repair contact URL settings'), '$lblcrepair' => t("Repair contact URL settings \x28WARNING: Advanced\x29"), '$lblrecent' => t('View conversations'), + '$grps' => $grps, '$delete' => t('Delete contact'), '$poll_interval' => contact_poll_interval($r[0]['priority']), '$lastupdtext' => t('Last updated: '), diff --git a/view/contact_edit.tpl b/view/contact_edit.tpl index 97134aedd7..3246e44703 100644 --- a/view/contact_edit.tpl +++ b/view/contact_edit.tpl @@ -42,6 +42,8 @@ $insecure $blocked $ignored +$grps +
$lblrecent