aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/socgraph.php20
1 files changed, 19 insertions, 1 deletions
diff --git a/include/socgraph.php b/include/socgraph.php
index c81c7b695..04e9a9a64 100644
--- a/include/socgraph.php
+++ b/include/socgraph.php
@@ -159,4 +159,22 @@ function common_friends($uid,$cid) {
return $r;
-} \ No newline at end of file
+}
+
+
+
+function suggestion_query($uid, $start = 0, $limit = 40) {
+
+ $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact
+ left join glink on glink.gcid = gcontact.id
+ where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d)
+ group by glink.gcid order by total desc limit %d, %d ",
+ intval($uid),
+ intval($uid),
+ intval($start),
+ intval($limit)
+ );
+
+ return $r;
+
+}