From 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 18 Apr 2016 20:38:38 -0700 Subject: module updates --- mod/contactgroup.php | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 mod/contactgroup.php (limited to 'mod/contactgroup.php') diff --git a/mod/contactgroup.php b/mod/contactgroup.php deleted file mode 100644 index 61ca37054..000000000 --- a/mod/contactgroup.php +++ /dev/null @@ -1,49 +0,0 @@ - 2) && (intval(argv(1))) && (argv(2))) { - $r = q("SELECT abook_xchan from abook where abook_xchan = '%s' and abook_channel = %d and abook_self = 0 limit 1", - dbesc(base64url_decode(argv(2))), - intval(local_channel()) - ); - if($r) - $change = $r[0]['abook_xchan']; - } - - if((argc() > 1) && (intval(argv(1)))) { - - $r = q("SELECT * FROM `groups` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1", - intval(argv(1)), - intval(local_channel()) - ); - if(! $r) { - killme(); - } - - $group = $r[0]; - $members = group_get_members($group['id']); - $preselected = array(); - if(count($members)) { - foreach($members as $member) - $preselected[] = $member['xchan_hash']; - } - - if($change) { - if(in_array($change,$preselected)) { - group_rmv_member(local_channel(),$group['name'],$change); - } - else { - group_add_member(local_channel(),$group['name'],$change); - } - } - } - - killme(); -} \ No newline at end of file -- cgit v1.2.3