From 014c91431e7796f9c5394efaae507837fe5c168b Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 3 Nov 2011 16:00:52 -0700 Subject: ignore suggestions --- mod/suggest.php | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'mod/suggest.php') diff --git a/mod/suggest.php b/mod/suggest.php index 2d2a32938..aedf3fd46 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -3,6 +3,24 @@ require_once('include/socgraph.php'); require_once('include/contact_widgets.php'); + +function suggest_init(&$a) { + if(! local_user()) + return; + + if(x($_GET,'ignore') && intval($_GET['ignore'])) { + q("insert into gcign ( uid, gcid ) values ( %d, %d ) ", + intval(local_user()), + intval($_GET['ignore']) + ); + } + +} + + + + + function suggest_content(&$a) { $o = ''; @@ -25,7 +43,7 @@ function suggest_content(&$a) { return $o; } - $tpl = get_markup_template('common_friends.tpl'); + $tpl = get_markup_template('suggest_friends.tpl'); foreach($r as $rr) { @@ -33,7 +51,8 @@ function suggest_content(&$a) { '$url' => $rr['url'], '$name' => $rr['name'], '$photo' => $rr['photo'], - '$tags' => '' + '$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'], + '$ignore' => t('Ignore/Hide') )); } -- cgit v1.2.3