aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-06-01 21:21:38 -0700
committerMario Vavti <mario@mariovavti.com>2017-06-07 09:33:28 +0200
commit1d3c6e7420fa0c156eb94fc1a388aa7e0c25eadc (patch)
treeac4316aec2121c6dcf7cbd05a4406e36898e3f9d /include
parentc96fe2931a43614f209ce19e2cec507fc5b6c8f3 (diff)
downloadvolse-hubzilla-1d3c6e7420fa0c156eb94fc1a388aa7e0c25eadc.tar.gz
volse-hubzilla-1d3c6e7420fa0c156eb94fc1a388aa7e0c25eadc.tar.bz2
volse-hubzilla-1d3c6e7420fa0c156eb94fc1a388aa7e0c25eadc.zip
include/socgraph - remove a few obsolete and long-deprecated functions
Diffstat (limited to 'include')
-rw-r--r--include/socgraph.php71
1 files changed, 0 insertions, 71 deletions
diff --git a/include/socgraph.php b/include/socgraph.php
index 69365f80f..9a6245d01 100644
--- a/include/socgraph.php
+++ b/include/socgraph.php
@@ -243,77 +243,6 @@ function common_friends($uid,$xchan,$start = 0,$limit=100000000,$shuffle = false
}
-function count_common_friends_zcid($uid,$zcid) {
-
- $r = q("SELECT count(*) as total
- FROM glink left join gcontact on glink.gcid = gcontact.id
- where glink.zcid = %d
- and gcontact.nurl in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) ",
- intval($zcid),
- intval($uid)
- );
-
- if(count($r))
- return $r[0]['total'];
-
- return 0;
-}
-
-function common_friends_zcid($uid,$zcid,$start = 0, $limit = 9999,$shuffle = false) {
-
- if($shuffle)
- $sql_extra = " order by rand() ";
- else
- $sql_extra = " order by gcontact.name asc ";
-
- $r = q("SELECT gcontact.*
- FROM glink left join gcontact on glink.gcid = gcontact.id
- where glink.zcid = %d
- and gcontact.nurl in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 )
- $sql_extra limit %d offset %d",
- intval($zcid),
- intval($uid),
- intval($limit),
- intval($start)
- );
-
- return $r;
-}
-
-
-function count_all_friends($uid,$cid) {
-
- $r = q("SELECT count(*) as total
- FROM glink left join gcontact on glink.gcid = gcontact.id
- where glink.cid = %d and glink.uid = %d ",
- intval($cid),
- intval($uid)
- );
-
- if(count($r))
- return $r[0]['total'];
-
- return 0;
-}
-
-
-function all_friends($uid,$cid,$start = 0, $limit = 80) {
-
- $r = q("SELECT gcontact.*
- FROM glink left join gcontact on glink.gcid = gcontact.id
- where glink.cid = %d and glink.uid = %d
- order by gcontact.name asc LIMIT %d OFFSET %d ",
- intval($cid),
- intval($uid),
- intval($limit),
- intval($start)
- );
-
- return $r;
-}
-
-
-
function suggestion_query($uid, $myxchan, $start = 0, $limit = 80) {
if((! $uid) || (! $myxchan))