X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcontacts.php;h=4f5a49acd1c7062e0462cf4b66af26d876920390;hb=2abcf76ec17a9a7754c399cdde9a4449308a4b02;hp=7a97b53d230a33e02647dc836c923534f9b513c2;hpb=e6aaa8b59b138f4195fb7f1e93b9b14980c309c3;p=friendica.git diff --git a/mod/contacts.php b/mod/contacts.php index 7a97b53d23..4f5a49acd1 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -3,13 +3,38 @@ require_once('include/Contact.php'); function contacts_init(&$a) { + if(! local_user()) + return; + + $contact_id = 0; + if(($a->argc == 2) && intval($a->argv[1])) { + $contact_id = intval($a->argv[1]); + $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1", + intval(local_user()), + intval($contact_id) + ); + if(! count($r)) { + $contact_id = 0; + } + } + require_once('include/group.php'); if(! x($a->page,'aside')) $a->page['aside'] = ''; - $a->page['aside'] .= group_side(); + $a->page['aside'] .= group_side('contacts','group',false,0,$contact_id); - if($a->config['register_policy'] != REGISTER_CLOSED) - $a->page['aside'] .= ''; + $inv = ''; + + if(get_config('system','invitation_only')) { + $x = get_pconfig(local_user(),'system','invites_remaining'); + if($x || is_site_admin()) { + $a->page['aside'] .= '' . $inv; + } + } + elseif($a->config['register_policy'] != REGISTER_CLOSED) + $a->page['aside'] .= $inv; $a->page['aside'] .= '